nheko/src/ChatPage.cpp

1408 lines
49 KiB
C++
Raw Normal View History

2021-03-05 00:35:15 +01:00
// SPDX-FileCopyrightText: 2017 Konstantinos Sideris <siderisk@auth.gr>
// SPDX-FileCopyrightText: 2021 Nheko Contributors
//
// SPDX-License-Identifier: GPL-3.0-or-later
2017-04-06 01:06:42 +02:00
#include <QApplication>
2020-12-18 03:04:18 +01:00
#include <QInputDialog>
2020-05-02 16:44:50 +02:00
#include <QMessageBox>
2017-04-06 01:06:42 +02:00
2020-10-27 17:45:28 +01:00
#include <mtx/responses.hpp>
#include "AvatarProvider.h"
2017-10-28 14:46:39 +02:00
#include "Cache.h"
2019-12-15 02:56:04 +01:00
#include "Cache_p.h"
2017-04-06 01:06:42 +02:00
#include "ChatPage.h"
#include "EventAccessors.h"
2018-07-17 15:37:25 +02:00
#include "Logging.h"
#include "MainWindow.h"
2017-10-28 14:46:39 +02:00
#include "MatrixClient.h"
#include "UserSettingsPage.h"
#include "Utils.h"
#include "encryption/DeviceVerificationFlow.h"
#include "encryption/Olm.h"
2018-07-17 15:37:25 +02:00
#include "ui/OverlayModal.h"
#include "ui/Theme.h"
#include "ui/UserProfile.h"
#include "voip/CallManager.h"
2017-04-06 01:06:42 +02:00
2018-05-05 21:40:24 +02:00
#include "notifications/Manager.h"
2019-11-09 03:06:10 +01:00
#include "timeline/TimelineViewManager.h"
2017-11-30 12:53:28 +01:00
#include "blurhash.hpp"
ChatPage *ChatPage::instance_ = nullptr;
constexpr int CHECK_CONNECTIVITY_INTERVAL = 15'000;
constexpr int RETRY_TIMEOUT = 5'000;
constexpr size_t MAX_ONETIME_KEYS = 50;
2018-01-03 17:05:49 +01:00
2019-12-14 17:08:36 +01:00
Q_DECLARE_METATYPE(std::optional<mtx::crypto::EncryptedFile>)
2020-01-12 16:39:01 +01:00
Q_DECLARE_METATYPE(std::optional<RelatedInfo>)
Q_DECLARE_METATYPE(mtx::presence::PresenceState)
2020-12-18 03:04:18 +01:00
Q_DECLARE_METATYPE(mtx::secret_storage::AesHmacSha2KeyDescription)
Q_DECLARE_METATYPE(SecretsToDecrypt)
2019-12-05 15:31:53 +01:00
ChatPage::ChatPage(QSharedPointer<UserSettings> userSettings, QWidget *parent)
2017-08-20 12:47:22 +02:00
: QWidget(parent)
, isConnected_(true)
, userSettings_{userSettings}
, notificationsManager(this)
, callManager_(new CallManager(this))
2017-04-06 01:06:42 +02:00
{
setObjectName(QStringLiteral("chatPage"));
2021-09-18 00:22:33 +02:00
instance_ = this;
2021-09-18 00:22:33 +02:00
qRegisterMetaType<std::optional<mtx::crypto::EncryptedFile>>();
qRegisterMetaType<std::optional<RelatedInfo>>();
qRegisterMetaType<mtx::presence::PresenceState>();
qRegisterMetaType<mtx::secret_storage::AesHmacSha2KeyDescription>();
qRegisterMetaType<SecretsToDecrypt>();
2021-09-18 00:22:33 +02:00
topLayout_ = new QHBoxLayout(this);
topLayout_->setSpacing(0);
2021-12-28 22:30:12 +01:00
topLayout_->setContentsMargins(0, 0, 0, 0);
2021-09-18 00:22:33 +02:00
view_manager_ = new TimelineViewManager(callManager_, this);
topLayout_->addWidget(view_manager_->getWidget());
connect(this,
&ChatPage::downloadedSecrets,
this,
&ChatPage::decryptDownloadedSecrets,
Qt::QueuedConnection);
connect(this, &ChatPage::connectionLost, this, [this]() {
nhlog::net()->info("connectivity lost");
isConnected_ = false;
http::client()->shutdown();
});
connect(this, &ChatPage::connectionRestored, this, [this]() {
nhlog::net()->info("trying to re-connect");
isConnected_ = true;
2021-09-18 00:22:33 +02:00
// Drop all pending connections.
http::client()->shutdown();
trySync();
});
connectivityTimer_.setInterval(CHECK_CONNECTIVITY_INTERVAL);
connect(&connectivityTimer_, &QTimer::timeout, this, [=]() {
if (http::client()->access_token().empty()) {
connectivityTimer_.stop();
return;
}
http::client()->versions(
[this](const mtx::responses::Versions &, mtx::http::RequestErr err) {
if (err) {
emit connectionLost();
return;
}
if (!isConnected_)
emit connectionRestored();
});
});
connect(this, &ChatPage::loggedOut, this, &ChatPage::logout);
connect(
view_manager_,
&TimelineViewManager::inviteUsers,
this,
[this](QString roomId, QStringList users) {
for (int ii = 0; ii < users.size(); ++ii) {
QTimer::singleShot(ii * 500, this, [this, roomId, ii, users]() {
const auto user = users.at(ii);
http::client()->invite_user(
roomId.toStdString(),
user.toStdString(),
[this, user](const mtx::responses::RoomInvite &, mtx::http::RequestErr err) {
if (err) {
emit showNotification(tr("Failed to invite user: %1").arg(user));
return;
}
2021-09-18 00:22:33 +02:00
emit showNotification(tr("Invited user: %1").arg(user));
});
});
}
});
connect(this, &ChatPage::leftRoom, this, &ChatPage::removeRoom);
connect(this, &ChatPage::changeToRoom, this, &ChatPage::changeRoom, Qt::QueuedConnection);
connect(this, &ChatPage::notificationsRetrieved, this, &ChatPage::sendNotifications);
connect(this,
&ChatPage::highlightedNotifsRetrieved,
this,
[](const mtx::responses::Notifications &notif) {
try {
cache::saveTimelineMentions(notif);
} catch (const lmdb::error &e) {
nhlog::db()->error("failed to save mentions: {}", e.what());
}
2021-09-18 00:22:33 +02:00
});
connect(&notificationsManager,
&NotificationsManager::notificationClicked,
this,
[this](const QString &roomid, const QString &eventid) {
Q_UNUSED(eventid)
view_manager_->rooms()->setCurrentRoom(roomid);
activateWindow();
});
connect(&notificationsManager,
&NotificationsManager::sendNotificationReply,
this,
[this](const QString &roomid, const QString &eventid, const QString &body) {
view_manager_->rooms()->setCurrentRoom(roomid);
view_manager_->queueReply(roomid, eventid, body);
activateWindow();
});
connect(QCoreApplication::instance(), &QCoreApplication::aboutToQuit, this, [this]() {
// ensure the qml context is shutdown before we destroy all other singletons
// Otherwise Qml will try to access the room list or settings, after they have been
// destroyed
topLayout_->removeWidget(view_manager_->getWidget());
delete view_manager_->getWidget();
});
connect(
this,
&ChatPage::initializeViews,
view_manager_,
[this](const mtx::responses::Sync &sync) { view_manager_->sync(sync); },
2021-09-18 00:22:33 +02:00
Qt::QueuedConnection);
connect(this,
&ChatPage::initializeEmptyViews,
view_manager_,
&TimelineViewManager::initializeRoomlist);
connect(
this, &ChatPage::chatFocusChanged, view_manager_, &TimelineViewManager::chatFocusChanged);
connect(this, &ChatPage::syncUI, this, [this](const mtx::responses::Sync &sync) {
view_manager_->sync(sync);
2021-09-18 00:22:33 +02:00
static unsigned int prevNotificationCount = 0;
unsigned int notificationCount = 0;
for (const auto &room : sync.rooms.join) {
2021-09-18 00:22:33 +02:00
notificationCount += room.second.unread_notifications.notification_count;
}
2021-09-18 00:22:33 +02:00
// HACK: If we had less notifications last time we checked, send an alert if the
// user wanted one. Technically, this may cause an alert to be missed if new ones
// come in while you are reading old ones. Since the window is almost certainly open
// in this edge case, that's probably a non-issue.
// TODO: Replace this once we have proper pushrules support. This is a horrible hack
if (prevNotificationCount < notificationCount) {
if (userSettings_->hasAlertOnNotification())
QApplication::alert(this);
}
prevNotificationCount = notificationCount;
// No need to check amounts for this section, as this function internally checks for
// duplicates.
if (notificationCount && userSettings_->hasNotifications())
http::client()->notifications(
5,
"",
"",
[this](const mtx::responses::Notifications &res, mtx::http::RequestErr err) {
if (err) {
2021-11-29 06:20:43 +01:00
nhlog::net()->warn("failed to retrieve notifications: {}", err);
2021-09-18 00:22:33 +02:00
return;
}
2021-09-18 00:22:33 +02:00
emit notificationsRetrieved(std::move(res));
});
});
connect(
this, &ChatPage::tryInitialSyncCb, this, &ChatPage::tryInitialSync, Qt::QueuedConnection);
connect(this, &ChatPage::trySyncCb, this, &ChatPage::trySync, Qt::QueuedConnection);
connect(
this,
&ChatPage::tryDelayedSyncCb,
this,
[this]() { QTimer::singleShot(RETRY_TIMEOUT, this, &ChatPage::trySync); },
Qt::QueuedConnection);
connect(
this, &ChatPage::newSyncResponse, this, &ChatPage::handleSyncResponse, Qt::QueuedConnection);
connect(this, &ChatPage::dropToLoginPageCb, this, &ChatPage::dropToLoginPage);
connectCallMessage<mtx::events::msg::CallInvite>();
connectCallMessage<mtx::events::msg::CallCandidates>();
connectCallMessage<mtx::events::msg::CallAnswer>();
connectCallMessage<mtx::events::msg::CallHangUp>();
2017-04-06 01:06:42 +02:00
}
2017-08-20 12:47:22 +02:00
void
ChatPage::logout()
{
2021-09-18 00:22:33 +02:00
resetUI();
deleteConfigs();
2017-10-20 21:32:48 +02:00
2021-09-18 00:22:33 +02:00
emit closing();
connectivityTimer_.stop();
}
void
ChatPage::dropToLoginPage(const QString &msg)
{
2021-09-18 00:22:33 +02:00
nhlog::ui()->info("dropping to the login page: {}", msg.toStdString());
2021-09-18 00:22:33 +02:00
http::client()->shutdown();
connectivityTimer_.stop();
2021-09-18 00:22:33 +02:00
resetUI();
deleteConfigs();
2020-12-16 22:10:09 +01:00
2021-09-18 00:22:33 +02:00
emit showLoginPage(msg);
2017-10-20 21:32:48 +02:00
}
void
ChatPage::resetUI()
{
2021-09-18 00:22:33 +02:00
view_manager_->clearAll();
2021-09-18 00:22:33 +02:00
emit unreadMessages(0);
2017-10-20 21:32:48 +02:00
}
void
ChatPage::deleteConfigs()
{
2021-09-18 00:22:33 +02:00
auto settings = UserSettings::instance()->qsettings();
if (UserSettings::instance()->profile() != QLatin1String("")) {
settings->beginGroup(QStringLiteral("profile"));
2021-09-18 00:22:33 +02:00
settings->beginGroup(UserSettings::instance()->profile());
}
settings->beginGroup(QStringLiteral("auth"));
settings->remove(QLatin1String(""));
2021-09-18 00:22:33 +02:00
settings->endGroup(); // auth
http::client()->shutdown();
cache::deleteData();
}
2017-08-20 12:47:22 +02:00
void
ChatPage::bootstrap(QString userid, QString homeserver, QString token)
2017-04-06 01:06:42 +02:00
{
2021-09-18 00:22:33 +02:00
using namespace mtx::identifiers;
2021-09-18 00:22:33 +02:00
try {
http::client()->set_user(parse<User>(userid.toStdString()));
} catch (const std::invalid_argument &) {
nhlog::ui()->critical("bootstrapped with invalid user_id: {}", userid.toStdString());
}
2021-09-18 00:22:33 +02:00
http::client()->set_server(homeserver.toStdString());
http::client()->set_access_token(token.toStdString());
http::client()->verify_certificates(!UserSettings::instance()->disableCertificateValidation());
2021-09-18 00:22:33 +02:00
// The Olm client needs the user_id & device_id that will be included
// in the generated payloads & keys.
olm::client()->set_user_id(http::client()->user_id().to_string());
olm::client()->set_device_id(http::client()->device_id());
2021-09-18 00:22:33 +02:00
try {
cache::init(userid);
connect(cache::client(), &Cache::databaseReady, this, [this]() {
nhlog::db()->info("database ready");
const bool isInitialized = cache::isInitialized();
const auto cacheVersion = cache::formatVersion();
try {
if (!isInitialized) {
cache::setCurrentFormat();
} else {
if (cacheVersion == cache::CacheVersion::Current) {
loadStateFromCache();
return;
} else if (cacheVersion == cache::CacheVersion::Older) {
if (!cache::runMigrations()) {
QMessageBox::critical(
this,
tr("Cache migration failed!"),
tr("Migrating the cache to the current version failed. "
"This can have different reasons. Please open an "
"issue and try to use an older version in the mean "
"time. Alternatively you can try deleting the cache "
"manually."));
QCoreApplication::quit();
}
loadStateFromCache();
return;
} else if (cacheVersion == cache::CacheVersion::Newer) {
QMessageBox::critical(
this,
tr("Incompatible cache version"),
tr("The cache on your disk is newer than this version of Nheko "
"supports. Please update Nheko or clear your cache."));
QCoreApplication::quit();
return;
}
}
// It's the first time syncing with this device
// There isn't a saved olm account to restore.
nhlog::crypto()->info("creating new olm account");
olm::client()->create_new_account();
cache::saveOlmAccount(olm::client()->save(cache::client()->pickleSecret()));
} catch (const lmdb::error &e) {
nhlog::crypto()->critical("failed to save olm account {}", e.what());
emit dropToLoginPageCb(QString::fromStdString(e.what()));
return;
} catch (const mtx::crypto::olm_exception &e) {
nhlog::crypto()->critical("failed to create new olm account {}", e.what());
emit dropToLoginPageCb(QString::fromStdString(e.what()));
return;
}
getProfileInfo();
getBackupVersion();
tryInitialSync();
callManager_->refreshTurnServer();
emit MainWindow::instance()->reload();
});
2021-09-18 00:22:33 +02:00
connect(cache::client(),
&Cache::newReadReceipts,
view_manager_,
&TimelineViewManager::updateReadReceipts);
connect(cache::client(),
&Cache::removeNotification,
&notificationsManager,
&NotificationsManager::removeNotification);
} catch (const lmdb::error &e) {
nhlog::db()->critical("failure during boot: {}", e.what());
emit dropToLoginPageCb(tr("Failed to open database, logging out!"));
2021-09-18 00:22:33 +02:00
}
2017-04-06 01:06:42 +02:00
}
2017-08-20 12:47:22 +02:00
void
ChatPage::loadStateFromCache()
{
2021-09-18 00:22:33 +02:00
nhlog::db()->info("restoring state from cache");
try {
olm::client()->load(cache::restoreOlmAccount(), cache::client()->pickleSecret());
emit initializeEmptyViews();
emit initializeMentions(cache::getTimelineMentions());
cache::calculateRoomReadStatus();
} catch (const mtx::crypto::olm_exception &e) {
nhlog::crypto()->critical("failed to restore olm account: {}", e.what());
emit dropToLoginPageCb(tr("Failed to restore OLM account. Please login again."));
return;
} catch (const lmdb::error &e) {
nhlog::db()->critical("failed to restore cache: {}", e.what());
emit dropToLoginPageCb(tr("Failed to restore save data. Please login again."));
return;
} catch (const json::exception &e) {
nhlog::db()->critical("failed to parse cache data: {}", e.what());
emit dropToLoginPageCb(tr("Failed to restore save data. Please login again."));
return;
} catch (const std::exception &e) {
nhlog::db()->critical("failed to load cache data: {}", e.what());
emit dropToLoginPageCb(tr("Failed to restore save data. Please login again."));
return;
}
nhlog::crypto()->info("ed25519 : {}", olm::client()->identity_keys().ed25519);
nhlog::crypto()->info("curve25519: {}", olm::client()->identity_keys().curve25519);
getProfileInfo();
getBackupVersion();
verifyOneTimeKeyCountAfterStartup();
callManager_->refreshTurnServer();
2021-09-18 00:22:33 +02:00
emit contentLoaded();
// Start receiving events.
emit trySyncCb();
}
2017-12-19 21:36:12 +01:00
void
2018-04-21 15:34:50 +02:00
ChatPage::removeRoom(const QString &room_id)
2017-12-19 21:36:12 +01:00
{
2021-09-18 00:22:33 +02:00
try {
cache::removeRoom(room_id);
cache::removeInvite(room_id.toStdString());
} catch (const lmdb::error &e) {
nhlog::db()->critical("failure while removing room: {}", e.what());
// TODO: Notify the user.
}
}
void
2020-06-10 11:27:21 +02:00
ChatPage::sendNotifications(const mtx::responses::Notifications &res)
{
2021-09-18 00:22:33 +02:00
for (const auto &item : res.notifications) {
const auto event_id = mtx::accessors::event_id(item.event);
2020-09-07 18:11:06 +02:00
2021-09-18 00:22:33 +02:00
try {
if (item.read) {
cache::removeReadNotification(event_id);
continue;
}
if (!cache::isNotificationSent(event_id)) {
const auto room_id = QString::fromStdString(item.room_id);
// We should only sent one notification per event.
cache::markSentNotification(event_id);
// Don't send a notification when the current room is opened.
if (isRoomActive(room_id))
continue;
if (userSettings_->hasDesktopNotifications()) {
auto info = cache::singleRoomInfo(item.room_id);
AvatarProvider::resolve(QString::fromStdString(info.avatar_url),
96,
this,
[this, item](QPixmap image) {
notificationsManager.postNotification(
item, image.toImage());
});
}
2021-09-18 00:22:33 +02:00
}
} catch (const lmdb::error &e) {
nhlog::db()->warn("error while sending notification: {}", e.what());
}
2021-09-18 00:22:33 +02:00
}
}
void
ChatPage::tryInitialSync()
{
2021-09-18 00:22:33 +02:00
nhlog::crypto()->info("ed25519 : {}", olm::client()->identity_keys().ed25519);
nhlog::crypto()->info("curve25519: {}", olm::client()->identity_keys().curve25519);
2021-09-18 00:22:33 +02:00
// Upload one time keys for the device.
nhlog::crypto()->info("generating one time keys");
olm::client()->generate_one_time_keys(MAX_ONETIME_KEYS);
2021-09-18 00:22:33 +02:00
http::client()->upload_keys(
olm::client()->create_upload_keys_request(),
[this](const mtx::responses::UploadKeys &res, mtx::http::RequestErr err) {
if (err) {
const int status_code = static_cast<int>(err->status_code);
2021-09-18 00:22:33 +02:00
if (status_code == 404) {
nhlog::net()->warn("skipping key uploading. server doesn't provide /keys/upload");
return startInitialSync();
}
2021-11-29 06:20:43 +01:00
nhlog::crypto()->critical("failed to upload one time keys: {}", err);
2021-09-18 00:22:33 +02:00
QString errorMsg(tr("Failed to setup encryption keys. Server response: "
"%1 %2. Please try again later.")
.arg(QString::fromStdString(err->matrix_error.error))
.arg(status_code));
2021-09-18 00:22:33 +02:00
emit dropToLoginPageCb(errorMsg);
return;
}
2021-09-18 00:22:33 +02:00
olm::mark_keys_as_published();
2021-09-18 00:22:33 +02:00
for (const auto &entry : res.one_time_key_counts)
nhlog::net()->info("uploaded {} {} one-time keys", entry.second, entry.first);
cache::client()->markUserKeysOutOfDate({http::client()->user_id().to_string()});
2021-09-18 00:22:33 +02:00
startInitialSync();
});
}
void
ChatPage::startInitialSync()
{
2021-09-18 00:22:33 +02:00
nhlog::net()->info("trying initial sync");
mtx::http::SyncOpts opts;
opts.timeout = 0;
opts.set_presence = currentPresence();
http::client()->sync(opts, [this](const mtx::responses::Sync &res, mtx::http::RequestErr err) {
// TODO: Initial Sync should include mentions as well...
if (err) {
const auto error = QString::fromStdString(err->matrix_error.error);
const auto msg = tr("Please try to login again: %1").arg(error);
const auto err_code = mtx::errors::to_string(err->matrix_error.errcode);
const int status_code = static_cast<int>(err->status_code);
2021-11-29 06:20:43 +01:00
nhlog::net()->error("initial sync error: {}", err);
2021-09-18 00:22:33 +02:00
// non http related errors
if (status_code <= 0 || status_code >= 600) {
startInitialSync();
return;
}
2020-10-27 17:45:28 +01:00
2021-09-18 00:22:33 +02:00
switch (status_code) {
case 502:
case 504:
case 524: {
startInitialSync();
return;
}
default: {
emit dropToLoginPageCb(msg);
return;
}
}
}
2020-10-27 17:45:28 +01:00
2021-09-18 00:22:33 +02:00
nhlog::net()->info("initial sync completed");
2020-10-27 17:45:28 +01:00
2021-09-18 00:22:33 +02:00
try {
cache::client()->saveState(res);
2020-10-27 17:45:28 +01:00
2021-09-18 00:22:33 +02:00
olm::handle_to_device_messages(res.to_device.events);
2020-10-27 17:45:28 +01:00
emit initializeViews(std::move(res));
2021-09-18 00:22:33 +02:00
emit initializeMentions(cache::getTimelineMentions());
2020-10-27 17:45:28 +01:00
2021-09-18 00:22:33 +02:00
cache::calculateRoomReadStatus();
} catch (const lmdb::error &e) {
nhlog::db()->error("failed to save state after initial sync: {}", e.what());
startInitialSync();
return;
}
2020-10-27 17:45:28 +01:00
2021-09-18 00:22:33 +02:00
emit trySyncCb();
emit contentLoaded();
});
}
void
ChatPage::handleSyncResponse(const mtx::responses::Sync &res, const std::string &prev_batch_token)
{
2021-09-18 00:22:33 +02:00
try {
if (prev_batch_token != cache::nextBatchToken()) {
nhlog::net()->warn("Duplicate sync, dropping");
return;
}
2021-09-18 00:22:33 +02:00
} catch (const lmdb::error &e) {
nhlog::db()->warn("Logged out in the mean time, dropping sync");
}
2021-09-18 00:22:33 +02:00
nhlog::net()->debug("sync completed: {}", res.next_batch);
2021-09-18 00:22:33 +02:00
// Ensure that we have enough one-time keys available.
ensureOneTimeKeyCount(res.device_one_time_keys_count);
2021-09-18 00:22:33 +02:00
// TODO: fine grained error handling
try {
cache::client()->saveState(res);
olm::handle_to_device_messages(res.to_device.events);
2021-09-18 00:22:33 +02:00
auto updates = cache::getRoomInfo(cache::client()->roomsWithStateUpdates(res));
emit syncUI(std::move(res));
2021-09-18 00:22:33 +02:00
// if we process a lot of syncs (1 every 200ms), this means we clean the
// db every 100s
static int syncCounter = 0;
if (syncCounter++ >= 500) {
cache::deleteOldData();
syncCounter = 0;
}
2021-09-18 00:22:33 +02:00
} catch (const lmdb::map_full_error &e) {
nhlog::db()->error("lmdb is full: {}", e.what());
cache::deleteOldData();
} catch (const lmdb::error &e) {
nhlog::db()->error("saving sync response: {}", e.what());
}
emit trySyncCb();
}
void
ChatPage::trySync()
{
2021-09-18 00:22:33 +02:00
mtx::http::SyncOpts opts;
opts.set_presence = currentPresence();
if (!connectivityTimer_.isActive())
connectivityTimer_.start();
try {
opts.since = cache::nextBatchToken();
} catch (const lmdb::error &e) {
nhlog::db()->error("failed to retrieve next batch token: {}", e.what());
return;
}
http::client()->sync(
opts, [this, since = opts.since](const mtx::responses::Sync &res, mtx::http::RequestErr err) {
if (err) {
const auto error = QString::fromStdString(err->matrix_error.error);
const auto msg = tr("Please try to login again: %1").arg(error);
2021-09-18 00:22:33 +02:00
if ((http::is_logged_in() &&
(err->matrix_error.errcode == mtx::errors::ErrorCode::M_UNKNOWN_TOKEN ||
err->matrix_error.errcode == mtx::errors::ErrorCode::M_MISSING_TOKEN)) ||
!http::is_logged_in()) {
emit dropToLoginPageCb(msg);
return;
}
2021-11-21 05:04:48 +01:00
nhlog::net()->error("sync error: {}", *err);
2021-09-18 00:22:33 +02:00
emit tryDelayedSyncCb();
return;
}
emit newSyncResponse(res, since);
});
}
void
ChatPage::joinRoom(const QString &room)
{
2021-09-18 00:22:33 +02:00
const auto room_id = room.toStdString();
joinRoomVia(room_id, {}, false);
}
void
2021-03-05 14:59:59 +01:00
ChatPage::joinRoomVia(const std::string &room_id,
const std::vector<std::string> &via,
bool promptForConfirmation)
{
2021-09-18 00:22:33 +02:00
if (promptForConfirmation &&
QMessageBox::Yes !=
QMessageBox::question(
this,
tr("Confirm join"),
tr("Do you really want to join %1?").arg(QString::fromStdString(room_id))))
return;
http::client()->join_room(
room_id, via, [this, room_id](const mtx::responses::RoomId &, mtx::http::RequestErr err) {
if (err) {
emit showNotification(
tr("Failed to join room: %1").arg(QString::fromStdString(err->matrix_error.error)));
return;
}
emit tr("You joined the room");
// We remove any invites with the same room_id.
try {
cache::removeInvite(room_id);
} catch (const lmdb::error &e) {
emit showNotification(tr("Failed to remove invite: %1").arg(e.what()));
}
view_manager_->rooms()->setCurrentRoom(QString::fromStdString(room_id));
});
}
void
ChatPage::createRoom(const mtx::requests::CreateRoom &req)
{
2021-09-18 00:22:33 +02:00
http::client()->create_room(
req, [this](const mtx::responses::CreateRoom &res, mtx::http::RequestErr err) {
if (err) {
2021-11-29 06:20:43 +01:00
const auto err_code = mtx::errors::to_string(err->matrix_error.errcode);
const auto error = err->matrix_error.error;
2021-09-18 00:22:33 +02:00
2021-11-29 06:20:43 +01:00
nhlog::net()->warn("failed to create room: {})", err);
2021-09-18 00:22:33 +02:00
emit showNotification(
tr("Room creation failed: %1").arg(QString::fromStdString(error)));
return;
}
QString newRoomId = QString::fromStdString(res.room_id.to_string());
emit showNotification(tr("Room %1 created.").arg(newRoomId));
emit newRoom(newRoomId);
emit changeToRoom(newRoomId);
});
}
void
ChatPage::leaveRoom(const QString &room_id)
{
2021-09-18 00:22:33 +02:00
http::client()->leave_room(
room_id.toStdString(),
[this, room_id](const mtx::responses::Empty &, mtx::http::RequestErr err) {
if (err) {
emit showNotification(tr("Failed to leave room: %1")
.arg(QString::fromStdString(err->matrix_error.error)));
2021-11-29 06:06:51 +01:00
nhlog::net()->error("Failed to leave room '{}': {}", room_id.toStdString(), err);
if (err->status_code == 404 &&
err->matrix_error.errcode == mtx::errors::ErrorCode::M_UNKNOWN) {
nhlog::db()->debug(
"Removing invite and room for {}, even though we couldn't leave.",
room_id.toStdString());
cache::client()->removeInvite(room_id.toStdString());
cache::client()->removeRoom(room_id.toStdString());
}
2021-09-18 00:22:33 +02:00
return;
}
emit leftRoom(room_id);
});
}
2021-02-25 05:59:30 +01:00
void
ChatPage::changeRoom(const QString &room_id)
{
2021-09-18 00:22:33 +02:00
view_manager_->rooms()->setCurrentRoom(room_id);
2021-02-25 05:59:30 +01:00
}
void
ChatPage::inviteUser(QString userid, QString reason)
{
2021-09-18 00:22:33 +02:00
auto room = currentRoom();
if (QMessageBox::question(this,
tr("Confirm invite"),
tr("Do you really want to invite %1 (%2)?")
2021-12-28 22:30:12 +01:00
.arg(cache::displayName(room, userid), userid)) != QMessageBox::Yes)
2021-09-18 00:22:33 +02:00
return;
http::client()->invite_user(
room.toStdString(),
userid.toStdString(),
[this, userid, room](const mtx::responses::Empty &, mtx::http::RequestErr err) {
if (err) {
2021-12-28 22:30:12 +01:00
emit showNotification(
tr("Failed to invite %1 to %2: %3")
.arg(userid, room, QString::fromStdString(err->matrix_error.error)));
2021-09-18 00:22:33 +02:00
} else
emit showNotification(tr("Invited user: %1").arg(userid));
},
reason.trimmed().toStdString());
}
void
ChatPage::kickUser(QString userid, QString reason)
{
2021-09-18 00:22:33 +02:00
auto room = currentRoom();
if (QMessageBox::question(this,
tr("Confirm kick"),
tr("Do you really want to kick %1 (%2)?")
2021-12-28 22:30:12 +01:00
.arg(cache::displayName(room, userid), userid)) != QMessageBox::Yes)
2021-09-18 00:22:33 +02:00
return;
http::client()->kick_user(
room.toStdString(),
userid.toStdString(),
[this, userid, room](const mtx::responses::Empty &, mtx::http::RequestErr err) {
if (err) {
2021-12-28 22:30:12 +01:00
emit showNotification(
tr("Failed to kick %1 from %2: %3")
.arg(userid, room, QString::fromStdString(err->matrix_error.error)));
2021-09-18 00:22:33 +02:00
} else
emit showNotification(tr("Kicked user: %1").arg(userid));
},
reason.trimmed().toStdString());
}
void
ChatPage::banUser(QString userid, QString reason)
{
2021-09-18 00:22:33 +02:00
auto room = currentRoom();
2021-12-28 22:30:12 +01:00
if (QMessageBox::question(
this,
tr("Confirm ban"),
tr("Do you really want to ban %1 (%2)?").arg(cache::displayName(room, userid), userid)) !=
QMessageBox::Yes)
2021-09-18 00:22:33 +02:00
return;
http::client()->ban_user(
room.toStdString(),
userid.toStdString(),
[this, userid, room](const mtx::responses::Empty &, mtx::http::RequestErr err) {
if (err) {
2021-12-28 22:30:12 +01:00
emit showNotification(
tr("Failed to ban %1 in %2: %3")
.arg(userid, room, QString::fromStdString(err->matrix_error.error)));
2021-09-18 00:22:33 +02:00
} else
emit showNotification(tr("Banned user: %1").arg(userid));
},
reason.trimmed().toStdString());
}
void
ChatPage::unbanUser(QString userid, QString reason)
{
2021-09-18 00:22:33 +02:00
auto room = currentRoom();
if (QMessageBox::question(this,
tr("Confirm unban"),
tr("Do you really want to unban %1 (%2)?")
2021-12-28 22:30:12 +01:00
.arg(cache::displayName(room, userid), userid)) != QMessageBox::Yes)
2021-09-18 00:22:33 +02:00
return;
http::client()->unban_user(
room.toStdString(),
userid.toStdString(),
[this, userid, room](const mtx::responses::Empty &, mtx::http::RequestErr err) {
if (err) {
2021-12-28 22:30:12 +01:00
emit showNotification(
tr("Failed to unban %1 in %2: %3")
.arg(userid, room, QString::fromStdString(err->matrix_error.error)));
2021-09-18 00:22:33 +02:00
} else
emit showNotification(tr("Unbanned user: %1").arg(userid));
},
reason.trimmed().toStdString());
}
2020-10-20 19:46:37 +02:00
void
ChatPage::receivedSessionKey(const std::string &room_id, const std::string &session_id)
{
2021-09-18 00:22:33 +02:00
view_manager_->receivedSessionKey(room_id, session_id);
2020-10-20 19:46:37 +02:00
}
QString
ChatPage::status() const
{
return QString::fromStdString(cache::presence(utils::localUser().toStdString()).status_msg);
}
void
ChatPage::setStatus(const QString &status)
{
2021-09-18 00:22:33 +02:00
http::client()->put_presence_status(
currentPresence(), status.toStdString(), [](mtx::http::RequestErr err) {
if (err) {
nhlog::net()->warn("failed to set presence status_msg: {}", err->matrix_error.error);
}
});
}
2020-06-08 20:26:37 +02:00
mtx::presence::PresenceState
ChatPage::currentPresence() const
{
2021-09-18 00:22:33 +02:00
switch (userSettings_->presence()) {
case UserSettings::Presence::Online:
return mtx::presence::online;
case UserSettings::Presence::Unavailable:
return mtx::presence::unavailable;
case UserSettings::Presence::Offline:
return mtx::presence::offline;
default:
return mtx::presence::online;
}
2020-06-08 20:26:37 +02:00
}
2021-09-06 00:07:14 +02:00
void
ChatPage::verifyOneTimeKeyCountAfterStartup()
{
2021-09-18 00:22:33 +02:00
http::client()->upload_keys(
olm::client()->create_upload_keys_request(),
[this](const mtx::responses::UploadKeys &res, mtx::http::RequestErr err) {
if (err) {
2021-11-29 06:20:43 +01:00
nhlog::crypto()->warn("failed to update one-time keys: {}", err);
2021-09-18 00:22:33 +02:00
if (err->status_code < 400 || err->status_code >= 500)
return;
}
std::map<std::string, uint16_t> key_counts;
auto count = 0;
if (auto c = res.one_time_key_counts.find(mtx::crypto::SIGNED_CURVE25519);
c == res.one_time_key_counts.end()) {
key_counts[mtx::crypto::SIGNED_CURVE25519] = 0;
} else {
key_counts[mtx::crypto::SIGNED_CURVE25519] = c->second;
count = c->second;
}
nhlog::crypto()->info(
"Fetched server key count {} {}", count, mtx::crypto::SIGNED_CURVE25519);
ensureOneTimeKeyCount(key_counts);
});
2021-09-06 00:07:14 +02:00
}
void
ChatPage::ensureOneTimeKeyCount(const std::map<std::string, uint16_t> &counts)
{
2021-09-18 00:22:33 +02:00
if (auto count = counts.find(mtx::crypto::SIGNED_CURVE25519); count != counts.end()) {
nhlog::crypto()->debug(
"Updated server key count {} {}", count->second, mtx::crypto::SIGNED_CURVE25519);
if (count->second < MAX_ONETIME_KEYS) {
2021-12-28 19:12:15 +01:00
const size_t nkeys = MAX_ONETIME_KEYS - count->second;
2021-09-18 00:22:33 +02:00
nhlog::crypto()->info("uploading {} {} keys", nkeys, mtx::crypto::SIGNED_CURVE25519);
olm::client()->generate_one_time_keys(nkeys);
http::client()->upload_keys(
olm::client()->create_upload_keys_request(),
[](const mtx::responses::UploadKeys &, mtx::http::RequestErr err) {
if (err) {
2021-11-29 06:20:43 +01:00
nhlog::crypto()->warn("failed to update one-time keys: {}", err);
2021-09-18 00:22:33 +02:00
if (err->status_code < 400 || err->status_code >= 500)
return;
}
// mark as published anyway, otherwise we may end up in a loop.
olm::mark_keys_as_published();
});
} else if (count->second > 2 * MAX_ONETIME_KEYS) {
nhlog::crypto()->warn("too many one-time keys, deleting 1");
mtx::requests::ClaimKeys req;
req.one_time_keys[http::client()->user_id().to_string()][http::client()->device_id()] =
std::string(mtx::crypto::SIGNED_CURVE25519);
http::client()->claim_keys(
req, [](const mtx::responses::ClaimKeys &, mtx::http::RequestErr err) {
if (err)
2021-11-29 06:20:43 +01:00
nhlog::crypto()->warn("failed to clear 1 one-time key: {}", err);
2021-09-18 00:22:33 +02:00
else
nhlog::crypto()->info("cleared 1 one-time key");
});
}
2021-09-18 00:22:33 +02:00
}
}
void
ChatPage::getProfileInfo()
{
2021-09-18 00:22:33 +02:00
const auto userid = utils::localUser().toStdString();
2021-09-18 00:22:33 +02:00
http::client()->get_profile(
userid, [this](const mtx::responses::Profile &res, mtx::http::RequestErr err) {
if (err) {
nhlog::net()->warn("failed to retrieve own profile info");
return;
}
2021-09-18 00:22:33 +02:00
emit setUserDisplayName(QString::fromStdString(res.display_name));
2021-09-18 00:22:33 +02:00
emit setUserAvatar(QString::fromStdString(res.avatar_url));
});
}
2021-08-17 03:23:51 +02:00
void
ChatPage::getBackupVersion()
{
2021-09-18 00:22:33 +02:00
if (!UserSettings::instance()->useOnlineKeyBackup()) {
nhlog::crypto()->info("Online key backup disabled.");
return;
}
http::client()->backup_version(
[this](const mtx::responses::backup::BackupVersion &res, mtx::http::RequestErr err) {
if (err) {
nhlog::net()->warn("Failed to retrieve backup version");
if (err->status_code == 404)
cache::client()->deleteBackupVersion();
return;
}
// switch to UI thread for secrets stuff
QTimer::singleShot(0, this, [res] {
auto auth_data = nlohmann::json::parse(res.auth_data);
if (res.algorithm == "m.megolm_backup.v1.curve25519-aes-sha2") {
auto key = cache::secret(mtx::secret_storage::secrets::megolm_backup_v1);
if (!key) {
nhlog::crypto()->info("No key for online key backup.");
cache::client()->deleteBackupVersion();
return;
2021-08-17 03:23:51 +02:00
}
2021-09-18 00:22:33 +02:00
using namespace mtx::crypto;
auto pubkey = CURVE25519_public_key_from_private(to_binary_buf(base642bin(*key)));
if (auth_data["public_key"].get<std::string>() != pubkey) {
nhlog::crypto()->info("Our backup key {} does not match the one "
2021-08-17 03:23:51 +02:00
"used in the online backup {}",
pubkey,
auth_data["public_key"]);
2021-09-18 00:22:33 +02:00
cache::client()->deleteBackupVersion();
return;
}
nhlog::crypto()->info("Using online key backup.");
OnlineBackupVersion data{};
data.algorithm = res.algorithm;
data.version = res.version;
cache::client()->saveBackupVersion(data);
} else {
nhlog::crypto()->info("Unsupported key backup algorithm: {}", res.algorithm);
cache::client()->deleteBackupVersion();
}
2021-08-17 03:23:51 +02:00
});
2021-09-18 00:22:33 +02:00
});
2021-08-17 03:23:51 +02:00
}
void
ChatPage::initiateLogout()
{
2021-09-18 00:22:33 +02:00
http::client()->logout([this](const mtx::responses::Logout &, mtx::http::RequestErr err) {
if (err) {
// TODO: handle special errors
emit contentLoaded();
2021-11-29 06:20:43 +01:00
nhlog::net()->warn("failed to logout: {}", err);
2021-09-18 00:22:33 +02:00
return;
}
2021-09-18 00:22:33 +02:00
emit loggedOut();
});
2021-09-18 00:22:33 +02:00
emit showOverlayProgressBar();
}
2020-08-24 10:26:50 +02:00
2020-07-11 01:19:48 +02:00
template<typename T>
void
ChatPage::connectCallMessage()
{
2021-09-18 00:22:33 +02:00
connect(callManager_,
qOverload<const QString &, const T &>(&CallManager::newMessage),
view_manager_,
qOverload<const QString &, const T &>(&TimelineViewManager::queueCallMessage));
2020-07-11 01:19:48 +02:00
}
2020-12-18 03:04:18 +01:00
void
ChatPage::decryptDownloadedSecrets(mtx::secret_storage::AesHmacSha2KeyDescription keyDesc,
const SecretsToDecrypt &secrets)
{
2021-09-18 00:22:33 +02:00
QString text = QInputDialog::getText(
ChatPage::instance(),
QCoreApplication::translate("CrossSigningSecrets", "Decrypt secrets"),
keyDesc.name.empty()
? QCoreApplication::translate(
"CrossSigningSecrets", "Enter your recovery key or passphrase to decrypt your secrets:")
: QCoreApplication::translate(
"CrossSigningSecrets",
"Enter your recovery key or passphrase called %1 to decrypt your secrets:")
.arg(QString::fromStdString(keyDesc.name)),
QLineEdit::Password);
if (text.isEmpty())
return;
// strip space chars from a recovery key. It can't contain those, but some clients insert them
// to make them easier to read.
QString stripped = text;
stripped.remove(' ');
stripped.remove('\n');
stripped.remove('\t');
auto decryptionKey = mtx::crypto::key_from_recoverykey(stripped.toStdString(), keyDesc);
2021-09-18 00:22:33 +02:00
if (!decryptionKey && keyDesc.passphrase) {
try {
decryptionKey = mtx::crypto::key_from_passphrase(text.toStdString(), keyDesc);
} catch (std::exception &e) {
nhlog::crypto()->error("Failed to derive secret key from passphrase: {}", e.what());
2020-12-18 03:04:18 +01:00
}
2021-09-18 00:22:33 +02:00
}
2020-12-18 03:04:18 +01:00
2021-09-18 00:22:33 +02:00
if (!decryptionKey) {
QMessageBox::information(
ChatPage::instance(),
QCoreApplication::translate("CrossSigningSecrets", "Decryption failed"),
QCoreApplication::translate("CrossSigningSecrets",
"Failed to decrypt secrets with the "
"provided recovery key or passphrase"));
return;
}
2021-10-30 00:22:47 +02:00
auto deviceKeys = cache::client()->userKeys(http::client()->user_id().to_string());
mtx::requests::KeySignaturesUpload req;
2021-09-18 00:22:33 +02:00
for (const auto &[secretName, encryptedSecret] : secrets) {
auto decrypted = mtx::crypto::decrypt(encryptedSecret, *decryptionKey, secretName);
2021-10-30 00:22:47 +02:00
if (!decrypted.empty()) {
2021-09-18 00:22:33 +02:00
cache::storeSecret(secretName, decrypted);
2021-10-30 00:22:47 +02:00
if (deviceKeys && deviceKeys->device_keys.count(http::client()->device_id()) &&
2021-10-30 00:22:47 +02:00
secretName == mtx::secret_storage::secrets::cross_signing_self_signing) {
auto myKey = deviceKeys->device_keys.at(http::client()->device_id());
if (myKey.user_id == http::client()->user_id().to_string() &&
myKey.device_id == http::client()->device_id() &&
myKey.keys["ed25519:" + http::client()->device_id()] ==
olm::client()->identity_keys().ed25519 &&
myKey.keys["curve25519:" + http::client()->device_id()] ==
olm::client()->identity_keys().curve25519) {
json j = myKey;
j.erase("signatures");
j.erase("unsigned");
auto ssk = mtx::crypto::PkSigning::from_seed(decrypted);
myKey.signatures[http::client()->user_id().to_string()]
["ed25519:" + ssk.public_key()] = ssk.sign(j.dump());
req.signatures[http::client()->user_id().to_string()]
[http::client()->device_id()] = myKey;
}
} else if (deviceKeys &&
secretName == mtx::secret_storage::secrets::cross_signing_master) {
auto mk = mtx::crypto::PkSigning::from_seed(decrypted);
if (deviceKeys->master_keys.user_id == http::client()->user_id().to_string() &&
deviceKeys->master_keys.keys["ed25519:" + mk.public_key()] == mk.public_key()) {
json j = deviceKeys->master_keys;
j.erase("signatures");
j.erase("unsigned");
mtx::crypto::CrossSigningKeys master_key = j;
master_key.signatures[http::client()->user_id().to_string()]
["ed25519:" + http::client()->device_id()] =
olm::client()->sign_message(j.dump());
req.signatures[http::client()->user_id().to_string()][mk.public_key()] =
master_key;
}
}
}
2021-09-18 00:22:33 +02:00
}
2021-10-30 00:22:47 +02:00
if (!req.signatures.empty())
http::client()->keys_signatures_upload(
req, [](const mtx::responses::KeySignaturesUpload &res, mtx::http::RequestErr err) {
if (err) {
nhlog::net()->error("failed to upload signatures: {},{}",
mtx::errors::to_string(err->matrix_error.errcode),
static_cast<int>(err->status_code));
}
for (const auto &[user_id, tmp] : res.errors)
for (const auto &[key_id, e] : tmp)
nhlog::net()->error("signature error for user '{}' and key "
2021-11-29 06:20:43 +01:00
"id {}: {} {}",
2021-10-30 00:22:47 +02:00
user_id,
key_id,
mtx::errors::to_string(e.errcode),
e.error);
});
2020-12-18 03:04:18 +01:00
}
void
ChatPage::startChat(QString userid)
{
2021-09-18 00:22:33 +02:00
auto joined_rooms = cache::joinedRooms();
auto room_infos = cache::getRoomInfo(joined_rooms);
2021-12-28 22:30:12 +01:00
for (const std::string &room_id : joined_rooms) {
2021-09-18 00:22:33 +02:00
if (room_infos[QString::fromStdString(room_id)].member_count == 2) {
auto room_members = cache::roomMembers(room_id);
if (std::find(room_members.begin(), room_members.end(), (userid).toStdString()) !=
room_members.end()) {
view_manager_->rooms()->setCurrentRoom(QString::fromStdString(room_id));
return;
2021-09-18 00:22:33 +02:00
}
}
2021-09-18 00:22:33 +02:00
}
if (QMessageBox::Yes !=
QMessageBox::question(
this,
tr("Confirm invite"),
tr("Do you really want to start a private chat with %1?").arg(userid)))
return;
mtx::requests::CreateRoom req;
req.preset = mtx::requests::Preset::PrivateChat;
req.visibility = mtx::common::RoomVisibility::Private;
if (utils::localUser() != userid) {
req.invite = {userid.toStdString()};
req.is_direct = true;
}
emit ChatPage::instance()->createRoom(req);
}
static QString
2021-12-28 19:12:15 +01:00
mxidFromSegments(QStringView sigil, QStringView mxid)
{
2021-09-18 00:22:33 +02:00
if (mxid.isEmpty())
return QString();
2021-09-18 00:22:33 +02:00
auto mxid_ = QUrl::fromPercentEncoding(mxid.toUtf8());
2021-12-28 19:12:15 +01:00
if (sigil == u"u") {
2021-09-18 00:22:33 +02:00
return "@" + mxid_;
2021-12-28 19:12:15 +01:00
} else if (sigil == u"roomid") {
2021-09-18 00:22:33 +02:00
return "!" + mxid_;
2021-12-28 19:12:15 +01:00
} else if (sigil == u"r") {
2021-09-18 00:22:33 +02:00
return "#" + mxid_;
//} else if (sigil == "group") {
// return "+" + mxid_;
} else {
return QString();
2021-09-18 00:22:33 +02:00
}
}
bool
ChatPage::handleMatrixUri(QString uri)
{
2021-09-18 00:22:33 +02:00
nhlog::ui()->info("Received uri! {}", uri.toStdString());
QUrl uri_{uri};
2021-09-18 00:22:33 +02:00
// Convert matrix.to URIs to proper format
if (uri_.scheme() == QLatin1String("https") && uri_.host() == QLatin1String("matrix.to")) {
2021-09-18 00:22:33 +02:00
QString p = uri_.fragment(QUrl::FullyEncoded);
if (p.startsWith(QLatin1String("/")))
2021-09-18 00:22:33 +02:00
p.remove(0, 1);
auto temp = p.split(QStringLiteral("?"));
2021-09-18 00:22:33 +02:00
QString query;
if (temp.size() >= 2)
query = QUrl::fromPercentEncoding(temp.takeAt(1).toUtf8());
temp = temp.first().split(QStringLiteral("/"));
2021-09-18 00:22:33 +02:00
auto identifier = QUrl::fromPercentEncoding(temp.takeFirst().toUtf8());
QString eventId = QUrl::fromPercentEncoding(temp.join('/').toUtf8());
if (!identifier.isEmpty()) {
if (identifier.startsWith(QLatin1String("@"))) {
2021-09-18 00:22:33 +02:00
QByteArray newUri = "matrix:u/" + QUrl::toPercentEncoding(identifier.remove(0, 1));
if (!query.isEmpty())
newUri.append("?" + query.toUtf8());
return handleMatrixUri(QUrl::fromEncoded(newUri));
} else if (identifier.startsWith(QLatin1String("#"))) {
2021-09-18 00:22:33 +02:00
QByteArray newUri = "matrix:r/" + QUrl::toPercentEncoding(identifier.remove(0, 1));
if (!eventId.isEmpty())
newUri.append("/e/" + QUrl::toPercentEncoding(eventId.remove(0, 1)));
if (!query.isEmpty())
newUri.append("?" + query.toUtf8());
return handleMatrixUri(QUrl::fromEncoded(newUri));
} else if (identifier.startsWith(QLatin1String("!"))) {
2021-09-18 00:22:33 +02:00
QByteArray newUri =
"matrix:roomid/" + QUrl::toPercentEncoding(identifier.remove(0, 1));
if (!eventId.isEmpty())
newUri.append("/e/" + QUrl::toPercentEncoding(eventId.remove(0, 1)));
if (!query.isEmpty())
newUri.append("?" + query.toUtf8());
return handleMatrixUri(QUrl::fromEncoded(newUri));
}
}
2021-09-18 00:22:33 +02:00
}
2021-09-18 00:22:33 +02:00
// non-matrix URIs are not handled by us, return false
if (uri_.scheme() != QLatin1String("matrix"))
2021-09-18 00:22:33 +02:00
return false;
2021-09-18 00:22:33 +02:00
auto tempPath = uri_.path(QUrl::ComponentFormattingOption::FullyEncoded);
if (tempPath.startsWith('/'))
tempPath.remove(0, 1);
2021-12-28 20:09:08 +01:00
auto segments = QStringView(tempPath).split('/');
2021-09-18 00:22:33 +02:00
if (segments.size() != 2 && segments.size() != 4)
return false;
2021-09-18 00:22:33 +02:00
auto sigil1 = segments[0];
auto mxid1 = mxidFromSegments(sigil1, segments[1]);
if (mxid1.isEmpty())
return false;
QString mxid2;
2021-12-28 20:09:08 +01:00
if (segments.size() == 4 && segments[2] == QStringView(u"e")) {
2021-09-18 00:22:33 +02:00
if (segments[3].isEmpty())
return false;
else
mxid2 = "$" + QUrl::fromPercentEncoding(segments[3].toUtf8());
}
std::vector<std::string> vias;
QString action;
2021-12-28 22:30:12 +01:00
auto items =
uri_.query(QUrl::ComponentFormattingOption::FullyEncoded).split('&', Qt::SkipEmptyParts);
for (QString item : qAsConst(items)) {
2021-09-18 00:22:33 +02:00
nhlog::ui()->info("item: {}", item.toStdString());
if (item.startsWith(QLatin1String("action="))) {
action = item.remove(QStringLiteral("action="));
} else if (item.startsWith(QLatin1String("via="))) {
vias.push_back(QUrl::fromPercentEncoding(item.remove(QStringLiteral("via=")).toUtf8())
.toStdString());
}
2021-09-18 00:22:33 +02:00
}
2021-12-28 19:12:15 +01:00
if (sigil1 == u"u") {
2021-09-18 00:22:33 +02:00
if (action.isEmpty()) {
auto t = view_manager_->rooms()->currentRoom();
if (t && cache::isRoomMember(mxid1.toStdString(), t->roomId().toStdString())) {
t->openUserProfile(mxid1);
return true;
2021-09-18 00:22:33 +02:00
}
emit view_manager_->openGlobalUserProfile(mxid1);
2021-12-28 19:12:15 +01:00
} else if (action == u"chat") {
2021-09-18 00:22:33 +02:00
this->startChat(mxid1);
}
return true;
2021-12-28 19:12:15 +01:00
} else if (sigil1 == u"roomid") {
2021-09-18 00:22:33 +02:00
auto joined_rooms = cache::joinedRooms();
auto targetRoomId = mxid1.toStdString();
2021-12-28 22:30:12 +01:00
for (const auto &roomid : joined_rooms) {
2021-09-18 00:22:33 +02:00
if (roomid == targetRoomId) {
view_manager_->rooms()->setCurrentRoom(mxid1);
if (!mxid2.isEmpty())
view_manager_->showEvent(mxid1, mxid2);
return true;
}
}
2021-12-28 19:12:15 +01:00
if (action == u"join" || action.isEmpty()) {
2021-09-18 00:22:33 +02:00
joinRoomVia(targetRoomId, vias);
return true;
}
return false;
2021-12-28 19:12:15 +01:00
} else if (sigil1 == u"r") {
2021-09-18 00:22:33 +02:00
auto joined_rooms = cache::joinedRooms();
auto targetRoomAlias = mxid1.toStdString();
2021-12-28 22:30:12 +01:00
for (const auto &roomid : joined_rooms) {
2021-09-18 00:22:33 +02:00
auto aliases = cache::client()->getRoomAliases(roomid);
if (aliases) {
if (aliases->alias == targetRoomAlias) {
view_manager_->rooms()->setCurrentRoom(QString::fromStdString(roomid));
if (!mxid2.isEmpty())
view_manager_->showEvent(QString::fromStdString(roomid), mxid2);
return true;
}
2021-09-18 00:22:33 +02:00
}
}
2021-12-28 19:12:15 +01:00
if (action == u"join" || action.isEmpty()) {
2021-09-18 00:22:33 +02:00
joinRoomVia(mxid1.toStdString(), vias);
return true;
}
return false;
2021-09-18 00:22:33 +02:00
}
return false;
}
bool
ChatPage::handleMatrixUri(const QUrl &uri)
{
2021-09-18 00:22:33 +02:00
return handleMatrixUri(uri.toString(QUrl::ComponentFormattingOption::FullyEncoded).toUtf8());
}
2021-05-28 23:25:57 +02:00
bool
ChatPage::isRoomActive(const QString &room_id)
{
2021-09-18 00:22:33 +02:00
return isActiveWindow() && currentRoom() == room_id;
2021-05-28 23:25:57 +02:00
}
QString
ChatPage::currentRoom() const
{
2021-09-18 00:22:33 +02:00
if (view_manager_->rooms()->currentRoom())
return view_manager_->rooms()->currentRoom()->roomId();
else
return QString();
}