2021-03-05 02:35:15 +03:00
|
|
|
// SPDX-FileCopyrightText: 2021 Nheko Contributors
|
2022-01-01 06:57:53 +03:00
|
|
|
// SPDX-FileCopyrightText: 2022 Nheko Contributors
|
2021-03-05 02:35:15 +03:00
|
|
|
//
|
|
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
|
2019-11-09 05:06:10 +03:00
|
|
|
#include "TimelineViewManager.h"
|
|
|
|
|
2022-01-13 06:16:11 +03:00
|
|
|
#include <QApplication>
|
2022-01-02 23:46:29 +03:00
|
|
|
#include <QFileDialog>
|
|
|
|
#include <QStandardPaths>
|
2020-07-11 02:19:48 +03:00
|
|
|
#include <QString>
|
2019-11-09 05:06:10 +03:00
|
|
|
|
|
|
|
#include "ChatPage.h"
|
2021-07-21 02:03:38 +03:00
|
|
|
#include "CombinedImagePackModel.h"
|
2021-02-21 20:40:21 +03:00
|
|
|
#include "CompletionProxyModel.h"
|
2021-04-27 12:33:46 +03:00
|
|
|
#include "EventAccessors.h"
|
2021-07-21 14:37:57 +03:00
|
|
|
#include "ImagePackListModel.h"
|
2021-06-11 03:13:12 +03:00
|
|
|
#include "InviteesModel.h"
|
2018-07-17 16:37:25 +03:00
|
|
|
#include "Logging.h"
|
2020-09-03 18:01:58 +03:00
|
|
|
#include "MainWindow.h"
|
2020-01-17 03:25:14 +03:00
|
|
|
#include "MatrixClient.h"
|
2021-02-21 20:40:21 +03:00
|
|
|
#include "RoomsModel.h"
|
2019-11-09 05:06:10 +03:00
|
|
|
#include "UserSettingsPage.h"
|
2021-02-21 20:40:21 +03:00
|
|
|
#include "UsersModel.h"
|
2020-05-13 07:35:26 +03:00
|
|
|
#include "emoji/EmojiModel.h"
|
|
|
|
#include "emoji/Provider.h"
|
2017-04-06 02:06:42 +03:00
|
|
|
|
2020-06-17 21:28:35 +03:00
|
|
|
namespace msgs = mtx::events::msg;
|
|
|
|
|
2021-04-27 12:33:46 +03:00
|
|
|
namespace {
|
|
|
|
template<template<class...> class Op, class... Args>
|
|
|
|
using is_detected = typename nheko::detail::detector<nheko::nonesuch, void, Op, Args...>::value_t;
|
|
|
|
|
|
|
|
template<class Content>
|
|
|
|
using file_t = decltype(Content::file);
|
|
|
|
|
|
|
|
template<class Content>
|
|
|
|
using url_t = decltype(Content::url);
|
|
|
|
|
|
|
|
template<class Content>
|
|
|
|
using body_t = decltype(Content::body);
|
|
|
|
|
|
|
|
template<class Content>
|
|
|
|
using formatted_body_t = decltype(Content::formatted_body);
|
|
|
|
|
|
|
|
template<typename T>
|
|
|
|
static constexpr bool
|
|
|
|
messageWithFileAndUrl(const mtx::events::Event<T> &)
|
|
|
|
{
|
2021-09-18 01:22:33 +03:00
|
|
|
return is_detected<file_t, T>::value && is_detected<url_t, T>::value;
|
2021-04-27 12:33:46 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
template<typename T>
|
|
|
|
static constexpr void
|
|
|
|
removeReplyFallback(mtx::events::Event<T> &e)
|
|
|
|
{
|
2021-09-18 01:22:33 +03:00
|
|
|
if constexpr (is_detected<body_t, T>::value) {
|
|
|
|
if constexpr (std::is_same_v<std::optional<std::string>,
|
|
|
|
std::remove_cv_t<decltype(e.content.body)>>) {
|
|
|
|
if (e.content.body) {
|
|
|
|
e.content.body = utils::stripReplyFromBody(e.content.body);
|
|
|
|
}
|
|
|
|
} else if constexpr (std::is_same_v<std::string,
|
|
|
|
std::remove_cv_t<decltype(e.content.body)>>) {
|
|
|
|
e.content.body = utils::stripReplyFromBody(e.content.body);
|
2021-04-27 12:33:46 +03:00
|
|
|
}
|
2021-09-18 01:22:33 +03:00
|
|
|
}
|
2021-04-27 12:33:46 +03:00
|
|
|
|
2021-09-18 01:22:33 +03:00
|
|
|
if constexpr (is_detected<formatted_body_t, T>::value) {
|
|
|
|
if (e.content.format == "org.matrix.custom.html") {
|
|
|
|
e.content.formatted_body = utils::stripReplyFromFormattedBody(e.content.formatted_body);
|
2021-04-27 12:33:46 +03:00
|
|
|
}
|
2021-09-18 01:22:33 +03:00
|
|
|
}
|
2021-04-27 12:33:46 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-17 23:50:18 +03:00
|
|
|
void
|
2019-11-09 05:06:10 +03:00
|
|
|
TimelineViewManager::updateColorPalette()
|
2018-07-17 23:50:18 +03:00
|
|
|
{
|
2021-09-18 01:22:33 +03:00
|
|
|
userColors.clear();
|
2018-07-17 23:50:18 +03:00
|
|
|
}
|
|
|
|
|
2020-02-20 22:51:07 +03:00
|
|
|
QColor
|
|
|
|
TimelineViewManager::userColor(QString id, QColor background)
|
|
|
|
{
|
2021-11-19 00:33:45 +03:00
|
|
|
QPair<QString, quint64> idx{id, background.rgba64()};
|
|
|
|
if (!userColors.contains(idx))
|
|
|
|
userColors.insert(idx, QColor(utils::generateContrastingHexColor(id, background)));
|
|
|
|
return userColors.value(idx);
|
2020-02-20 22:51:07 +03:00
|
|
|
}
|
|
|
|
|
2022-01-12 21:09:46 +03:00
|
|
|
TimelineViewManager::TimelineViewManager(CallManager *, ChatPage *parent)
|
2021-05-30 01:23:57 +03:00
|
|
|
: QObject(parent)
|
2021-05-28 23:14:59 +03:00
|
|
|
, rooms_(new RoomlistModel(this))
|
2021-06-10 00:52:28 +03:00
|
|
|
, communities_(new CommunitiesModel(this))
|
2021-10-15 03:44:48 +03:00
|
|
|
, verificationManager_(new VerificationManager(this))
|
2021-12-30 06:54:03 +03:00
|
|
|
, presenceEmitter(new PresenceEmitter(this))
|
2017-04-13 04:11:22 +03:00
|
|
|
{
|
2021-09-18 01:22:33 +03:00
|
|
|
static auto self = this;
|
2021-09-18 01:21:14 +03:00
|
|
|
qmlRegisterSingletonInstance("im.nheko", 1, 0, "TimelineManager", self);
|
2021-09-18 01:22:33 +03:00
|
|
|
qmlRegisterSingletonType<RoomlistModel>(
|
|
|
|
"im.nheko", 1, 0, "Rooms", [](QQmlEngine *, QJSEngine *) -> QObject * {
|
|
|
|
auto ptr = new FilteredRoomlistModel(self->rooms_);
|
|
|
|
|
|
|
|
connect(self->communities_,
|
|
|
|
&CommunitiesModel::currentTagIdChanged,
|
|
|
|
ptr,
|
|
|
|
&FilteredRoomlistModel::updateFilterTag);
|
|
|
|
connect(self->communities_,
|
|
|
|
&CommunitiesModel::hiddenTagsChanged,
|
|
|
|
ptr,
|
|
|
|
&FilteredRoomlistModel::updateHiddenTagsAndSpaces);
|
|
|
|
return ptr;
|
|
|
|
});
|
2021-09-18 01:21:14 +03:00
|
|
|
qmlRegisterSingletonInstance("im.nheko", 1, 0, "Communities", self->communities_);
|
2021-10-15 03:44:48 +03:00
|
|
|
qmlRegisterSingletonInstance("im.nheko", 1, 0, "VerificationManager", verificationManager_);
|
2021-12-30 06:54:03 +03:00
|
|
|
qmlRegisterSingletonInstance("im.nheko", 1, 0, "Presence", presenceEmitter);
|
2021-09-18 01:22:33 +03:00
|
|
|
|
|
|
|
updateColorPalette();
|
2022-01-12 21:09:46 +03:00
|
|
|
|
|
|
|
connect(UserSettings::instance().get(),
|
|
|
|
&UserSettings::themeChanged,
|
|
|
|
this,
|
|
|
|
&TimelineViewManager::updateColorPalette);
|
2021-12-29 08:10:08 +03:00
|
|
|
connect(parent,
|
2021-09-18 01:22:33 +03:00
|
|
|
&ChatPage::receivedRoomDeviceVerificationRequest,
|
2021-10-15 03:44:48 +03:00
|
|
|
verificationManager_,
|
|
|
|
&VerificationManager::receivedRoomDeviceVerificationRequest);
|
2021-12-29 08:10:08 +03:00
|
|
|
connect(parent,
|
2021-09-18 01:22:33 +03:00
|
|
|
&ChatPage::receivedDeviceVerificationRequest,
|
2021-10-15 03:44:48 +03:00
|
|
|
verificationManager_,
|
|
|
|
&VerificationManager::receivedDeviceVerificationRequest);
|
2021-12-29 08:10:08 +03:00
|
|
|
connect(parent,
|
2021-09-18 01:22:33 +03:00
|
|
|
&ChatPage::receivedDeviceVerificationStart,
|
2021-10-15 03:44:48 +03:00
|
|
|
verificationManager_,
|
|
|
|
&VerificationManager::receivedDeviceVerificationStart);
|
2021-09-18 01:22:33 +03:00
|
|
|
connect(parent, &ChatPage::loggedOut, this, [this]() {
|
|
|
|
isInitialSync_ = true;
|
|
|
|
emit initialSyncChanged(true);
|
|
|
|
});
|
2022-01-26 04:16:06 +03:00
|
|
|
connect(parent, &ChatPage::connectionLost, this, [this] {
|
|
|
|
isConnected_ = false;
|
|
|
|
emit isConnectedChanged(false);
|
|
|
|
});
|
|
|
|
connect(parent, &ChatPage::connectionRestored, this, [this] {
|
|
|
|
isConnected_ = true;
|
|
|
|
emit isConnectedChanged(true);
|
|
|
|
});
|
2022-01-13 06:16:11 +03:00
|
|
|
}
|
|
|
|
|
2021-07-22 01:56:20 +03:00
|
|
|
void
|
2021-08-14 00:58:26 +03:00
|
|
|
TimelineViewManager::openRoomMembers(TimelineModel *room)
|
2021-07-22 01:56:20 +03:00
|
|
|
{
|
2021-09-18 01:22:33 +03:00
|
|
|
if (!room)
|
|
|
|
return;
|
2022-02-21 07:01:01 +03:00
|
|
|
MemberList *memberList = new MemberList(room->roomId());
|
|
|
|
QQmlEngine::setObjectOwnership(memberList, QQmlEngine::JavaScriptOwnership);
|
2021-09-18 01:22:33 +03:00
|
|
|
emit openRoomMembersDialog(memberList, room);
|
2021-07-22 01:56:20 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
TimelineViewManager::openRoomSettings(QString room_id)
|
|
|
|
{
|
2022-02-21 07:01:01 +03:00
|
|
|
RoomSettings *settings = new RoomSettings(room_id);
|
2021-09-18 01:22:33 +03:00
|
|
|
connect(rooms_->getRoomById(room_id).data(),
|
|
|
|
&TimelineModel::roomAvatarUrlChanged,
|
|
|
|
settings,
|
|
|
|
&RoomSettings::avatarChanged);
|
2022-02-21 07:01:01 +03:00
|
|
|
QQmlEngine::setObjectOwnership(settings, QQmlEngine::JavaScriptOwnership);
|
2021-09-18 01:22:33 +03:00
|
|
|
emit openRoomSettingsDialog(settings);
|
2021-07-22 01:56:20 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
TimelineViewManager::openInviteUsers(QString roomId)
|
|
|
|
{
|
2022-02-21 07:01:01 +03:00
|
|
|
InviteesModel *model = new InviteesModel{};
|
2021-09-18 01:22:33 +03:00
|
|
|
connect(model, &InviteesModel::accept, this, [this, model, roomId]() {
|
|
|
|
emit inviteUsers(roomId, model->mxids());
|
|
|
|
});
|
2022-02-21 07:01:01 +03:00
|
|
|
QQmlEngine::setObjectOwnership(model, QQmlEngine::JavaScriptOwnership);
|
2021-09-18 01:22:33 +03:00
|
|
|
emit openInviteUsersDialog(model);
|
2021-07-22 01:56:20 +03:00
|
|
|
}
|
|
|
|
|
2021-07-22 14:55:12 +03:00
|
|
|
void
|
|
|
|
TimelineViewManager::openGlobalUserProfile(QString userId)
|
2021-07-22 03:38:18 +03:00
|
|
|
{
|
2021-09-18 01:22:33 +03:00
|
|
|
UserProfile *profile = new UserProfile{QString{}, userId, this};
|
2022-02-21 07:01:01 +03:00
|
|
|
QQmlEngine::setObjectOwnership(profile, QQmlEngine::JavaScriptOwnership);
|
2021-09-18 01:22:33 +03:00
|
|
|
emit openProfile(profile);
|
2021-07-22 03:38:18 +03:00
|
|
|
}
|
|
|
|
|
2022-03-27 00:28:31 +03:00
|
|
|
UserProfile *
|
2022-03-27 00:25:48 +03:00
|
|
|
TimelineViewManager::getGlobalUserProfile(QString userId)
|
|
|
|
{
|
|
|
|
UserProfile *profile = new UserProfile{QString{}, userId, this};
|
|
|
|
QQmlEngine::setObjectOwnership(profile, QQmlEngine::JavaScriptOwnership);
|
2022-03-27 00:28:31 +03:00
|
|
|
return (profile);
|
2022-03-27 00:25:48 +03:00
|
|
|
}
|
|
|
|
|
2020-10-27 20:14:06 +03:00
|
|
|
void
|
|
|
|
TimelineViewManager::setVideoCallItem()
|
|
|
|
{
|
2021-09-18 01:22:33 +03:00
|
|
|
WebRTCSession::instance().setVideoItem(
|
2022-01-12 21:09:46 +03:00
|
|
|
MainWindow::instance()->rootObject()->findChild<QQuickItem *>(
|
|
|
|
QStringLiteral("videoCallItem")));
|
2017-11-15 19:38:50 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2021-11-21 00:48:04 +03:00
|
|
|
TimelineViewManager::sync(const mtx::responses::Sync &sync_)
|
2021-05-19 20:34:10 +03:00
|
|
|
{
|
2021-11-21 00:48:04 +03:00
|
|
|
this->rooms_->sync(sync_);
|
|
|
|
this->communities_->sync(sync_);
|
2021-12-30 06:54:03 +03:00
|
|
|
this->presenceEmitter->sync(sync_.presence);
|
2017-09-03 11:43:45 +03:00
|
|
|
|
2021-09-18 01:22:33 +03:00
|
|
|
if (isInitialSync_) {
|
|
|
|
this->isInitialSync_ = false;
|
|
|
|
emit initialSyncChanged(false);
|
|
|
|
}
|
2017-04-13 04:11:22 +03:00
|
|
|
}
|
|
|
|
|
2021-04-29 20:09:16 +03:00
|
|
|
void
|
|
|
|
TimelineViewManager::showEvent(const QString &room_id, const QString &event_id)
|
|
|
|
{
|
2021-09-18 01:22:33 +03:00
|
|
|
if (auto room = rooms_->getRoomById(room_id)) {
|
2022-05-07 20:03:58 +03:00
|
|
|
auto exWin = MainWindow::instance()->windowForRoom(room_id);
|
|
|
|
if (exWin) {
|
|
|
|
exWin->requestActivate();
|
|
|
|
} else if (rooms_->currentRoom() != room) {
|
2021-09-18 01:22:33 +03:00
|
|
|
rooms_->setCurrentRoom(room_id);
|
2022-01-12 21:09:46 +03:00
|
|
|
MainWindow::instance()->requestActivate();
|
2021-09-18 01:22:33 +03:00
|
|
|
nhlog::ui()->info("Activated room {}", room_id.toStdString());
|
2021-04-29 20:09:16 +03:00
|
|
|
}
|
2021-09-18 01:22:33 +03:00
|
|
|
|
|
|
|
room->showEvent(event_id);
|
|
|
|
}
|
2021-04-29 20:09:16 +03:00
|
|
|
}
|
|
|
|
|
2020-09-03 20:51:50 +03:00
|
|
|
QString
|
|
|
|
TimelineViewManager::escapeEmoji(QString str) const
|
|
|
|
{
|
2021-09-18 01:22:33 +03:00
|
|
|
return utils::replaceEmoji(str);
|
2020-09-03 20:51:50 +03:00
|
|
|
}
|
|
|
|
|
2017-09-10 12:58:00 +03:00
|
|
|
void
|
2022-01-02 23:46:29 +03:00
|
|
|
TimelineViewManager::openImageOverlay(TimelineModel *room, QString mxcUrl, QString eventId)
|
2017-09-10 12:58:00 +03:00
|
|
|
{
|
2021-09-18 01:22:33 +03:00
|
|
|
if (mxcUrl.isEmpty()) {
|
|
|
|
return;
|
|
|
|
}
|
2021-04-05 14:58:00 +03:00
|
|
|
|
2022-01-02 23:46:29 +03:00
|
|
|
emit showImageOverlay(room, eventId, mxcUrl);
|
2021-04-05 14:58:00 +03:00
|
|
|
}
|
|
|
|
|
2021-07-21 14:37:57 +03:00
|
|
|
void
|
|
|
|
TimelineViewManager::openImagePackSettings(QString roomid)
|
|
|
|
{
|
2022-02-21 07:01:01 +03:00
|
|
|
auto room = rooms_->getRoomById(roomid).get();
|
|
|
|
auto model = new ImagePackListModel(roomid.toStdString());
|
|
|
|
QQmlEngine::setObjectOwnership(model, QQmlEngine::JavaScriptOwnership);
|
|
|
|
emit showImagePackSettings(room, model);
|
2021-07-21 14:37:57 +03:00
|
|
|
}
|
|
|
|
|
2021-04-05 14:58:00 +03:00
|
|
|
void
|
2022-01-02 23:46:29 +03:00
|
|
|
TimelineViewManager::saveMedia(QString mxcUrl)
|
2021-04-05 14:58:00 +03:00
|
|
|
{
|
2022-01-02 23:46:29 +03:00
|
|
|
const QString downloadsFolder =
|
|
|
|
QStandardPaths::writableLocation(QStandardPaths::DownloadLocation);
|
|
|
|
const QString openLocation = downloadsFolder + "/" + mxcUrl.splitRef(u'/').constLast();
|
2021-04-05 14:58:00 +03:00
|
|
|
|
2022-01-12 21:09:46 +03:00
|
|
|
const QString filename = QFileDialog::getSaveFileName(nullptr, {}, openLocation);
|
2021-05-28 23:14:59 +03:00
|
|
|
|
2022-01-02 23:46:29 +03:00
|
|
|
if (filename.isEmpty())
|
|
|
|
return;
|
2021-06-11 22:25:06 +03:00
|
|
|
|
2022-01-02 23:46:29 +03:00
|
|
|
const auto url = mxcUrl.toStdString();
|
|
|
|
|
|
|
|
http::client()->download(url,
|
|
|
|
[filename, url](const std::string &data,
|
|
|
|
const std::string &,
|
|
|
|
const std::string &,
|
|
|
|
mtx::http::RequestErr err) {
|
|
|
|
if (err) {
|
|
|
|
nhlog::net()->warn("failed to retrieve image {}: {} {}",
|
|
|
|
url,
|
|
|
|
err->matrix_error.error,
|
|
|
|
static_cast<int>(err->status_code));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
|
|
|
QFile file(filename);
|
|
|
|
|
|
|
|
if (!file.open(QIODevice::WriteOnly))
|
|
|
|
return;
|
|
|
|
|
|
|
|
file.write(QByteArray(data.data(), (int)data.size()));
|
|
|
|
file.close();
|
|
|
|
|
|
|
|
return;
|
|
|
|
} catch (const std::exception &e) {
|
|
|
|
nhlog::ui()->warn("Error while saving file to: {}", e.what());
|
|
|
|
}
|
|
|
|
});
|
2017-12-01 18:33:49 +03:00
|
|
|
}
|
|
|
|
|
2017-08-20 13:47:22 +03:00
|
|
|
void
|
2019-11-09 05:06:10 +03:00
|
|
|
TimelineViewManager::updateReadReceipts(const QString &room_id,
|
|
|
|
const std::vector<QString> &event_ids)
|
2017-04-06 02:06:42 +03:00
|
|
|
{
|
2021-09-18 01:22:33 +03:00
|
|
|
if (auto room = rooms_->getRoomById(room_id)) {
|
|
|
|
room->markEventsAsRead(event_ids);
|
|
|
|
}
|
2017-04-06 02:06:42 +03:00
|
|
|
}
|
|
|
|
|
2020-10-20 20:46:37 +03:00
|
|
|
void
|
|
|
|
TimelineViewManager::receivedSessionKey(const std::string &room_id, const std::string &session_id)
|
|
|
|
{
|
2021-09-18 01:22:33 +03:00
|
|
|
if (auto room = rooms_->getRoomById(QString::fromStdString(room_id))) {
|
|
|
|
room->receivedSessionKey(session_id);
|
|
|
|
}
|
2020-10-20 20:46:37 +03:00
|
|
|
}
|
|
|
|
|
2018-06-28 16:16:43 +03:00
|
|
|
void
|
2021-05-24 15:04:07 +03:00
|
|
|
TimelineViewManager::initializeRoomlist()
|
2018-06-28 16:16:43 +03:00
|
|
|
{
|
2021-09-18 01:22:33 +03:00
|
|
|
rooms_->initializeRooms();
|
|
|
|
communities_->initializeSidebar();
|
2018-06-28 16:16:43 +03:00
|
|
|
}
|
|
|
|
|
2021-01-07 12:44:59 +03:00
|
|
|
void
|
|
|
|
TimelineViewManager::queueReply(const QString &roomid,
|
|
|
|
const QString &repliedToEvent,
|
|
|
|
const QString &replyBody)
|
|
|
|
{
|
2021-09-18 01:22:33 +03:00
|
|
|
if (auto room = rooms_->getRoomById(roomid)) {
|
|
|
|
room->setReply(repliedToEvent);
|
|
|
|
room->input()->message(replyBody);
|
|
|
|
}
|
2021-01-07 12:44:59 +03:00
|
|
|
}
|
|
|
|
|
2020-07-11 02:19:48 +03:00
|
|
|
void
|
|
|
|
TimelineViewManager::queueCallMessage(const QString &roomid,
|
|
|
|
const mtx::events::msg::CallInvite &callInvite)
|
|
|
|
{
|
2021-09-18 01:22:33 +03:00
|
|
|
if (auto room = rooms_->getRoomById(roomid))
|
|
|
|
room->sendMessageEvent(callInvite, mtx::events::EventType::CallInvite);
|
2020-07-11 02:19:48 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
TimelineViewManager::queueCallMessage(const QString &roomid,
|
|
|
|
const mtx::events::msg::CallCandidates &callCandidates)
|
|
|
|
{
|
2021-09-18 01:22:33 +03:00
|
|
|
if (auto room = rooms_->getRoomById(roomid))
|
|
|
|
room->sendMessageEvent(callCandidates, mtx::events::EventType::CallCandidates);
|
2020-07-11 02:19:48 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
TimelineViewManager::queueCallMessage(const QString &roomid,
|
|
|
|
const mtx::events::msg::CallAnswer &callAnswer)
|
|
|
|
{
|
2021-09-18 01:22:33 +03:00
|
|
|
if (auto room = rooms_->getRoomById(roomid))
|
|
|
|
room->sendMessageEvent(callAnswer, mtx::events::EventType::CallAnswer);
|
2020-07-11 02:19:48 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
TimelineViewManager::queueCallMessage(const QString &roomid,
|
|
|
|
const mtx::events::msg::CallHangUp &callHangUp)
|
|
|
|
{
|
2021-09-18 01:22:33 +03:00
|
|
|
if (auto room = rooms_->getRoomById(roomid))
|
|
|
|
room->sendMessageEvent(callHangUp, mtx::events::EventType::CallHangUp);
|
2017-10-07 20:50:32 +03:00
|
|
|
}
|
2021-02-05 20:12:08 +03:00
|
|
|
|
|
|
|
void
|
|
|
|
TimelineViewManager::focusMessageInput()
|
|
|
|
{
|
2021-09-18 01:22:33 +03:00
|
|
|
emit focusInput();
|
2021-02-14 03:28:28 +03:00
|
|
|
}
|
2021-02-21 20:40:21 +03:00
|
|
|
|
|
|
|
QObject *
|
|
|
|
TimelineViewManager::completerFor(QString completerName, QString roomId)
|
|
|
|
{
|
2021-12-29 06:28:08 +03:00
|
|
|
if (completerName == QLatin1String("user")) {
|
2021-09-18 01:22:33 +03:00
|
|
|
auto userModel = new UsersModel(roomId.toStdString());
|
|
|
|
auto proxy = new CompletionProxyModel(userModel);
|
|
|
|
userModel->setParent(proxy);
|
|
|
|
return proxy;
|
2021-12-29 06:28:08 +03:00
|
|
|
} else if (completerName == QLatin1String("emoji")) {
|
2021-09-18 01:22:33 +03:00
|
|
|
auto emojiModel = new emoji::EmojiModel();
|
|
|
|
auto proxy = new CompletionProxyModel(emojiModel);
|
|
|
|
emojiModel->setParent(proxy);
|
|
|
|
return proxy;
|
2021-12-29 06:28:08 +03:00
|
|
|
} else if (completerName == QLatin1String("allemoji")) {
|
2021-09-18 01:22:33 +03:00
|
|
|
auto emojiModel = new emoji::EmojiModel();
|
|
|
|
auto proxy = new CompletionProxyModel(emojiModel, 1, static_cast<size_t>(-1) / 4);
|
|
|
|
emojiModel->setParent(proxy);
|
|
|
|
return proxy;
|
2021-12-29 06:28:08 +03:00
|
|
|
} else if (completerName == QLatin1String("room")) {
|
2021-09-18 01:22:33 +03:00
|
|
|
auto roomModel = new RoomsModel(false);
|
|
|
|
auto proxy = new CompletionProxyModel(roomModel, 4);
|
|
|
|
roomModel->setParent(proxy);
|
|
|
|
return proxy;
|
2021-12-29 06:28:08 +03:00
|
|
|
} else if (completerName == QLatin1String("roomAliases")) {
|
2021-09-18 01:22:33 +03:00
|
|
|
auto roomModel = new RoomsModel(true);
|
|
|
|
auto proxy = new CompletionProxyModel(roomModel);
|
|
|
|
roomModel->setParent(proxy);
|
|
|
|
return proxy;
|
2021-12-29 06:28:08 +03:00
|
|
|
} else if (completerName == QLatin1String("stickers")) {
|
2021-09-18 01:22:33 +03:00
|
|
|
auto stickerModel = new CombinedImagePackModel(roomId.toStdString(), true);
|
|
|
|
auto proxy = new CompletionProxyModel(stickerModel, 1, static_cast<size_t>(-1) / 4);
|
|
|
|
stickerModel->setParent(proxy);
|
|
|
|
return proxy;
|
2021-12-29 06:28:08 +03:00
|
|
|
} else if (completerName == QLatin1String("customEmoji")) {
|
2021-12-27 08:23:36 +03:00
|
|
|
auto stickerModel = new CombinedImagePackModel(roomId.toStdString(), false);
|
|
|
|
auto proxy = new CompletionProxyModel(stickerModel);
|
|
|
|
stickerModel->setParent(proxy);
|
|
|
|
return proxy;
|
2021-09-18 01:22:33 +03:00
|
|
|
}
|
|
|
|
return nullptr;
|
2021-02-22 22:16:40 +03:00
|
|
|
}
|
|
|
|
|
2021-04-11 17:31:49 +03:00
|
|
|
void
|
|
|
|
TimelineViewManager::forwardMessageToRoom(mtx::events::collections::TimelineEvents *e,
|
2021-04-17 20:28:04 +03:00
|
|
|
QString roomId)
|
2021-04-11 17:31:49 +03:00
|
|
|
{
|
2021-09-18 01:22:33 +03:00
|
|
|
auto room = rooms_->getRoomById(roomId);
|
|
|
|
auto content = mtx::accessors::url(*e);
|
|
|
|
std::optional<mtx::crypto::EncryptedFile> encryptionInfo = mtx::accessors::file(*e);
|
|
|
|
|
|
|
|
if (encryptionInfo) {
|
|
|
|
http::client()->download(
|
|
|
|
content,
|
|
|
|
[this, roomId, e, encryptionInfo](const std::string &res,
|
|
|
|
const std::string &content_type,
|
|
|
|
const std::string &originalFilename,
|
|
|
|
mtx::http::RequestErr err) {
|
|
|
|
if (err)
|
|
|
|
return;
|
|
|
|
|
|
|
|
auto data =
|
|
|
|
mtx::crypto::to_string(mtx::crypto::decrypt_file(res, encryptionInfo.value()));
|
|
|
|
|
|
|
|
http::client()->upload(
|
|
|
|
data,
|
|
|
|
content_type,
|
|
|
|
originalFilename,
|
|
|
|
[this, roomId, e](const mtx::responses::ContentURI &res,
|
|
|
|
mtx::http::RequestErr err) mutable {
|
|
|
|
if (err) {
|
|
|
|
nhlog::net()->warn("failed to upload media: {} {} ({})",
|
|
|
|
err->matrix_error.error,
|
|
|
|
to_string(err->matrix_error.errcode),
|
|
|
|
static_cast<int>(err->status_code));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::visit(
|
|
|
|
[this, roomId, url = res.content_uri](auto ev) {
|
|
|
|
using namespace mtx::events;
|
|
|
|
if constexpr (EventType::RoomMessage ==
|
|
|
|
message_content_to_type<decltype(ev.content)> ||
|
|
|
|
EventType::Sticker ==
|
|
|
|
message_content_to_type<decltype(ev.content)>) {
|
|
|
|
if constexpr (messageWithFileAndUrl(ev)) {
|
|
|
|
ev.content.relations.relations.clear();
|
|
|
|
ev.content.file.reset();
|
|
|
|
ev.content.url = url;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (auto room = rooms_->getRoomById(roomId)) {
|
|
|
|
removeReplyFallback(ev);
|
|
|
|
ev.content.relations.relations.clear();
|
|
|
|
room->sendMessageEvent(ev.content,
|
|
|
|
mtx::events::EventType::RoomMessage);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
*e);
|
|
|
|
});
|
2021-04-17 19:58:17 +03:00
|
|
|
|
2021-09-18 01:22:33 +03:00
|
|
|
return;
|
|
|
|
});
|
2021-04-17 19:58:17 +03:00
|
|
|
|
2021-09-18 01:22:33 +03:00
|
|
|
return;
|
|
|
|
}
|
2021-04-11 17:31:49 +03:00
|
|
|
|
2021-09-18 01:22:33 +03:00
|
|
|
std::visit(
|
|
|
|
[room](auto e) {
|
|
|
|
if constexpr (mtx::events::message_content_to_type<decltype(e.content)> ==
|
|
|
|
mtx::events::EventType::RoomMessage) {
|
|
|
|
e.content.relations.relations.clear();
|
|
|
|
removeReplyFallback(e);
|
|
|
|
room->sendMessageEvent(e.content, mtx::events::EventType::RoomMessage);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
*e);
|
2021-04-27 12:33:46 +03:00
|
|
|
}
|
2021-07-15 01:26:39 +03:00
|
|
|
|
|
|
|
//! WORKAROUND(Nico): for https://bugreports.qt.io/browse/QTBUG-93281
|
|
|
|
void
|
|
|
|
TimelineViewManager::fixImageRendering(QQuickTextDocument *t, QQuickItem *i)
|
|
|
|
{
|
2021-09-18 01:22:33 +03:00
|
|
|
if (t) {
|
|
|
|
QObject::connect(t->textDocument(), SIGNAL(imagesLoaded()), i, SLOT(updateWholeDocument()));
|
|
|
|
}
|
2021-07-15 01:26:39 +03:00
|
|
|
}
|