Skip to content
Snippets Groups Projects
ChatPage.cpp 52.6 KiB
Newer Older
  • Learn to ignore specific revisions
  • Konstantinos Sideris's avatar
    Konstantinos Sideris committed
    /*
     * nheko Copyright (C) 2017  Konstantinos Sideris <siderisk@auth.gr>
     *
     * This program is free software: you can redistribute it and/or modify
     * it under the terms of the GNU General Public License as published by
     * the Free Software Foundation, either version 3 of the License, or
     * (at your option) any later version.
     *
     * This program is distributed in the hope that it will be useful,
     * but WITHOUT ANY WARRANTY; without even the implied warranty of
     * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     * GNU General Public License for more details.
     *
     * You should have received a copy of the GNU General Public License
     * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     */
    
    
    #include <QImageReader>
    
    #include <QMessageBox>
    
    Konstantinos Sideris's avatar
    Konstantinos Sideris committed
    #include <QSettings>
    
    #include <QShortcut>
    
    #include <QtConcurrent>
    
    Konstantinos Sideris's avatar
    Konstantinos Sideris committed
    #include "Cache.h"
    
    #include "Cache_p.h"
    
    Konstantinos Sideris's avatar
    Konstantinos Sideris committed
    #include "ChatPage.h"
    
    #include "Logging.h"
    
    Konstantinos Sideris's avatar
    Konstantinos Sideris committed
    #include "MatrixClient.h"
    
    #include "Olm.h"
    
    Konstantinos Sideris's avatar
    Konstantinos Sideris committed
    #include "QuickSwitcher.h"
    #include "RoomList.h"
    #include "SideBarActions.h"
    
    Konstantinos Sideris's avatar
    Konstantinos Sideris committed
    #include "Splitter.h"
    
    Konstantinos Sideris's avatar
    Konstantinos Sideris committed
    #include "TextInputWidget.h"
    #include "TopRoomBar.h"
    
    Konstantinos Sideris's avatar
    Konstantinos Sideris committed
    #include "UserInfoWidget.h"
    
    #include "UserSettingsPage.h"
    
    #include "ui/OverlayModal.h"
    #include "ui/Theme.h"
    
    #include "notifications/Manager.h"
    
    
    #include "dialogs/ReadReceipts.h"
    
    Joe Donofry's avatar
    Joe Donofry committed
    #include "popups/UserMentions.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>)
    
    ChatPage::ChatPage(QSharedPointer<UserSettings> userSettings, QWidget *parent)
    
      : QWidget(parent)
    
      , isConnected_(true)
    
      , userSettings_{userSettings}
    
      , notificationsManager(this)
    
    Konstantinos Sideris's avatar
    Konstantinos Sideris committed
    {
    
            setObjectName("chatPage");
    
            qRegisterMetaType<std::optional<mtx::crypto::EncryptedFile>>();
            qRegisterMetaType<std::optional<RelatedInfo>>();
    
            topLayout_ = new QHBoxLayout(this);
            topLayout_->setSpacing(0);
            topLayout_->setMargin(0);
    
    
            communitiesList_ = new CommunitiesList(this);
    
            topLayout_->addWidget(communitiesList_);
    
    Max Sandholm's avatar
    Max Sandholm committed
    
    
            splitter = new Splitter(this);
    
            splitter->setHandleWidth(0);
    
            topLayout_->addWidget(splitter);
    
            // SideBar
    
            sideBar_ = new QFrame(this);
    
    Konstantinos Sideris's avatar
    Konstantinos Sideris committed
            sideBar_->setObjectName("sideBar");
    
    Nicolas Werner's avatar
    Nicolas Werner committed
            sideBar_->setMinimumWidth(::splitter::calculateSidebarSizes(QFont{}).normal);
    
            sideBarLayout_ = new QVBoxLayout(sideBar_);
            sideBarLayout_->setSpacing(0);
            sideBarLayout_->setMargin(0);
    
    
    Max Sandholm's avatar
    Max Sandholm committed
            sideBarTopWidget_ = new QWidget(sideBar_);
            sidebarActions_   = new SideBarActions(this);
    
            connect(
              sidebarActions_, &SideBarActions::showSettings, this, &ChatPage::showUserSettingsPage);
    
            connect(sidebarActions_, &SideBarActions::joinRoom, this, &ChatPage::joinRoom);
            connect(sidebarActions_, &SideBarActions::createRoom, this, &ChatPage::createRoom);
    
            user_info_widget_    = new UserInfoWidget(sideBar_);
    
    Joe Donofry's avatar
    Joe Donofry committed
            user_mentions_popup_ = new popups::UserMentions();
    
            room_list_           = new RoomList(userSettings, sideBar_);
    
            connect(room_list_, &RoomList::joinRoom, this, &ChatPage::joinRoom);
    
            sideBarLayout_->addWidget(user_info_widget_);
            sideBarLayout_->addWidget(room_list_);
            sideBarLayout_->addWidget(sidebarActions_);
    
    Max Sandholm's avatar
    Max Sandholm committed
            sideBarTopWidgetLayout_ = new QVBoxLayout(sideBarTopWidget_);
            sideBarTopWidgetLayout_->setSpacing(0);
            sideBarTopWidgetLayout_->setMargin(0);
    
    
            content_ = new QFrame(this);
            content_->setObjectName("mainContent");
    
            contentLayout_ = new QVBoxLayout(content_);
            contentLayout_->setSpacing(0);
            contentLayout_->setMargin(0);
    
    
            top_bar_      = new TopRoomBar(this);
    
            view_manager_ = new TimelineViewManager(userSettings_, this);
    
            contentLayout_->addWidget(top_bar_);
    
            contentLayout_->addWidget(view_manager_->getWidget());
    
    
            // Splitter
            splitter->addWidget(sideBar_);
            splitter->addWidget(content_);
    
            splitter->restoreSizes(parent->width());
    
            text_input_ = new TextInputWidget(this);
    
            contentLayout_->addWidget(text_input_);
    
            typingRefresher_ = new QTimer(this);
            typingRefresher_->setInterval(TYPING_REFRESH_TIMEOUT);
    
    
            connect(this, &ChatPage::connectionLost, this, [this]() {
    
                    nhlog::net()->info("connectivity lost");
    
                    isConnected_ = false;
    
                    http::client()->shutdown();
    
                    text_input_->disableInput();
            });
            connect(this, &ChatPage::connectionRestored, this, [this]() {
    
                    nhlog::net()->info("trying to re-connect");
    
                    text_input_->enableInput();
                    isConnected_ = true;
    
                    // Drop all pending connections.
    
                    http::client()->shutdown();
    
            connect(
              new QShortcut(QKeySequence("Ctrl+Down"), this), &QShortcut::activated, this, [this]() {
                      if (isVisible())
                              room_list_->nextRoom();
              });
            connect(
              new QShortcut(QKeySequence("Ctrl+Up"), this), &QShortcut::activated, this, [this]() {
                      if (isVisible())
                              room_list_->previousRoom();
              });
    
    
    Joe Donofry's avatar
    Joe Donofry committed
            connect(top_bar_, &TopRoomBar::mentionsClicked, this, [this](const QPoint &mentionsPos) {
    
                    if (user_mentions_popup_->isVisible()) {
                            user_mentions_popup_->hide();
                    } else {
    
                            showNotificationsDialog(mentionsPos);
    
                            http::client()->notifications(
                              1000,
                              "",
                              "highlight",
                              [this, mentionsPos](const mtx::responses::Notifications &res,
                                                  mtx::http::RequestErr err) {
                                      if (err) {
                                              nhlog::net()->warn(
                                                "failed to retrieve notifications: {} ({})",
                                                err->matrix_error.error,
                                                static_cast<int>(err->status_code));
                                              return;
                                      }
    
                                      emit highlightedNotifsRetrieved(std::move(res), mentionsPos);
                              });
                    }
    
            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(top_bar_, &TopRoomBar::showRoomList, splitter, &Splitter::showFullRoomList);
    
            connect(top_bar_, &TopRoomBar::inviteUsers, this, [this](QStringList users) {
    
                    const auto room_id = current_room_.toStdString();
    
    
                    for (int ii = 0; ii < users.size(); ++ii) {
    
                            QTimer::singleShot(ii * 500, this, [this, room_id, ii, users]() {
                                    const auto user = users.at(ii);
    
    
                                    http::client()->invite_user(
    
                                      room_id,
                                      user.toStdString(),
                                      [this, user](const mtx::responses::RoomInvite &,
                                                   mtx::http::RequestErr err) {
                                              if (err) {
                                                      emit showNotification(
    
                                                        tr("Failed to invite user: %1").arg(user));
    
                                              emit showNotification(tr("Invited user: %1").arg(user));
    
            connect(room_list_, &RoomList::roomChanged, text_input_, &TextInputWidget::stopTyping);
    
            connect(room_list_, &RoomList::roomChanged, this, &ChatPage::changeTopRoomInfo);
    
            connect(room_list_, &RoomList::roomChanged, splitter, &Splitter::showChatView);
    
            connect(room_list_, &RoomList::roomChanged, text_input_, &TextInputWidget::focusLineEdit);
            connect(
              room_list_, &RoomList::roomChanged, view_manager_, &TimelineViewManager::setHistoryView);
    
    
    Konstantinos Sideris's avatar
    Konstantinos Sideris committed
            connect(room_list_, &RoomList::acceptInvite, this, [this](const QString &room_id) {
                    view_manager_->addRoom(room_id);
    
                    joinRoom(room_id);
    
    Konstantinos Sideris's avatar
    Konstantinos Sideris committed
                    room_list_->removeRoom(room_id, currentRoom() == room_id);
            });
    
            connect(room_list_, &RoomList::declineInvite, this, [this](const QString &room_id) {
    
                    leaveRoom(room_id);
    
    Konstantinos Sideris's avatar
    Konstantinos Sideris committed
                    room_list_->removeRoom(room_id, currentRoom() == room_id);
            });
    
            connect(
              text_input_, &TextInputWidget::startedTyping, this, &ChatPage::sendTypingNotifications);
            connect(typingRefresher_, &QTimer::timeout, this, &ChatPage::sendTypingNotifications);
    
            connect(text_input_, &TextInputWidget::stoppedTyping, this, [this]() {
    
                    if (!userSettings_->isTypingNotificationsEnabled())
                            return;
    
    
                    typingRefresher_->stop();
    
                    http::client()->stop_typing(
    
                      current_room_.toStdString(), [](mtx::http::RequestErr err) {
                              if (err) {
    
                                      nhlog::net()->warn("failed to stop typing notifications: {}",
                                                         err->matrix_error.error);
    
            connect(view_manager_,
                    &TimelineViewManager::updateRoomsLastMessage,
                    room_list_,
                    &RoomList::updateRoomDescription);
    
            connect(room_list_,
                    SIGNAL(totalUnreadMessageCountUpdated(int)),
                    this,
                    SLOT(showUnreadMessageNotification(int)));
    
            connect(text_input_,
    
                    &TextInputWidget::sendTextMessage,
    
                    &TimelineViewManager::queueTextMessage);
    
            connect(text_input_,
    
                    &TextInputWidget::sendEmoteMessage,
    
                    &TimelineViewManager::queueEmoteMessage);
    
            connect(text_input_, &TextInputWidget::sendJoinRoomRequest, this, &ChatPage::joinRoom);
    
            // invites and bans via quick command
    
            connect(text_input_, &TextInputWidget::sendInviteRoomRequest, this, &ChatPage::inviteUser);
            connect(text_input_, &TextInputWidget::sendKickRoomRequest, this, &ChatPage::kickUser);
            connect(text_input_, &TextInputWidget::sendBanRoomRequest, this, &ChatPage::banUser);
            connect(text_input_, &TextInputWidget::sendUnbanRoomRequest, this, &ChatPage::unbanUser);
    
              &TextInputWidget::uploadMedia,
    
    Nicolas Werner's avatar
    Nicolas Werner committed
              [this](QSharedPointer<QIODevice> dev, QString mimeClass, const QString &fn) {
    
                      if (!dev->open(QIODevice::ReadOnly)) {
                              emit uploadFailed(
                                QString("Error while reading media: %1").arg(dev->errorString()));
                              return;
                      }
    
    
                      auto bin = dev->readAll();
                      QMimeDatabase db;
                      QMimeType mime = db.mimeTypeForData(bin);
    
    
                      auto payload = std::string(bin.data(), bin.size());
    
    Nicolas Werner's avatar
    Nicolas Werner committed
                      std::optional<mtx::crypto::EncryptedFile> encryptedFile;
    
                      if (cache::isRoomEncrypted(current_room_.toStdString())) {
    
                              mtx::crypto::BinaryBuf buf;
                              std::tie(buf, encryptedFile) = mtx::crypto::encrypt_file(payload);
                              payload                      = mtx::crypto::to_string(buf);
                      }
    
                      QSize dimensions;
    
                      QString blurhash;
                      if (mimeClass == "image") {
    
                              QImage img = utils::readImage(&bin);
    
    
                              dimensions = img.size();
    
    Nicolas Werner's avatar
    Nicolas Werner committed
                              if (img.height() > 200 && img.width() > 360)
                                      img = img.scaled(360, 200, Qt::KeepAspectRatioByExpanding);
    
                              std::vector<unsigned char> data;
                              for (int y = 0; y < img.height(); y++) {
                                      for (int x = 0; x < img.width(); x++) {
                                              auto p = img.pixel(x, y);
                                              data.push_back(static_cast<unsigned char>(qRed(p)));
                                              data.push_back(static_cast<unsigned char>(qGreen(p)));
                                              data.push_back(static_cast<unsigned char>(qBlue(p)));
                                      }
                              }
                              blurhash = QString::fromStdString(
                                blurhash::encode(data.data(), img.width(), img.height(), 4, 3));
                      }
    
    
                      http::client()->upload(
    
                        encryptedFile ? "application/octet-stream" : mime.name().toStdString(),
    
                        QFileInfo(fn).fileName().toStdString(),
                        [this,
                         room_id  = current_room_,
                         filename = fn,
    
                         encryptedFile,
                         mimeClass,
                         mime = mime.name(),
                         size = payload.size(),
    
                         dimensions,
    
    Nicolas Werner's avatar
    Nicolas Werner committed
                         blurhash](const mtx::responses::ContentURI &res, mtx::http::RequestErr err) {
    
                                if (err) {
                                        emit uploadFailed(
    
                                          tr("Failed to upload media. Please try again."));
                                        nhlog::net()->warn("failed to upload media: {} {} ({})",
    
                                                           err->matrix_error.error,
                                                           to_string(err->matrix_error.errcode),
                                                           static_cast<int>(err->status_code));
                                        return;
                                }
    
    
                                emit mediaUploaded(room_id,
    
                                                   encryptedFile,
    
                                                   QString::fromStdString(res.content_uri),
    
                                                   mimeClass,
    
                                                   dimensions,
    
    Nicolas Werner's avatar
    Nicolas Werner committed
                                                   blurhash);
    
            connect(this, &ChatPage::uploadFailed, this, [this](const QString &msg) {
    
                    text_input_->hideUploadSpinner();
                    emit showNotification(msg);
            });
    
            connect(this,
                    &ChatPage::mediaUploaded,
                    this,
                    [this](QString roomid,
                           QString filename,
                           std::optional<mtx::crypto::EncryptedFile> encryptedFile,
                           QString url,
                           QString mimeClass,
                           QString mime,
                           qint64 dsize,
                           QSize dimensions,
    
    Nicolas Werner's avatar
    Nicolas Werner committed
                           QString blurhash) {
    
                            text_input_->hideUploadSpinner();
    
                            if (encryptedFile)
                                    encryptedFile->url = url.toStdString();
    
                            if (mimeClass == "image")
                                    view_manager_->queueImageMessage(roomid,
                                                                     filename,
                                                                     encryptedFile,
                                                                     url,
                                                                     mime,
                                                                     dsize,
                                                                     dimensions,
    
    Nicolas Werner's avatar
    Nicolas Werner committed
                                                                     blurhash);
    
                            else if (mimeClass == "audio")
                                    view_manager_->queueAudioMessage(
    
    Nicolas Werner's avatar
    Nicolas Werner committed
                                      roomid, filename, encryptedFile, url, mime, dsize);
    
                            else if (mimeClass == "video")
                                    view_manager_->queueVideoMessage(
    
    Nicolas Werner's avatar
    Nicolas Werner committed
                                      roomid, filename, encryptedFile, url, mime, dsize);
    
                            else
                                    view_manager_->queueFileMessage(
    
    Nicolas Werner's avatar
    Nicolas Werner committed
                                      roomid, filename, encryptedFile, url, mime, dsize);
    
    Max Sandholm's avatar
    Max Sandholm committed
    
    
            connect(room_list_, &RoomList::roomAvatarChanged, this, &ChatPage::updateTopBarAvatar);
    
    Konstantinos Sideris's avatar
    Konstantinos Sideris committed
            connect(
              this, &ChatPage::updateGroupsInfo, communitiesList_, &CommunitiesList::setCommunities);
    
    
            connect(this, &ChatPage::leftRoom, this, &ChatPage::removeRoom);
            connect(this, &ChatPage::notificationsRetrieved, this, &ChatPage::sendDesktopNotifications);
    
    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());
                            }
                    });
    
    Max Sandholm's avatar
    Max Sandholm committed
            connect(communitiesList_,
                    &CommunitiesList::communityChanged,
                    this,
    
    Konstantinos Sideris's avatar
    Konstantinos Sideris committed
                    [this](const QString &groupId) {
                            current_community_ = groupId;
    
    Konstantinos Sideris's avatar
    Konstantinos Sideris committed
                            if (groupId == "world")
    
                                    room_list_->applyFilter(communitiesList_->roomList(groupId));
    
    Max Sandholm's avatar
    Max Sandholm committed
                    });
    
    
            connect(&notificationsManager,
                    &NotificationsManager::notificationClicked,
                    this,
                    [this](const QString &roomid, const QString &eventid) {
                            Q_UNUSED(eventid)
                            room_list_->highlightSelectedRoom(roomid);
                            activateWindow();
                    });
    
    
            setGroupViewState(userSettings_->isGroupViewEnabled());
    
            connect(userSettings_.data(),
                    &UserSettings::groupViewStateChanged,
                    this,
                    &ChatPage::setGroupViewState);
    
    
    Konstantinos Sideris's avatar
    Konstantinos Sideris committed
            connect(this, &ChatPage::initializeRoomList, room_list_, &RoomList::initialize);
            connect(this,
                    &ChatPage::initializeViews,
                    view_manager_,
    
                    [this](const mtx::responses::Rooms &rooms) { view_manager_->sync(rooms); });
    
            connect(this,
                    &ChatPage::initializeEmptyViews,
                    view_manager_,
                    &TimelineViewManager::initWithMessages);
    
    Joe Donofry's avatar
    Joe Donofry committed
            connect(this,
                    &ChatPage::initializeMentions,
                    user_mentions_popup_,
                    &popups::UserMentions::initializeMentions);
    
    Konstantinos Sideris's avatar
    Konstantinos Sideris committed
            connect(this, &ChatPage::syncUI, this, [this](const mtx::responses::Rooms &rooms) {
    
                            room_list_->cleanupInvites(cache::invites());
    
                    } catch (const lmdb::error &e) {
    
                            nhlog::db()->error("failed to retrieve invites: {}", e.what());
    
                    view_manager_->sync(rooms);
    
    Konstantinos Sideris's avatar
    Konstantinos Sideris committed
                    removeLeftRooms(rooms.leave);
    
                    bool hasNotifications = false;
    
                    for (const auto &room : rooms.join) {
                            auto room_id = QString::fromStdString(room.first);
                            updateRoomNotificationCount(
    
                              room_id,
                              room.second.unread_notifications.notification_count,
                              room.second.unread_notifications.highlight_count);
    
    
                            if (room.second.unread_notifications.notification_count > 0)
                                    hasNotifications = true;
    
                    if (hasNotifications && userSettings_->hasDesktopNotifications())
    
                            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));
                              });
    
    Konstantinos Sideris's avatar
    Konstantinos Sideris committed
            });
            connect(this, &ChatPage::syncRoomlist, room_list_, &RoomList::sync);
    
            connect(this, &ChatPage::syncTags, communitiesList_, &CommunitiesList::syncTags);
    
            connect(
              this, &ChatPage::syncTopBar, this, [this](const std::map<QString, RoomInfo> &updates) {
                      if (updates.find(currentRoom()) != updates.end())
                              changeTopRoomInfo(currentRoom());
              });
    
            // Callbacks to update the user info (top left corner of the page).
            connect(this, &ChatPage::setUserAvatar, user_info_widget_, &UserInfoWidget::setAvatar);
            connect(this, &ChatPage::setUserDisplayName, this, [this](const QString &name) {
    
                    auto userid = utils::localUser();
    
                    user_info_widget_->setUserId(userid);
                    user_info_widget_->setDisplayName(name);
            });
    
            connect(this, &ChatPage::tryInitialSyncCb, this, &ChatPage::tryInitialSync);
            connect(this, &ChatPage::trySyncCb, this, &ChatPage::trySync);
    
            connect(this, &ChatPage::tryDelayedSyncCb, this, [this]() {
    
                    QTimer::singleShot(RETRY_TIMEOUT, this, &ChatPage::trySync);
    
            connect(this, &ChatPage::dropToLoginPageCb, this, &ChatPage::dropToLoginPage);
    
            instance_ = this;
    
    void
    ChatPage::logout()
    
            deleteConfigs();
    
            resetUI();
    
    
            emit closing();
    
            connectivityTimer_.stop();
    }
    
    void
    ChatPage::dropToLoginPage(const QString &msg)
    {
    
            nhlog::ui()->info("dropping to the login page: {}", msg.toStdString());
    
    
            deleteConfigs();
            resetUI();
    
    
            http::client()->shutdown();
    
            connectivityTimer_.stop();
    
            emit showLoginPage(msg);
    
    }
    
    void
    ChatPage::resetUI()
    {
            room_list_->clear();
            top_bar_->reset();
            user_info_widget_->reset();
            view_manager_->clearAll();
    
    
            showUnreadMessageNotification(0);
    
    Nicolas Werner's avatar
    Nicolas Werner committed
    void
    ChatPage::focusMessageInput()
    {
            this->text_input_->focusLineEdit();
    }
    
    
    void
    ChatPage::deleteConfigs()
    {
    
            QSettings settings;
            settings.beginGroup("auth");
            settings.remove("");
            settings.endGroup();
            settings.beginGroup("client");
            settings.remove("");
            settings.endGroup();
            settings.beginGroup("notifications");
            settings.remove("");
            settings.endGroup();
    
    
            cache::deleteData();
    
            http::client()->clear();
    
    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 &e) {
    
                    nhlog::ui()->critical("bootstrapped with invalid user_id: {}",
    
            http::client()->set_server(homeserver.toStdString());
            http::client()->set_access_token(token.toStdString());
    
            // 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::roomReadStatus, room_list_, &RoomList::updateReadStatus);
    
    
                    connect(cache::client(),
                            &Cache::removeNotification,
                            &notificationsManager,
                            &NotificationsManager::removeNotification);
    
    
                    const bool isInitialized = cache::isInitialized();
    
                    const auto cacheVersion  = cache::formatVersion();
    
                            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 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;
            }
    
    
    void
    
    ChatPage::updateTopBarAvatar(const QString &roomid, const QString &img)
    
    Konstantinos Sideris's avatar
    Konstantinos Sideris committed
    {
    
            top_bar_->updateRoomAvatar(img);
    
    void
    ChatPage::changeTopRoomInfo(const QString &room_id)
    
    Konstantinos Sideris's avatar
    Konstantinos Sideris committed
    {
    
                    nhlog::ui()->warn("cannot switch to empty room_id");
    
    Konstantinos Sideris's avatar
    Konstantinos Sideris committed
            try {
    
                    auto room_info = cache::getRoomInfo({room_id.toStdString()});
    
    Konstantinos Sideris's avatar
    Konstantinos Sideris committed
                    if (room_info.find(room_id) == room_info.end())
                            return;
    
    Konstantinos Sideris's avatar
    Konstantinos Sideris committed
                    const auto name       = QString::fromStdString(room_info[room_id].name);
                    const auto avatar_url = QString::fromStdString(room_info[room_id].avatar_url);
    
    Konstantinos Sideris's avatar
    Konstantinos Sideris committed
                    top_bar_->updateRoomName(name);
                    top_bar_->updateRoomTopic(QString::fromStdString(room_info[room_id].topic));
    
    
                    top_bar_->updateRoomAvatarFromName(name);
                    if (!avatar_url.isEmpty())
    
                            top_bar_->updateRoomAvatar(avatar_url);
    
    Konstantinos Sideris's avatar
    Konstantinos Sideris committed
            } catch (const lmdb::error &e) {
    
                    nhlog::ui()->error("failed to change top bar room info: {}", e.what());
    
    void
    ChatPage::showUnreadMessageNotification(int count)
    
            // TODO: Make the default title a const.
            if (count == 0)
                    emit changeWindowTitle("nheko");
            else
                    emit changeWindowTitle(QString("nheko (%1)").arg(count));
    
    void
    ChatPage::loadStateFromCache()
    
            nhlog::db()->info("restoring state from cache");
    
    Konstantinos Sideris's avatar
    Konstantinos Sideris committed
            QtConcurrent::run([this]() {
                    try {
    
                            cache::restoreSessions();
                            olm::client()->load(cache::restoreOlmAccount(), STORAGE_SECRET_KEY);
    
                            cache::populateMembers();
    
                            emit initializeEmptyViews(cache::roomMessages());
                            emit initializeRoomList(cache::roomInfo());
                            emit initializeMentions(cache::getTimelineMentions());
                            emit syncTags(cache::roomInfo().toStdMap());
    
                            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;
    
    Konstantinos Sideris's avatar
    Konstantinos Sideris committed
                    } 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."));
    
    Konstantinos Sideris's avatar
    Konstantinos Sideris committed
                            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);
    
    Konstantinos Sideris's avatar
    Konstantinos Sideris committed
                    // Start receiving events.
    
    void
    ChatPage::showQuickSwitcher()
    
            auto dialog = new QuickSwitcher(this);
    
            connect(dialog, &QuickSwitcher::roomSelected, room_list_, &RoomList::highlightSelectedRoom);
            connect(dialog, &QuickSwitcher::closing, this, [this]() {
                    MainWindow::instance()->hideOverlay();
                    text_input_->setFocus(Qt::FocusReason::PopupFocusReason);
            });
    
            MainWindow::instance()->showTransparentOverlayModal(dialog);
    
    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.
            }
    
            room_list_->removeRoom(room_id, room_id == current_room_);
    }
    
    
    ChatPage::removeLeftRooms(const std::map<std::string, mtx::responses::LeftRoom> &rooms)
    
            for (auto it = rooms.cbegin(); it != rooms.cend(); ++it) {
                    const auto room_id = QString::fromStdString(it->first);
    
    Konstantinos Sideris's avatar
    Konstantinos Sideris committed
                    room_list_->removeRoom(room_id, room_id == current_room_);
    
    void
    ChatPage::setGroupViewState(bool isEnabled)
    {
            if (!isEnabled) {
                    communitiesList_->communityChanged("world");
    
    ChatPage::updateRoomNotificationCount(const QString &room_id,
                                          uint16_t notification_count,
                                          uint16_t highlight_count)
    
            room_list_->updateUnreadMessageCount(room_id, notification_count, highlight_count);
    
    
    void
    ChatPage::sendDesktopNotifications(const mtx::responses::Notifications &res)
    {
            for (const auto &item : res.notifications) {
                    const auto event_id = utils::event_id(item.event);
    
                    try {
                            if (item.read) {
    
                                    cache::removeReadNotification(event_id);
    
                            if (!cache::isNotificationSent(event_id)) {
    
                                    const auto room_id = QString::fromStdString(item.room_id);
                                    const auto user_id = utils::event_sender(item.event);
    
    
                                    // 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;
    
    
                                    notificationsManager.postNotification(
                                      room_id,
                                      QString::fromStdString(event_id),
    
                                      QString::fromStdString(cache::singleRoomInfo(item.room_id).name),
                                      cache::displayName(room_id, user_id),
    
                                      utils::event_body(item.event),
    
                                      cache::getRoomAvatar(room_id));
    
                            }
                    } catch (const lmdb::error &e) {
    
                            nhlog::db()->warn("error while sending desktop notification: {}", e.what());
    
    Joe Donofry's avatar
    Joe Donofry committed
    void
    
    ChatPage::showNotificationsDialog(const QPoint &widgetPos)
    
    Joe Donofry's avatar
    Joe Donofry committed
            auto notifDialog = user_mentions_popup_;
    
            notifDialog->setGeometry(
              widgetPos.x() - (width() / 10), widgetPos.y() + 25, width() / 5, height() / 2);
    
    Joe Donofry's avatar
    Joe Donofry committed
            notifDialog->raise();
    
            notifDialog->showPopup();
    
    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;
            http::client()->sync(
              opts,
              std::bind(
                &ChatPage::initialSyncHandler, this, std::placeholders::_1, std::placeholders::_2));
    }
    
    
    void
    ChatPage::trySync()
    {
            mtx::http::SyncOpts opts;
    
            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());
    
              opts, [this](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);