diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2018-09-17 19:31:10 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-17 19:31:10 +0900 |
commit | 9fb5fd1181fc74a040630df333a20ddd29cd7b28 (patch) | |
tree | 9039428087b19dab2553e23818b04222d79ff3e2 | |
parent | eac9bfcb9aaf4426d16b47d7b2128a9fad68de70 (diff) | |
parent | c1a3dd719b735f7f77306d92baf5923df4fb0b10 (diff) | |
download | libquotient-9fb5fd1181fc74a040630df333a20ddd29cd7b28.tar.gz libquotient-9fb5fd1181fc74a040630df333a20ddd29cd7b28.zip |
Merge pull request #244 from delijati/master
Updated voip pull request #110
-rw-r--r-- | CMakeLists.txt | 4 | ||||
-rw-r--r-- | lib/connection.cpp | 10 | ||||
-rw-r--r-- | lib/connection.h | 2 | ||||
-rw-r--r-- | lib/events/callanswerevent.cpp | 76 | ||||
-rw-r--r-- | lib/events/callanswerevent.h | 68 | ||||
-rw-r--r-- | lib/events/callcandidatesevent.cpp | 69 | ||||
-rw-r--r-- | lib/events/callcandidatesevent.h | 59 | ||||
-rw-r--r-- | lib/events/callhangupevent.cpp | 59 | ||||
-rw-r--r-- | lib/events/callhangupevent.h | 54 | ||||
-rw-r--r-- | lib/events/callinviteevent.cpp | 68 | ||||
-rw-r--r-- | lib/events/callinviteevent.h | 65 | ||||
-rw-r--r-- | lib/room.cpp | 70 | ||||
-rw-r--r-- | lib/room.h | 14 | ||||
-rw-r--r-- | libqmatrixclient.pri | 8 |
14 files changed, 626 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index be1541ac..48c99715 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -89,6 +89,10 @@ set(libqmatrixclient_SRCS lib/events/roommemberevent.cpp lib/events/typingevent.cpp lib/events/receiptevent.cpp + lib/events/callanswerevent.cpp + lib/events/callcandidatesevent.cpp + lib/events/callhangupevent.cpp + lib/events/callinviteevent.cpp lib/events/directchatevent.cpp lib/jobs/requestdata.cpp lib/jobs/basejob.cpp diff --git a/lib/connection.cpp b/lib/connection.cpp index a1fbd903..3d635a7e 100644 --- a/lib/connection.cpp +++ b/lib/connection.cpp @@ -34,6 +34,7 @@ #include "jobs/syncjob.h" #include "jobs/mediathumbnailjob.h" #include "jobs/downloadfilejob.h" +#include "csapi/voip.h" #include <QtNetwork/QDnsLookup> #include <QtCore/QFile> @@ -1206,3 +1207,12 @@ void Connection::setCacheState(bool newValue) emit cacheStateChanged(); } } + +void Connection::getTurnServers() +{ + auto job = callApi<GetTurnServerJob>(); + connect( job, &GetTurnServerJob::success, [=] { + emit turnServersChanged(job->data()); + }); + +} diff --git a/lib/connection.h b/lib/connection.h index 3eefb625..cfad8774 100644 --- a/lib/connection.h +++ b/lib/connection.h @@ -271,6 +271,7 @@ namespace QMatrixClient [[deprecated("Use accessToken() instead")]] Q_INVOKABLE QString token() const; + Q_INVOKABLE void getTurnServers(); /** * Call this before first sync to load from previously saved file. @@ -650,6 +651,7 @@ namespace QMatrixClient IgnoredUsersList removals); void cacheStateChanged(); + void turnServersChanged(const QJsonObject& servers); protected: /** diff --git a/lib/events/callanswerevent.cpp b/lib/events/callanswerevent.cpp new file mode 100644 index 00000000..c28ad305 --- /dev/null +++ b/lib/events/callanswerevent.cpp @@ -0,0 +1,76 @@ +/****************************************************************************** + * Copyright (C) 2017 Marius Gripsgard <marius@ubports.com> + * + * 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 "callanswerevent.h" + +#include "event.h" + +#include "logging.h" + +#include <QtCore/QJsonDocument> + +/* +m.call.answer +{ + "age": 242352, + "content": { + "answer": { + "sdp": "v=0\r\no=- 6584580628695956864 2 IN IP4 127.0.0.1[...]", + "type": "answer" + }, + "call_id": "12345", + "lifetime": 60000, + "version": 0 + }, + "event_id": "$WLGTSEFSEF:localhost", + "origin_server_ts": 1431961217939, + "room_id": "!Cuyf34gef24t:localhost", + "sender": "@example:localhost", + "type": "m.call.answer" +} +*/ + +using namespace QMatrixClient; + +CallAnswerEvent::CallAnswerEvent(const QJsonObject& obj) + : RoomEvent(typeId(), obj) + , _lifetime(contentJson()["lifetime"].toInt()) + , _sdp(contentJson()["answer"].toObject()["sdp"].toString()) + , _callId(contentJson()["call_id"].toString()) + , _version(contentJson()["version"].toInt()) +{ + qCDebug(EVENTS) << "Call Answer event"; +} + +CallAnswerEvent::CallAnswerEvent(const QString& callId, const int lifetime, + const QString& sdp) + : RoomEvent(typeId(), NULL) +{ + _version = 0; + _callId = callId; + _lifetime = lifetime; + _sdp = sdp; +} + +CallAnswerEvent::CallAnswerEvent(const QString& callId, const QString& sdp) + : RoomEvent(typeId(), NULL) +{ + _version = 0; + _callId = callId; + _sdp = sdp; +} diff --git a/lib/events/callanswerevent.h b/lib/events/callanswerevent.h new file mode 100644 index 00000000..b5b47899 --- /dev/null +++ b/lib/events/callanswerevent.h @@ -0,0 +1,68 @@ +/****************************************************************************** + * Copyright (C) 2017 Marius Gripsgard <marius@ubports.com> + * + * 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 + */ + +#pragma once + +#include "roomevent.h" + +namespace QMatrixClient +{ + class CallAnswerEvent: public RoomEvent + { + public: + DEFINE_EVENT_TYPEID("m.call.answer", CallAnswerEvent) + + explicit CallAnswerEvent(const QJsonObject& obj); + + explicit CallAnswerEvent(const QString& callId, const int lifetime, + const QString& sdp); + explicit CallAnswerEvent(const QString& callId, const QString& sdp); + + bool isStateEvent() const override { return true; } + + const int lifetime() const { return _lifetime; } + const QString& sdp() const { return _sdp; } + const QString& callId() const { return _callId; } + const int version() const { return _version; } + + QJsonObject toJson() const + { + QJsonObject answer; + answer.insert("sdp", _sdp); + answer.insert("type", QStringLiteral("answer")); + + QJsonObject obj; + obj.insert("call_id", _callId); + obj.insert("version", _version); + if (_lifetime != NULL) + obj.insert("lifetime", _lifetime); + obj.insert("answer", answer); + return obj; + } + + private: + int _lifetime; + QJsonObject _answer; + QString _sdp; + QString _callId; + int _version; + }; + + REGISTER_EVENT_TYPE(CallAnswerEvent) + DEFINE_EVENTTYPE_ALIAS(CallAnswer, CallAnswerEvent) +} // namespace QMatrixClient diff --git a/lib/events/callcandidatesevent.cpp b/lib/events/callcandidatesevent.cpp new file mode 100644 index 00000000..40d9ce05 --- /dev/null +++ b/lib/events/callcandidatesevent.cpp @@ -0,0 +1,69 @@ +/****************************************************************************** + * Copyright (C) 2017 Marius Gripsgard <marius@ubports.com> + * + * 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 "callcandidatesevent.h" + +#include "event.h" + +#include "logging.h" + +#include <QtCore/QJsonDocument> + +/* +m.call.candidates +{ + "age": 242352, + "content": { + "call_id": "12345", + "candidates": [ + { + "candidate": "candidate:863018703 1 udp 2122260223 10.9.64.156 43670 typ host generation 0", + "sdpMLineIndex": 0, + "sdpMid": "audio" + } + ], + "version": 0 + }, + "event_id": "$WLGTSEFSEF:localhost", + "origin_server_ts": 1431961217939, + "room_id": "!Cuyf34gef24t:localhost", + "sender": "@example:localhost", + "type": "m.call.candidates" +} +*/ + +using namespace QMatrixClient; + + +CallCandidatesEvent::CallCandidatesEvent(const QJsonObject& obj) + : RoomEvent(typeId(), obj) + , _candidates(contentJson()["candidates"].toArray()) + , _callId(contentJson()["call_id"].toString()) + , _version(contentJson()["version"].toInt()) +{ + qCDebug(EVENTS) << "Call Candidates event"; +} + +CallCandidatesEvent::CallCandidatesEvent(const QString& callId, + const QJsonArray& candidates) + : RoomEvent(typeId(), NULL) +{ + _version = 0; + _callId = callId; + _candidates = candidates; +} diff --git a/lib/events/callcandidatesevent.h b/lib/events/callcandidatesevent.h new file mode 100644 index 00000000..8e66499d --- /dev/null +++ b/lib/events/callcandidatesevent.h @@ -0,0 +1,59 @@ +/****************************************************************************** + * Copyright (C) 2017 Marius Gripsgard <marius@ubports.com> + * + * 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 + */ + +#pragma once + +#include "roomevent.h" +#include <QtCore/QJsonArray> + +namespace QMatrixClient +{ + class CallCandidatesEvent: public RoomEvent + { + public: + DEFINE_EVENT_TYPEID("m.call.candidates", CallCandidatesEvent) + + explicit CallCandidatesEvent(const QJsonObject& obj); + + explicit CallCandidatesEvent(const QString& callId, + const QJsonArray& candidates); + + bool isStateEvent() const override { return true; } + + const QJsonArray& candidates() const { return _candidates; } + const QString& callId() const { return _callId; } + const int version() const { return _version; } + + QJsonObject toJson() const + { + QJsonObject obj; + obj.insert("call_id", _callId); + obj.insert("version", _version); + obj.insert("candidates", _candidates); + return obj; + } + + private: + QJsonArray _candidates; + QString _callId; + int _version; + }; + + REGISTER_EVENT_TYPE(CallCandidatesEvent) + DEFINE_EVENTTYPE_ALIAS(CallCandidates, CallCandidatesEvent) +} diff --git a/lib/events/callhangupevent.cpp b/lib/events/callhangupevent.cpp new file mode 100644 index 00000000..27f41a5f --- /dev/null +++ b/lib/events/callhangupevent.cpp @@ -0,0 +1,59 @@ +/****************************************************************************** + * Copyright (C) 2017 Marius Gripsgard <marius@ubports.com> + * + * 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 "callhangupevent.h" + +#include "event.h" + +#include "logging.h" + +#include <QtCore/QJsonDocument> + +/* +m.call.hangup +{ + "age": 242352, + "content": { + "call_id": "12345", + "version": 0 + }, + "event_id": "$WLGTSEFSEF:localhost", + "origin_server_ts": 1431961217939, + "room_id": "!Cuyf34gef24t:localhost", + "sender": "@example:localhost", + "type": "m.call.hangup" +} +*/ + +using namespace QMatrixClient; + + +CallHangupEvent::CallHangupEvent(const QJsonObject& obj) + : RoomEvent(typeId(), obj) + , _callId(contentJson()["call_id"].toString()) + , _version(contentJson()["version"].toInt()) +{ + qCDebug(EVENTS) << "Call Hangup event"; +} + +CallHangupEvent::CallHangupEvent(const QString& callId) + : RoomEvent(typeId(), NULL) +{ + _version = 0; + _callId = callId; +} diff --git a/lib/events/callhangupevent.h b/lib/events/callhangupevent.h new file mode 100644 index 00000000..57e565a6 --- /dev/null +++ b/lib/events/callhangupevent.h @@ -0,0 +1,54 @@ +/****************************************************************************** + * Copyright (C) 2017 Marius Gripsgard <marius@ubports.com> + * + * 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 + */ + +#pragma once + +#include "roomevent.h" + +namespace QMatrixClient +{ + class CallHangupEvent: public RoomEvent + { + public: + DEFINE_EVENT_TYPEID("m.call.hangup", CallHangupEvent) + + explicit CallHangupEvent(const QJsonObject& obj); + + explicit CallHangupEvent(const QString& callId); + + bool isStateEvent() const override { return true; } + + const QString& callId() const { return _callId; } + const int version() const { return _version; } + + QJsonObject toJson() const + { + QJsonObject obj; + obj.insert("call_id", _callId); + obj.insert("version", _version); + return obj; + } + + private: + QString _callId; + int _version; + }; + + REGISTER_EVENT_TYPE(CallHangupEvent) + DEFINE_EVENTTYPE_ALIAS(CallHangup, CallHangupEvent) +} diff --git a/lib/events/callinviteevent.cpp b/lib/events/callinviteevent.cpp new file mode 100644 index 00000000..71c49d66 --- /dev/null +++ b/lib/events/callinviteevent.cpp @@ -0,0 +1,68 @@ +/****************************************************************************** + * Copyright (C) 2017 Marius Gripsgard <marius@ubports.com> + * + * 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 "callinviteevent.h" + +#include "event.h" + +#include "logging.h" + +#include <QtCore/QJsonDocument> + +/* +m.call.invite +{ + "age": 242352, + "content": { + "call_id": "12345", + "lifetime": 60000, + "offer": { + "sdp": "v=0\r\no=- 6584580628695956864 2 IN IP4 127.0.0.1[...]", + "type": "offer" + }, + "version": 0 + }, + "event_id": "$WLGTSEFSEF:localhost", + "origin_server_ts": 1431961217939, + "room_id": "!Cuyf34gef24t:localhost", + "sender": "@example:localhost", + "type": "m.call.invite" +} +*/ + +using namespace QMatrixClient; + +CallInviteEvent::CallInviteEvent(const QJsonObject& obj) + : RoomEvent(typeId(), obj) + , _lifetime(contentJson()["lifetime"].toInt()) + , _sdp(contentJson()["offer"].toObject()["sdp"].toString()) + , _callId(contentJson()["call_id"].toString()) + , _version(contentJson()["version"].toInt()) +{ + qCDebug(EVENTS) << "Call Invite event"; +} + +CallInviteEvent::CallInviteEvent(const QString& callId, const int lifetime, + const QString& sdp) + : RoomEvent(typeId(), NULL) +{ + _version = 0; + _callId = callId; + _lifetime = lifetime; + _sdp = sdp; +} diff --git a/lib/events/callinviteevent.h b/lib/events/callinviteevent.h new file mode 100644 index 00000000..029b2e3d --- /dev/null +++ b/lib/events/callinviteevent.h @@ -0,0 +1,65 @@ +/****************************************************************************** + * Copyright (C) 2017 Marius Gripsgard <marius@ubports.com> + * + * 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 + */ + +#pragma once + +#include "roomevent.h" + +namespace QMatrixClient +{ + class CallInviteEvent: public RoomEvent + { + public: + DEFINE_EVENT_TYPEID("m.call.invite", CallInviteEvent) + + explicit CallInviteEvent(const QJsonObject& obj); + + explicit CallInviteEvent(const QString& callId, const int lifetime, + const QString& sdp); + + bool isStateEvent() const override { return true; } + + const int lifetime() const { return _lifetime; } + const QString& sdp() const { return _sdp; } + const QString& callId() const { return _callId; } + const int version() const { return _version; } + + QJsonObject toJson() const + { + QJsonObject offer; + offer.insert("sdp", _sdp); + offer.insert("type", QStringLiteral("offer")); + + QJsonObject obj; + obj.insert("call_id", _callId); + obj.insert("version", _version); + obj.insert("lifetime", _lifetime); + obj.insert("offer", offer); + return obj; + } + + private: + int _lifetime; + QString _sdp; + QString _callId; + int _version; + }; + + REGISTER_EVENT_TYPE(CallInviteEvent) + DEFINE_EVENTTYPE_ALIAS(CallInvite, CallInviteEvent) +} diff --git a/lib/room.cpp b/lib/room.cpp index c34c0e44..b7e8195d 100644 --- a/lib/room.cpp +++ b/lib/room.cpp @@ -33,6 +33,10 @@ #include "events/roommemberevent.h" #include "events/typingevent.h" #include "events/receiptevent.h" +#include "events/callinviteevent.h" +#include "events/callcandidatesevent.h" +#include "events/callanswerevent.h" +#include "events/callhangupevent.h" #include "events/redactionevent.h" #include "jobs/mediathumbnailjob.h" #include "jobs/downloadfilejob.h" @@ -1287,6 +1291,60 @@ bool isEchoEvent(const RoomEventPtr& le, const PendingEventItem& re) return le->contentJson() == re->contentJson(); } +bool Room::processCall(Room* room, const RoomEvent* event) +{ + if (!room->isCallSupported()) { + qCDebug(MAIN) << "Got call event in room with more then two" + << "members, Ignoring this event!"; + return false; + } + emit callEvent(room, event); + return false; +} + +bool Room::isCallSupported() const +{ + return d->membersMap.size() == 2; +} + +void Room::inviteCall(const QString& callId, const int lifetime, + const QString& sdp) +{ + Q_ASSERT(isCallSupported()); + auto *evt = new CallInviteEvent(callId, lifetime, sdp); + postEvent(evt); +} + +void Room::callCandidates(const QString& callId, + const QJsonArray& candidates) +{ + Q_ASSERT(isCallSupported()); + auto *evt = new CallCandidatesEvent(callId, candidates); + postEvent(evt); +} + +void Room::answerCall(const QString& callId, const int lifetime, + const QString& sdp) +{ + Q_ASSERT(isCallSupported()); + auto *evt = new CallAnswerEvent(callId, lifetime, sdp); + postEvent(evt); +} + +void Room::answerCall(const QString& callId, const QString& sdp) +{ + Q_ASSERT(isCallSupported()); + auto *evt = new CallAnswerEvent(callId, sdp); + postEvent(evt); +} + +void Room::hangupCall(const QString& callId) +{ + Q_ASSERT(isCallSupported()); + auto *evt = new CallHangupEvent(callId); + postEvent(evt); +} + void Room::getPreviousContent(int limit) { d->getPreviousContent(limit); @@ -1762,6 +1820,18 @@ bool Room::processStateEvent(const RoomEvent& e) } return false; } + , [this] (const CallAnswerEvent& evt) { + return processCall(this, &evt); + } + , [this] (const CallCandidatesEvent& evt) { + return processCall(this, &evt); + } + , [this] (const CallHangupEvent& evt) { + return processCall(this, &evt); + } + , [this] (const CallInviteEvent& evt) { + return processCall(this, &evt); + } , [this] (const EncryptionEvent& evt) { d->encryptionAlgorithm = evt.algorithm(); qCDebug(MAIN) << "Encryption switched on in room" << id() @@ -302,6 +302,17 @@ namespace QMatrixClient MemberSorter memberSorter() const; + Q_INVOKABLE void inviteCall(const QString& callId, + const int lifetime, const QString& sdp); + Q_INVOKABLE void callCandidates(const QString& callId, + const QJsonArray& candidates); + Q_INVOKABLE void answerCall(const QString& callId, const int lifetime, + const QString& sdp); + Q_INVOKABLE void answerCall(const QString& callId, + const QString& sdp); + Q_INVOKABLE void hangupCall(const QString& callId); + Q_INVOKABLE bool isCallSupported() const; + public slots: QString postMessage(const QString& plainText, MessageEventType type); QString postPlainText(const QString& plainText); @@ -402,6 +413,7 @@ namespace QMatrixClient void fileTransferFailed(QString id, QString errorMessage = {}); void fileTransferCancelled(QString id); + void callEvent(Room* room, const RoomEvent* event); /// The room is about to be deleted void beforeDestruction(Room*); @@ -424,6 +436,8 @@ namespace QMatrixClient const RoomEvent& /*after*/) { } private: + bool processCall(Room* room, const RoomEvent* event); + class Private; Private* d; }; diff --git a/libqmatrixclient.pri b/libqmatrixclient.pri index f931be32..2bb3b499 100644 --- a/libqmatrixclient.pri +++ b/libqmatrixclient.pri @@ -28,6 +28,10 @@ HEADERS += \ $$SRCPATH/events/roomavatarevent.h \ $$SRCPATH/events/typingevent.h \ $$SRCPATH/events/receiptevent.h \ + $$SRCPATH/events/callanswerevent.h \ + $$SRCPATH/events/callcandidatesevent.h \ + $$SRCPATH/events/callhangupevent.h \ + $$SRCPATH/events/callinviteevent.h \ $$SRCPATH/events/accountdataevents.h \ $$SRCPATH/events/directchatevent.h \ $$SRCPATH/events/redactionevent.h \ @@ -62,6 +66,10 @@ SOURCES += \ $$SRCPATH/events/roommessageevent.cpp \ $$SRCPATH/events/roommemberevent.cpp \ $$SRCPATH/events/typingevent.cpp \ + $$SRCPATH/events/callanswerevent.cpp \ + $$SRCPATH/events/callcandidatesevent.cpp \ + $$SRCPATH/events/callhangupevent.cpp \ + $$SRCPATH/events/callinviteevent.cpp \ $$SRCPATH/events/receiptevent.cpp \ $$SRCPATH/events/directchatevent.cpp \ $$SRCPATH/jobs/requestdata.cpp \ |