2017-04-06 02:06:42 +03: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/>.
|
|
|
|
*/
|
|
|
|
|
2017-05-16 21:46:45 +03:00
|
|
|
#pragma once
|
2017-04-06 02:06:42 +03:00
|
|
|
|
2018-06-09 16:03:14 +03:00
|
|
|
#include <atomic>
|
2019-12-14 19:08:36 +03:00
|
|
|
#include <optional>
|
2020-06-09 19:36:41 +03:00
|
|
|
#include <stack>
|
2019-12-14 19:08:36 +03:00
|
|
|
#include <variant>
|
|
|
|
|
2019-12-05 17:31:53 +03:00
|
|
|
#include <mtx/common.hpp>
|
2019-12-15 05:34:17 +03:00
|
|
|
#include <mtx/requests.hpp>
|
2019-08-10 06:34:44 +03:00
|
|
|
#include <mtx/responses.hpp>
|
2019-12-15 05:19:33 +03:00
|
|
|
#include <mtxclient/http/errors.hpp>
|
2018-06-09 16:03:14 +03:00
|
|
|
|
2017-11-09 00:09:15 +03:00
|
|
|
#include <QFrame>
|
2017-10-28 15:46:39 +03:00
|
|
|
#include <QHBoxLayout>
|
|
|
|
#include <QMap>
|
2017-04-06 02:06:42 +03:00
|
|
|
#include <QPixmap>
|
2019-07-22 04:58:11 +03:00
|
|
|
#include <QPoint>
|
2017-04-06 02:06:42 +03:00
|
|
|
#include <QTimer>
|
|
|
|
#include <QWidget>
|
|
|
|
|
2020-10-02 02:14:42 +03:00
|
|
|
#include "CacheCryptoStructs.h"
|
2019-12-15 01:39:02 +03:00
|
|
|
#include "CacheStructs.h"
|
2020-07-11 02:19:48 +03:00
|
|
|
#include "CallManager.h"
|
2018-01-09 16:07:32 +03:00
|
|
|
#include "CommunitiesList.h"
|
2019-06-14 05:33:04 +03:00
|
|
|
#include "Utils.h"
|
2018-07-11 17:33:02 +03:00
|
|
|
#include "notifications/Manager.h"
|
2019-08-10 06:34:44 +03:00
|
|
|
#include "popups/UserMentions.h"
|
2017-10-28 20:46:34 +03:00
|
|
|
|
2017-10-28 15:46:39 +03:00
|
|
|
class OverlayModal;
|
|
|
|
class QuickSwitcher;
|
|
|
|
class RoomList;
|
|
|
|
class SideBarActions;
|
|
|
|
class Splitter;
|
|
|
|
class TextInputWidget;
|
|
|
|
class TimelineViewManager;
|
|
|
|
class UserInfoWidget;
|
2017-12-30 18:29:57 +03:00
|
|
|
class UserSettings;
|
2018-07-11 17:33:02 +03:00
|
|
|
class NotificationsManager;
|
2020-07-29 00:55:47 +03:00
|
|
|
class TimelineModel;
|
2017-04-06 02:06:42 +03:00
|
|
|
|
2017-10-31 21:11:49 +03:00
|
|
|
constexpr int CONSENSUS_TIMEOUT = 1000;
|
|
|
|
constexpr int SHOW_CONTENT_TIMEOUT = 3000;
|
|
|
|
constexpr int TYPING_REFRESH_TIMEOUT = 10000;
|
2017-10-08 21:35:37 +03:00
|
|
|
|
2019-12-15 05:19:33 +03:00
|
|
|
namespace mtx::http {
|
|
|
|
using RequestErr = const std::optional<mtx::http::ClientError> &;
|
|
|
|
}
|
|
|
|
|
2017-04-06 02:06:42 +03:00
|
|
|
class ChatPage : public QWidget
|
|
|
|
{
|
2017-08-26 13:49:16 +03:00
|
|
|
Q_OBJECT
|
2017-04-06 02:06:42 +03:00
|
|
|
|
|
|
|
public:
|
2020-02-04 06:58:43 +03:00
|
|
|
ChatPage(QSharedPointer<UserSettings> userSettings, QWidget *parent = nullptr);
|
2017-04-06 02:06:42 +03:00
|
|
|
|
2017-08-26 13:49:16 +03:00
|
|
|
// Initialize all the components of the UI.
|
|
|
|
void bootstrap(QString userid, QString homeserver, QString token);
|
2017-10-20 21:39:05 +03:00
|
|
|
void showQuickSwitcher();
|
2018-02-10 17:05:31 +03:00
|
|
|
QString currentRoom() const { return current_room_; }
|
2018-01-03 19:05:49 +03:00
|
|
|
|
|
|
|
static ChatPage *instance() { return instance_; }
|
2018-03-11 18:56:40 +03:00
|
|
|
|
|
|
|
QSharedPointer<UserSettings> userSettings() { return userSettings_; }
|
2018-05-02 15:30:08 +03:00
|
|
|
void deleteConfigs();
|
2017-04-06 02:06:42 +03:00
|
|
|
|
2020-05-18 04:30:04 +03:00
|
|
|
CommunitiesList *communitiesList() { return communitiesList_; }
|
|
|
|
|
2018-07-04 00:05:05 +03:00
|
|
|
//! Calculate the width of the message timeline.
|
2018-09-08 15:50:35 +03:00
|
|
|
uint64_t timelineWidth();
|
2018-07-04 00:05:05 +03: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 09:10:47 +03:00
|
|
|
void initiateLogout();
|
2020-10-02 02:14:42 +03:00
|
|
|
void query_keys(const std::string &req,
|
|
|
|
std::function<void(const UserKeyCache &, mtx::http::RequestErr)> cb);
|
2020-04-13 17:22:30 +03:00
|
|
|
void focusMessageInput();
|
2018-07-04 00:05:05 +03:00
|
|
|
|
2020-06-08 02:45:24 +03:00
|
|
|
QString status() const;
|
|
|
|
void setStatus(const QString &status);
|
|
|
|
|
2020-06-08 21:26:37 +03:00
|
|
|
mtx::presence::PresenceState currentPresence() const;
|
2020-06-08 02:45:24 +03:00
|
|
|
|
2018-06-09 16:03:14 +03:00
|
|
|
public slots:
|
|
|
|
void leaveRoom(const QString &room_id);
|
2018-07-20 16:15:50 +03:00
|
|
|
void createRoom(const mtx::requests::CreateRoom &req);
|
2018-06-09 16:03:14 +03:00
|
|
|
|
2020-01-30 05:45:27 +03: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 20:46:37 +03:00
|
|
|
void receivedSessionKey(const std::string &room_id, const std::string &session_id);
|
|
|
|
|
2017-04-09 02:17:04 +03:00
|
|
|
signals:
|
2018-06-09 16:03:14 +03:00
|
|
|
void connectionLost();
|
|
|
|
void connectionRestored();
|
|
|
|
|
|
|
|
void notificationsRetrieved(const mtx::responses::Notifications &);
|
2019-07-27 00:44:44 +03:00
|
|
|
void highlightedNotifsRetrieved(const mtx::responses::Notifications &,
|
|
|
|
const QPoint widgetPos);
|
2019-07-17 05:36:55 +03:00
|
|
|
|
2018-06-09 16:03:14 +03:00
|
|
|
void uploadFailed(const QString &msg);
|
2019-12-05 17:31:53 +03:00
|
|
|
void mediaUploaded(const QString &roomid,
|
2018-06-09 16:03:14 +03:00
|
|
|
const QString &filename,
|
2019-12-14 19:08:36 +03:00
|
|
|
const std::optional<mtx::crypto::EncryptedFile> &file,
|
2018-06-09 16:03:14 +03:00
|
|
|
const QString &url,
|
2019-12-05 17:31:53 +03:00
|
|
|
const QString &mimeClass,
|
2018-06-09 16:03:14 +03:00
|
|
|
const QString &mime,
|
2018-07-10 23:31:51 +03:00
|
|
|
qint64 dsize,
|
2020-01-12 18:39:01 +03:00
|
|
|
const QSize &dimensions,
|
2020-04-13 17:22:30 +03:00
|
|
|
const QString &blurhash);
|
2018-06-09 16:03:14 +03:00
|
|
|
|
2017-08-26 13:49:16 +03:00
|
|
|
void contentLoaded();
|
2018-04-24 23:57:49 +03:00
|
|
|
void closing();
|
2017-08-26 13:49:16 +03:00
|
|
|
void changeWindowTitle(const QString &msg);
|
|
|
|
void unreadMessages(int count);
|
2017-10-08 22:38:38 +03:00
|
|
|
void showNotification(const QString &msg);
|
2017-10-20 22:32:48 +03:00
|
|
|
void showLoginPage(const QString &msg);
|
2017-11-02 01:41:13 +03:00
|
|
|
void showUserSettingsPage();
|
2018-02-18 23:22:26 +03:00
|
|
|
void showOverlayProgressBar();
|
2018-04-21 16:34:50 +03:00
|
|
|
|
2018-06-09 16:03:14 +03:00
|
|
|
void ownProfileOk();
|
|
|
|
void setUserDisplayName(const QString &name);
|
2019-08-26 02:24:56 +03:00
|
|
|
void setUserAvatar(const QString &avatar);
|
2018-06-09 16:03:14 +03:00
|
|
|
void loggedOut();
|
|
|
|
|
|
|
|
void trySyncCb();
|
2018-06-10 20:03:45 +03:00
|
|
|
void tryDelayedSyncCb();
|
2018-06-09 16:03:14 +03:00
|
|
|
void tryInitialSyncCb();
|
2020-07-18 22:00:36 +03:00
|
|
|
void newSyncResponse(mtx::responses::Sync res);
|
2018-06-09 16:03:14 +03:00
|
|
|
void leftRoom(const QString &room_id);
|
|
|
|
|
2018-04-21 16:34:50 +03:00
|
|
|
void initializeRoomList(QMap<QString, RoomInfo>);
|
|
|
|
void initializeViews(const mtx::responses::Rooms &rooms);
|
2018-06-28 16:16:43 +03:00
|
|
|
void initializeEmptyViews(const std::map<QString, mtx::responses::Timeline> &msgs);
|
2019-08-13 05:09:40 +03:00
|
|
|
void initializeMentions(const QMap<QString, mtx::responses::Notifications> ¬ifs);
|
2018-04-21 16:34:50 +03:00
|
|
|
void syncUI(const mtx::responses::Rooms &rooms);
|
|
|
|
void syncRoomlist(const std::map<QString, RoomInfo> &updates);
|
2018-09-28 15:40:51 +03:00
|
|
|
void syncTags(const std::map<QString, RoomInfo> &updates);
|
2018-06-09 16:03:14 +03:00
|
|
|
void dropToLoginPageCb(const QString &msg);
|
2017-04-09 02:17:04 +03:00
|
|
|
|
2018-07-11 17:33:02 +03:00
|
|
|
void notifyMessage(const QString &roomid,
|
|
|
|
const QString &eventid,
|
|
|
|
const QString &roomname,
|
|
|
|
const QString &sender,
|
|
|
|
const QString &message,
|
|
|
|
const QImage &icon);
|
|
|
|
|
2018-07-14 12:08:16 +03:00
|
|
|
void updateGroupsInfo(const mtx::responses::JoinedGroups &groups);
|
2020-06-08 02:45:24 +03:00
|
|
|
void retrievedPresence(const QString &statusMsg, mtx::presence::PresenceState state);
|
2019-01-20 07:43:48 +03:00
|
|
|
void themeChanged();
|
2020-04-23 02:52:30 +03:00
|
|
|
void decryptSidebarChanged();
|
2018-07-14 12:08:16 +03:00
|
|
|
|
2020-06-09 19:36:41 +03:00
|
|
|
//! Signals for device verificaiton
|
2020-10-05 23:12:10 +03:00
|
|
|
void receivedDeviceVerificationAccept(
|
2020-07-17 23:16:30 +03:00
|
|
|
const mtx::events::msg::KeyVerificationAccept &message);
|
2020-10-05 23:12:10 +03:00
|
|
|
void receivedDeviceVerificationRequest(
|
2020-07-17 23:16:30 +03:00
|
|
|
const mtx::events::msg::KeyVerificationRequest &message,
|
|
|
|
std::string sender);
|
2020-10-05 23:12:10 +03:00
|
|
|
void receivedRoomDeviceVerificationRequest(
|
2020-07-29 00:55:47 +03:00
|
|
|
const mtx::events::RoomEvent<mtx::events::msg::KeyVerificationRequest> &message,
|
|
|
|
TimelineModel *model);
|
2020-10-05 23:12:10 +03:00
|
|
|
void receivedDeviceVerificationCancel(
|
2020-07-17 23:16:30 +03:00
|
|
|
const mtx::events::msg::KeyVerificationCancel &message);
|
2020-10-05 23:12:10 +03: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 23:16:30 +03:00
|
|
|
std::string sender);
|
2020-10-05 23:12:10 +03:00
|
|
|
void receivedDeviceVerificationReady(const mtx::events::msg::KeyVerificationReady &message);
|
|
|
|
void receivedDeviceVerificationDone(const mtx::events::msg::KeyVerificationDone &message);
|
2020-06-09 19:36:41 +03:00
|
|
|
|
2017-04-11 17:45:47 +03:00
|
|
|
private slots:
|
2017-08-26 13:49:16 +03:00
|
|
|
void showUnreadMessageNotification(int count);
|
|
|
|
void logout();
|
2017-10-01 19:49:36 +03:00
|
|
|
void removeRoom(const QString &room_id);
|
2018-06-09 16:03:14 +03:00
|
|
|
void dropToLoginPage(const QString &msg);
|
|
|
|
|
|
|
|
void joinRoom(const QString &room);
|
|
|
|
void sendTypingNotifications();
|
2020-07-18 22:00:36 +03:00
|
|
|
void handleSyncResponse(mtx::responses::Sync res);
|
2017-04-06 02:06:42 +03:00
|
|
|
|
|
|
|
private:
|
2018-01-03 19:05:49 +03:00
|
|
|
static ChatPage *instance_;
|
|
|
|
|
2018-06-10 20:03:45 +03:00
|
|
|
//! Handler callback for initial sync. It doesn't run on the main thread so all
|
|
|
|
//! communication with the GUI should be done through signals.
|
|
|
|
void initialSyncHandler(const mtx::responses::Sync &res, mtx::http::RequestErr err);
|
2018-08-30 13:39:09 +03:00
|
|
|
void startInitialSync();
|
2018-06-09 16:03:14 +03:00
|
|
|
void tryInitialSync();
|
|
|
|
void trySync();
|
2018-06-10 20:03:45 +03:00
|
|
|
void ensureOneTimeKeyCount(const std::map<std::string, uint16_t> &counts);
|
2018-06-12 20:36:16 +03:00
|
|
|
void getProfileInfo();
|
2018-06-09 16:03:14 +03:00
|
|
|
|
2018-05-07 12:00:49 +03:00
|
|
|
//! Check if the given room is currently open.
|
|
|
|
bool isRoomActive(const QString &room_id)
|
|
|
|
{
|
|
|
|
return isActiveWindow() && currentRoom() == room_id;
|
|
|
|
}
|
|
|
|
|
2017-10-28 20:46:34 +03:00
|
|
|
using UserID = QString;
|
2017-12-04 19:41:19 +03:00
|
|
|
using Membership = mtx::events::StateEvent<mtx::events::state::Member>;
|
|
|
|
using Memberships = std::map<std::string, Membership>;
|
|
|
|
|
2018-04-21 16:34:50 +03:00
|
|
|
using LeftRooms = std::map<std::string, mtx::responses::LeftRoom>;
|
2017-10-28 20:46:34 +03:00
|
|
|
void removeLeftRooms(const LeftRooms &rooms);
|
|
|
|
|
2017-08-26 13:49:16 +03:00
|
|
|
void loadStateFromCache();
|
2017-10-20 22:32:48 +03:00
|
|
|
void resetUI();
|
2018-01-09 22:57:41 +03:00
|
|
|
//! Decides whether or not to hide the group's sidebar.
|
|
|
|
void setGroupViewState(bool isEnabled);
|
2017-05-07 17:15:38 +03:00
|
|
|
|
2017-12-04 19:41:19 +03:00
|
|
|
template<class Collection>
|
|
|
|
Memberships getMemberships(const std::vector<Collection> &events) const;
|
|
|
|
|
2018-02-15 22:58:57 +03:00
|
|
|
//! Update the room with the new notification count.
|
2019-01-25 05:43:54 +03:00
|
|
|
void updateRoomNotificationCount(const QString &room_id,
|
|
|
|
uint16_t notification_count,
|
|
|
|
uint16_t highlight_count);
|
2018-05-05 16:38:41 +03:00
|
|
|
//! Send desktop notification for the received messages.
|
2020-06-10 12:27:21 +03:00
|
|
|
void sendNotifications(const mtx::responses::Notifications &);
|
2018-02-08 20:07:58 +03:00
|
|
|
|
2019-08-20 01:11:38 +03:00
|
|
|
void showNotificationsDialog(const QPoint &point);
|
2019-07-17 05:36:55 +03:00
|
|
|
|
2020-07-11 02:19:48 +03:00
|
|
|
template<typename T>
|
|
|
|
void connectCallMessage();
|
|
|
|
|
2017-08-26 13:49:16 +03:00
|
|
|
QHBoxLayout *topLayout_;
|
|
|
|
Splitter *splitter;
|
2017-05-19 19:55:38 +03:00
|
|
|
|
2018-01-09 16:07:32 +03:00
|
|
|
QWidget *sideBar_;
|
2017-08-26 13:49:16 +03:00
|
|
|
QVBoxLayout *sideBarLayout_;
|
2018-01-09 16:07:32 +03:00
|
|
|
QWidget *sideBarTopWidget_;
|
|
|
|
QVBoxLayout *sideBarTopWidgetLayout_;
|
2017-05-19 19:55:38 +03:00
|
|
|
|
2017-11-09 00:09:15 +03:00
|
|
|
QFrame *content_;
|
2017-08-26 13:49:16 +03:00
|
|
|
QVBoxLayout *contentLayout_;
|
2017-04-06 02:06:42 +03:00
|
|
|
|
2018-01-09 16:07:32 +03:00
|
|
|
CommunitiesList *communitiesList_;
|
2017-08-26 13:49:16 +03:00
|
|
|
RoomList *room_list_;
|
2018-01-09 16:07:32 +03:00
|
|
|
|
2017-08-26 13:49:16 +03:00
|
|
|
TimelineViewManager *view_manager_;
|
2017-10-15 22:08:51 +03:00
|
|
|
SideBarActions *sidebarActions_;
|
2017-04-06 02:06:42 +03:00
|
|
|
|
2017-08-26 13:49:16 +03:00
|
|
|
TextInputWidget *text_input_;
|
2017-04-06 02:06:42 +03:00
|
|
|
|
2018-06-09 16:03:14 +03:00
|
|
|
QTimer connectivityTimer_;
|
|
|
|
std::atomic_bool isConnected_;
|
2017-04-06 02:06:42 +03:00
|
|
|
|
2017-08-26 13:49:16 +03:00
|
|
|
QString current_room_;
|
2018-01-09 16:07:32 +03:00
|
|
|
QString current_community_;
|
|
|
|
|
2017-08-26 13:49:16 +03:00
|
|
|
UserInfoWidget *user_info_widget_;
|
2017-04-06 02:06:42 +03:00
|
|
|
|
2019-08-10 06:34:44 +03:00
|
|
|
popups::UserMentions *user_mentions_popup_;
|
2019-07-17 05:36:55 +03:00
|
|
|
|
2017-10-31 21:11:49 +03:00
|
|
|
QTimer *typingRefresher_;
|
2017-10-04 11:33:34 +03:00
|
|
|
|
2017-12-30 18:29:57 +03:00
|
|
|
// Global user settings.
|
|
|
|
QSharedPointer<UserSettings> userSettings_;
|
2018-07-11 17:33:02 +03:00
|
|
|
|
|
|
|
NotificationsManager notificationsManager;
|
2020-07-11 02:19:48 +03:00
|
|
|
CallManager callManager_;
|
2017-04-06 02:06:42 +03:00
|
|
|
};
|
2017-12-04 19:41:19 +03: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 13:12:07 +03:00
|
|
|
for (const auto &event : collection) {
|
2019-12-14 19:08:36 +03:00
|
|
|
if (auto member = std::get_if<Member>(event)) {
|
|
|
|
memberships.emplace(member->state_key, *member);
|
2017-12-04 19:41:19 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return memberships;
|
|
|
|
}
|