/****************************************************************************** * Copyright (C) 2015 Felix Rohrbach * * 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 #include #include #include #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; }