2017-04-06 02:06:42 +03:00
|
|
|
/*
|
|
|
|
* 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/>.
|
|
|
|
*/
|
|
|
|
|
2017-05-16 21:46:45 +03:00
|
|
|
#pragma once
|
2017-04-06 02:06:42 +03:00
|
|
|
|
2017-05-07 17:15:38 +03:00
|
|
|
#include <QJsonArray>
|
2017-04-06 02:06:42 +03:00
|
|
|
#include <QMap>
|
|
|
|
|
|
|
|
#include "Deserializable.h"
|
|
|
|
|
|
|
|
class Event : public Deserializable
|
|
|
|
{
|
|
|
|
public:
|
2017-10-22 19:03:55 +03:00
|
|
|
QJsonObject content() const { return content_; };
|
|
|
|
QJsonObject unsigned_content() const { return unsigned_; };
|
2017-04-06 02:06:42 +03:00
|
|
|
|
2017-10-22 19:03:55 +03:00
|
|
|
QString sender() const { return sender_; };
|
|
|
|
QString state_key() const { return state_key_; };
|
|
|
|
QString type() const { return type_; };
|
|
|
|
QString eventId() const { return event_id_; };
|
2017-04-06 02:06:42 +03:00
|
|
|
|
2017-10-22 19:03:55 +03:00
|
|
|
uint64_t timestamp() const { return origin_server_ts_; };
|
2017-04-06 02:06:42 +03:00
|
|
|
|
2017-09-10 12:59:21 +03:00
|
|
|
void deserialize(const QJsonValue &data) override;
|
2017-04-06 02:06:42 +03:00
|
|
|
|
|
|
|
private:
|
2017-09-10 12:59:21 +03:00
|
|
|
QJsonObject content_;
|
|
|
|
QJsonObject unsigned_;
|
2017-04-06 02:06:42 +03:00
|
|
|
|
2017-09-10 12:59:21 +03:00
|
|
|
QString sender_;
|
|
|
|
QString state_key_;
|
|
|
|
QString type_;
|
|
|
|
QString event_id_;
|
2017-04-06 02:06:42 +03:00
|
|
|
|
2017-09-10 12:59:21 +03:00
|
|
|
uint64_t origin_server_ts_;
|
2017-04-06 02:06:42 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
class State : public Deserializable
|
|
|
|
{
|
|
|
|
public:
|
2017-09-10 12:59:21 +03:00
|
|
|
void deserialize(const QJsonValue &data) override;
|
2017-10-22 19:03:55 +03:00
|
|
|
QJsonArray events() const { return events_; };
|
2017-04-06 02:06:42 +03:00
|
|
|
|
|
|
|
private:
|
2017-09-10 12:59:21 +03:00
|
|
|
QJsonArray events_;
|
2017-04-06 02:06:42 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
class Timeline : public Deserializable
|
|
|
|
{
|
|
|
|
public:
|
2017-10-22 19:03:55 +03:00
|
|
|
QJsonArray events() const { return events_; };
|
|
|
|
QString previousBatch() const { return prev_batch_; };
|
|
|
|
bool limited() const { return limited_; };
|
2017-04-06 02:06:42 +03:00
|
|
|
|
2017-09-10 12:59:21 +03:00
|
|
|
void deserialize(const QJsonValue &data) override;
|
2017-04-06 02:06:42 +03:00
|
|
|
|
|
|
|
private:
|
2017-09-10 12:59:21 +03:00
|
|
|
QJsonArray events_;
|
|
|
|
QString prev_batch_;
|
|
|
|
bool limited_;
|
2017-04-06 02:06:42 +03:00
|
|
|
};
|
|
|
|
|
2017-10-04 11:33:34 +03:00
|
|
|
// TODO: Add support for account_data, undread_notifications
|
2017-04-06 02:06:42 +03:00
|
|
|
class JoinedRoom : public Deserializable
|
|
|
|
{
|
|
|
|
public:
|
2017-10-22 19:03:55 +03:00
|
|
|
State state() const { return state_; };
|
|
|
|
Timeline timeline() const { return timeline_; };
|
|
|
|
QList<QString> typingUserIDs() const { return typingUserIDs_; };
|
2017-04-06 02:06:42 +03:00
|
|
|
|
2017-09-10 12:59:21 +03:00
|
|
|
void deserialize(const QJsonValue &data) override;
|
2017-04-06 02:06:42 +03:00
|
|
|
|
|
|
|
private:
|
2017-09-10 12:59:21 +03:00
|
|
|
State state_;
|
|
|
|
Timeline timeline_;
|
2017-10-04 11:33:34 +03:00
|
|
|
QList<QString> typingUserIDs_;
|
2017-09-10 12:59:21 +03:00
|
|
|
/* AccountData account_data_; */
|
|
|
|
/* UnreadNotifications unread_notifications_; */
|
2017-04-06 02:06:42 +03:00
|
|
|
};
|
|
|
|
|
2017-10-01 19:49:36 +03:00
|
|
|
class LeftRoom : public Deserializable
|
|
|
|
{
|
|
|
|
public:
|
2017-10-22 19:03:55 +03:00
|
|
|
State state() const { return state_; };
|
|
|
|
Timeline timeline() const { return timeline_; };
|
2017-10-01 19:49:36 +03:00
|
|
|
|
|
|
|
void deserialize(const QJsonValue &data) override;
|
|
|
|
|
|
|
|
private:
|
|
|
|
State state_;
|
|
|
|
Timeline timeline_;
|
|
|
|
};
|
|
|
|
|
2017-04-06 02:06:42 +03:00
|
|
|
// TODO: Add support for invited and left rooms.
|
|
|
|
class Rooms : public Deserializable
|
|
|
|
{
|
|
|
|
public:
|
2017-10-22 19:03:55 +03:00
|
|
|
QMap<QString, JoinedRoom> join() const { return join_; };
|
|
|
|
QMap<QString, LeftRoom> leave() const { return leave_; };
|
2017-09-10 12:59:21 +03:00
|
|
|
void deserialize(const QJsonValue &data) override;
|
2017-04-06 02:06:42 +03:00
|
|
|
|
|
|
|
private:
|
2017-09-10 12:59:21 +03:00
|
|
|
QMap<QString, JoinedRoom> join_;
|
2017-10-01 19:49:36 +03:00
|
|
|
QMap<QString, LeftRoom> leave_;
|
2017-04-06 02:06:42 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
class SyncResponse : public Deserializable
|
|
|
|
{
|
|
|
|
public:
|
2017-09-10 12:59:21 +03:00
|
|
|
void deserialize(const QJsonDocument &data) override;
|
2017-10-22 19:03:55 +03:00
|
|
|
QString nextBatch() const { return next_batch_; };
|
|
|
|
Rooms rooms() const { return rooms_; };
|
2017-04-06 02:06:42 +03:00
|
|
|
|
|
|
|
private:
|
2017-09-10 12:59:21 +03:00
|
|
|
QString next_batch_;
|
|
|
|
Rooms rooms_;
|
2017-04-06 02:06:42 +03:00
|
|
|
};
|