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
|
|
|
|
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>
|
|
|
|
#include <QTimer>
|
|
|
|
#include <QWidget>
|
|
|
|
|
2018-01-09 16:07:32 +03:00
|
|
|
#include "CommunitiesList.h"
|
|
|
|
#include "Community.h"
|
2017-12-04 19:41:19 +03:00
|
|
|
#include <mtx.hpp>
|
2017-10-28 20:46:34 +03:00
|
|
|
|
2017-10-28 15:46:39 +03:00
|
|
|
class Cache;
|
|
|
|
class MatrixClient;
|
|
|
|
class OverlayModal;
|
|
|
|
class QuickSwitcher;
|
|
|
|
class RoomList;
|
|
|
|
class RoomSettings;
|
|
|
|
class RoomState;
|
|
|
|
class SideBarActions;
|
|
|
|
class Splitter;
|
|
|
|
class TextInputWidget;
|
|
|
|
class TimelineViewManager;
|
|
|
|
class TopRoomBar;
|
|
|
|
class TypingDisplay;
|
|
|
|
class UserInfoWidget;
|
2017-12-30 18:29:57 +03:00
|
|
|
class UserSettings;
|
2017-04-06 02:06:42 +03:00
|
|
|
|
2018-01-03 19:05:49 +03:00
|
|
|
namespace dialogs {
|
|
|
|
class ReadReceipts;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
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:
|
2017-12-30 18:29:57 +03:00
|
|
|
ChatPage(QSharedPointer<MatrixClient> client,
|
|
|
|
QSharedPointer<UserSettings> userSettings,
|
|
|
|
QWidget *parent = 0);
|
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-01-03 19:05:49 +03:00
|
|
|
void showReadReceipts(const QString &event_id);
|
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
|
|
|
void readEvent(const QString &room_id, const QString &event_id)
|
|
|
|
{
|
|
|
|
client_->readEvent(room_id, event_id);
|
|
|
|
}
|
2018-03-17 22:23:46 +03:00
|
|
|
void redactEvent(const QString &room_id, const QString &event_id)
|
|
|
|
{
|
|
|
|
client_->redactEvent(room_id, event_id);
|
|
|
|
}
|
2018-03-11 18:56:40 +03:00
|
|
|
|
|
|
|
QSharedPointer<UserSettings> userSettings() { return userSettings_; }
|
2017-04-06 02:06:42 +03:00
|
|
|
|
2017-04-09 02:17:04 +03:00
|
|
|
signals:
|
2017-08-26 13:49:16 +03:00
|
|
|
void contentLoaded();
|
|
|
|
void close();
|
|
|
|
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();
|
2017-04-09 02:17:04 +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 updateTopBarAvatar(const QString &roomid, const QPixmap &img);
|
|
|
|
void updateOwnProfileInfo(const QUrl &avatar_url, const QString &display_name);
|
2018-01-09 16:07:32 +03:00
|
|
|
void updateOwnCommunitiesInfo(const QList<QString> &own_communities);
|
2017-12-04 19:41:19 +03:00
|
|
|
void initialSyncCompleted(const mtx::responses::Sync &response);
|
|
|
|
void syncCompleted(const mtx::responses::Sync &response);
|
2017-08-26 13:49:16 +03:00
|
|
|
void changeTopRoomInfo(const QString &room_id);
|
|
|
|
void logout();
|
2017-10-01 19:49:36 +03:00
|
|
|
void addRoom(const QString &room_id);
|
|
|
|
void removeRoom(const QString &room_id);
|
2017-12-19 23:36:12 +03:00
|
|
|
void removeInvite(const QString &room_id);
|
2017-04-06 02:06:42 +03:00
|
|
|
|
|
|
|
private:
|
2018-01-03 19:05:49 +03:00
|
|
|
static ChatPage *instance_;
|
|
|
|
|
2017-10-28 20:46:34 +03:00
|
|
|
using UserID = QString;
|
2018-01-24 21:46:37 +03:00
|
|
|
using RoomStates = std::map<UserID, QSharedPointer<RoomState>>;
|
2017-12-04 19:41:19 +03:00
|
|
|
using Membership = mtx::events::StateEvent<mtx::events::state::Member>;
|
|
|
|
using Memberships = std::map<std::string, Membership>;
|
|
|
|
|
|
|
|
using JoinedRooms = std::map<std::string, mtx::responses::JoinedRoom>;
|
|
|
|
using LeftRooms = std::map<std::string, mtx::responses::LeftRoom>;
|
2017-10-28 20:46:34 +03:00
|
|
|
|
|
|
|
void removeLeftRooms(const LeftRooms &rooms);
|
|
|
|
void updateJoinedRooms(const JoinedRooms &rooms);
|
|
|
|
|
2018-01-24 21:46:37 +03:00
|
|
|
std::map<QString, QSharedPointer<RoomState>> generateMembershipDifference(
|
2018-01-13 18:15:47 +03:00
|
|
|
const JoinedRooms &rooms,
|
|
|
|
const RoomStates &states) const;
|
2017-10-28 20:46:34 +03:00
|
|
|
|
2017-12-04 19:41:19 +03:00
|
|
|
void updateTypingUsers(const QString &roomid, const std::vector<std::string> &user_ids);
|
|
|
|
|
|
|
|
using MemberEvent = mtx::events::StateEvent<mtx::events::state::Member>;
|
|
|
|
void updateUserDisplayName(const MemberEvent &event);
|
|
|
|
void updateUserAvatarUrl(const MemberEvent &event);
|
|
|
|
|
2017-08-26 13:49:16 +03:00
|
|
|
void loadStateFromCache();
|
2017-10-20 22:32:48 +03:00
|
|
|
void deleteConfigs();
|
|
|
|
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;
|
|
|
|
|
|
|
|
template<class Collection>
|
|
|
|
void updateUserMetadata(const std::vector<Collection> &collection);
|
|
|
|
|
2018-03-04 15:49:15 +03:00
|
|
|
void retryInitialSync(int status_code = -1);
|
2018-02-15 22:58:57 +03:00
|
|
|
//! Update the room with the new notification count.
|
|
|
|
void updateRoomNotificationCount(const QString &room_id, uint16_t notification_count);
|
2018-02-08 20:07:58 +03:00
|
|
|
|
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_;
|
|
|
|
QWidget *communitiesSideBar_;
|
|
|
|
QVBoxLayout *communitiesSideBarLayout_;
|
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
|
|
|
TopRoomBar *top_bar_;
|
|
|
|
TextInputWidget *text_input_;
|
2017-10-04 11:33:34 +03:00
|
|
|
TypingDisplay *typingDisplay_;
|
2017-04-06 02:06:42 +03:00
|
|
|
|
2017-10-08 21:35:37 +03:00
|
|
|
// Safety net if consensus is not possible or too slow.
|
|
|
|
QTimer *showContentTimer_;
|
2017-10-07 20:50:32 +03:00
|
|
|
QTimer *consensusTimer_;
|
2018-01-13 23:25:15 +03:00
|
|
|
QTimer *syncTimeoutTimer_;
|
2018-02-08 20:07:58 +03:00
|
|
|
QTimer *initialSyncTimer_;
|
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_;
|
|
|
|
|
2018-01-24 21:46:37 +03:00
|
|
|
std::map<QString, QPixmap> roomAvatars_;
|
|
|
|
std::map<QString, QPixmap> community_avatars_;
|
2017-04-06 02:06:42 +03:00
|
|
|
|
2017-08-26 13:49:16 +03:00
|
|
|
UserInfoWidget *user_info_widget_;
|
2017-04-06 02:06:42 +03:00
|
|
|
|
2018-01-13 18:15:47 +03:00
|
|
|
RoomStates roomStates_;
|
2018-01-24 21:46:37 +03:00
|
|
|
std::map<QString, QSharedPointer<RoomSettings>> roomSettings_;
|
2017-05-07 17:15:38 +03:00
|
|
|
|
2018-01-24 21:46:37 +03:00
|
|
|
std::map<QString, QSharedPointer<Community>> communities_;
|
2018-01-09 16:07:32 +03:00
|
|
|
|
2017-10-04 11:33:34 +03:00
|
|
|
// Keeps track of the users currently typing on each room.
|
2018-01-24 21:46:37 +03:00
|
|
|
std::map<QString, QList<QString>> typingUsers_;
|
2017-10-31 21:11:49 +03:00
|
|
|
QTimer *typingRefresher_;
|
2017-10-04 11:33:34 +03:00
|
|
|
|
2017-10-07 20:09:34 +03:00
|
|
|
QSharedPointer<QuickSwitcher> quickSwitcher_;
|
|
|
|
QSharedPointer<OverlayModal> quickSwitcherModal_;
|
2017-08-15 21:06:27 +03:00
|
|
|
|
2018-01-03 19:05:49 +03:00
|
|
|
QSharedPointer<dialogs::ReadReceipts> receiptsDialog_;
|
|
|
|
QSharedPointer<OverlayModal> receiptsModal_;
|
|
|
|
|
2017-08-26 13:49:16 +03:00
|
|
|
// Matrix Client API provider.
|
|
|
|
QSharedPointer<MatrixClient> client_;
|
2017-07-29 11:49:00 +03:00
|
|
|
|
2017-12-30 18:29:57 +03:00
|
|
|
// Global user settings.
|
|
|
|
QSharedPointer<UserSettings> userSettings_;
|
|
|
|
|
2017-08-26 13:49:16 +03:00
|
|
|
// LMDB wrapper.
|
|
|
|
QSharedPointer<Cache> cache_;
|
2017-04-06 02:06:42 +03:00
|
|
|
};
|
2017-12-04 19:41:19 +03:00
|
|
|
|
|
|
|
template<class Collection>
|
|
|
|
void
|
|
|
|
ChatPage::updateUserMetadata(const std::vector<Collection> &collection)
|
|
|
|
{
|
|
|
|
using Member = mtx::events::StateEvent<mtx::events::state::Member>;
|
|
|
|
|
2018-02-28 13:12:07 +03:00
|
|
|
for (const auto &event : collection) {
|
2017-12-04 19:41:19 +03:00
|
|
|
if (mpark::holds_alternative<Member>(event)) {
|
|
|
|
auto member = mpark::get<Member>(event);
|
|
|
|
|
|
|
|
updateUserAvatarUrl(member);
|
|
|
|
updateUserDisplayName(member);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
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) {
|
2017-12-04 19:41:19 +03:00
|
|
|
if (mpark::holds_alternative<Member>(event)) {
|
|
|
|
auto member = mpark::get<Member>(event);
|
|
|
|
memberships.emplace(member.state_key, member);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return memberships;
|
|
|
|
}
|