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/>.
|
|
|
|
*/
|
|
|
|
|
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>
|
|
|
|
#include <variant>
|
|
|
|
|
2019-12-05 15:31:53 +01:00
|
|
|
#include <mtx/common.hpp>
|
2019-12-15 03:34:17 +01:00
|
|
|
#include <mtx/requests.hpp>
|
2019-08-10 05:34:44 +02:00
|
|
|
#include <mtx/responses.hpp>
|
2019-12-15 03:19:33 +01:00
|
|
|
#include <mtxclient/http/errors.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>
|
|
|
|
|
2019-12-14 23:39:02 +01:00
|
|
|
#include "CacheStructs.h"
|
2020-07-11 01:19:48 +02:00
|
|
|
#include "CallManager.h"
|
2018-01-09 14:07:32 +01:00
|
|
|
#include "CommunitiesList.h"
|
2019-06-14 04:33:04 +02:00
|
|
|
#include "Utils.h"
|
2018-07-11 16:33:02 +02:00
|
|
|
#include "notifications/Manager.h"
|
2019-08-10 05:34:44 +02:00
|
|
|
#include "popups/UserMentions.h"
|
2017-10-28 19:46:34 +02:00
|
|
|
|
2020-07-11 01:19:48 +02:00
|
|
|
class ActiveCallBar;
|
2017-10-28 14:46:39 +02:00
|
|
|
class OverlayModal;
|
|
|
|
class QuickSwitcher;
|
|
|
|
class RoomList;
|
|
|
|
class SideBarActions;
|
|
|
|
class Splitter;
|
|
|
|
class TextInputWidget;
|
|
|
|
class TimelineViewManager;
|
|
|
|
class TopRoomBar;
|
|
|
|
class UserInfoWidget;
|
2017-12-30 16:29:57 +01:00
|
|
|
class UserSettings;
|
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
|
|
|
|
2019-12-15 03:19:33 +01:00
|
|
|
namespace mtx::http {
|
|
|
|
using RequestErr = const std::optional<mtx::http::ClientError> &;
|
|
|
|
}
|
|
|
|
|
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);
|
2017-10-20 20:39:05 +02:00
|
|
|
void showQuickSwitcher();
|
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_; }
|
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
|
|
|
bool isSideBarExpanded();
|
|
|
|
//! 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();
|
2020-04-13 16:22:30 +02:00
|
|
|
void focusMessageInput();
|
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:
|
|
|
|
void leaveRoom(const QString &room_id);
|
2018-07-20 15:15:50 +02:00
|
|
|
void createRoom(const mtx::requests::CreateRoom &req);
|
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);
|
|
|
|
|
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
|
|
|
|
2018-06-09 15:03:14 +02:00
|
|
|
void uploadFailed(const QString &msg);
|
2019-12-05 15:31:53 +01:00
|
|
|
void mediaUploaded(const QString &roomid,
|
2018-06-09 15:03:14 +02:00
|
|
|
const QString &filename,
|
2019-12-14 17:08:36 +01:00
|
|
|
const std::optional<mtx::crypto::EncryptedFile> &file,
|
2018-06-09 15:03:14 +02:00
|
|
|
const QString &url,
|
2019-12-05 15:31:53 +01:00
|
|
|
const QString &mimeClass,
|
2018-06-09 15:03:14 +02:00
|
|
|
const QString &mime,
|
2018-07-10 22:31:51 +02:00
|
|
|
qint64 dsize,
|
2020-01-12 16:39:01 +01:00
|
|
|
const QSize &dimensions,
|
2020-04-13 16:22:30 +02:00
|
|
|
const QString &blurhash);
|
2018-06-09 15:03:14 +02:00
|
|
|
|
2017-08-26 12:49:16 +02:00
|
|
|
void contentLoaded();
|
2018-04-24 22:57:49 +02:00
|
|
|
void closing();
|
2017-08-26 12:49:16 +02:00
|
|
|
void changeWindowTitle(const QString &msg);
|
|
|
|
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();
|
|
|
|
void leftRoom(const QString &room_id);
|
|
|
|
|
2018-04-21 15:34:50 +02:00
|
|
|
void initializeRoomList(QMap<QString, RoomInfo>);
|
|
|
|
void initializeViews(const mtx::responses::Rooms &rooms);
|
2018-06-28 15:16:43 +02:00
|
|
|
void initializeEmptyViews(const std::map<QString, mtx::responses::Timeline> &msgs);
|
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-05-18 20:37:08 +02:00
|
|
|
void syncTopBar(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();
|
2018-07-14 11:08:16 +02:00
|
|
|
|
2017-04-11 16:45:47 +02:00
|
|
|
private slots:
|
2017-08-26 12:49:16 +02:00
|
|
|
void showUnreadMessageNotification(int count);
|
2019-08-26 01:24:56 +02:00
|
|
|
void updateTopBarAvatar(const QString &roomid, const QString &img);
|
2017-08-26 12:49:16 +02:00
|
|
|
void changeTopRoomInfo(const QString &room_id);
|
|
|
|
void logout();
|
2017-10-01 18:49:36 +02:00
|
|
|
void removeRoom(const QString &room_id);
|
2018-06-09 15:03:14 +02:00
|
|
|
void dropToLoginPage(const QString &msg);
|
|
|
|
|
|
|
|
void joinRoom(const QString &room);
|
|
|
|
void sendTypingNotifications();
|
2017-04-06 01:06:42 +02:00
|
|
|
|
|
|
|
private:
|
2018-01-03 17:05:49 +01:00
|
|
|
static ChatPage *instance_;
|
|
|
|
|
2018-06-10 19:03:45 +02: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 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
|
|
|
|
2017-08-26 12:49:16 +02:00
|
|
|
TopRoomBar *top_bar_;
|
|
|
|
TextInputWidget *text_input_;
|
2020-07-11 01:19:48 +02:00
|
|
|
ActiveCallBar *activeCallBar_;
|
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-10-31 19:11:49 +01:00
|
|
|
QTimer *typingRefresher_;
|
2017-10-04 10:33:34 +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-07-11 01:19:48 +02: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;
|
|
|
|
}
|