|
|
|
/*
|
|
|
|
* 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 <QApplication>
|
|
|
|
#include <QDebug>
|
|
|
|
#include <QSettings>
|
|
|
|
#include <QtConcurrent>
|
|
|
|
|
|
|
|
#include "AvatarProvider.h"
|
|
|
|
#include "Cache.h"
|
|
|
|
#include "ChatPage.h"
|
|
|
|
#include "MainWindow.h"
|
|
|
|
#include "MatrixClient.h"
|
|
|
|
#include "OverlayModal.h"
|
|
|
|
#include "QuickSwitcher.h"
|
|
|
|
#include "RoomList.h"
|
|
|
|
#include "RoomSettings.h"
|
|
|
|
#include "RoomState.h"
|
|
|
|
#include "SideBarActions.h"
|
|
|
|
#include "Splitter.h"
|
|
|
|
#include "TextInputWidget.h"
|
|
|
|
#include "Theme.h"
|
|
|
|
#include "TopRoomBar.h"
|
|
|
|
#include "TypingDisplay.h"
|
|
|
|
#include "UserInfoWidget.h"
|
|
|
|
|
|
|
|
#include "timeline/TimelineViewManager.h"
|
|
|
|
|
|
|
|
constexpr int MAX_INITIAL_SYNC_FAILURES = 5;
|
|
|
|
constexpr int SYNC_RETRY_TIMEOUT = 10000;
|
|
|
|
|
|
|
|
ChatPage::ChatPage(QSharedPointer<MatrixClient> client, QWidget *parent)
|
|
|
|
: QWidget(parent)
|
|
|
|
, client_(client)
|
|
|
|
{
|
|
|
|
setObjectName("chatPage");
|
|
|
|
|
|
|
|
topLayout_ = new QHBoxLayout(this);
|
|
|
|
topLayout_->setSpacing(0);
|
|
|
|
topLayout_->setMargin(0);
|
|
|
|
|
|
|
|
auto splitter = new Splitter(this);
|
|
|
|
splitter->setHandleWidth(0);
|
|
|
|
|
|
|
|
topLayout_->addWidget(splitter);
|
|
|
|
|
|
|
|
// SideBar
|
|
|
|
sideBar_ = new QFrame(this);
|
|
|
|
sideBar_->setMinimumSize(QSize(ui::sidebar::NormalSize, parent->height()));
|
|
|
|
sideBarLayout_ = new QVBoxLayout(sideBar_);
|
|
|
|
sideBarLayout_->setSpacing(0);
|
|
|
|
sideBarLayout_->setMargin(0);
|
|
|
|
|
|
|
|
sidebarActions_ = new SideBarActions(this);
|
|
|
|
connect(
|
|
|
|
sidebarActions_, &SideBarActions::showSettings, this, &ChatPage::showUserSettingsPage);
|
|
|
|
connect(
|
|
|
|
sidebarActions_, &SideBarActions::joinRoom, client_.data(), &MatrixClient::joinRoom);
|
|
|
|
|
|
|
|
user_info_widget_ = new UserInfoWidget(sideBar_);
|
|
|
|
room_list_ = new RoomList(client, sideBar_);
|
|
|
|
|
|
|
|
sideBarLayout_->addWidget(user_info_widget_);
|
|
|
|
sideBarLayout_->addWidget(room_list_);
|
|
|
|
sideBarLayout_->addWidget(sidebarActions_);
|
|
|
|
|
|
|
|
// Content
|
|
|
|
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(client, this);
|
|
|
|
|
|
|
|
contentLayout_->addWidget(top_bar_);
|
|
|
|
contentLayout_->addWidget(view_manager_);
|
|
|
|
|
|
|
|
// Splitter
|
|
|
|
splitter->addWidget(sideBar_);
|
|
|
|
splitter->addWidget(content_);
|
|
|
|
splitter->setSizes({ui::sidebar::NormalSize, parent->width() - ui::sidebar::NormalSize});
|
|
|
|
|
|
|
|
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(user_info_widget_, SIGNAL(logout()), client_.data(), SLOT(logout()));
|
|
|
|
connect(client_.data(), SIGNAL(loggedOut()), this, SLOT(logout()));
|
|
|
|
|
|
|
|
connect(
|
|
|
|
top_bar_, &TopRoomBar::leaveRoom, this, [=]() { client_->leaveRoom(current_room_); });
|
|
|
|
|
|
|
|
connect(room_list_, &RoomList::roomChanged, this, [=](const QString &roomid) {
|
|
|
|
QStringList users;
|
|
|
|
|
|
|
|
if (typingUsers_.contains(roomid))
|
|
|
|
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);
|
|
|
|
|
|
|
|
connect(view_manager_,
|
|
|
|
&TimelineViewManager::clearRoomMessageCount,
|
|
|
|
room_list_,
|
|
|
|
&RoomList::clearRoomMessageCount);
|
|
|
|
|
|
|
|
connect(view_manager_,
|
|
|
|
&TimelineViewManager::unreadMessages,
|
|
|
|
this,
|
|
|
|
[=](const QString &roomid, int count) {
|
|
|
|
if (!settingsManager_.contains(roomid)) {
|
|
|
|
qWarning() << "RoomId does not have settings" << roomid;
|
|
|
|
room_list_->updateUnreadMessageCount(roomid, count);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (settingsManager_[roomid]->isNotificationsEnabled())
|
|
|
|
room_list_->updateUnreadMessageCount(roomid, count);
|
|
|
|
});
|
|
|
|
|
|
|
|
connect(text_input_, &TextInputWidget::startedTyping, this, [=]() {
|
|
|
|
typingRefresher_->start();
|
|
|
|
client_->sendTypingNotification(current_room_);
|
|
|
|
});
|
|
|
|
|
|
|
|
connect(text_input_, &TextInputWidget::stoppedTyping, this, [=]() {
|
|
|
|
typingRefresher_->stop();
|
|
|
|
client_->removeTypingNotification(current_room_);
|
|
|
|
});
|
|
|
|
|
|
|
|
connect(typingRefresher_, &QTimer::timeout, this, [=]() {
|
|
|
|
client_->sendTypingNotification(current_room_);
|
|
|
|
});
|
|
|
|
|
|
|
|
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,
|
|
|
|
client_.data(),
|
|
|
|
&MatrixClient::joinRoom);
|
|
|
|
|
|
|
|
connect(text_input_, &TextInputWidget::uploadImage, this, [=](QString filename) {
|
|
|
|
client_->uploadImage(current_room_, filename);
|
|
|
|
});
|
|
|
|
|
|
|
|
connect(text_input_, &TextInputWidget::uploadFile, this, [=](QString filename) {
|
|
|
|
client_->uploadFile(current_room_, filename);
|
|
|
|
});
|
|
|
|
|
|
|
|
connect(text_input_, &TextInputWidget::uploadAudio, this, [=](QString filename) {
|
|
|
|
client_->uploadAudio(current_room_, filename);
|
|
|
|
});
|
|
|
|
|
|
|
|
connect(client_.data(), &MatrixClient::joinFailed, this, &ChatPage::showNotification);
|
|
|
|
connect(client_.data(),
|
|
|
|
&MatrixClient::imageUploaded,
|
|
|
|
this,
|
|
|
|
[=](QString roomid, QString filename, QString url) {
|
|
|
|
text_input_->hideUploadSpinner();
|
|
|
|
view_manager_->queueImageMessage(roomid, filename, url);
|
|
|
|
});
|
|
|
|
connect(client_.data(),
|
|
|
|
&MatrixClient::fileUploaded,
|
|
|
|
this,
|
|
|
|
[=](QString roomid, QString filename, QString url) {
|
|
|
|
text_input_->hideUploadSpinner();
|
|
|
|
view_manager_->queueFileMessage(roomid, filename, url);
|
|
|
|
});
|
|
|
|
connect(client_.data(),
|
|
|
|
&MatrixClient::audioUploaded,
|
|
|
|
this,
|
|
|
|
[=](QString roomid, QString filename, QString url) {
|
|
|
|
text_input_->hideUploadSpinner();
|
|
|
|
view_manager_->queueAudioMessage(roomid, filename, url);
|
|
|
|
});
|
|
|
|
|
|
|
|
connect(
|
|
|
|
client_.data(), &MatrixClient::roomAvatarRetrieved, this, &ChatPage::updateTopBarAvatar);
|
|
|
|
|
|
|
|
connect(client_.data(),
|
|
|
|
&MatrixClient::initialSyncCompleted,
|
|
|
|
this,
|
|
|
|
&ChatPage::initialSyncCompleted);
|
|
|
|
connect(client_.data(), &MatrixClient::initialSyncFailed, this, [=](const QString &msg) {
|
|
|
|
if (client_->getHomeServer().isEmpty()) {
|
|
|
|
deleteConfigs();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
initialSyncFailures += 1;
|
|
|
|
|
|
|
|
if (initialSyncFailures >= MAX_INITIAL_SYNC_FAILURES) {
|
|
|
|
initialSyncFailures = 0;
|
|
|
|
|
|
|
|
deleteConfigs();
|
|
|
|
|
|
|
|
emit showLoginPage(msg);
|
|
|
|
emit contentLoaded();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
qWarning() << msg;
|
|
|
|
qWarning() << "Retrying initial sync";
|
|
|
|
|
|
|
|
client_->initialSync();
|
|
|
|
});
|
|
|
|
connect(client_.data(), &MatrixClient::syncCompleted, this, &ChatPage::syncCompleted);
|
|
|
|
connect(client_.data(), &MatrixClient::syncFailed, this, &ChatPage::syncFailed);
|
|
|
|
connect(client_.data(),
|
|
|
|
&MatrixClient::getOwnProfileResponse,
|
|
|
|
this,
|
|
|
|
&ChatPage::updateOwnProfileInfo);
|
|
|
|
connect(client_.data(), &MatrixClient::ownAvatarRetrieved, this, &ChatPage::setOwnAvatar);
|
|
|
|
connect(client_.data(), &MatrixClient::joinedRoom, this, [=]() {
|
|
|
|
emit showNotification("You joined the room.");
|
|
|
|
});
|
|
|
|
connect(client_.data(), &MatrixClient::leftRoom, this, &ChatPage::removeRoom);
|
|
|
|
|
|
|
|
showContentTimer_ = new QTimer(this);
|
|
|
|
showContentTimer_->setSingleShot(true);
|
|
|
|
connect(showContentTimer_, &QTimer::timeout, this, [=]() {
|
|
|
|
consensusTimer_->stop();
|
|
|
|
emit contentLoaded();
|
|
|
|
});
|
|
|
|
|
|
|
|
consensusTimer_ = new QTimer(this);
|
|
|
|
connect(consensusTimer_, &QTimer::timeout, this, [=]() {
|
|
|
|
if (view_manager_->hasLoaded()) {
|
|
|
|
// Remove the spinner overlay.
|
|
|
|
emit contentLoaded();
|
|
|
|
showContentTimer_->stop();
|
|
|
|
consensusTimer_->stop();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
AvatarProvider::init(client);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ChatPage::logout()
|
|
|
|
{
|
|
|
|
deleteConfigs();
|
|
|
|
|
|
|
|
resetUI();
|
|
|
|
|
|
|
|
emit close();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ChatPage::resetUI()
|
|
|
|
{
|
|
|
|
room_avatars_.clear();
|
|
|
|
room_list_->clear();
|
|
|
|
settingsManager_.clear();
|
|
|
|
state_manager_.clear();
|
|
|
|
top_bar_->reset();
|
|
|
|
user_info_widget_->reset();
|
|
|
|
view_manager_->clearAll();
|
|
|
|
AvatarProvider::clear();
|
|
|
|
|
|
|
|
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_->deleteData();
|
|
|
|
|
|
|
|
client_->reset();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ChatPage::bootstrap(QString userid, QString homeserver, QString token)
|
|
|
|
{
|
|
|
|
client_->setServer(homeserver);
|
|
|
|
client_->setAccessToken(token);
|
|
|
|
client_->getOwnProfile();
|
|
|
|
|
|
|
|
cache_ = QSharedPointer<Cache>(new Cache(userid));
|
|
|
|
|
|
|
|
try {
|
|
|
|
cache_->setup();
|
|
|
|
|
|
|
|
if (!cache_->isFormatValid()) {
|
|
|
|
cache_->deleteData();
|
|
|
|
cache_->setup();
|
|
|
|
cache_->setCurrentFormat();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (cache_->isInitialized()) {
|
|
|
|
loadStateFromCache();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
} catch (const lmdb::error &e) {
|
|
|
|
qCritical() << "Cache failure" << e.what();
|
|
|
|
cache_->unmount();
|
|
|
|
cache_->deleteData();
|
|
|
|
qInfo() << "Falling back to initial sync ...";
|
|
|
|
}
|
|
|
|
|
|
|
|
client_->initialSync();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ChatPage::setOwnAvatar(const QPixmap &img)
|
|
|
|
{
|
|
|
|
user_info_widget_->setAvatar(img.toImage());
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ChatPage::syncFailed(const QString &msg)
|
|
|
|
{
|
|
|
|
// Stop if sync is not active. e.g user is logged out.
|
|
|
|
if (client_->getHomeServer().isEmpty())
|
|
|
|
return;
|
|
|
|
|
|
|
|
qWarning() << "Sync error:" << msg;
|
|
|
|
QTimer::singleShot(SYNC_RETRY_TIMEOUT, this, [=]() { client_->sync(); });
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ChatPage::syncCompleted(const mtx::responses::Sync &response)
|
|
|
|
{
|
|
|
|
updateJoinedRooms(response.rooms.join);
|
|
|
|
removeLeftRooms(response.rooms.leave);
|
|
|
|
|
|
|
|
const auto nextBatchToken = QString::fromStdString(response.next_batch);
|
|
|
|
|
|
|
|
auto stateDiff = generateMembershipDifference(response.rooms.join, state_manager_);
|
|
|
|
QtConcurrent::run(cache_.data(), &Cache::setState, nextBatchToken, stateDiff);
|
|
|
|
|
|
|
|
room_list_->sync(state_manager_, settingsManager_);
|
|
|
|
view_manager_->sync(response.rooms);
|
|
|
|
|
|
|
|
client_->setNextBatchToken(nextBatchToken);
|
|
|
|
client_->sync();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ChatPage::initialSyncCompleted(const mtx::responses::Sync &response)
|
|
|
|
{
|
|
|
|
auto joined = response.rooms.join;
|
|
|
|
|
|
|
|
for (auto it = joined.cbegin(); it != joined.cend(); ++it) {
|
|
|
|
RoomState room_state;
|
|
|
|
|
|
|
|
// Build the current state from the timeline and state events.
|
|
|
|
room_state.updateFromEvents(it->second.state.events);
|
|
|
|
room_state.updateFromEvents(it->second.timeline.events);
|
|
|
|
|
|
|
|
// Remove redundant memberships.
|
|
|
|
room_state.removeLeaveMemberships();
|
|
|
|
|
|
|
|
// Resolve room name and avatar. e.g in case of one-to-one chats.
|
|
|
|
room_state.resolveName();
|
|
|
|
room_state.resolveAvatar();
|
|
|
|
|
|
|
|
const auto room_id = QString::fromStdString(it->first);
|
|
|
|
|
|
|
|
state_manager_.insert(room_id, room_state);
|
|
|
|
settingsManager_.insert(room_id,
|
|
|
|
QSharedPointer<RoomSettings>(new RoomSettings(room_id)));
|
|
|
|
|
|
|
|
for (const auto membership : room_state.memberships) {
|
|
|
|
updateUserDisplayName(membership.second);
|
|
|
|
updateUserAvatarUrl(membership.second);
|
|
|
|
}
|
|
|
|
|
|
|
|
QApplication::processEvents();
|
|
|
|
}
|
|
|
|
|
|
|
|
QtConcurrent::run(cache_.data(),
|
|
|
|
&Cache::setState,
|
|
|
|
QString::fromStdString(response.next_batch),
|
|
|
|
state_manager_);
|
|
|
|
|
|
|
|
// Populate timelines with messages.
|
|
|
|
view_manager_->initialize(response.rooms);
|
|
|
|
|
|
|
|
// Initialize room list.
|
|
|
|
room_list_->setInitialRooms(settingsManager_, state_manager_);
|
|
|
|
|
|
|
|
client_->setNextBatchToken(QString::fromStdString(response.next_batch));
|
|
|
|
client_->sync();
|
|
|
|
|
|
|
|
emit contentLoaded();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ChatPage::updateTopBarAvatar(const QString &roomid, const QPixmap &img)
|
|
|
|
{
|
|
|
|
room_avatars_.insert(roomid, img);
|
|
|
|
|
|
|
|
if (current_room_ != roomid)
|
|
|
|
return;
|
|
|
|
|
|
|
|
top_bar_->updateRoomAvatar(img.toImage());
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ChatPage::updateOwnProfileInfo(const QUrl &avatar_url, const QString &display_name)
|
|
|
|
{
|
|
|
|
QSettings settings;
|
|
|
|
auto userid = settings.value("auth/user_id").toString();
|
|
|
|
|
|
|
|
user_info_widget_->setUserId(userid);
|
|
|
|
user_info_widget_->setDisplayName(display_name);
|
|
|
|
|
|
|
|
if (avatar_url.isValid())
|
|
|
|
client_->fetchOwnAvatar(avatar_url);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ChatPage::changeTopRoomInfo(const QString &room_id)
|
|
|
|
{
|
|
|
|
if (!state_manager_.contains(room_id))
|
|
|
|
return;
|
|
|
|
|
|
|
|
auto state = state_manager_[room_id];
|
|
|
|
|
|
|
|
top_bar_->updateRoomName(state.getName());
|
|
|
|
top_bar_->updateRoomTopic(state.getTopic());
|
|
|
|
top_bar_->setRoomSettings(settingsManager_[room_id]);
|
|
|
|
|
|
|
|
if (room_avatars_.contains(room_id))
|
|
|
|
top_bar_->updateRoomAvatar(room_avatars_.value(room_id).toImage());
|
|
|
|
else
|
|
|
|
top_bar_->updateRoomAvatarFromName(state.getName());
|
|
|
|
|
|
|
|
current_room_ = room_id;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ChatPage::showUnreadMessageNotification(int count)
|
|
|
|
{
|
|
|
|
emit unreadMessages(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()
|
|
|
|
{
|
|
|
|
qDebug() << "Restoring state from cache";
|
|
|
|
|
|
|
|
qDebug() << "Restored nextBatchToken" << cache_->nextBatchToken();
|
|
|
|
client_->setNextBatchToken(cache_->nextBatchToken());
|
|
|
|
|
|
|
|
// Fetch all the joined room's state.
|
|
|
|
auto rooms = cache_->states();
|
|
|
|
|
|
|
|
for (auto it = rooms.constBegin(); it != rooms.constEnd(); ++it) {
|
|
|
|
RoomState room_state = it.value();
|
|
|
|
|
|
|
|
// Clean up and prepare state for use.
|
|
|
|
room_state.removeLeaveMemberships();
|
|
|
|
room_state.resolveName();
|
|
|
|
room_state.resolveAvatar();
|
|
|
|
|
|
|
|
// Save the current room state.
|
|
|
|
state_manager_.insert(it.key(), room_state);
|
|
|
|
|
|
|
|
// Create or restore the settings for this room.
|
|
|
|
settingsManager_.insert(it.key(),
|
|
|
|
QSharedPointer<RoomSettings>(new RoomSettings(it.key())));
|
|
|
|
|
|
|
|
// Resolve user avatars.
|
|
|
|
for (const auto membership : room_state.memberships) {
|
|
|
|
updateUserDisplayName(membership.second);
|
|
|
|
updateUserAvatarUrl(membership.second);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Initializing empty timelines.
|
|
|
|
view_manager_->initialize(rooms.keys());
|
|
|
|
|
|
|
|
// Initialize room list from the restored state and settings.
|
|
|
|
room_list_->setInitialRooms(settingsManager_, state_manager_);
|
|
|
|
|
|
|
|
// Check periodically if the timelines have been loaded.
|
|
|
|
consensusTimer_->start(CONSENSUS_TIMEOUT);
|
|
|
|
|
|
|
|
// Show the content if consensus can't be achieved.
|
|
|
|
showContentTimer_->start(SHOW_CONTENT_TIMEOUT);
|
|
|
|
|
|
|
|
// Start receiving events.
|
|
|
|
client_->sync();
|
|
|
|
}
|
|
|
|
|
|
|
|
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, [=]() {
|
|
|
|
if (!this->quickSwitcherModal_.isNull())
|
|
|
|
this->quickSwitcherModal_->fadeOut();
|
|
|
|
this->text_input_->setFocus(Qt::FocusReason::PopupFocusReason);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
if (quickSwitcherModal_.isNull()) {
|
|
|
|
quickSwitcherModal_ = QSharedPointer<OverlayModal>(
|
|
|
|
new OverlayModal(MainWindow::instance(), quickSwitcher_.data()),
|
|
|
|
[=](OverlayModal *modal) { modal->deleteLater(); });
|
|
|
|
quickSwitcherModal_->setDuration(0);
|
|
|
|
quickSwitcherModal_->setColor(QColor(30, 30, 30, 170));
|
|
|
|
}
|
|
|
|
|
|
|
|
QMap<QString, QString> rooms;
|
|
|
|
|
|
|
|
for (auto it = state_manager_.constBegin(); it != state_manager_.constEnd(); ++it) {
|
|
|
|
QString deambiguator =
|
|
|
|
QString::fromStdString(it.value().canonical_alias.content.alias);
|
|
|
|
if (deambiguator == "")
|
|
|
|
deambiguator = it.key();
|
|
|
|
rooms.insert(it.value().getName() + " (" + deambiguator + ")", it.key());
|
|
|
|
}
|
|
|
|
|
|
|
|
quickSwitcher_->setRoomList(rooms);
|
|
|
|
quickSwitcherModal_->fadeIn();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ChatPage::addRoom(const QString &room_id)
|
|
|
|
{
|
|
|
|
if (!state_manager_.contains(room_id)) {
|
|
|
|
RoomState room_state;
|
|
|
|
|
|
|
|
state_manager_.insert(room_id, room_state);
|
|
|
|
settingsManager_.insert(room_id,
|
|
|
|
QSharedPointer<RoomSettings>(new RoomSettings(room_id)));
|
|
|
|
|
|
|
|
room_list_->addRoom(settingsManager_, state_manager_[room_id], room_id);
|
|
|
|
room_list_->highlightSelectedRoom(room_id);
|
|
|
|
|
|
|
|
changeTopRoomInfo(room_id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ChatPage::removeRoom(const QString &room_id)
|
|
|
|
{
|
|
|
|
state_manager_.remove(room_id);
|
|
|
|
settingsManager_.remove(room_id);
|
|
|
|
try {
|
|
|
|
cache_->removeRoom(room_id);
|
|
|
|
} catch (const lmdb::error &e) {
|
|
|
|
qCritical() << "The cache couldn't be updated: " << e.what();
|
|
|
|
// TODO: Notify the user.
|
|
|
|
cache_->unmount();
|
|
|
|
cache_->deleteData();
|
|
|
|
}
|
|
|
|
room_list_->removeRoom(room_id, room_id == current_room_);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ChatPage::updateTypingUsers(const QString &roomid, const std::vector<std::string> &user_ids)
|
|
|
|
{
|
|
|
|
QStringList users;
|
|
|
|
|
|
|
|
QSettings settings;
|
|
|
|
QString user_id = settings.value("auth/user_id").toString();
|
|
|
|
|
|
|
|
for (const auto uid : user_ids) {
|
|
|
|
auto user = QString::fromStdString(uid);
|
|
|
|
|
|
|
|
if (user == user_id)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
users.append(TimelineViewManager::displayName(user));
|
|
|
|
}
|
|
|
|
|
|
|
|
users.sort();
|
|
|
|
|
|
|
|
if (current_room_ == roomid) {
|
|
|
|
typingDisplay_->setUsers(users);
|
|
|
|
}
|
|
|
|
|
|
|
|
typingUsers_.insert(roomid, users);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ChatPage::updateUserAvatarUrl(const mtx::events::StateEvent<mtx::events::state::Member> &membership)
|
|
|
|
{
|
|
|
|
auto uid = QString::fromStdString(membership.sender);
|
|
|
|
auto url = QString::fromStdString(membership.content.avatar_url);
|
|
|
|
|
|
|
|
if (!url.isEmpty())
|
|
|
|
AvatarProvider::setAvatarUrl(uid, url);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ChatPage::updateUserDisplayName(
|
|
|
|
const mtx::events::StateEvent<mtx::events::state::Member> &membership)
|
|
|
|
{
|
|
|
|
auto displayName = QString::fromStdString(membership.content.display_name);
|
|
|
|
auto stateKey = QString::fromStdString(membership.state_key);
|
|
|
|
|
|
|
|
if (!displayName.isEmpty())
|
|
|
|
TimelineViewManager::DISPLAY_NAMES.insert(stateKey, displayName);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
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);
|
|
|
|
|
|
|
|
if (state_manager_.contains(room_id))
|
|
|
|
removeRoom(room_id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ChatPage::updateJoinedRooms(const std::map<std::string, mtx::responses::JoinedRoom> &rooms)
|
|
|
|
{
|
|
|
|
for (auto it = rooms.cbegin(); it != rooms.cend(); ++it) {
|
|
|
|
const auto roomid = QString::fromStdString(it->first);
|
|
|
|
|
|
|
|
updateTypingUsers(roomid, it->second.ephemeral.typing);
|
|
|
|
|
|
|
|
const auto newStateEvents = it->second.state;
|
|
|
|
const auto newTimelineEvents = it->second.timeline;
|
|
|
|
|
|
|
|
// Merge the new updates for rooms that we are tracking.
|
|
|
|
if (state_manager_.contains(roomid)) {
|
|
|
|
auto oldState = &state_manager_[roomid];
|
|
|
|
oldState->updateFromEvents(newStateEvents.events);
|
|
|
|
oldState->updateFromEvents(newTimelineEvents.events);
|
|
|
|
oldState->resolveName();
|
|
|
|
oldState->resolveAvatar();
|
|
|
|
} else {
|
|
|
|
// Build the current state from the timeline and state events.
|
|
|
|
RoomState room_state;
|
|
|
|
room_state.updateFromEvents(newStateEvents.events);
|
|
|
|
room_state.updateFromEvents(newTimelineEvents.events);
|
|
|
|
|
|
|
|
// Resolve room name and avatar. e.g in case of one-to-one chats.
|
|
|
|
room_state.resolveName();
|
|
|
|
room_state.resolveAvatar();
|
|
|
|
|
|
|
|
state_manager_.insert(roomid, room_state);
|
|
|
|
|
|
|
|
settingsManager_.insert(
|
|
|
|
roomid, QSharedPointer<RoomSettings>(new RoomSettings(roomid)));
|
|
|
|
|
|
|
|
view_manager_->addRoom(it->second, roomid);
|
|
|
|
}
|
|
|
|
|
|
|
|
updateUserMetadata(newStateEvents.events);
|
|
|
|
updateUserMetadata(newTimelineEvents.events);
|
|
|
|
|
|
|
|
if (roomid == current_room_)
|
|
|
|
changeTopRoomInfo(roomid);
|
|
|
|
|
|
|
|
QApplication::processEvents();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
QMap<QString, RoomState>
|
|
|
|
ChatPage::generateMembershipDifference(
|
|
|
|
const std::map<std::string, mtx::responses::JoinedRoom> &rooms,
|
|
|
|
const QMap<QString, RoomState> &states) const
|
|
|
|
{
|
|
|
|
QMap<QString, RoomState> stateDiff;
|
|
|
|
|
|
|
|
for (auto it = rooms.cbegin(); it != rooms.cend(); ++it) {
|
|
|
|
const auto room_id = QString::fromStdString(it->first);
|
|
|
|
|
|
|
|
if (!states.contains(room_id))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
auto all_memberships = getMemberships(it->second.state.events);
|
|
|
|
auto timelineMemberships = getMemberships(it->second.timeline.events);
|
|
|
|
|
|
|
|
// We have to process first the state events and then the timeline.
|
|
|
|
for (auto mm = timelineMemberships.cbegin(); mm != timelineMemberships.cend(); ++mm)
|
|
|
|
all_memberships.emplace(mm->first, mm->second);
|
|
|
|
|
|
|
|
RoomState local;
|
|
|
|
local.aliases = states[room_id].aliases;
|
|
|
|
local.avatar = states[room_id].avatar;
|
|
|
|
local.canonical_alias = states[room_id].canonical_alias;
|
|
|
|
local.history_visibility = states[room_id].history_visibility;
|
|
|
|
local.join_rules = states[room_id].join_rules;
|
|
|
|
local.name = states[room_id].name;
|
|
|
|
local.power_levels = states[room_id].power_levels;
|
|
|
|
local.topic = states[room_id].topic;
|
|
|
|
local.memberships = all_memberships;
|
|
|
|
|
|
|
|
stateDiff.insert(room_id, local);
|
|
|
|
}
|
|
|
|
|
|
|
|
return stateDiff;
|
|
|
|
}
|
|
|
|
|
|
|
|
ChatPage::~ChatPage() {}
|