aboutsummaryrefslogtreecommitdiff
path: root/examples/qmc-example.cpp
blob: 62ae831062b4582ddd02b6e77807cf137f39ed83 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#include "connection.h"
#include "room.h"

#include <QCoreApplication>
#include <iostream>
#include <string>

using namespace QMatrixClient;
using std::cout;
using std::endl;
using std::string;

void onNewRoom(Room* r)
{
    cout << "New room: " << r->id().toStdString() << endl;
    QObject::connect(r, &Room::namesChanged, [=] {
        cout << "Room " << r->id().toStdString() << ", name(s) changed:" << endl
             << "  Name: " << r->name().toStdString() << endl
             << "  Canonical alias: " << r->canonicalAlias().toStdString()
             << endl << endl;
    });
    QObject::connect(r, &Room::aboutToAddNewMessages, [=] (RoomEventsView events) {
        cout << events.size() << " new event(s) in room "
             << r->id().toStdString() << ":" << endl;
        for (auto e: events)
        {
            cout << "From: "
                 << r->roomMembername(e->senderId()).toStdString()
                 << endl << "Timestamp:"
                 << e->timestamp().toString().toStdString() << endl
                 << "JSON:" << endl << e->originalJson().toStdString() << endl;
        }
    });
}

int main(int argc, char* argv[])
{
    QCoreApplication app(argc, argv);
    if (argc < 2)
        return -1;

    auto conn = new Connection(QUrl("https://matrix.org"));
    conn->connectToServer(argv[1], argv[2], "QMatrixClient example application");
    auto c = QObject::connect(conn, &Connection::connected, [=] {
        cout << "Connected" << endl;
       conn->sync();
    });
    QObject::connect(conn, &Connection::syncDone, [=] {
        cout << "Sync done" << endl;
        conn->sync(30000);
    });
    QObject::connect(conn, &Connection::newRoom, onNewRoom);
    return app.exec();
}