2021-03-05 00:35:15 +01:00
|
|
|
// SPDX-FileCopyrightText: 2017 Konstantinos Sideris <siderisk@auth.gr>
|
|
|
|
// SPDX-FileCopyrightText: 2021 Nheko Contributors
|
|
|
|
//
|
|
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
2017-04-06 01:06:42 +02:00
|
|
|
|
2017-05-16 20:46:45 +02:00
|
|
|
#pragma once
|
2017-04-06 01:06:42 +02:00
|
|
|
|
2018-06-09 15:03:14 +02:00
|
|
|
#include <atomic>
|
2019-12-14 17:08:36 +01:00
|
|
|
#include <optional>
|
2020-06-09 18:36:41 +02:00
|
|
|
#include <stack>
|
2019-12-14 17:08:36 +01:00
|
|
|
#include <variant>
|
|
|
|
|
2019-12-05 15:31:53 +01:00
|
|
|
#include <mtx/common.hpp>
|
2020-10-27 17:45:28 +01:00
|
|
|
#include <mtx/events.hpp>
|
|
|
|
#include <mtx/events/encrypted.hpp>
|
|
|
|
#include <mtx/events/member.hpp>
|
|
|
|
#include <mtx/events/presence.hpp>
|
2020-12-18 03:04:18 +01:00
|
|
|
#include <mtx/secret_storage.hpp>
|
2018-06-09 15:03:14 +02:00
|
|
|
|
2017-11-08 22:09:15 +01:00
|
|
|
#include <QFrame>
|
2017-10-28 14:46:39 +02:00
|
|
|
#include <QHBoxLayout>
|
|
|
|
#include <QMap>
|
2017-04-06 01:06:42 +02:00
|
|
|
#include <QPixmap>
|
2019-07-22 03:58:11 +02:00
|
|
|
#include <QPoint>
|
2017-04-06 01:06:42 +02:00
|
|
|
#include <QTimer>
|
|
|
|
#include <QWidget>
|
|
|
|
|
2020-10-02 01:14:42 +02:00
|
|
|
#include "CacheCryptoStructs.h"
|
2019-12-14 23:39:02 +01:00
|
|
|
#include "CacheStructs.h"
|
2018-01-09 14:07:32 +01:00
|
|
|
#include "CommunitiesList.h"
|
2018-07-11 16:33:02 +02:00
|
|
|
#include "notifications/Manager.h"
|
2017-10-28 19:46:34 +02:00
|
|
|
|
2017-10-28 14:46:39 +02:00
|
|
|
class OverlayModal;
|
|
|
|
class RoomList;
|
|
|
|
class SideBarActions;
|
|
|
|
class Splitter;
|
|
|
|
class TimelineViewManager;
|
|
|
|
class UserInfoWidget;
|
2017-12-30 16:29:57 +01:00
|
|
|
class UserSettings;
|
2018-07-11 16:33:02 +02:00
|
|
|
class NotificationsManager;
|
2020-07-28 23:55:47 +02:00
|
|
|
class TimelineModel;
|
2020-10-27 17:45:28 +01:00
|
|
|
class CallManager;
|
2017-04-06 01:06:42 +02:00
|
|
|
|
2017-10-31 19:11:49 +01:00
|
|
|
constexpr int CONSENSUS_TIMEOUT = 1000;
|
|
|
|
constexpr int SHOW_CONTENT_TIMEOUT = 3000;
|
|
|
|
constexpr int TYPING_REFRESH_TIMEOUT = 10000;
|
2017-10-08 20:35:37 +02:00
|
|
|
|
2020-10-27 17:45:28 +01:00
|
|
|
namespace mtx::requests {
|
|
|
|
struct CreateRoom;
|
|
|
|
}
|
|
|
|
namespace mtx::responses {
|
|
|
|
struct Notifications;
|
|
|
|
struct Sync;
|
|
|
|
struct Timeline;
|
|
|
|
struct Rooms;
|
|
|
|
struct LeftRoom;
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace popups {
|
|
|
|
class UserMentions;
|
2019-12-15 03:19:33 +01:00
|
|
|
}
|
|
|
|
|
2020-12-18 03:04:18 +01:00
|
|
|
using SecretsToDecrypt = std::map<std::string, mtx::secret_storage::AesHmacSha2EncryptedData>;
|
|
|
|
|
2017-04-06 01:06:42 +02:00
|
|
|
class ChatPage : public QWidget
|
|
|
|
{
|
2017-08-26 12:49:16 +02:00
|
|
|
Q_OBJECT
|
2017-04-06 01:06:42 +02:00
|
|
|
|
|
|
|
public:
|
2020-02-04 04:58:43 +01:00
|
|
|
ChatPage(QSharedPointer<UserSettings> userSettings, QWidget *parent = nullptr);
|
2017-04-06 01:06:42 +02:00
|
|
|
|
2017-08-26 12:49:16 +02:00
|
|
|
// Initialize all the components of the UI.
|
|
|
|
void bootstrap(QString userid, QString homeserver, QString token);
|
2018-02-10 15:05:31 +01:00
|
|
|
QString currentRoom() const { return current_room_; }
|
2018-01-03 17:05:49 +01:00
|
|
|
|
|
|
|
static ChatPage *instance() { return instance_; }
|
2018-03-11 16:56:40 +01:00
|
|
|
|
|
|
|
QSharedPointer<UserSettings> userSettings() { return userSettings_; }
|
2020-11-15 23:14:47 +01:00
|
|
|
CallManager *callManager() { return callManager_; }
|
2020-11-25 17:02:23 +01:00
|
|
|
TimelineViewManager *timelineManager() { return view_manager_; }
|
2018-05-02 14:30:08 +02:00
|
|
|
void deleteConfigs();
|
2017-04-06 01:06:42 +02:00
|
|
|
|
2020-05-18 03:30:04 +02:00
|
|
|
CommunitiesList *communitiesList() { return communitiesList_; }
|
|
|
|
|
2018-07-03 23:05:05 +02:00
|
|
|
//! Calculate the width of the message timeline.
|
2018-09-08 14:50:35 +02:00
|
|
|
uint64_t timelineWidth();
|
2018-07-03 23:05:05 +02:00
|
|
|
//! Hide the room & group list (if it was visible).
|
|
|
|
void hideSideBars();
|
|
|
|
//! Show the room/group list (if it was visible).
|
|
|
|
void showSideBars();
|
2018-08-31 08:10:47 +02:00
|
|
|
void initiateLogout();
|
2018-07-03 23:05:05 +02:00
|
|
|
|
2020-06-08 01:45:24 +02:00
|
|
|
QString status() const;
|
|
|
|
void setStatus(const QString &status);
|
|
|
|
|
2020-06-08 20:26:37 +02:00
|
|
|
mtx::presence::PresenceState currentPresence() const;
|
2020-06-08 01:45:24 +02:00
|
|
|
|
2018-06-09 15:03:14 +02:00
|
|
|
public slots:
|
2021-01-10 18:36:06 +01:00
|
|
|
void handleMatrixUri(const QByteArray &uri);
|
|
|
|
void handleMatrixUri(const QUrl &uri);
|
|
|
|
|
|
|
|
void startChat(QString userid);
|
2018-06-09 15:03:14 +02:00
|
|
|
void leaveRoom(const QString &room_id);
|
2018-07-20 15:15:50 +02:00
|
|
|
void createRoom(const mtx::requests::CreateRoom &req);
|
2021-02-22 19:48:31 +01:00
|
|
|
void highlightRoom(const QString &room_id);
|
2020-11-09 03:12:37 +01:00
|
|
|
void joinRoom(const QString &room);
|
2021-03-05 14:59:59 +01:00
|
|
|
void joinRoomVia(const std::string &room_id,
|
|
|
|
const std::vector<std::string> &via,
|
|
|
|
bool promptForConfirmation = true);
|
2018-06-09 15:03:14 +02:00
|
|
|
|
2020-01-30 03:45:27 +01:00
|
|
|
void inviteUser(QString userid, QString reason);
|
|
|
|
void kickUser(QString userid, QString reason);
|
|
|
|
void banUser(QString userid, QString reason);
|
|
|
|
void unbanUser(QString userid, QString reason);
|
|
|
|
|
2020-10-20 19:46:37 +02:00
|
|
|
void receivedSessionKey(const std::string &room_id, const std::string &session_id);
|
2020-12-18 03:04:18 +01:00
|
|
|
void decryptDownloadedSecrets(mtx::secret_storage::AesHmacSha2KeyDescription keyDesc,
|
|
|
|
const SecretsToDecrypt &secrets);
|
2017-04-09 01:17:04 +02:00
|
|
|
signals:
|
2018-06-09 15:03:14 +02:00
|
|
|
void connectionLost();
|
|
|
|
void connectionRestored();
|
|
|
|
|
|
|
|
void notificationsRetrieved(const mtx::responses::Notifications &);
|
2019-07-26 23:44:44 +02:00
|
|
|
void highlightedNotifsRetrieved(const mtx::responses::Notifications &,
|
|
|
|
const QPoint widgetPos);
|
2019-07-17 04:36:55 +02:00
|
|
|
|
2017-08-26 12:49:16 +02:00
|
|
|
void contentLoaded();
|
2018-04-24 22:57:49 +02:00
|
|
|
void closing();
|
2020-10-22 01:20:02 +02:00
|
|
|
void changeWindowTitle(const int);
|
2017-08-26 12:49:16 +02:00
|
|
|
void unreadMessages(int count);
|
2017-10-08 21:38:38 +02:00
|
|
|
void showNotification(const QString &msg);
|
2017-10-20 21:32:48 +02:00
|
|
|
void showLoginPage(const QString &msg);
|
2017-11-01 23:41:13 +01:00
|
|
|
void showUserSettingsPage();
|
2018-02-18 21:22:26 +01:00
|
|
|
void showOverlayProgressBar();
|
2018-04-21 15:34:50 +02:00
|
|
|
|
2018-06-09 15:03:14 +02:00
|
|
|
void ownProfileOk();
|
|
|
|
void setUserDisplayName(const QString &name);
|
2019-08-26 01:24:56 +02:00
|
|
|
void setUserAvatar(const QString &avatar);
|
2018-06-09 15:03:14 +02:00
|
|
|
void loggedOut();
|
|
|
|
|
|
|
|
void trySyncCb();
|
2018-06-10 19:03:45 +02:00
|
|
|
void tryDelayedSyncCb();
|
2018-06-09 15:03:14 +02:00
|
|
|
void tryInitialSyncCb();
|
2021-03-16 21:01:14 +01:00
|
|
|
void newSyncResponse(const mtx::responses::Sync &res, const std::string &prev_batch_token);
|
2018-06-09 15:03:14 +02:00
|
|
|
void leftRoom(const QString &room_id);
|
2021-02-25 05:59:30 +01:00
|
|
|
void newRoom(const QString &room_id);
|
2018-06-09 15:03:14 +02:00
|
|
|
|
2018-04-21 15:34:50 +02:00
|
|
|
void initializeRoomList(QMap<QString, RoomInfo>);
|
|
|
|
void initializeViews(const mtx::responses::Rooms &rooms);
|
2020-10-28 13:06:28 +01:00
|
|
|
void initializeEmptyViews(const std::vector<QString> &roomIds);
|
2019-08-13 04:09:40 +02:00
|
|
|
void initializeMentions(const QMap<QString, mtx::responses::Notifications> ¬ifs);
|
2018-04-21 15:34:50 +02:00
|
|
|
void syncUI(const mtx::responses::Rooms &rooms);
|
|
|
|
void syncRoomlist(const std::map<QString, RoomInfo> &updates);
|
2018-09-28 14:40:51 +02:00
|
|
|
void syncTags(const std::map<QString, RoomInfo> &updates);
|
2018-06-09 15:03:14 +02:00
|
|
|
void dropToLoginPageCb(const QString &msg);
|
2017-04-09 01:17:04 +02:00
|
|
|
|
2018-07-11 16:33:02 +02:00
|
|
|
void notifyMessage(const QString &roomid,
|
|
|
|
const QString &eventid,
|
|
|
|
const QString &roomname,
|
|
|
|
const QString &sender,
|
|
|
|
const QString &message,
|
|
|
|
const QImage &icon);
|
|
|
|
|
2018-07-14 11:08:16 +02:00
|
|
|
void updateGroupsInfo(const mtx::responses::JoinedGroups &groups);
|
2020-06-08 01:45:24 +02:00
|
|
|
void retrievedPresence(const QString &statusMsg, mtx::presence::PresenceState state);
|
2019-01-20 05:43:48 +01:00
|
|
|
void themeChanged();
|
2020-04-23 01:52:30 +02:00
|
|
|
void decryptSidebarChanged();
|
2021-01-26 23:23:28 +01:00
|
|
|
void chatFocusChanged(const bool focused);
|
2018-07-14 11:08:16 +02:00
|
|
|
|
2020-06-09 18:36:41 +02:00
|
|
|
//! Signals for device verificaiton
|
2020-10-05 22:12:10 +02:00
|
|
|
void receivedDeviceVerificationAccept(
|
2020-07-17 22:16:30 +02:00
|
|
|
const mtx::events::msg::KeyVerificationAccept &message);
|
2020-10-05 22:12:10 +02:00
|
|
|
void receivedDeviceVerificationRequest(
|
2020-07-17 22:16:30 +02:00
|
|
|
const mtx::events::msg::KeyVerificationRequest &message,
|
|
|
|
std::string sender);
|
2020-10-05 22:12:10 +02:00
|
|
|
void receivedRoomDeviceVerificationRequest(
|
2020-07-28 23:55:47 +02:00
|
|
|
const mtx::events::RoomEvent<mtx::events::msg::KeyVerificationRequest> &message,
|
|
|
|
TimelineModel *model);
|
2020-10-05 22:12:10 +02:00
|
|
|
void receivedDeviceVerificationCancel(
|
2020-07-17 22:16:30 +02:00
|
|
|
const mtx::events::msg::KeyVerificationCancel &message);
|
2020-10-05 22:12:10 +02:00
|
|
|
void receivedDeviceVerificationKey(const mtx::events::msg::KeyVerificationKey &message);
|
|
|
|
void receivedDeviceVerificationMac(const mtx::events::msg::KeyVerificationMac &message);
|
|
|
|
void receivedDeviceVerificationStart(const mtx::events::msg::KeyVerificationStart &message,
|
2020-07-17 22:16:30 +02:00
|
|
|
std::string sender);
|
2020-10-05 22:12:10 +02:00
|
|
|
void receivedDeviceVerificationReady(const mtx::events::msg::KeyVerificationReady &message);
|
|
|
|
void receivedDeviceVerificationDone(const mtx::events::msg::KeyVerificationDone &message);
|
2020-06-09 18:36:41 +02:00
|
|
|
|
2020-12-18 03:04:18 +01:00
|
|
|
void downloadedSecrets(mtx::secret_storage::AesHmacSha2KeyDescription keyDesc,
|
|
|
|
const SecretsToDecrypt &secrets);
|
|
|
|
|
2017-04-11 16:45:47 +02:00
|
|
|
private slots:
|
2017-08-26 12:49:16 +02:00
|
|
|
void logout();
|
2017-10-01 18:49:36 +02:00
|
|
|
void removeRoom(const QString &room_id);
|
2021-02-25 05:59:30 +01:00
|
|
|
void changeRoom(const QString &room_id);
|
2018-06-09 15:03:14 +02:00
|
|
|
void dropToLoginPage(const QString &msg);
|
|
|
|
|
2021-03-16 21:01:14 +01:00
|
|
|
void handleSyncResponse(const mtx::responses::Sync &res,
|
|
|
|
const std::string &prev_batch_token);
|
2017-04-06 01:06:42 +02:00
|
|
|
|
|
|
|
private:
|
2018-01-03 17:05:49 +01:00
|
|
|
static ChatPage *instance_;
|
|
|
|
|
2018-08-30 12:39:09 +02:00
|
|
|
void startInitialSync();
|
2018-06-09 15:03:14 +02:00
|
|
|
void tryInitialSync();
|
|
|
|
void trySync();
|
2018-06-10 19:03:45 +02:00
|
|
|
void ensureOneTimeKeyCount(const std::map<std::string, uint16_t> &counts);
|
2018-06-12 19:36:16 +02:00
|
|
|
void getProfileInfo();
|
2018-06-09 15:03:14 +02:00
|
|
|
|
2018-05-07 11:00:49 +02:00
|
|
|
//! Check if the given room is currently open.
|
|
|
|
bool isRoomActive(const QString &room_id)
|
|
|
|
{
|
|
|
|
return isActiveWindow() && currentRoom() == room_id;
|
|
|
|
}
|
|
|
|
|
2017-10-28 19:46:34 +02:00
|
|
|
using UserID = QString;
|
2017-12-04 17:41:19 +01:00
|
|
|
using Membership = mtx::events::StateEvent<mtx::events::state::Member>;
|
|
|
|
using Memberships = std::map<std::string, Membership>;
|
|
|
|
|
2018-04-21 15:34:50 +02:00
|
|
|
using LeftRooms = std::map<std::string, mtx::responses::LeftRoom>;
|
2017-10-28 19:46:34 +02:00
|
|
|
void removeLeftRooms(const LeftRooms &rooms);
|
|
|
|
|
2017-08-26 12:49:16 +02:00
|
|
|
void loadStateFromCache();
|
2017-10-20 21:32:48 +02:00
|
|
|
void resetUI();
|
2018-01-09 20:57:41 +01:00
|
|
|
//! Decides whether or not to hide the group's sidebar.
|
|
|
|
void setGroupViewState(bool isEnabled);
|
2017-05-07 16:15:38 +02:00
|
|
|
|
2017-12-04 17:41:19 +01:00
|
|
|
template<class Collection>
|
|
|
|
Memberships getMemberships(const std::vector<Collection> &events) const;
|
|
|
|
|
2018-02-15 20:58:57 +01:00
|
|
|
//! Update the room with the new notification count.
|
2019-01-25 03:43:54 +01:00
|
|
|
void updateRoomNotificationCount(const QString &room_id,
|
|
|
|
uint16_t notification_count,
|
|
|
|
uint16_t highlight_count);
|
2018-05-05 15:38:41 +02:00
|
|
|
//! Send desktop notification for the received messages.
|
2020-06-10 11:27:21 +02:00
|
|
|
void sendNotifications(const mtx::responses::Notifications &);
|
2018-02-08 18:07:58 +01:00
|
|
|
|
2019-08-20 00:11:38 +02:00
|
|
|
void showNotificationsDialog(const QPoint &point);
|
2019-07-17 04:36:55 +02:00
|
|
|
|
2020-07-11 01:19:48 +02:00
|
|
|
template<typename T>
|
|
|
|
void connectCallMessage();
|
|
|
|
|
2017-08-26 12:49:16 +02:00
|
|
|
QHBoxLayout *topLayout_;
|
|
|
|
Splitter *splitter;
|
2017-05-19 18:55:38 +02:00
|
|
|
|
2018-01-09 14:07:32 +01:00
|
|
|
QWidget *sideBar_;
|
2017-08-26 12:49:16 +02:00
|
|
|
QVBoxLayout *sideBarLayout_;
|
2018-01-09 14:07:32 +01:00
|
|
|
QWidget *sideBarTopWidget_;
|
|
|
|
QVBoxLayout *sideBarTopWidgetLayout_;
|
2017-05-19 18:55:38 +02:00
|
|
|
|
2017-11-08 22:09:15 +01:00
|
|
|
QFrame *content_;
|
2017-08-26 12:49:16 +02:00
|
|
|
QVBoxLayout *contentLayout_;
|
2017-04-06 01:06:42 +02:00
|
|
|
|
2018-01-09 14:07:32 +01:00
|
|
|
CommunitiesList *communitiesList_;
|
2017-08-26 12:49:16 +02:00
|
|
|
RoomList *room_list_;
|
2018-01-09 14:07:32 +01:00
|
|
|
|
2017-08-26 12:49:16 +02:00
|
|
|
TimelineViewManager *view_manager_;
|
2017-10-15 21:08:51 +02:00
|
|
|
SideBarActions *sidebarActions_;
|
2017-04-06 01:06:42 +02:00
|
|
|
|
2018-06-09 15:03:14 +02:00
|
|
|
QTimer connectivityTimer_;
|
|
|
|
std::atomic_bool isConnected_;
|
2017-04-06 01:06:42 +02:00
|
|
|
|
2017-08-26 12:49:16 +02:00
|
|
|
QString current_room_;
|
2018-01-09 14:07:32 +01:00
|
|
|
QString current_community_;
|
|
|
|
|
2017-08-26 12:49:16 +02:00
|
|
|
UserInfoWidget *user_info_widget_;
|
2017-04-06 01:06:42 +02:00
|
|
|
|
2019-08-10 05:34:44 +02:00
|
|
|
popups::UserMentions *user_mentions_popup_;
|
2019-07-17 04:36:55 +02:00
|
|
|
|
2017-12-30 16:29:57 +01:00
|
|
|
// Global user settings.
|
|
|
|
QSharedPointer<UserSettings> userSettings_;
|
2018-07-11 16:33:02 +02:00
|
|
|
|
|
|
|
NotificationsManager notificationsManager;
|
2020-10-27 17:45:28 +01:00
|
|
|
CallManager *callManager_;
|
2017-04-06 01:06:42 +02:00
|
|
|
};
|
2017-12-04 17:41:19 +01:00
|
|
|
|
|
|
|
template<class Collection>
|
|
|
|
std::map<std::string, mtx::events::StateEvent<mtx::events::state::Member>>
|
|
|
|
ChatPage::getMemberships(const std::vector<Collection> &collection) const
|
|
|
|
{
|
|
|
|
std::map<std::string, mtx::events::StateEvent<mtx::events::state::Member>> memberships;
|
|
|
|
|
|
|
|
using Member = mtx::events::StateEvent<mtx::events::state::Member>;
|
|
|
|
|
2018-02-28 11:12:07 +01:00
|
|
|
for (const auto &event : collection) {
|
2019-12-14 17:08:36 +01:00
|
|
|
if (auto member = std::get_if<Member>(event)) {
|
|
|
|
memberships.emplace(member->state_key, *member);
|
2017-12-04 17:41:19 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return memberships;
|
|
|
|
}
|