Skip to content
Snippets Groups Projects
ChatPage.cpp 48.9 KiB
Newer Older
  • Learn to ignore specific revisions
  • Nicolas Werner's avatar
    Nicolas Werner committed
    // SPDX-FileCopyrightText: 2017 Konstantinos Sideris <siderisk@auth.gr>
    // SPDX-FileCopyrightText: 2021 Nheko Contributors
    //
    // SPDX-License-Identifier: GPL-3.0-or-later
    
    #include <QInputDialog>
    
    #include <QMessageBox>
    
    Nicolas Werner's avatar
    Nicolas Werner committed
    #include <mtx/responses.hpp>
    
    
    Konstantinos Sideris's avatar
    Konstantinos Sideris committed
    #include "Cache.h"
    
    #include "Cache_p.h"
    
    Nicolas Werner's avatar
    Nicolas Werner committed
    #include "CallManager.h"
    
    Konstantinos Sideris's avatar
    Konstantinos Sideris committed
    #include "ChatPage.h"
    
    #include "DeviceVerificationFlow.h"
    
    #include "Logging.h"
    
    Konstantinos Sideris's avatar
    Konstantinos Sideris committed
    #include "MatrixClient.h"
    
    #include "Olm.h"
    
    #include "UserSettingsPage.h"
    
    #include "ui/OverlayModal.h"
    #include "ui/Theme.h"
    
    #include "notifications/Manager.h"
    
    
    Nicolas Werner's avatar
    Nicolas Werner committed
    #include "timeline/TimelineViewManager.h"
    
    #include "blurhash.hpp"
    
    
    // TODO: Needs to be updated with an actual secret.
    static const std::string STORAGE_SECRET_KEY("secret");
    
    
    ChatPage *ChatPage::instance_             = nullptr;
    constexpr int CHECK_CONNECTIVITY_INTERVAL = 15'000;
    
    constexpr size_t MAX_ONETIME_KEYS         = 50;
    
    Nicolas Werner's avatar
    Nicolas Werner committed
    Q_DECLARE_METATYPE(std::optional<mtx::crypto::EncryptedFile>)
    
    Q_DECLARE_METATYPE(std::optional<RelatedInfo>)
    
    Q_DECLARE_METATYPE(mtx::presence::PresenceState)
    
    Q_DECLARE_METATYPE(mtx::secret_storage::AesHmacSha2KeyDescription)
    Q_DECLARE_METATYPE(SecretsToDecrypt)
    
    ChatPage::ChatPage(QSharedPointer<UserSettings> userSettings, QWidget *parent)
    
      : QWidget(parent)
    
      , isConnected_(true)
    
      , userSettings_{userSettings}
    
      , notificationsManager(this)
    
      , callManager_(new CallManager(this))
    
    Konstantinos Sideris's avatar
    Konstantinos Sideris committed
    {
    
            setObjectName("chatPage");
    
    Nicolas Werner's avatar
    Nicolas Werner committed
            instance_ = this;
    
    
            qRegisterMetaType<std::optional<mtx::crypto::EncryptedFile>>();
            qRegisterMetaType<std::optional<RelatedInfo>>();
    
            qRegisterMetaType<mtx::presence::PresenceState>();
    
            qRegisterMetaType<mtx::secret_storage::AesHmacSha2KeyDescription>();
            qRegisterMetaType<SecretsToDecrypt>();
    
            topLayout_ = new QHBoxLayout(this);
            topLayout_->setSpacing(0);
            topLayout_->setMargin(0);
    
    
    Nicolas Werner's avatar
    Nicolas Werner committed
            view_manager_ = new TimelineViewManager(callManager_, this);
    
    Nicolas Werner's avatar
    Nicolas Werner committed
            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;
    
                    // 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);
    
    Loren Burkholder's avatar
    Loren Burkholder committed
            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;
                                                }
    
                                                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);
    
    Joe Donofry's avatar
    Joe Donofry committed
            connect(this,
                    &ChatPage::highlightedNotifsRetrieved,
                    this,
    
    Joe Donofry's avatar
    Joe Donofry committed
                    [](const mtx::responses::Notifications &notif) {
    
    Joe Donofry's avatar
    Joe Donofry committed
                            try {
    
                                    cache::saveTimelineMentions(notif);
    
    Joe Donofry's avatar
    Joe Donofry committed
                            } catch (const lmdb::error &e) {
                                    nhlog::db()->error("failed to save mentions: {}", e.what());
                            }
                    });
    
            connect(&notificationsManager,
                    &NotificationsManager::notificationClicked,
                    this,
                    [this](const QString &roomid, const QString &eventid) {
                            Q_UNUSED(eventid)
    
    Nicolas Werner's avatar
    Nicolas Werner committed
                            view_manager_->rooms()->setCurrentRoom(roomid);
    
                            activateWindow();
    
                    });
            connect(&notificationsManager,
                    &NotificationsManager::sendNotificationReply,
                    this,
                    [this](const QString &roomid, const QString &eventid, const QString &body) {
    
    Nicolas Werner's avatar
    Nicolas Werner committed
                            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();
            });
    
    
    Nicolas Werner's avatar
    Nicolas Werner committed
            connect(
              this,
              &ChatPage::initializeViews,
              view_manager_,
              [this](const mtx::responses::Rooms &rooms) { view_manager_->sync(rooms); },
              Qt::QueuedConnection);
    
            connect(this,
                    &ChatPage::initializeEmptyViews,
                    view_manager_,
    
    Nicolas Werner's avatar
    Nicolas Werner committed
                    &TimelineViewManager::initializeRoomlist);
    
    Joe Donofry's avatar
    Joe Donofry committed
            connect(
              this, &ChatPage::chatFocusChanged, view_manager_, &TimelineViewManager::chatFocusChanged);
    
    Konstantinos Sideris's avatar
    Konstantinos Sideris committed
            connect(this, &ChatPage::syncUI, this, [this](const mtx::responses::Rooms &rooms) {
    
                    view_manager_->sync(rooms);
    
                    bool hasNotifications = false;
    
                    for (const auto &room : rooms.join) {
    
                            if (room.second.unread_notifications.notification_count > 0)
                                    hasNotifications = true;
    
                    if (hasNotifications && userSettings_->hasNotifications())
    
                            http::client()->notifications(
    
    Joe Donofry's avatar
    Joe Donofry committed
                              "",
                              "",
    
                              [this](const mtx::responses::Notifications &res,
                                     mtx::http::RequestErr err) {
                                      if (err) {
    
                                                "failed to retrieve notifications: {} ({})",
                                                err->matrix_error.error,
                                                static_cast<int>(err->status_code));
                                              return;
                                      }
    
                                      emit notificationsRetrieved(std::move(res));
                              });
    
            connect(
              this, &ChatPage::tryInitialSyncCb, this, &ChatPage::tryInitialSync, Qt::QueuedConnection);
            connect(this, &ChatPage::trySyncCb, this, &ChatPage::trySync, Qt::QueuedConnection);
    
    Nicolas Werner's avatar
    Nicolas Werner committed
            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);
    
    
    trilene's avatar
    trilene committed
            connectCallMessage<mtx::events::msg::CallInvite>();
            connectCallMessage<mtx::events::msg::CallCandidates>();
            connectCallMessage<mtx::events::msg::CallAnswer>();
            connectCallMessage<mtx::events::msg::CallHangUp>();
    
    void
    ChatPage::logout()
    
            resetUI();
    
            deleteConfigs();
    
            emit closing();
    
            connectivityTimer_.stop();
    }
    
    void
    ChatPage::dropToLoginPage(const QString &msg)
    {
    
            nhlog::ui()->info("dropping to the login page: {}", msg.toStdString());
    
    
            http::client()->shutdown();
    
            connectivityTimer_.stop();
    
    
            resetUI();
            deleteConfigs();
    
    
            emit showLoginPage(msg);
    
    }
    
    void
    ChatPage::resetUI()
    {
            view_manager_->clearAll();
    
            emit unreadMessages(0);
    
    }
    
    void
    ChatPage::deleteConfigs()
    {
    
            auto settings = UserSettings::instance()->qsettings();
    
    trilene's avatar
    trilene committed
            if (UserSettings::instance()->profile() != "") {
    
                    settings->beginGroup("profile");
                    settings->beginGroup(UserSettings::instance()->profile());
    
            settings->beginGroup("auth");
            settings->remove("");
            settings->endGroup(); // auth
    
            http::client()->shutdown();
    
            cache::deleteData();
    
    void
    ChatPage::bootstrap(QString userid, QString homeserver, QString token)
    
    Konstantinos Sideris's avatar
    Konstantinos Sideris committed
    {
    
            using namespace mtx::identifiers;
    
            try {
    
                    http::client()->set_user(parse<User>(userid.toStdString()));
    
            } catch (const std::invalid_argument &) {
    
                    nhlog::ui()->critical("bootstrapped with invalid user_id: {}",
    
            http::client()->set_server(homeserver.toStdString());
            http::client()->set_access_token(token.toStdString());
    
            http::client()->verify_certificates(
              !UserSettings::instance()->disableCertificateValidation());
    
            // 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());
    
                    connect(cache::client(),
                            &Cache::newReadReceipts,
                            view_manager_,
                            &TimelineViewManager::updateReadReceipts);
    
    
                    connect(cache::client(),
                            &Cache::removeNotification,
                            &notificationsManager,
                            &NotificationsManager::removeNotification);
    
    
                    const bool isInitialized = cache::isInitialized();
    
                    const auto cacheVersion  = cache::formatVersion();
    
    Nicolas Werner's avatar
    Nicolas Werner committed
                    callManager_->refreshTurnServer();
    
                            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 "
    
    Nicolas Werner's avatar
    Nicolas Werner committed
                                                 "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 or clear your cache."));
                                    QCoreApplication::quit();
                                    return;
                            }
    
            } catch (const lmdb::error &e) {
    
                    nhlog::db()->critical("failure during boot: {}", e.what());
    
                    cache::deleteData();
    
                    nhlog::net()->info("falling back to initial sync");
    
            try {
                    // 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(STORAGE_SECRET_KEY));
    
            } 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;
            }
    
    
            getBackupVersion();
    
    void
    ChatPage::loadStateFromCache()
    
            nhlog::db()->info("restoring state from cache");
    
            try {
                    olm::client()->load(cache::restoreOlmAccount(), STORAGE_SECRET_KEY);
    
    Nicolas Werner's avatar
    Nicolas Werner committed
                    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());
                    return;
            }
    
            nhlog::crypto()->info("ed25519   : {}", olm::client()->identity_keys().ed25519);
            nhlog::crypto()->info("curve25519: {}", olm::client()->identity_keys().curve25519);
    
            getProfileInfo();
    
            getBackupVersion();
    
            emit contentLoaded();
    
    
            // Start receiving events.
            emit trySyncCb();
    
    Konstantinos Sideris's avatar
    Konstantinos Sideris committed
    ChatPage::removeRoom(const QString &room_id)
    
                    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.
            }
    
    ChatPage::sendNotifications(const mtx::responses::Notifications &res)
    
    {
            for (const auto &item : res.notifications) {
    
                    const auto event_id = mtx::accessors::event_id(item.event);
    
                                    cache::removeReadNotification(event_id);
    
                            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_->hasAlertOnNotification()) {
                                            QApplication::alert(this);
                                    }
    
                                    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());
    
                            }
                    } catch (const lmdb::error &e) {
    
                            nhlog::db()->warn("error while sending notification: {}", e.what());
    
    
    void
    ChatPage::tryInitialSync()
    {
    
            nhlog::crypto()->info("ed25519   : {}", olm::client()->identity_keys().ed25519);
            nhlog::crypto()->info("curve25519: {}", olm::client()->identity_keys().curve25519);
    
            // Upload one time keys for the device.
    
            nhlog::crypto()->info("generating one time keys");
    
            olm::client()->generate_one_time_keys(MAX_ONETIME_KEYS);
    
            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);
    
                              if (status_code == 404) {
                                      nhlog::net()->warn(
                                        "skipping key uploading. server doesn't provide /keys/upload");
                                      return startInitialSync();
                              }
    
    
                              nhlog::crypto()->critical("failed to upload one time keys: {} {}",
                                                        err->matrix_error.error,
                                                        status_code);
    
                              QString errorMsg(tr("Failed to setup encryption keys. Server response: "
    
                                                 .arg(QString::fromStdString(err->matrix_error.error))
                                                 .arg(status_code));
    
                              emit dropToLoginPageCb(errorMsg);
    
                      for (const auto &entry : res.one_time_key_counts)
    
                                "uploaded {} {} one-time keys", entry.second, entry.first);
    
    
    void
    ChatPage::startInitialSync()
    {
            nhlog::net()->info("trying initial sync");
    
            mtx::http::SyncOpts opts;
    
            opts.timeout      = 0;
    
            opts.set_presence = currentPresence();
    
    
    Nicolas Werner's avatar
    Nicolas Werner committed
              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);
    
    
                              nhlog::net()->error("initial sync error: {} {} {} {}",
                                                  err->parse_error,
                                                  status_code,
    
                                                  err->error_code,
    
    Nicolas Werner's avatar
    Nicolas Werner committed
    
                              // non http related errors
                              if (status_code <= 0 || status_code >= 600) {
                                      startInitialSync();
                                      return;
                              }
    
                              switch (status_code) {
                              case 502:
                              case 504:
                              case 524: {
                                      startInitialSync();
                                      return;
                              }
                              default: {
                                      emit dropToLoginPageCb(msg);
                                      return;
                              }
                              }
                      }
    
                      nhlog::net()->info("initial sync completed");
    
                      try {
                              cache::client()->saveState(res);
    
                              olm::handle_to_device_messages(res.to_device.events);
    
                              emit initializeViews(std::move(res.rooms));
                              emit initializeMentions(cache::getTimelineMentions());
    
                              cache::calculateRoomReadStatus();
                      } catch (const lmdb::error &e) {
                              nhlog::db()->error("failed to save state after initial sync: {}",
                                                 e.what());
                              startInitialSync();
                              return;
                      }
    
                      emit trySyncCb();
                      emit contentLoaded();
              });
    
    ChatPage::handleSyncResponse(const mtx::responses::Sync &res, const std::string &prev_batch_token)
    
            try {
                    if (prev_batch_token != cache::nextBatchToken()) {
                            nhlog::net()->warn("Duplicate sync, dropping");
                            return;
                    }
            } catch (const lmdb::error &e) {
                    nhlog::db()->warn("Logged out in the mean time, dropping sync");
            }
    
    
            nhlog::net()->debug("sync completed: {}", res.next_batch);
    
            // Ensure that we have enough one-time keys available.
            ensureOneTimeKeyCount(res.device_one_time_keys_count);
    
            // TODO: fine grained error handling
            try {
    
    Nicolas Werner's avatar
    Nicolas Werner committed
                    cache::client()->saveState(res);
    
                    olm::handle_to_device_messages(res.to_device.events);
    
    
    Nicolas Werner's avatar
    Nicolas Werner committed
                    auto updates = cache::getRoomInfo(cache::client()->roomsWithStateUpdates(res));
    
    
                    emit syncUI(res.rooms);
    
                    // 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;
                    }
            } 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()
    {
            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());
    
              [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);
                              const auto err_code   = mtx::errors::to_string(err->matrix_error.errcode);
                              const int status_code = static_cast<int>(err->status_code);
    
    
    Nicolas Werner's avatar
    Nicolas Werner committed
                              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);
    
                              nhlog::net()->error("sync error: {} {} {} {}",
    
                                                  err->parse_error,
                                                  status_code,
    
                                                  err->error_code,
    
                              emit tryDelayedSyncCb();
                              return;
    
                      emit newSyncResponse(res, since);
    
              });
    }
    
    void
    ChatPage::joinRoom(const QString &room)
    {
    
            const auto room_id = room.toStdString();
    
            joinRoomVia(room_id, {}, false);
    
    ChatPage::joinRoomVia(const std::string &room_id,
                          const std::vector<std::string> &via,
                          bool promptForConfirmation)
    
            if (promptForConfirmation &&
                QMessageBox::Yes !=
                  QMessageBox::question(
                    this,
                    tr("Confirm join"),
                    tr("Do you really want to join %1?").arg(QString::fromStdString(room_id))))
    
            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()));
    
    Nicolas Werner's avatar
    Nicolas Werner committed
                      view_manager_->rooms()->setCurrentRoom(QString::fromStdString(room_id));
    
              });
    }
    
    void
    ChatPage::createRoom(const mtx::requests::CreateRoom &req)
    {
    
            http::client()->create_room(
    
              req, [this](const mtx::responses::CreateRoom &res, mtx::http::RequestErr err) {
                      if (err) {
    
                              const auto err_code   = mtx::errors::to_string(err->matrix_error.errcode);
                              const auto error      = err->matrix_error.error;
                              const int status_code = static_cast<int>(err->status_code);
    
                              nhlog::net()->warn(
                                "failed to create room: {} {} ({})", error, err_code, status_code);
    
    
                              emit showNotification(
    
                                tr("Room creation failed: %1").arg(QString::fromStdString(error)));
    
    Jedi18's avatar
    Jedi18 committed
                      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)
    {
    
            http::client()->leave_room(
    
    Nicolas Werner's avatar
    Nicolas Werner committed
              room_id.toStdString(),
    
    Nicolas Werner's avatar
    Nicolas Werner committed
              [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)));
                              return;
                      }
    
                      emit leftRoom(room_id);
              });
    }
    
    
    Jedi18's avatar
    Jedi18 committed
    void
    ChatPage::changeRoom(const QString &room_id)
    {
    
            view_manager_->rooms()->setCurrentRoom(room_id);
    
    void
    ChatPage::inviteUser(QString userid, QString reason)
    {
    
    Nicolas Werner's avatar
    Nicolas Werner committed
            auto room = currentRoom();
    
    
            if (QMessageBox::question(this,
                                      tr("Confirm invite"),
                                      tr("Do you really want to invite %1 (%2)?")
    
    Nicolas Werner's avatar
    Nicolas Werner committed
                                        .arg(cache::displayName(room, userid))
    
                                        .arg(userid)) != QMessageBox::Yes)
                    return;
    
    
              room.toStdString(),
    
              [this, userid, room](const mtx::responses::Empty &, mtx::http::RequestErr err) {
    
                      if (err) {
                              emit showNotification(
                                tr("Failed to invite %1 to %2: %3")
                                  .arg(userid)
                                  .arg(room)
                                  .arg(QString::fromStdString(err->matrix_error.error)));
                      } else
                              emit showNotification(tr("Invited user: %1").arg(userid));
              },
              reason.trimmed().toStdString());
    }
    void
    ChatPage::kickUser(QString userid, QString reason)
    {
    
    Nicolas Werner's avatar
    Nicolas Werner committed
            auto room = currentRoom();
    
    
            if (QMessageBox::question(this,
                                      tr("Confirm kick"),
                                      tr("Do you really want to kick %1 (%2)?")
    
    Nicolas Werner's avatar
    Nicolas Werner committed
                                        .arg(cache::displayName(room, userid))
    
                                        .arg(userid)) != QMessageBox::Yes)
                    return;
    
    
              room.toStdString(),
    
              [this, userid, room](const mtx::responses::Empty &, mtx::http::RequestErr err) {
    
    Nicolas Werner's avatar
    Nicolas Werner committed
                                tr("Failed to kick %1 from %2: %3")
    
                                  .arg(userid)
                                  .arg(room)
                                  .arg(QString::fromStdString(err->matrix_error.error)));
                      } else
                              emit showNotification(tr("Kicked user: %1").arg(userid));
              },
              reason.trimmed().toStdString());
    }
    void
    ChatPage::banUser(QString userid, QString reason)
    {
    
    Nicolas Werner's avatar
    Nicolas Werner committed
            auto room = currentRoom();
    
    
            if (QMessageBox::question(this,
                                      tr("Confirm ban"),
                                      tr("Do you really want to ban %1 (%2)?")
    
    Nicolas Werner's avatar
    Nicolas Werner committed
                                        .arg(cache::displayName(room, userid))
    
                                        .arg(userid)) != QMessageBox::Yes)
                    return;
    
    
              room.toStdString(),
    
              [this, userid, room](const mtx::responses::Empty &, mtx::http::RequestErr err) {
    
                      if (err) {
                              emit showNotification(
                                tr("Failed to ban %1 in %2: %3")
                                  .arg(userid)
                                  .arg(room)
                                  .arg(QString::fromStdString(err->matrix_error.error)));
                      } else
                              emit showNotification(tr("Banned user: %1").arg(userid));
              },
              reason.trimmed().toStdString());
    }
    void
    ChatPage::unbanUser(QString userid, QString reason)
    {
    
    Nicolas Werner's avatar
    Nicolas Werner committed
            auto room = currentRoom();
    
    
            if (QMessageBox::question(this,
                                      tr("Confirm unban"),
                                      tr("Do you really want to unban %1 (%2)?")
    
    Nicolas Werner's avatar
    Nicolas Werner committed
                                        .arg(cache::displayName(room, userid))
    
                                        .arg(userid)) != QMessageBox::Yes)
                    return;
    
    
              room.toStdString(),
    
              [this, userid, room](const mtx::responses::Empty &, mtx::http::RequestErr err) {
    
                      if (err) {
                              emit showNotification(
                                tr("Failed to unban %1 in %2: %3")
                                  .arg(userid)
                                  .arg(room)
                                  .arg(QString::fromStdString(err->matrix_error.error)));
                      } else
                              emit showNotification(tr("Unbanned user: %1").arg(userid));
              },
              reason.trimmed().toStdString());
    }
    
    
    void
    ChatPage::receivedSessionKey(const std::string &room_id, const std::string &session_id)
    {
            view_manager_->receivedSessionKey(room_id, session_id);
    }
    
    
    QString
    ChatPage::status() const
    {
            return QString::fromStdString(cache::statusMessage(utils::localUser().toStdString()));
    }
    
    void
    ChatPage::setStatus(const QString &status)
    {
            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);
                      }
              });
    }
    
    
    mtx::presence::PresenceState
    ChatPage::currentPresence() const
    {
            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;
            }
    }
    
    
    void
    ChatPage::ensureOneTimeKeyCount(const std::map<std::string, uint16_t> &counts)
    {
    
            uint16_t count = 0;
            if (auto c = counts.find(mtx::crypto::SIGNED_CURVE25519); c != counts.end())
                    count = c->second;
    
            if (count < MAX_ONETIME_KEYS) {
                    const int nkeys = MAX_ONETIME_KEYS - count;
    
                    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) {
                                      nhlog::crypto()->warn("failed to update one-time keys: {} {} {}",
                                                            err->matrix_error.error,
                                                            static_cast<int>(err->status_code),
                                                            static_cast<int>(err->error_code));
    
                                      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();
                      });
    
            const auto userid = utils::localUser().toStdString();
    
            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;
                      }
    
                      emit setUserDisplayName(QString::fromStdString(res.display_name));
    
    
                      emit setUserAvatar(QString::fromStdString(res.avatar_url));
    
    void
    ChatPage::getBackupVersion()
    {
            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
    
    Nicolas Werner's avatar
    Nicolas Werner committed
                      QTimer::singleShot(0, this, [res] {
    
                              auto auth_data = nlohmann::json::parse(res.auth_data);
    
                              if (res.algorithm == "m.megolm_backup.v1.curve25519-aes-sha2") {