Skip to content
Snippets Groups Projects
ChatPage.cc 51.5 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/>.
     */
    
    
    Konstantinos Sideris's avatar
    Konstantinos Sideris committed
    #include <QSettings>
    
    #include <QtConcurrent>
    
    Konstantinos Sideris's avatar
    Konstantinos Sideris committed
    #include "Cache.h"
    
    Konstantinos Sideris's avatar
    Konstantinos Sideris committed
    #include "ChatPage.h"
    
    #include "Logging.hpp"
    
    Konstantinos Sideris's avatar
    Konstantinos Sideris committed
    #include "MatrixClient.h"
    
    Konstantinos Sideris's avatar
    Konstantinos Sideris committed
    #include "OverlayModal.h"
    #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"
    
    Konstantinos Sideris's avatar
    Konstantinos Sideris committed
    #include "Theme.h"
    
    Konstantinos Sideris's avatar
    Konstantinos Sideris committed
    #include "TopRoomBar.h"
    #include "TypingDisplay.h"
    
    Konstantinos Sideris's avatar
    Konstantinos Sideris committed
    #include "UserInfoWidget.h"
    
    #include "UserSettingsPage.h"
    
    #include "notifications/Manager.h"
    
    
    #include "dialogs/ReadReceipts.h"
    
    #include "timeline/TimelineViewManager.h"
    
    
    // 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;
    
    ChatPage::ChatPage(QSharedPointer<UserSettings> userSettings, QWidget *parent)
    
      : QWidget(parent)
    
      , isConnected_(true)
    
      , userSettings_{userSettings}
    
    Konstantinos Sideris's avatar
    Konstantinos Sideris committed
    {
    
            setObjectName("chatPage");
    
            topLayout_ = new QHBoxLayout(this);
            topLayout_->setSpacing(0);
            topLayout_->setMargin(0);
    
    
            communitiesList_ = new CommunitiesList(this);
    
            topLayout_->addWidget(communitiesList_);
    
    Max Sandholm's avatar
    Max Sandholm committed
    
    
            auto 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");
    
            sideBar_->setMinimumWidth(ui::sidebar::NormalSize);
    
            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_);
    
            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(this);
    
            contentLayout_->addWidget(top_bar_);
            contentLayout_->addWidget(view_manager_);
    
            connect(this,
                    &ChatPage::removeTimelineEvent,
                    view_manager_,
                    &TimelineViewManager::removeTimelineEvent);
    
    
            // Splitter
            splitter->addWidget(sideBar_);
            splitter->addWidget(content_);
    
            splitter->restoreSizes(parent->width());
    
            text_input_    = new TextInputWidget(this);
            typingDisplay_ = new TypingDisplay(this);
            contentLayout_->addWidget(typingDisplay_);
    
            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::v2::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::v2::client()->shutdown();
                    trySync();
            });
    
            connectivityTimer_.setInterval(CHECK_CONNECTIVITY_INTERVAL);
            connect(&connectivityTimer_, &QTimer::timeout, this, [=]() {
                    if (http::v2::client()->access_token().empty()) {
                            connectivityTimer_.stop();
                            return;
                    }
    
                    http::v2::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(user_info_widget_, &UserInfoWidget::logout, this, [this]() {
    
                    http::v2::client()->logout(
                      [this](const mtx::responses::Logout &, mtx::http::RequestErr err) {
                              if (err) {
                                      // TODO: handle special errors
                                      emit contentLoaded();
                                      nhlog::net()->warn(
                                        "failed to logout: {} - {}",
                                        mtx::errors::to_string(err->matrix_error.errcode),
                                        err->matrix_error.error);
                                      return;
                              }
    
            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::v2::client()->invite_user(
                                      room_id,
                                      user.toStdString(),
                                      [this, user](const mtx::responses::RoomInvite &,
                                                   mtx::http::RequestErr err) {
                                              if (err) {
                                                      emit showNotification(
                                                        QString("Failed to invite user: %1").arg(user));
                                                      return;
                                              }
    
                                              emit showNotification(
                                                QString("Invited user: %1").arg(user));
                                      });
    
            connect(room_list_, &RoomList::roomChanged, this, [this](const QString &roomid) {
    
                    if (!userSettings_->isTypingNotificationsEnabled()) {
                            typingDisplay_->setUsers(users);
                            return;
                    }
    
    
                    if (typingUsers_.find(roomid) != typingUsers_.end())
    
                            users = typingUsers_[roomid];
    
                    typingDisplay_->setUsers(users);
            });
    
            connect(room_list_, &RoomList::roomChanged, text_input_, &TextInputWidget::stopTyping);
    
            connect(room_list_, &RoomList::roomChanged, this, &ChatPage::changeTopRoomInfo);
            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::v2::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_,
                    SIGNAL(sendTextMessage(const QString &)),
                    view_manager_,
    
                    SLOT(queueTextMessage(const QString &)));
    
            connect(text_input_,
                    SIGNAL(sendEmoteMessage(const QString &)),
                    view_manager_,
    
                    SLOT(queueEmoteMessage(const QString &)));
    
            connect(text_input_, &TextInputWidget::sendJoinRoomRequest, this, &ChatPage::joinRoom);
    
            connect(text_input_,
                    &TextInputWidget::uploadImage,
                    this,
    
                    [this](QSharedPointer<QIODevice> dev, const QString &fn) {
                            QMimeDatabase db;
                            QMimeType mime = db.mimeTypeForData(dev.data());
    
                            if (!dev->open(QIODevice::ReadOnly)) {
                                    emit uploadFailed(
                                      QString("Error while reading media: %1").arg(dev->errorString()));
                                    return;
                            }
    
                            auto bin     = dev->readAll();
                            auto payload = std::string(bin.data(), bin.size());
    
                            http::v2::client()->upload(
                              payload,
                              mime.name().toStdString(),
                              QFileInfo(fn).fileName().toStdString(),
                              [this,
                               room_id  = current_room_,
                               filename = fn,
                               mime     = mime.name(),
                               size     = payload.size()](const mtx::responses::ContentURI &res,
                                                      mtx::http::RequestErr err) {
                                      if (err) {
                                              emit uploadFailed(
                                                tr("Failed to upload image. Please try again."));
    
                                              nhlog::net()->warn("failed to upload image: {} ({})",
                                                                 err->matrix_error.error,
                                                                 static_cast<int>(err->status_code));
    
                                              return;
                                      }
    
                                      emit imageUploaded(room_id,
                                                         filename,
                                                         QString::fromStdString(res.content_uri),
                                                         mime,
                                                         size);
                              });
    
            connect(text_input_,
                    &TextInputWidget::uploadFile,
                    this,
    
                    [this](QSharedPointer<QIODevice> dev, const QString &fn) {
                            QMimeDatabase db;
                            QMimeType mime = db.mimeTypeForData(dev.data());
    
                            if (!dev->open(QIODevice::ReadOnly)) {
                                    emit uploadFailed(
                                      QString("Error while reading media: %1").arg(dev->errorString()));
                                    return;
                            }
    
                            auto bin     = dev->readAll();
                            auto payload = std::string(bin.data(), bin.size());
    
                            http::v2::client()->upload(
                              payload,
                              mime.name().toStdString(),
                              QFileInfo(fn).fileName().toStdString(),
                              [this,
                               room_id  = current_room_,
                               filename = fn,
                               mime     = mime.name(),
                               size     = payload.size()](const mtx::responses::ContentURI &res,
                                                      mtx::http::RequestErr err) {
                                      if (err) {
                                              emit uploadFailed(
                                                tr("Failed to upload file. Please try again."));
    
                                              nhlog::net()->warn("failed to upload file: {} ({})",
                                                                 err->matrix_error.error,
                                                                 static_cast<int>(err->status_code));
    
                                              return;
                                      }
    
                                      emit fileUploaded(room_id,
                                                        filename,
                                                        QString::fromStdString(res.content_uri),
                                                        mime,
                                                        size);
                              });
    
            connect(text_input_,
                    &TextInputWidget::uploadAudio,
                    this,
    
                    [this](QSharedPointer<QIODevice> dev, const QString &fn) {
                            QMimeDatabase db;
                            QMimeType mime = db.mimeTypeForData(dev.data());
    
                            if (!dev->open(QIODevice::ReadOnly)) {
                                    emit uploadFailed(
                                      QString("Error while reading media: %1").arg(dev->errorString()));
                                    return;
                            }
    
                            auto bin     = dev->readAll();
                            auto payload = std::string(bin.data(), bin.size());
    
                            http::v2::client()->upload(
                              payload,
                              mime.name().toStdString(),
                              QFileInfo(fn).fileName().toStdString(),
                              [this,
                               room_id  = current_room_,
                               filename = fn,
                               mime     = mime.name(),
                               size     = payload.size()](const mtx::responses::ContentURI &res,
                                                      mtx::http::RequestErr err) {
                                      if (err) {
                                              emit uploadFailed(
                                                tr("Failed to upload audio. Please try again."));
    
                                              nhlog::net()->warn("failed to upload audio: {} ({})",
                                                                 err->matrix_error.error,
                                                                 static_cast<int>(err->status_code));
    
                                              return;
                                      }
    
                                      emit audioUploaded(room_id,
                                                         filename,
                                                         QString::fromStdString(res.content_uri),
                                                         mime,
                                                         size);
                              });
    
                    });
            connect(text_input_,
                    &TextInputWidget::uploadVideo,
                    this,
    
                    [this](QSharedPointer<QIODevice> dev, const QString &fn) {
                            QMimeDatabase db;
                            QMimeType mime = db.mimeTypeForData(dev.data());
    
                            if (!dev->open(QIODevice::ReadOnly)) {
                                    emit uploadFailed(
                                      QString("Error while reading media: %1").arg(dev->errorString()));
                                    return;
                            }
    
                            auto bin     = dev->readAll();
                            auto payload = std::string(bin.data(), bin.size());
    
                            http::v2::client()->upload(
                              payload,
                              mime.name().toStdString(),
                              QFileInfo(fn).fileName().toStdString(),
                              [this,
                               room_id  = current_room_,
                               filename = fn,
                               mime     = mime.name(),
                               size     = payload.size()](const mtx::responses::ContentURI &res,
                                                      mtx::http::RequestErr err) {
                                      if (err) {
                                              emit uploadFailed(
                                                tr("Failed to upload video. Please try again."));
    
                                              nhlog::net()->warn("failed to upload video: {} ({})",
                                                                 err->matrix_error.error,
                                                                 static_cast<int>(err->status_code));
    
                                              return;
                                      }
    
                                      emit videoUploaded(room_id,
                                                         filename,
                                                         QString::fromStdString(res.content_uri),
                                                         mime,
                                                         size);
                              });
    
            connect(this, &ChatPage::uploadFailed, this, [this](const QString &msg) {
    
                    text_input_->hideUploadSpinner();
                    emit showNotification(msg);
            });
    
            connect(this,
                    &ChatPage::imageUploaded,
    
                    [this](QString roomid, QString filename, QString url, QString mime, qint64 dsize) {
                            text_input_->hideUploadSpinner();
                            view_manager_->queueImageMessage(roomid, filename, url, mime, dsize);
                    });
            connect(this,
                    &ChatPage::fileUploaded,
    
    Max Sandholm's avatar
    Max Sandholm committed
                    this,
    
                    [this](QString roomid, QString filename, QString url, QString mime, qint64 dsize) {
                            text_input_->hideUploadSpinner();
                            view_manager_->queueFileMessage(roomid, filename, url, mime, dsize);
                    });
            connect(this,
                    &ChatPage::audioUploaded,
    
    Max Sandholm's avatar
    Max Sandholm committed
                    this,
    
                    [this](QString roomid, QString filename, QString url, QString mime, qint64 dsize) {
                            text_input_->hideUploadSpinner();
                            view_manager_->queueAudioMessage(roomid, filename, url, mime, dsize);
    
    Max Sandholm's avatar
    Max Sandholm committed
                    });
    
            connect(this,
                    &ChatPage::videoUploaded,
    
    Max Sandholm's avatar
    Max Sandholm committed
                    this,
    
                    [this](QString roomid, QString filename, QString url, QString mime, qint64 dsize) {
                            text_input_->hideUploadSpinner();
                            view_manager_->queueVideoMessage(roomid, filename, url, mime, dsize);
    
    Max Sandholm's avatar
    Max Sandholm committed
                    });
    
    
            connect(room_list_, &RoomList::roomAvatarChanged, this, &ChatPage::updateTopBarAvatar);
    
            // connect(http::client(),
            //         SIGNAL(getOwnCommunitiesResponse(QList<QString>)),
            //         this,
            //         SLOT(updateOwnCommunitiesInfo(QList<QString>)));
            // connect(http::client(),
            //         &MatrixClient::communityProfileRetrieved,
            //         this,
            //         [this](QString communityId, QJsonObject profile) {
            //                 communities_[communityId]->parseProfile(profile);
            //         });
            // connect(http::client(),
            //         &MatrixClient::communityRoomsRetrieved,
            //         this,
            //         [this](QString communityId, QJsonObject rooms) {
            //                 communities_[communityId]->parseRooms(rooms);
    
            //                 if (communityId == current_community_) {
            //                         if (communityId == "world") {
            //                                 room_list_->setFilterRooms(false);
            //                         } else {
            //                                 room_list_->setRoomFilter(
            //                                   communities_[communityId]->getRoomList());
            //                         }
            //                 }
            //         });
    
            connect(this, &ChatPage::leftRoom, this, &ChatPage::removeRoom);
            connect(this, &ChatPage::notificationsRetrieved, this, &ChatPage::sendDesktopNotifications);
    
    Max Sandholm's avatar
    Max Sandholm committed
            connect(communitiesList_,
                    &CommunitiesList::communityChanged,
                    this,
    
                    [this](const QString &communityId) {
    
    Max Sandholm's avatar
    Max Sandholm committed
                            current_community_ = communityId;
    
    
                            if (communityId == "world")
    
    Max Sandholm's avatar
    Max Sandholm committed
                                    room_list_->setFilterRooms(false);
    
                            else
                                    room_list_->setRoomFilter(communities_[communityId]->getRoomList());
    
    Max Sandholm's avatar
    Max Sandholm committed
                    });
    
    
            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_->initialize(rooms); });
    
            connect(this,
                    &ChatPage::initializeEmptyViews,
                    view_manager_,
                    &TimelineViewManager::initWithMessages);
    
    Konstantinos Sideris's avatar
    Konstantinos Sideris committed
            connect(this, &ChatPage::syncUI, this, [this](const mtx::responses::Rooms &rooms) {
    
                            room_list_->cleanupInvites(cache::client()->invites());
    
                    } catch (const lmdb::error &e) {
    
                            nhlog::db()->error("failed to retrieve invites: {}", e.what());
    
    Konstantinos Sideris's avatar
    Konstantinos Sideris committed
                    view_manager_->initialize(rooms);
                    removeLeftRooms(rooms.leave);
    
                    bool hasNotifications = false;
    
                    for (const auto &room : rooms.join) {
                            auto room_id = QString::fromStdString(room.first);
    
                            updateTypingUsers(room_id, room.second.ephemeral.typing);
                            updateRoomNotificationCount(
                              room_id, room.second.unread_notifications.notification_count);
    
    
                            if (room.second.unread_notifications.notification_count > 0)
                                    hasNotifications = true;
    
                            http::v2::client()->notifications(
                              5,
                              [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::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) {
                    QSettings settings;
                    auto userid = settings.value("auth/user_id").toString();
                    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(5000, 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)
    {
            deleteConfigs();
            resetUI();
    
            http::v2::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);
    
    }
    
    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::client()->deleteData();
    
            http::v2::client()->clear();
    
    void
    ChatPage::bootstrap(QString userid, QString homeserver, QString token)
    
    Konstantinos Sideris's avatar
    Konstantinos Sideris committed
    {
    
            using namespace mtx::identifiers;
    
            try {
                    http::v2::client()->set_user(parse<User>(userid.toStdString()));
            } catch (const std::invalid_argument &e) {
    
                    nhlog::ui()->critical("bootstrapped with invalid user_id: {}",
    
                                          userid.toStdString());
            }
    
            http::v2::client()->set_server(homeserver.toStdString());
            http::v2::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::v2::client()->user_id().to_string());
            olm::client()->set_device_id(http::v2::client()->device_id());
    
    
                    const bool isInitialized = cache::client()->isInitialized();
                    const bool isValid       = cache::client()->isFormatValid();
    
                    if (isInitialized && !isValid) {
    
                            nhlog::db()->warn("breaking changes in cache");
    
                            // TODO: Deleting session data but keep using the
                            //	 same device doesn't work.
    
                            cache::client()->deleteData();
    
                            cache::init(userid);
                            cache::client()->setCurrentFormat();
                    } else if (isInitialized) {
    
                            loadStateFromCache();
                            return;
                    }
            } catch (const lmdb::error &e) {
    
                    nhlog::db()->critical("failure during boot: {}", e.what());
    
                    cache::client()->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::client()->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 QPixmap &img)
    
    Konstantinos Sideris's avatar
    Konstantinos Sideris committed
    {
    
            top_bar_->updateRoomAvatar(img.toImage());
    
    Max Sandholm's avatar
    Max Sandholm committed
    void
    ChatPage::updateOwnCommunitiesInfo(const QList<QString> &own_communities)
    {
            for (int i = 0; i < own_communities.size(); i++) {
                    QSharedPointer<Community> community = QSharedPointer<Community>(new Community());
    
    
                    communities_[own_communities[i]] = community;
    
            communitiesList_->setCommunities(communities_);
    
    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::client()->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));
    
    
                    auto img = cache::client()->getRoomAvatar(room_id);
    
    Konstantinos Sideris's avatar
    Konstantinos Sideris committed
                            top_bar_->updateRoomAvatarFromName(name);
    
                    else
                            top_bar_->updateRoomAvatar(img);
    
    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::client()->restoreSessions();
                            olm::client()->load(cache::client()->restoreOlmAccount(),
                                                STORAGE_SECRET_KEY);
    
    
                            cache::client()->populateMembers();
    
                            emit initializeEmptyViews(cache::client()->roomMessages());
    
                            emit initializeRoomList(cache::client()->roomInfo());
    
                    } 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()
    
            if (quickSwitcher_.isNull()) {
                    quickSwitcher_ = QSharedPointer<QuickSwitcher>(
    
                      new QuickSwitcher(this),
    
                      [](QuickSwitcher *switcher) { switcher->deleteLater(); });
    
                    connect(quickSwitcher_.data(),
    
                            &QuickSwitcher::roomSelected,
                            room_list_,
                            &RoomList::highlightSelectedRoom);
    
                    connect(quickSwitcher_.data(), &QuickSwitcher::closing, this, [this]() {
                            if (!quickSwitcherModal_.isNull())
                                    quickSwitcherModal_->hide();
                            text_input_->setFocus(Qt::FocusReason::PopupFocusReason);
    
            if (quickSwitcherModal_.isNull()) {
                    quickSwitcherModal_ = QSharedPointer<OverlayModal>(
                      new OverlayModal(MainWindow::instance(), quickSwitcher_.data()),
    
                      [](OverlayModal *modal) { modal->deleteLater(); });
    
                    quickSwitcherModal_->setColor(QColor(30, 30, 30, 170));
    
            quickSwitcherModal_->show();
    
    Konstantinos Sideris's avatar
    Konstantinos Sideris committed
    ChatPage::removeRoom(const QString &room_id)
    
                    cache::client()->removeRoom(room_id);
                    cache::client()->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::updateTypingUsers(const QString &roomid, const std::vector<std::string> &user_ids)
    
            if (!userSettings_->isTypingNotificationsEnabled())
                    return;
    
    
            typingUsers_[roomid] = generateTypingUsers(roomid, user_ids);
    
            if (current_room_ == roomid)
                    typingDisplay_->setUsers(typingUsers_[roomid]);
    }
    
    QStringList
    ChatPage::generateTypingUsers(const QString &room_id, const std::vector<std::string> &typing_users)
    {
    
            QString local_user = settings.value("auth/user_id").toString();
    
            for (const auto &uid : typing_users) {
                    const auto remote_user = QString::fromStdString(uid);
    
                    if (remote_user == local_user)
    
                    users.append(Cache::displayName(room_id, remote_user));
    
    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::showReadReceipts(const QString &event_id)
    {
            if (receiptsDialog_.isNull()) {
                    receiptsDialog_ = QSharedPointer<dialogs::ReadReceipts>(
                      new dialogs::ReadReceipts(this),
    
                      [](dialogs::ReadReceipts *dialog) { dialog->deleteLater(); });
    
            }
    
            if (receiptsModal_.isNull()) {
                    receiptsModal_ = QSharedPointer<OverlayModal>(
                      new OverlayModal(MainWindow::instance(), receiptsDialog_.data()),
    
                      [](OverlayModal *modal) { modal->deleteLater(); });
    
                    receiptsModal_->setColor(QColor(30, 30, 30, 170));
            }
    
    
            receiptsDialog_->addUsers(cache::client()->readReceipts(event_id, current_room_));
    
    void
    ChatPage::setGroupViewState(bool isEnabled)
    {
            if (!isEnabled) {
                    communitiesList_->communityChanged("world");
    
    void
    ChatPage::updateRoomNotificationCount(const QString &room_id, uint16_t notification_count)
    {
            room_list_->updateUnreadMessageCount(room_id, notification_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::client()->removeReadNotification(event_id);
    
                            if (!cache::client()->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::client()->markSentNotification(event_id);
    
                                    // Don't send a notification when the current room is opened.
                                    if (isRoomActive(room_id))
                                            continue;
    
    
                                    NotificationsManager::postNotification(
    
                                      QString::fromStdString(
                                        cache::client()->singleRoomInfo(item.room_id).name),
    
                                      Cache::displayName(room_id, user_id),
    
                            }
                    } catch (const lmdb::error &e) {
    
                            nhlog::db()->warn("error while sending desktop notification: {}", e.what());
    
    
    void
    ChatPage::tryInitialSync()