nheko/src/ChatPage.cc

893 lines
32 KiB
C++
Raw Normal View History

2017-04-06 01:06:42 +02:00
/*
* 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>
2017-04-06 01:06:42 +02:00
#include <QDebug>
#include <QSettings>
#include <QtConcurrent>
2017-04-06 01:06:42 +02:00
#include "AvatarProvider.h"
2017-10-28 14:46:39 +02:00
#include "Cache.h"
2017-04-06 01:06:42 +02:00
#include "ChatPage.h"
#include "MainWindow.h"
2017-10-28 14:46:39 +02:00
#include "MatrixClient.h"
#include "OverlayModal.h"
#include "QuickSwitcher.h"
#include "RoomList.h"
#include "SideBarActions.h"
2017-05-19 18:55:38 +02:00
#include "Splitter.h"
2017-10-28 14:46:39 +02:00
#include "TextInputWidget.h"
2017-05-19 18:55:38 +02:00
#include "Theme.h"
2017-10-28 14:46:39 +02:00
#include "TopRoomBar.h"
#include "TypingDisplay.h"
2017-04-06 01:06:42 +02:00
#include "UserInfoWidget.h"
#include "UserSettingsPage.h"
#include "Utils.h"
2017-04-06 01:06:42 +02:00
2018-05-05 21:40:24 +02:00
#include "notifications/Manager.h"
2018-01-03 17:05:49 +01:00
#include "dialogs/ReadReceipts.h"
2017-11-30 12:53:28 +01:00
#include "timeline/TimelineViewManager.h"
constexpr int SYNC_RETRY_TIMEOUT = 40 * 1000;
constexpr int INITIAL_SYNC_RETRY_TIMEOUT = 240 * 1000;
2017-10-20 21:32:48 +02:00
2018-01-03 17:05:49 +01:00
ChatPage *ChatPage::instance_ = nullptr;
ChatPage::ChatPage(QSharedPointer<UserSettings> userSettings, QWidget *parent)
2017-08-20 12:47:22 +02:00
: QWidget(parent)
, userSettings_{userSettings}
2017-04-06 01:06:42 +02:00
{
setObjectName("chatPage");
2017-05-19 18:55:38 +02:00
topLayout_ = new QHBoxLayout(this);
topLayout_->setSpacing(0);
topLayout_->setMargin(0);
communitiesList_ = new CommunitiesList(this);
topLayout_->addWidget(communitiesList_);
2018-01-09 14:07:32 +01:00
auto splitter = new Splitter(this);
splitter->setHandleWidth(0);
topLayout_->addWidget(splitter);
// SideBar
2017-11-08 22:09:15 +01:00
sideBar_ = new QFrame(this);
2018-01-15 20:04:49 +01:00
sideBar_->setObjectName("sideBar");
sideBar_->setMinimumWidth(ui::sidebar::NormalSize);
sideBarLayout_ = new QVBoxLayout(sideBar_);
sideBarLayout_->setSpacing(0);
sideBarLayout_->setMargin(0);
2018-01-09 14:07:32 +01:00
sideBarTopWidget_ = new QWidget(sideBar_);
sidebarActions_ = new SideBarActions(this);
2017-11-01 23:41:13 +01:00
connect(
sidebarActions_, &SideBarActions::showSettings, this, &ChatPage::showUserSettingsPage);
2017-12-10 14:22:01 +01:00
connect(
sidebarActions_, &SideBarActions::joinRoom, http::client(), &MatrixClient::joinRoom);
2017-12-11 22:00:37 +01:00
connect(
sidebarActions_, &SideBarActions::createRoom, http::client(), &MatrixClient::createRoom);
2017-10-15 21:08:51 +02:00
2017-11-08 22:09:15 +01:00
user_info_widget_ = new UserInfoWidget(sideBar_);
room_list_ = new RoomList(userSettings_, sideBar_);
2017-11-08 22:09:15 +01:00
sideBarLayout_->addWidget(user_info_widget_);
sideBarLayout_->addWidget(room_list_);
sideBarLayout_->addWidget(sidebarActions_);
2018-01-09 14:07:32 +01:00
sideBarTopWidgetLayout_ = new QVBoxLayout(sideBarTopWidget_);
sideBarTopWidgetLayout_->setSpacing(0);
sideBarTopWidgetLayout_->setMargin(0);
// Content
content_ = new QFrame(this);
content_->setObjectName("mainContent");
contentLayout_ = new QVBoxLayout(content_);
contentLayout_->setSpacing(0);
contentLayout_->setMargin(0);
2017-11-08 22:09:15 +01:00
top_bar_ = new TopRoomBar(this);
view_manager_ = new TimelineViewManager(this);
2017-11-08 22:09:15 +01:00
contentLayout_->addWidget(top_bar_);
contentLayout_->addWidget(view_manager_);
// Splitter
splitter->addWidget(sideBar_);
splitter->addWidget(content_);
2017-11-08 23:17:08 +01:00
splitter->setSizes({ui::sidebar::NormalSize, parent->width() - ui::sidebar::NormalSize});
2017-10-04 10:33:34 +02:00
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_, &UserInfoWidget::logout, this, [this]() {
http::client()->logout();
emit showOverlayProgressBar();
});
connect(http::client(), &MatrixClient::loggedOut, this, &ChatPage::logout);
connect(top_bar_, &TopRoomBar::inviteUsers, this, [this](QStringList users) {
2017-12-10 22:59:50 +01:00
for (int ii = 0; ii < users.size(); ++ii) {
2018-02-28 20:14:41 +01:00
QTimer::singleShot(ii * 1000, this, [this, ii, users]() {
http::client()->inviteUser(current_room_, users.at(ii));
2017-12-10 22:59:50 +01:00
});
}
});
connect(room_list_, &RoomList::roomChanged, this, [this](const QString &roomid) {
2017-10-04 10:33:34 +02:00
QStringList users;
if (!userSettings_->isTypingNotificationsEnabled()) {
typingDisplay_->setUsers(users);
return;
}
if (typingUsers_.find(roomid) != typingUsers_.end())
2017-10-04 10:33:34 +02:00
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);
2018-04-21 15:34:50 +02:00
connect(room_list_, &RoomList::acceptInvite, this, [this](const QString &room_id) {
view_manager_->addRoom(room_id);
http::client()->joinRoom(room_id);
2018-04-21 15:34:50 +02:00
room_list_->removeRoom(room_id, currentRoom() == room_id);
});
connect(room_list_, &RoomList::declineInvite, this, [this](const QString &room_id) {
http::client()->leaveRoom(room_id);
2018-04-21 15:34:50 +02:00
room_list_->removeRoom(room_id, currentRoom() == room_id);
});
2017-12-19 21:36:12 +01:00
connect(text_input_, &TextInputWidget::startedTyping, this, [this]() {
if (!userSettings_->isTypingNotificationsEnabled())
return;
typingRefresher_->start();
http::client()->sendTypingNotification(current_room_);
});
connect(text_input_, &TextInputWidget::stoppedTyping, this, [this]() {
if (!userSettings_->isTypingNotificationsEnabled())
return;
typingRefresher_->stop();
http::client()->removeTypingNotification(current_room_);
});
connect(typingRefresher_, &QTimer::timeout, this, [this]() {
if (!userSettings_->isTypingNotificationsEnabled())
return;
http::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 &)));
2017-10-08 21:38:38 +02:00
connect(text_input_,
&TextInputWidget::sendJoinRoomRequest,
http::client(),
2017-10-08 21:38:38 +02:00
&MatrixClient::joinRoom);
connect(text_input_,
&TextInputWidget::uploadImage,
this,
[this](QSharedPointer<QIODevice> data, const QString &fn) {
http::client()->uploadImage(current_room_, fn, data);
});
2017-09-10 11:58:00 +02:00
connect(text_input_,
&TextInputWidget::uploadFile,
this,
[this](QSharedPointer<QIODevice> data, const QString &fn) {
http::client()->uploadFile(current_room_, fn, data);
});
2017-11-29 22:39:35 +01:00
connect(text_input_,
&TextInputWidget::uploadAudio,
this,
[this](QSharedPointer<QIODevice> data, const QString &fn) {
http::client()->uploadAudio(current_room_, fn, data);
});
connect(text_input_,
&TextInputWidget::uploadVideo,
this,
[this](QSharedPointer<QIODevice> data, const QString &fn) {
http::client()->uploadVideo(current_room_, fn, data);
});
2017-12-01 16:33:49 +01:00
2017-12-11 22:00:37 +01:00
connect(
http::client(), &MatrixClient::roomCreationFailed, this, &ChatPage::showNotification);
connect(http::client(), &MatrixClient::joinFailed, this, &ChatPage::showNotification);
connect(http::client(), &MatrixClient::uploadFailed, this, [this](int, const QString &msg) {
2018-02-18 23:17:54 +01:00
text_input_->hideUploadSpinner();
emit showNotification(msg);
});
connect(
http::client(),
&MatrixClient::imageUploaded,
this,
[this](QString roomid, QString filename, QString url, QString mime, uint64_t dsize) {
text_input_->hideUploadSpinner();
view_manager_->queueImageMessage(roomid, filename, url, mime, dsize);
});
connect(
http::client(),
&MatrixClient::fileUploaded,
this,
[this](QString roomid, QString filename, QString url, QString mime, uint64_t dsize) {
text_input_->hideUploadSpinner();
view_manager_->queueFileMessage(roomid, filename, url, mime, dsize);
});
connect(
http::client(),
&MatrixClient::audioUploaded,
this,
[this](QString roomid, QString filename, QString url, QString mime, uint64_t dsize) {
text_input_->hideUploadSpinner();
view_manager_->queueAudioMessage(roomid, filename, url, mime, dsize);
});
connect(
http::client(),
&MatrixClient::videoUploaded,
this,
[this](QString roomid, QString filename, QString url, QString mime, uint64_t dsize) {
text_input_->hideUploadSpinner();
view_manager_->queueVideoMessage(roomid, filename, url, mime, dsize);
});
2017-09-10 11:58:00 +02:00
2017-12-21 23:00:48 +01:00
connect(room_list_, &RoomList::roomAvatarChanged, this, &ChatPage::updateTopBarAvatar);
connect(http::client(),
&MatrixClient::initialSyncCompleted,
this,
&ChatPage::initialSyncCompleted);
connect(
http::client(), &MatrixClient::initialSyncFailed, this, &ChatPage::retryInitialSync);
connect(http::client(), &MatrixClient::syncCompleted, this, &ChatPage::syncCompleted);
connect(http::client(),
&MatrixClient::getOwnProfileResponse,
this,
&ChatPage::updateOwnProfileInfo);
connect(http::client(),
2018-01-09 14:07:32 +01:00
SIGNAL(getOwnCommunitiesResponse(QList<QString>)),
this,
SLOT(updateOwnCommunitiesInfo(QList<QString>)));
connect(http::client(),
2018-01-09 14:07:32 +01:00
&MatrixClient::communityProfileRetrieved,
this,
[this](QString communityId, QJsonObject profile) {
communities_[communityId]->parseProfile(profile);
2018-01-09 14:07:32 +01:00
});
connect(http::client(),
2018-01-09 14:07:32 +01:00
&MatrixClient::communityRoomsRetrieved,
this,
[this](QString communityId, QJsonObject rooms) {
communities_[communityId]->parseRooms(rooms);
2018-01-09 14:07:32 +01:00
if (communityId == current_community_) {
if (communityId == "world") {
room_list_->setFilterRooms(false);
} else {
room_list_->setRoomFilter(
communities_[communityId]->getRoomList());
2018-01-09 14:07:32 +01:00
}
}
});
connect(http::client(), &MatrixClient::joinedRoom, this, [this](const QString &room_id) {
2017-10-08 21:38:38 +02:00
emit showNotification("You joined the room.");
2018-04-21 15:34:50 +02:00
// We remove any invites with the same room_id.
try {
2018-05-08 19:30:09 +02:00
cache::client()->removeInvite(room_id.toStdString());
2018-04-21 15:34:50 +02:00
} catch (const lmdb::error &e) {
emit showNotification(QString("Failed to remove invite: %1")
.arg(QString::fromStdString(e.what())));
}
2017-10-08 21:38:38 +02:00
});
connect(http::client(), &MatrixClient::leftRoom, this, &ChatPage::removeRoom);
connect(http::client(), &MatrixClient::invitedUser, this, [this](QString, QString user) {
2017-12-10 22:59:50 +01:00
emit showNotification(QString("Invited user %1").arg(user));
});
connect(http::client(), &MatrixClient::roomCreated, this, [this](QString room_id) {
2017-12-11 22:00:37 +01:00
emit showNotification(QString("Room %1 created").arg(room_id));
});
connect(http::client(), &MatrixClient::redactionFailed, this, [this](const QString &error) {
2018-03-17 20:23:46 +01:00
emit showNotification(QString("Message redaction failed: %1").arg(error));
});
connect(http::client(),
&MatrixClient::notificationsRetrieved,
this,
&ChatPage::sendDesktopNotifications);
showContentTimer_ = new QTimer(this);
showContentTimer_->setSingleShot(true);
connect(showContentTimer_, &QTimer::timeout, this, [this]() {
consensusTimer_->stop();
emit contentLoaded();
});
2017-10-07 19:50:32 +02:00
consensusTimer_ = new QTimer(this);
connect(consensusTimer_, &QTimer::timeout, this, [this]() {
2017-10-07 19:50:32 +02:00
if (view_manager_->hasLoaded()) {
// Remove the spinner overlay.
emit contentLoaded();
showContentTimer_->stop();
2017-10-07 19:50:32 +02:00
consensusTimer_->stop();
}
});
initialSyncTimer_ = new QTimer(this);
connect(initialSyncTimer_, &QTimer::timeout, this, [this]() { retryInitialSync(); });
syncTimeoutTimer_ = new QTimer(this);
connect(syncTimeoutTimer_, &QTimer::timeout, this, [this]() {
if (http::client()->getHomeServer().isEmpty()) {
syncTimeoutTimer_->stop();
return;
}
qDebug() << "Sync took too long. Retrying...";
http::client()->sync();
});
2018-01-09 14:07:32 +01:00
connect(communitiesList_,
&CommunitiesList::communityChanged,
this,
[this](const QString &communityId) {
2018-01-09 14:07:32 +01:00
current_community_ = communityId;
if (communityId == "world")
2018-01-09 14:07:32 +01:00
room_list_->setFilterRooms(false);
else
room_list_->setRoomFilter(communities_[communityId]->getRoomList());
2018-01-09 14:07:32 +01:00
});
setGroupViewState(userSettings_->isGroupViewEnabled());
connect(userSettings_.data(),
&UserSettings::groupViewStateChanged,
this,
&ChatPage::setGroupViewState);
2018-04-21 15:34:50 +02:00
connect(this, &ChatPage::continueSync, this, [this](const QString &next_batch) {
syncTimeoutTimer_->start(SYNC_RETRY_TIMEOUT);
http::client()->setNextBatchToken(next_batch);
http::client()->sync();
2018-04-21 15:34:50 +02:00
});
connect(this, &ChatPage::startConsesusTimer, this, [this]() {
consensusTimer_->start(CONSENSUS_TIMEOUT);
showContentTimer_->start(SHOW_CONTENT_TIMEOUT);
});
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,
this,
[this](const std::vector<std::string> &rooms) { view_manager_->initialize(rooms); });
connect(this, &ChatPage::syncUI, this, [this](const mtx::responses::Rooms &rooms) {
2018-04-22 13:19:05 +02:00
try {
2018-05-08 19:30:09 +02:00
room_list_->cleanupInvites(cache::client()->invites());
2018-04-22 13:19:05 +02:00
} catch (const lmdb::error &e) {
qWarning() << "failed to retrieve invites" << e.what();
}
2018-04-21 15:34:50 +02:00
view_manager_->initialize(rooms);
removeLeftRooms(rooms.leave);
2018-04-21 16:14:16 +02:00
bool hasNotifications = false;
2018-04-21 16:14:16 +02:00
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;
2018-04-21 16:14:16 +02:00
}
if (hasNotifications)
http::client()->getNotifications();
2018-04-21 15:34:50 +02:00
});
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());
});
2018-04-21 15:34:50 +02:00
2018-01-03 17:05:49 +01:00
instance_ = this;
2018-04-21 15:34:50 +02:00
qRegisterMetaType<std::map<QString, RoomInfo>>();
qRegisterMetaType<QMap<QString, RoomInfo>>();
qRegisterMetaType<mtx::responses::Rooms>();
qRegisterMetaType<std::vector<std::string>>();
2017-04-06 01:06:42 +02:00
}
2017-08-20 12:47:22 +02:00
void
ChatPage::logout()
{
2017-10-20 21:32:48 +02:00
deleteConfigs();
resetUI();
2018-04-24 22:57:49 +02:00
emit closing();
2017-10-20 21:32:48 +02:00
}
void
ChatPage::resetUI()
{
room_list_->clear();
top_bar_->reset();
user_info_widget_->reset();
view_manager_->clearAll();
showUnreadMessageNotification(0);
2017-10-20 21:32:48 +02:00
}
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();
2018-05-08 19:30:09 +02:00
cache::client()->deleteData();
http::client()->reset();
}
2017-08-20 12:47:22 +02:00
void
ChatPage::bootstrap(QString userid, QString homeserver, QString token)
2017-04-06 01:06:42 +02:00
{
http::client()->setServer(homeserver);
http::client()->setAccessToken(token);
http::client()->getOwnProfile();
http::client()->getOwnCommunities();
cache::init(userid);
2018-04-21 20:18:57 +02:00
try {
2018-05-08 19:30:09 +02:00
cache::client()->setup();
2018-05-08 19:30:09 +02:00
if (!cache::client()->isFormatValid()) {
cache::client()->deleteData();
cache::client()->setup();
cache::client()->setCurrentFormat();
}
2018-05-08 19:30:09 +02:00
if (cache::client()->isInitialized()) {
loadStateFromCache();
return;
}
} catch (const lmdb::error &e) {
qCritical() << "Cache failure" << e.what();
2018-05-08 19:30:09 +02:00
cache::client()->deleteData();
qInfo() << "Falling back to initial sync ...";
}
http::client()->initialSync();
initialSyncTimer_->start(INITIAL_SYNC_RETRY_TIMEOUT);
2017-04-06 01:06:42 +02:00
}
2017-08-20 12:47:22 +02:00
void
ChatPage::syncCompleted(const mtx::responses::Sync &response)
2017-04-06 01:06:42 +02:00
{
syncTimeoutTimer_->stop();
2018-04-22 14:37:23 +02:00
QtConcurrent::run([this, res = std::move(response)]() {
2018-04-21 15:34:50 +02:00
try {
2018-05-08 19:30:09 +02:00
cache::client()->saveState(res);
2018-04-22 13:19:05 +02:00
emit syncUI(res.rooms);
auto updates = cache::client()->roomUpdates(res);
emit syncTopBar(updates);
emit syncRoomlist(updates);
2018-04-21 15:34:50 +02:00
} catch (const lmdb::error &e) {
std::cout << "save cache error:" << e.what() << '\n';
// TODO: retry sync.
return;
}
2018-05-08 19:30:09 +02:00
emit continueSync(cache::client()->nextBatchToken());
2018-04-21 15:34:50 +02:00
});
2017-04-06 01:06:42 +02:00
}
2017-08-20 12:47:22 +02:00
void
ChatPage::initialSyncCompleted(const mtx::responses::Sync &response)
2017-04-06 01:06:42 +02:00
{
initialSyncTimer_->stop();
2018-04-21 15:34:50 +02:00
qDebug() << "initial sync completed";
2018-04-21 15:34:50 +02:00
QtConcurrent::run([this, res = std::move(response)]() {
try {
2018-05-08 19:30:09 +02:00
cache::client()->saveState(res);
2018-04-22 09:54:52 +02:00
emit initializeViews(std::move(res.rooms));
2018-05-08 19:30:09 +02:00
emit initializeRoomList(cache::client()->roomInfo());
2018-04-21 15:34:50 +02:00
} catch (const lmdb::error &e) {
qWarning() << "cache error:" << QString::fromStdString(e.what());
emit retryInitialSync();
return;
}
2018-05-08 19:30:09 +02:00
emit continueSync(cache::client()->nextBatchToken());
2018-04-21 15:34:50 +02:00
emit contentLoaded();
});
2017-04-06 01:06:42 +02:00
}
2017-08-20 12:47:22 +02:00
void
ChatPage::updateTopBarAvatar(const QString &roomid, const QPixmap &img)
2017-04-06 01:06:42 +02:00
{
if (current_room_ != roomid)
return;
2017-04-06 01:06:42 +02:00
top_bar_->updateRoomAvatar(img.toImage());
2017-04-06 01:06:42 +02:00
}
2017-08-20 12:47:22 +02:00
void
ChatPage::updateOwnProfileInfo(const QUrl &avatar_url, const QString &display_name)
2017-04-06 01:06:42 +02:00
{
QSettings settings;
auto userid = settings.value("auth/user_id").toString();
2017-04-06 01:06:42 +02:00
user_info_widget_->setUserId(userid);
user_info_widget_->setDisplayName(display_name);
2017-04-06 01:06:42 +02:00
2018-04-21 20:18:57 +02:00
if (!avatar_url.isValid())
return;
2018-03-25 22:05:44 +02:00
2018-05-08 19:30:09 +02:00
if (cache::client()) {
auto data = cache::client()->image(avatar_url.toString());
2018-04-21 20:18:57 +02:00
if (!data.isNull()) {
user_info_widget_->setAvatar(QImage::fromData(data));
2018-03-25 14:59:47 +02:00
return;
2018-04-21 20:18:57 +02:00
}
2018-03-25 14:59:47 +02:00
}
2018-04-21 20:18:57 +02:00
auto proxy = http::client()->fetchUserAvatar(avatar_url);
2018-04-21 20:18:57 +02:00
if (proxy.isNull())
return;
proxy->setParent(this);
connect(proxy.data(),
&DownloadMediaProxy::avatarDownloaded,
this,
[this, proxy](const QImage &img) {
proxy->deleteLater();
user_info_widget_->setAvatar(img);
});
2017-04-06 01:06:42 +02:00
}
2018-01-09 14:07:32 +01:00
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;
2018-01-09 14:07:32 +01:00
}
communitiesList_->setCommunities(communities_);
2018-01-09 14:07:32 +01:00
}
2017-08-20 12:47:22 +02:00
void
ChatPage::changeTopRoomInfo(const QString &room_id)
2017-04-06 01:06:42 +02:00
{
if (room_id.isEmpty()) {
qWarning() << "can't switch to empty room_id";
return;
}
2018-04-21 15:34:50 +02:00
try {
2018-05-08 19:30:09 +02:00
auto room_info = cache::client()->getRoomInfo({room_id.toStdString()});
2017-04-06 01:06:42 +02:00
2018-04-21 15:34:50 +02:00
if (room_info.find(room_id) == room_info.end())
return;
2018-04-21 15:34:50 +02:00
const auto name = QString::fromStdString(room_info[room_id].name);
const auto avatar_url = QString::fromStdString(room_info[room_id].avatar_url);
2018-04-21 15:34:50 +02:00
top_bar_->updateRoomName(name);
top_bar_->updateRoomTopic(QString::fromStdString(room_info[room_id].topic));
2018-05-08 19:30:09 +02:00
auto img = cache::client()->getRoomAvatar(room_id);
if (img.isNull())
2018-04-21 15:34:50 +02:00
top_bar_->updateRoomAvatarFromName(name);
else
top_bar_->updateRoomAvatar(img);
2018-04-21 15:34:50 +02:00
} catch (const lmdb::error &e) {
qWarning() << "failed to change top bar room info" << e.what();
2018-04-21 15:34:50 +02:00
}
current_room_ = room_id;
2017-04-06 01:06:42 +02:00
}
2017-08-20 12:47:22 +02:00
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));
}
2017-08-20 12:47:22 +02:00
void
ChatPage::loadStateFromCache()
{
2018-04-21 15:34:50 +02:00
qDebug() << "restoring state from cache";
2018-04-21 15:34:50 +02:00
QtConcurrent::run([this]() {
try {
2018-05-08 19:30:09 +02:00
cache::client()->populateMembers();
2018-05-08 19:30:09 +02:00
emit initializeEmptyViews(cache::client()->joinedRooms());
emit initializeRoomList(cache::client()->roomInfo());
2018-04-21 15:34:50 +02:00
} catch (const lmdb::error &e) {
std::cout << "load cache error:" << e.what() << '\n';
// TODO Clear cache and restart.
return;
}
2018-04-21 15:34:50 +02:00
// Start receiving events.
2018-05-08 19:30:09 +02:00
emit continueSync(cache::client()->nextBatchToken());
2018-04-21 15:34:50 +02:00
// Check periodically if the timelines have been loaded.
emit startConsesusTimer();
});
}
2017-08-20 12:47:22 +02:00
void
ChatPage::showQuickSwitcher()
2017-08-15 20:06:27 +02:00
{
2017-10-07 19:09:34 +02:00
if (quickSwitcher_.isNull()) {
quickSwitcher_ = QSharedPointer<QuickSwitcher>(
2018-05-08 19:30:09 +02:00
new QuickSwitcher(this),
[](QuickSwitcher *switcher) { switcher->deleteLater(); });
2017-10-07 19:09:34 +02:00
connect(quickSwitcher_.data(),
&QuickSwitcher::roomSelected,
room_list_,
&RoomList::highlightSelectedRoom);
2017-10-07 19:09:34 +02:00
connect(quickSwitcher_.data(), &QuickSwitcher::closing, this, [this]() {
if (!quickSwitcherModal_.isNull())
quickSwitcherModal_->hide();
text_input_->setFocus(Qt::FocusReason::PopupFocusReason);
});
}
2017-10-07 19:09:34 +02:00
if (quickSwitcherModal_.isNull()) {
quickSwitcherModal_ = QSharedPointer<OverlayModal>(
new OverlayModal(MainWindow::instance(), quickSwitcher_.data()),
[](OverlayModal *modal) { modal->deleteLater(); });
2017-11-22 20:13:22 +01:00
quickSwitcherModal_->setColor(QColor(30, 30, 30, 170));
}
2018-04-27 00:57:46 +02:00
quickSwitcherModal_->show();
}
2017-12-19 21:36:12 +01:00
void
2018-04-21 15:34:50 +02:00
ChatPage::removeRoom(const QString &room_id)
2017-12-19 21:36:12 +01:00
{
try {
2018-05-08 19:30:09 +02:00
cache::client()->removeRoom(room_id);
cache::client()->removeInvite(room_id.toStdString());
2017-12-19 21:36:12 +01:00
} catch (const lmdb::error &e) {
qCritical() << "The cache couldn't be updated: " << e.what();
// TODO: Notify the user.
}
room_list_->removeRoom(room_id, room_id == current_room_);
}
2017-10-04 10:33:34 +02:00
void
ChatPage::updateTypingUsers(const QString &roomid, const std::vector<std::string> &user_ids)
2017-10-04 10:33:34 +02:00
{
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)
{
2017-10-04 10:33:34 +02:00
QStringList users;
QSettings settings;
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)
continue;
users.append(Cache::displayName(room_id, remote_user));
}
2017-10-04 10:33:34 +02:00
users.sort();
return users;
2017-10-04 10:33:34 +02:00
}
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);
2018-04-21 15:34:50 +02:00
room_list_->removeRoom(room_id, room_id == current_room_);
}
}
2018-01-03 17:05:49 +01:00
void
ChatPage::showReadReceipts(const QString &event_id)
{
if (receiptsDialog_.isNull()) {
receiptsDialog_ = QSharedPointer<dialogs::ReadReceipts>(
new dialogs::ReadReceipts(this),
[](dialogs::ReadReceipts *dialog) { dialog->deleteLater(); });
2018-01-03 17:05:49 +01:00
}
if (receiptsModal_.isNull()) {
receiptsModal_ = QSharedPointer<OverlayModal>(
new OverlayModal(MainWindow::instance(), receiptsDialog_.data()),
[](OverlayModal *modal) { modal->deleteLater(); });
2018-01-03 17:05:49 +01:00
receiptsModal_->setColor(QColor(30, 30, 30, 170));
}
2018-05-08 19:30:09 +02:00
receiptsDialog_->addUsers(cache::client()->readReceipts(event_id, current_room_));
receiptsModal_->show();
2018-01-03 17:05:49 +01:00
}
void
ChatPage::setGroupViewState(bool isEnabled)
{
if (!isEnabled) {
communitiesList_->communityChanged("world");
communitiesList_->hide();
return;
}
communitiesList_->show();
}
void
ChatPage::retryInitialSync(int status_code)
{
initialSyncTimer_->stop();
if (http::client()->getHomeServer().isEmpty()) {
deleteConfigs();
resetUI();
emit showLoginPage("Sync error. Please try again.");
return;
}
// Retry on Bad-Gateway & Gateway-Timeout errors
if (status_code == -1 || status_code == 504 || status_code == 502 || status_code == 524) {
qWarning() << "retrying initial sync";
http::client()->initialSync();
initialSyncTimer_->start(INITIAL_SYNC_RETRY_TIMEOUT);
} else {
// Drop into the login screen.
deleteConfigs();
resetUI();
emit showLoginPage(QString("Sync error %1. Please try again.").arg(status_code));
}
}
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) {
2018-05-08 19:30:09 +02:00
cache::client()->removeReadNotification(event_id);
continue;
}
2018-05-08 19:30:09 +02:00
if (!cache::client()->isNotificationSent(event_id)) {
2018-05-05 21:40:24 +02:00
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.
2018-05-08 19:30:09 +02:00
cache::client()->markSentNotification(event_id);
2018-05-05 21:40:24 +02:00
// Don't send a notification when the current room is opened.
if (isRoomActive(room_id))
continue;
2018-05-05 21:40:24 +02:00
NotificationsManager::postNotification(
2018-05-08 19:30:09 +02:00
QString::fromStdString(
cache::client()->singleRoomInfo(item.room_id).name),
2018-05-05 21:40:24 +02:00
Cache::displayName(room_id, user_id),
utils::event_body(item.event));
}
} catch (const lmdb::error &e) {
qWarning() << e.what();
}
}
}