summary refs log tree commit diff
path: root/include/Sync.h
blob: ae61015e071fdb1ef058fc064e43c28af8c16bbc (plain) (blame)
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
/*
 * nheko Copyright (C) 2017  Konstantinos Sideris <siderisk@auth.gr>
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

#pragma once

#include <QJsonArray>
#include <QJsonDocument>
#include <QMap>
#include <QString>

#include "Deserializable.h"

class Event : public Deserializable
{
public:
        QJsonObject content() const { return content_; };
        QJsonObject unsigned_content() const { return unsigned_; };

        QString sender() const { return sender_; };
        QString state_key() const { return state_key_; };
        QString type() const { return type_; };
        QString eventId() const { return event_id_; };

        uint64_t timestamp() const { return origin_server_ts_; };

        void deserialize(const QJsonValue &data) override;

private:
        QJsonObject content_;
        QJsonObject unsigned_;

        QString sender_;
        QString state_key_;
        QString type_;
        QString event_id_;

        uint64_t origin_server_ts_;
};

class State : public Deserializable
{
public:
        void deserialize(const QJsonValue &data) override;
        QJsonArray events() const { return events_; };

private:
        QJsonArray events_;
};

class Timeline : public Deserializable
{
public:
        QJsonArray events() const { return events_; };
        QString previousBatch() const { return prev_batch_; };
        bool limited() const { return limited_; };

        void deserialize(const QJsonValue &data) override;

private:
        QJsonArray events_;
        QString prev_batch_;
        bool limited_;
};

// TODO: Add support for account_data, undread_notifications
class JoinedRoom : public Deserializable
{
public:
        State state() const { return state_; };
        Timeline timeline() const { return timeline_; };
        QList<QString> typingUserIDs() const { return typingUserIDs_; };

        void deserialize(const QJsonValue &data) override;

private:
        State state_;
        Timeline timeline_;
        QList<QString> typingUserIDs_;
        /* AccountData account_data_; */
        /* UnreadNotifications unread_notifications_; */
};

class LeftRoom : public Deserializable
{
public:
        State state() const { return state_; };
        Timeline timeline() const { return timeline_; };

        void deserialize(const QJsonValue &data) override;

private:
        State state_;
        Timeline timeline_;
};

// TODO: Add support for invited and left rooms.
class Rooms : public Deserializable
{
public:
        QMap<QString, JoinedRoom> join() const { return join_; };
        QMap<QString, LeftRoom> leave() const { return leave_; };
        void deserialize(const QJsonValue &data) override;

private:
        QMap<QString, JoinedRoom> join_;
        QMap<QString, LeftRoom> leave_;
};

class SyncResponse : public Deserializable
{
public:
        void deserialize(const QJsonDocument &data) override;
        QString nextBatch() const { return next_batch_; };
        Rooms rooms() const { return rooms_; };

private:
        QString next_batch_;
        Rooms rooms_;
};