summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorNicolas Werner <nicolas.werner@hotmail.de>2021-01-11 19:15:43 +0100
committerNicolas Werner <nicolas.werner@hotmail.de>2021-01-11 19:15:43 +0100
commit947e40bd704da893f6bec84a20bc97cb069cf191 (patch)
treee22a027807b6d47922693c4172f2d7be45e3109a /src
parentMerge pull request #372 from deepbluev7/fix-pr-CI (diff)
downloadnheko-947e40bd704da893f6bec84a20bc97cb069cf191.tar.xz
Allow joins via other servers from a matrix: uri
Diffstat (limited to 'src')
-rw-r--r--src/ChatPage.cpp13
-rw-r--r--src/ChatPage.h1
-rw-r--r--src/dialogs/CreateRoom.cpp4
3 files changed, 12 insertions, 6 deletions
diff --git a/src/ChatPage.cpp b/src/ChatPage.cpp

index 33c993ae..4e70411d 100644 --- a/src/ChatPage.cpp +++ b/src/ChatPage.cpp
@@ -900,9 +900,14 @@ void ChatPage::joinRoom(const QString &room) { const auto room_id = room.toStdString(); + joinRoomVia(room_id, {}); +} +void +ChatPage::joinRoomVia(const std::string &room_id, const std::vector<std::string> &via) +{ http::client()->join_room( - room_id, [this, room_id](const mtx::responses::RoomId &, mtx::http::RequestErr err) { + room_id, via, [this, room_id](const mtx::responses::RoomId &, mtx::http::RequestErr err) { if (err) { emit showNotification( tr("Failed to join room: %1") @@ -1291,7 +1296,7 @@ ChatPage::startChat(QString userid) mtx::requests::CreateRoom req; req.preset = mtx::requests::Preset::PrivateChat; - req.visibility = mtx::requests::Visibility::Private; + req.visibility = mtx::common::RoomVisibility::Private; if (utils::localUser() != userid) req.invite = {userid.toStdString()}; emit ChatPage::instance()->createRoom(req); @@ -1380,7 +1385,7 @@ ChatPage::handleMatrixUri(const QByteArray &uri) } if (action == "join") { - joinRoom(mxid1); + joinRoomVia(targetRoomId, vias); } } else if (sigil1 == "room") { auto joined_rooms = cache::joinedRooms(); @@ -1398,7 +1403,7 @@ ChatPage::handleMatrixUri(const QByteArray &uri) } if (action == "join") { - joinRoom(mxid1); + joinRoomVia(mxid1.toStdString(), vias); } } } diff --git a/src/ChatPage.h b/src/ChatPage.h
index 004bb3e8..0516f87d 100644 --- a/src/ChatPage.h +++ b/src/ChatPage.h
@@ -117,6 +117,7 @@ public slots: void leaveRoom(const QString &room_id); void createRoom(const mtx::requests::CreateRoom &req); void joinRoom(const QString &room); + void joinRoomVia(const std::string &room_id, const std::vector<std::string> &via); void inviteUser(QString userid, QString reason); void kickUser(QString userid, QString reason); diff --git a/src/dialogs/CreateRoom.cpp b/src/dialogs/CreateRoom.cpp
index 459405ce..fed46e02 100644 --- a/src/dialogs/CreateRoom.cpp +++ b/src/dialogs/CreateRoom.cpp
@@ -115,9 +115,9 @@ CreateRoom::CreateRoom(QWidget *parent) static_cast<void (QComboBox::*)(const QString &)>(&QComboBox::currentTextChanged), [this](const QString &text) { if (text == "Private") { - request_.visibility = mtx::requests::Visibility::Private; + request_.visibility = mtx::common::RoomVisibility::Private; } else { - request_.visibility = mtx::requests::Visibility::Public; + request_.visibility = mtx::common::RoomVisibility::Public; } });