2021-03-05 02:35:15 +03:00
|
|
|
// SPDX-FileCopyrightText: 2021 Nheko Contributors
|
|
|
|
//
|
|
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
|
2017-05-16 21:46:45 +03:00
|
|
|
#pragma once
|
2017-04-06 02:06:42 +03:00
|
|
|
|
2020-05-13 07:35:26 +03:00
|
|
|
#include <QHash>
|
2021-07-15 01:26:39 +03:00
|
|
|
#include <QQuickItem>
|
|
|
|
#include <QQuickTextDocument>
|
2019-11-09 05:06:10 +03:00
|
|
|
#include <QQuickView>
|
|
|
|
#include <QQuickWidget>
|
2017-04-13 04:11:22 +03:00
|
|
|
#include <QSharedPointer>
|
2019-11-09 05:06:10 +03:00
|
|
|
#include <QWidget>
|
2017-04-06 02:06:42 +03:00
|
|
|
|
2019-12-05 17:31:53 +03:00
|
|
|
#include <mtx/common.hpp>
|
2020-10-27 19:45:28 +03:00
|
|
|
#include <mtx/responses/messages.hpp>
|
|
|
|
#include <mtx/responses/sync.hpp>
|
2017-11-15 19:38:50 +03:00
|
|
|
|
2019-11-09 05:06:10 +03:00
|
|
|
#include "Cache.h"
|
2020-09-25 17:26:36 +03:00
|
|
|
#include "CallManager.h"
|
2019-11-09 05:06:10 +03:00
|
|
|
#include "Logging.h"
|
|
|
|
#include "TimelineModel.h"
|
2019-06-14 05:33:04 +03:00
|
|
|
#include "Utils.h"
|
2020-09-22 19:07:36 +03:00
|
|
|
#include "WebRTCSession.h"
|
2020-05-13 07:35:26 +03:00
|
|
|
#include "emoji/EmojiModel.h"
|
|
|
|
#include "emoji/Provider.h"
|
2021-06-10 00:52:28 +03:00
|
|
|
#include "timeline/CommunitiesModel.h"
|
2021-05-19 20:34:10 +03:00
|
|
|
#include "timeline/RoomlistModel.h"
|
2019-06-14 05:33:04 +03:00
|
|
|
|
2019-11-09 05:06:10 +03:00
|
|
|
class MxcImageProvider;
|
2020-03-01 21:55:43 +03:00
|
|
|
class BlurhashProvider;
|
2019-11-09 05:06:10 +03:00
|
|
|
class ColorImageProvider;
|
2020-01-27 17:59:25 +03:00
|
|
|
class UserSettings;
|
2020-09-03 18:01:58 +03:00
|
|
|
class ChatPage;
|
2020-10-27 19:45:28 +03:00
|
|
|
class DeviceVerificationFlow;
|
2021-07-21 14:37:57 +03:00
|
|
|
class ImagePackListModel;
|
2017-04-06 02:06:42 +03:00
|
|
|
|
2019-11-09 05:06:10 +03:00
|
|
|
class TimelineViewManager : public QObject
|
2017-04-06 02:06:42 +03:00
|
|
|
{
|
2017-08-26 11:33:26 +03:00
|
|
|
Q_OBJECT
|
2017-04-06 02:06:42 +03:00
|
|
|
|
2019-11-10 02:30:02 +03:00
|
|
|
Q_PROPERTY(
|
|
|
|
bool isInitialSync MEMBER isInitialSync_ READ isInitialSync NOTIFY initialSyncChanged)
|
2021-01-27 01:23:28 +03:00
|
|
|
Q_PROPERTY(
|
|
|
|
bool isWindowFocused MEMBER isWindowFocused_ READ isWindowFocused NOTIFY focusChanged)
|
2017-10-01 19:49:36 +03:00
|
|
|
|
2019-11-09 05:06:10 +03:00
|
|
|
public:
|
2020-10-17 01:57:29 +03:00
|
|
|
TimelineViewManager(CallManager *callManager, ChatPage *parent = nullptr);
|
2019-11-09 05:06:10 +03:00
|
|
|
QWidget *getWidget() const { return container; }
|
2017-10-01 19:49:36 +03:00
|
|
|
|
2017-12-04 19:41:19 +03:00
|
|
|
void sync(const mtx::responses::Rooms &rooms);
|
2021-05-19 20:34:10 +03:00
|
|
|
|
|
|
|
MxcImageProvider *imageProvider() { return imgProvider; }
|
|
|
|
CallManager *callManager() { return callManager_; }
|
2017-10-07 20:50:32 +03:00
|
|
|
|
2021-05-28 23:14:59 +03:00
|
|
|
void clearAll() { rooms_->clear(); }
|
2019-11-09 05:06:10 +03:00
|
|
|
|
2019-11-10 02:30:02 +03:00
|
|
|
Q_INVOKABLE bool isInitialSync() const { return isInitialSync_; }
|
2021-01-27 01:23:28 +03:00
|
|
|
bool isWindowFocused() const { return isWindowFocused_; }
|
2021-04-05 14:58:00 +03:00
|
|
|
Q_INVOKABLE void openImageOverlay(QString mxcUrl, QString eventId);
|
2021-07-21 14:37:57 +03:00
|
|
|
Q_INVOKABLE void openImagePackSettings(QString roomid);
|
2020-02-20 22:51:07 +03:00
|
|
|
Q_INVOKABLE QColor userColor(QString id, QColor background);
|
2020-09-03 20:51:50 +03:00
|
|
|
Q_INVOKABLE QString escapeEmoji(QString str) const;
|
2021-05-22 11:16:42 +03:00
|
|
|
Q_INVOKABLE QString htmlEscape(QString str) const { return str.toHtmlEscaped(); }
|
2017-04-11 22:48:02 +03:00
|
|
|
|
2020-06-24 17:24:22 +03:00
|
|
|
Q_INVOKABLE QString userPresence(QString id) const;
|
2020-06-08 02:45:24 +03:00
|
|
|
Q_INVOKABLE QString userStatus(QString id) const;
|
|
|
|
|
2021-08-14 00:58:26 +03:00
|
|
|
Q_INVOKABLE void openRoomMembers(TimelineModel *room);
|
2021-07-22 01:56:20 +03:00
|
|
|
Q_INVOKABLE void openRoomSettings(QString room_id);
|
|
|
|
Q_INVOKABLE void openInviteUsers(QString roomId);
|
2021-07-22 03:38:18 +03:00
|
|
|
Q_INVOKABLE void openGlobalUserProfile(QString userId);
|
2021-07-22 01:56:20 +03:00
|
|
|
|
2021-02-05 20:12:08 +03:00
|
|
|
Q_INVOKABLE void focusMessageInput();
|
2021-05-28 23:14:59 +03:00
|
|
|
Q_INVOKABLE void openLeaveRoomDialog(QString roomid) const;
|
2020-10-05 23:58:07 +03:00
|
|
|
Q_INVOKABLE void removeVerificationFlow(DeviceVerificationFlow *flow);
|
2020-09-03 18:01:58 +03:00
|
|
|
|
2021-07-15 01:26:39 +03:00
|
|
|
Q_INVOKABLE void fixImageRendering(QQuickTextDocument *t, QQuickItem *i);
|
|
|
|
|
2020-10-05 23:12:10 +03:00
|
|
|
void verifyUser(QString userid);
|
|
|
|
void verifyDevice(QString userid, QString deviceid);
|
|
|
|
|
2017-04-15 02:56:04 +03:00
|
|
|
signals:
|
2019-11-09 05:06:10 +03:00
|
|
|
void activeTimelineChanged(TimelineModel *timeline);
|
2019-11-10 02:30:02 +03:00
|
|
|
void initialSyncChanged(bool isInitialSync);
|
2020-01-28 07:28:11 +03:00
|
|
|
void replyingEventChanged(QString replyingEvent);
|
2020-02-05 02:17:14 +03:00
|
|
|
void replyClosed();
|
2020-10-05 23:12:10 +03:00
|
|
|
void newDeviceVerificationRequest(DeviceVerificationFlow *flow);
|
2021-06-11 03:11:49 +03:00
|
|
|
void inviteUsers(QString roomId, QStringList users);
|
|
|
|
void showRoomList();
|
|
|
|
void narrowViewChanged();
|
2021-01-27 01:23:28 +03:00
|
|
|
void focusChanged();
|
2021-02-05 20:12:08 +03:00
|
|
|
void focusInput();
|
2021-04-05 14:58:00 +03:00
|
|
|
void openImageOverlayInternalCb(QString eventId, QImage img);
|
2021-08-14 00:58:26 +03:00
|
|
|
void openRoomMembersDialog(MemberList *members, TimelineModel *room);
|
2021-07-22 01:56:20 +03:00
|
|
|
void openRoomSettingsDialog(RoomSettings *settings);
|
|
|
|
void openInviteUsersDialog(InviteesModel *invitees);
|
2021-04-30 16:33:17 +03:00
|
|
|
void openProfile(UserProfile *profile);
|
2021-07-21 14:37:57 +03:00
|
|
|
void showImagePackSettings(ImagePackListModel *packlist);
|
2017-04-15 02:56:04 +03:00
|
|
|
|
2017-04-06 02:06:42 +03:00
|
|
|
public slots:
|
2018-07-17 23:50:18 +03:00
|
|
|
void updateReadReceipts(const QString &room_id, const std::vector<QString> &event_ids);
|
2020-10-20 20:46:37 +03:00
|
|
|
void receivedSessionKey(const std::string &room_id, const std::string &session_id);
|
2021-05-24 15:04:07 +03:00
|
|
|
void initializeRoomlist();
|
2021-01-27 01:23:28 +03:00
|
|
|
void chatFocusChanged(bool focused)
|
|
|
|
{
|
|
|
|
isWindowFocused_ = focused;
|
|
|
|
emit focusChanged();
|
|
|
|
}
|
2018-06-09 16:03:14 +03:00
|
|
|
|
2021-04-29 20:09:16 +03:00
|
|
|
void showEvent(const QString &room_id, const QString &event_id);
|
2021-02-22 22:16:40 +03:00
|
|
|
void focusTimeline();
|
2020-11-25 19:02:23 +03:00
|
|
|
|
2019-11-09 05:06:10 +03:00
|
|
|
void updateColorPalette();
|
2021-01-07 12:44:59 +03:00
|
|
|
void queueReply(const QString &roomid,
|
|
|
|
const QString &repliedToEvent,
|
|
|
|
const QString &replyBody);
|
2020-07-11 02:19:48 +03:00
|
|
|
void queueCallMessage(const QString &roomid, const mtx::events::msg::CallInvite &);
|
|
|
|
void queueCallMessage(const QString &roomid, const mtx::events::msg::CallCandidates &);
|
|
|
|
void queueCallMessage(const QString &roomid, const mtx::events::msg::CallAnswer &);
|
|
|
|
void queueCallMessage(const QString &roomid, const mtx::events::msg::CallHangUp &);
|
|
|
|
|
2020-12-10 04:49:48 +03:00
|
|
|
void setVideoCallItem();
|
2017-04-13 04:11:22 +03:00
|
|
|
|
2021-02-21 20:40:21 +03:00
|
|
|
QObject *completerFor(QString completerName, QString roomId = "");
|
2021-04-17 20:28:04 +03:00
|
|
|
void forwardMessageToRoom(mtx::events::collections::TimelineEvents *e, QString roomId);
|
2020-09-03 18:01:58 +03:00
|
|
|
|
2021-05-28 23:14:59 +03:00
|
|
|
RoomlistModel *rooms() { return rooms_; }
|
|
|
|
|
2021-04-05 14:58:00 +03:00
|
|
|
private slots:
|
|
|
|
void openImageOverlayInternal(QString eventId, QImage img);
|
|
|
|
|
2017-04-06 02:06:42 +03:00
|
|
|
private:
|
2019-11-09 05:06:10 +03:00
|
|
|
#ifdef USE_QUICK_VIEW
|
|
|
|
QQuickView *view;
|
|
|
|
#else
|
|
|
|
QQuickWidget *view;
|
|
|
|
#endif
|
|
|
|
QWidget *container;
|
2019-11-10 02:30:02 +03:00
|
|
|
|
2019-11-09 05:06:10 +03:00
|
|
|
MxcImageProvider *imgProvider;
|
|
|
|
ColorImageProvider *colorImgProvider;
|
2020-03-01 21:55:43 +03:00
|
|
|
BlurhashProvider *blurhashProvider;
|
2019-11-09 05:06:10 +03:00
|
|
|
|
2020-07-11 02:19:48 +03:00
|
|
|
CallManager *callManager_ = nullptr;
|
2020-05-13 07:35:26 +03:00
|
|
|
|
2021-01-27 01:23:28 +03:00
|
|
|
bool isInitialSync_ = true;
|
|
|
|
bool isWindowFocused_ = false;
|
2020-01-27 17:59:25 +03:00
|
|
|
|
2021-06-10 00:52:28 +03:00
|
|
|
RoomlistModel *rooms_ = nullptr;
|
|
|
|
CommunitiesModel *communities_ = nullptr;
|
2021-05-19 20:34:10 +03:00
|
|
|
|
2020-02-20 22:51:07 +03:00
|
|
|
QHash<QString, QColor> userColors;
|
2020-06-17 21:28:35 +03:00
|
|
|
|
2020-10-05 23:12:10 +03:00
|
|
|
QHash<QString, QSharedPointer<DeviceVerificationFlow>> dvList;
|
2017-04-06 02:06:42 +03:00
|
|
|
};
|
2020-07-17 23:16:30 +03:00
|
|
|
Q_DECLARE_METATYPE(mtx::events::msg::KeyVerificationAccept)
|
|
|
|
Q_DECLARE_METATYPE(mtx::events::msg::KeyVerificationCancel)
|
|
|
|
Q_DECLARE_METATYPE(mtx::events::msg::KeyVerificationDone)
|
|
|
|
Q_DECLARE_METATYPE(mtx::events::msg::KeyVerificationKey)
|
|
|
|
Q_DECLARE_METATYPE(mtx::events::msg::KeyVerificationMac)
|
|
|
|
Q_DECLARE_METATYPE(mtx::events::msg::KeyVerificationReady)
|
|
|
|
Q_DECLARE_METATYPE(mtx::events::msg::KeyVerificationRequest)
|
|
|
|
Q_DECLARE_METATYPE(mtx::events::msg::KeyVerificationStart)
|