aboutsummaryrefslogtreecommitdiff
path: root/events/event.cpp
diff options
context:
space:
mode:
authorKitsune Ral <KitsuneRal@users.noreply.github.com>2016-04-05 20:46:45 +0300
committerKitsune Ral <KitsuneRal@users.noreply.github.com>2016-04-05 20:46:45 +0300
commit7abdc7ec386776602758d84edc6b583d6dad4ecd (patch)
tree247b6affaa7828e5122f1c338dd35a729cc4ee19 /events/event.cpp
downloadlibquotient-7abdc7ec386776602758d84edc6b583d6dad4ecd.tar.gz
libquotient-7abdc7ec386776602758d84edc6b583d6dad4ecd.zip
Imported the current source tree from Quaternion/lib.
Diffstat (limited to 'events/event.cpp')
-rw-r--r--events/event.cpp148
1 files changed, 148 insertions, 0 deletions
diff --git a/events/event.cpp b/events/event.cpp
new file mode 100644
index 00000000..c3e94ce1
--- /dev/null
+++ b/events/event.cpp
@@ -0,0 +1,148 @@
+/******************************************************************************
+ * Copyright (C) 2015 Felix Rohrbach <kde@fxrh.de>
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library 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
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
+
+#include "event.h"
+
+#include <QtCore/QJsonObject>
+#include <QtCore/QJsonDocument>
+#include <QtCore/QDateTime>
+#include <QtCore/QDebug>
+
+#include "roommessageevent.h"
+#include "roomnameevent.h"
+#include "roomaliasesevent.h"
+#include "roomcanonicalaliasevent.h"
+#include "roommemberevent.h"
+#include "roomtopicevent.h"
+#include "typingevent.h"
+#include "receiptevent.h"
+#include "unknownevent.h"
+
+using namespace QMatrixClient;
+
+class Event::Private
+{
+ public:
+ EventType type;
+ QString id;
+ QDateTime timestamp;
+ QString roomId;
+ QString originalJson;
+};
+
+Event::Event(EventType type)
+ : d(new Private)
+{
+ d->type = type;
+}
+
+Event::~Event()
+{
+ delete d;
+}
+
+EventType Event::type() const
+{
+ return d->type;
+}
+
+QString Event::id() const
+{
+ return d->id;
+}
+
+QDateTime Event::timestamp() const
+{
+ return d->timestamp;
+}
+
+QString Event::roomId() const
+{
+ return d->roomId;
+}
+
+QString Event::originalJson() const
+{
+ return d->originalJson;
+}
+
+Event* Event::fromJson(const QJsonObject& obj)
+{
+ //qDebug() << obj.value("type").toString();
+ if( obj.value("type").toString() == "m.room.message" )
+ {
+ return RoomMessageEvent::fromJson(obj);
+ }
+ if( obj.value("type").toString() == "m.room.name" )
+ {
+ return RoomNameEvent::fromJson(obj);
+ }
+ if( obj.value("type").toString() == "m.room.aliases" )
+ {
+ return RoomAliasesEvent::fromJson(obj);
+ }
+ if( obj.value("type").toString() == "m.room.canonical_alias" )
+ {
+ return RoomCanonicalAliasEvent::fromJson(obj);
+ }
+ if( obj.value("type").toString() == "m.room.member" )
+ {
+ return RoomMemberEvent::fromJson(obj);
+ }
+ if( obj.value("type").toString() == "m.room.topic" )
+ {
+ return RoomTopicEvent::fromJson(obj);
+ }
+ if( obj.value("type").toString() == "m.typing" )
+ {
+ qDebug() << "m.typing...";
+ return TypingEvent::fromJson(obj);
+ }
+ if( obj.value("type").toString() == "m.receipt" )
+ {
+ return ReceiptEvent::fromJson(obj);
+ }
+ //qDebug() << "Unknown event";
+ return UnknownEvent::fromJson(obj);
+}
+
+bool Event::parseJson(const QJsonObject& obj)
+{
+ d->originalJson = QString::fromUtf8(QJsonDocument(obj).toJson());
+ bool correct = true;
+ if( obj.contains("event_id") )
+ {
+ d->id = obj.value("event_id").toString();
+ } else {
+ correct = false;
+ qDebug() << "Event: can't find event_id";
+ }
+ if( obj.contains("origin_server_ts") )
+ {
+ d->timestamp = QDateTime::fromMSecsSinceEpoch( (quint64) obj.value("origin_server_ts").toDouble(), Qt::UTC );
+ } else {
+ correct = false;
+ qDebug() << "Event: can't find ts";
+ //qDebug() << obj;
+ }
+ if( obj.contains("room_id") )
+ {
+ d->roomId = obj.value("room_id").toString();
+ }
+ return correct;
+}