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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef SYNC_H
|
|
|
|
#define SYNC_H
|
|
|
|
|
|
|
|
#include <QJsonDocument>
|
|
|
|
#include <QMap>
|
|
|
|
#include <QString>
|
|
|
|
|
|
|
|
#include "Deserializable.h"
|
|
|
|
|
|
|
|
class Event : public Deserializable
|
|
|
|
{
|
|
|
|
public:
|
2017-04-06 19:56:33 +03:00
|
|
|
inline QJsonObject content() const;
|
|
|
|
inline QJsonObject unsigned_content() const;
|
2017-04-06 02:06:42 +03:00
|
|
|
|
2017-04-06 19:56:33 +03:00
|
|
|
inline QString sender() const;
|
|
|
|
inline QString state_key() const;
|
|
|
|
inline QString type() const;
|
|
|
|
inline QString eventId() const;
|
2017-04-06 02:06:42 +03:00
|
|
|
|
2017-04-06 19:56:33 +03:00
|
|
|
inline uint64_t timestamp() const;
|
2017-04-06 02:06:42 +03:00
|
|
|
|
2017-04-09 18:09:09 +03:00
|
|
|
void deserialize(const QJsonValue &data) override;
|
2017-04-06 02:06:42 +03:00
|
|
|
|
|
|
|
private:
|
|
|
|
QJsonObject content_;
|
|
|
|
QJsonObject unsigned_;
|
|
|
|
|
|
|
|
QString sender_;
|
|
|
|
QString state_key_;
|
|
|
|
QString type_;
|
|
|
|
QString event_id_;
|
|
|
|
|
|
|
|
uint64_t origin_server_ts_;
|
|
|
|
};
|
|
|
|
|
2017-04-06 19:56:33 +03:00
|
|
|
inline QJsonObject Event::content() const
|
|
|
|
{
|
|
|
|
return content_;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline QJsonObject Event::unsigned_content() const
|
|
|
|
{
|
|
|
|
return unsigned_;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline QString Event::sender() const
|
|
|
|
{
|
|
|
|
return sender_;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline QString Event::state_key() const
|
|
|
|
{
|
|
|
|
return state_key_;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline QString Event::type() const
|
|
|
|
{
|
|
|
|
return type_;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline QString Event::eventId() const
|
|
|
|
{
|
|
|
|
return event_id_;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline uint64_t Event::timestamp() const
|
|
|
|
{
|
|
|
|
return origin_server_ts_;
|
|
|
|
}
|
|
|
|
|
2017-04-06 02:06:42 +03:00
|
|
|
class State : public Deserializable
|
|
|
|
{
|
|
|
|
public:
|
2017-04-09 18:09:09 +03:00
|
|
|
void deserialize(const QJsonValue &data) override;
|
2017-04-06 19:56:33 +03:00
|
|
|
inline QList<Event> events() const;
|
2017-04-06 02:06:42 +03:00
|
|
|
|
|
|
|
private:
|
|
|
|
QList<Event> events_;
|
|
|
|
};
|
|
|
|
|
2017-04-06 19:56:33 +03:00
|
|
|
inline QList<Event> State::events() const
|
|
|
|
{
|
|
|
|
return events_;
|
|
|
|
}
|
|
|
|
|
2017-04-06 02:06:42 +03:00
|
|
|
class Timeline : public Deserializable
|
|
|
|
{
|
|
|
|
public:
|
2017-04-06 19:56:33 +03:00
|
|
|
inline QList<Event> events() const;
|
|
|
|
inline QString previousBatch() const;
|
|
|
|
inline bool limited() const;
|
2017-04-06 02:06:42 +03:00
|
|
|
|
2017-04-09 18:09:09 +03:00
|
|
|
void deserialize(const QJsonValue &data) override;
|
2017-04-06 02:06:42 +03:00
|
|
|
|
|
|
|
private:
|
|
|
|
QList<Event> events_;
|
|
|
|
QString prev_batch_;
|
|
|
|
bool limited_;
|
|
|
|
};
|
|
|
|
|
2017-04-06 19:56:33 +03:00
|
|
|
inline QList<Event> Timeline::events() const
|
|
|
|
{
|
|
|
|
return events_;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline QString Timeline::previousBatch() const
|
|
|
|
{
|
|
|
|
return prev_batch_;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline bool Timeline::limited() const
|
|
|
|
{
|
|
|
|
return limited_;
|
|
|
|
}
|
|
|
|
|
2017-04-06 02:06:42 +03:00
|
|
|
// TODO: Add support for ehpmeral, account_data, undread_notifications
|
|
|
|
class JoinedRoom : public Deserializable
|
|
|
|
{
|
|
|
|
public:
|
2017-04-06 19:56:33 +03:00
|
|
|
inline State state() const;
|
|
|
|
inline Timeline timeline() const;
|
2017-04-06 02:06:42 +03:00
|
|
|
|
2017-04-09 18:09:09 +03:00
|
|
|
void deserialize(const QJsonValue &data) override;
|
2017-04-06 02:06:42 +03:00
|
|
|
|
|
|
|
private:
|
|
|
|
State state_;
|
|
|
|
Timeline timeline_;
|
|
|
|
/* Ephemeral ephemeral_; */
|
|
|
|
/* AccountData account_data_; */
|
|
|
|
/* UnreadNotifications unread_notifications_; */
|
|
|
|
};
|
|
|
|
|
2017-04-06 19:56:33 +03:00
|
|
|
inline State JoinedRoom::state() const
|
|
|
|
{
|
|
|
|
return state_;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline Timeline JoinedRoom::timeline() const
|
|
|
|
{
|
|
|
|
return timeline_;
|
|
|
|
}
|
|
|
|
|
2017-04-06 02:06:42 +03:00
|
|
|
// TODO: Add support for invited and left rooms.
|
|
|
|
class Rooms : public Deserializable
|
|
|
|
{
|
|
|
|
public:
|
2017-04-06 19:56:33 +03:00
|
|
|
inline QMap<QString, JoinedRoom> join() const;
|
2017-04-09 18:09:09 +03:00
|
|
|
void deserialize(const QJsonValue &data) override;
|
2017-04-06 02:06:42 +03:00
|
|
|
|
|
|
|
private:
|
|
|
|
QMap<QString, JoinedRoom> join_;
|
|
|
|
};
|
|
|
|
|
2017-04-06 19:56:33 +03:00
|
|
|
inline QMap<QString, JoinedRoom> Rooms::join() const
|
|
|
|
{
|
|
|
|
return join_;
|
|
|
|
}
|
|
|
|
|
2017-04-06 02:06:42 +03:00
|
|
|
class SyncResponse : public Deserializable
|
|
|
|
{
|
|
|
|
public:
|
2017-04-09 18:09:09 +03:00
|
|
|
void deserialize(const QJsonDocument &data) override;
|
2017-04-06 19:56:33 +03:00
|
|
|
inline QString nextBatch() const;
|
|
|
|
inline Rooms rooms() const;
|
2017-04-06 02:06:42 +03:00
|
|
|
|
|
|
|
private:
|
|
|
|
QString next_batch_;
|
|
|
|
Rooms rooms_;
|
|
|
|
};
|
|
|
|
|
2017-04-06 19:56:33 +03:00
|
|
|
inline Rooms SyncResponse::rooms() const
|
|
|
|
{
|
|
|
|
return rooms_;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline QString SyncResponse::nextBatch() const
|
|
|
|
{
|
|
|
|
return next_batch_;
|
|
|
|
}
|
|
|
|
|
2017-04-06 02:06:42 +03:00
|
|
|
#endif // SYNC_H
|