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-04-11 22:48:02 +03:00
|
|
|
#include <random>
|
|
|
|
|
2017-04-16 22:34:57 +03:00
|
|
|
#include <QApplication>
|
2017-09-10 12:58:00 +03:00
|
|
|
#include <QFileInfo>
|
2017-04-13 04:11:22 +03:00
|
|
|
#include <QSettings>
|
2017-04-06 02:06:42 +03:00
|
|
|
|
2018-06-28 16:16:43 +03:00
|
|
|
#include "Cache.h"
|
2018-07-17 16:37:25 +03:00
|
|
|
#include "Logging.h"
|
2017-11-30 14:53:28 +03:00
|
|
|
#include "timeline/TimelineView.h"
|
|
|
|
#include "timeline/TimelineViewManager.h"
|
2017-12-01 18:33:49 +03:00
|
|
|
#include "timeline/widgets/AudioItem.h"
|
2017-11-30 14:53:28 +03:00
|
|
|
#include "timeline/widgets/FileItem.h"
|
|
|
|
#include "timeline/widgets/ImageItem.h"
|
2018-02-18 23:52:31 +03:00
|
|
|
#include "timeline/widgets/VideoItem.h"
|
2017-04-06 02:06:42 +03:00
|
|
|
|
2018-05-08 18:43:56 +03:00
|
|
|
TimelineViewManager::TimelineViewManager(QWidget *parent)
|
2017-08-20 13:47:22 +03:00
|
|
|
: QStackedWidget(parent)
|
2018-07-25 18:48:11 +03:00
|
|
|
{}
|
2017-04-06 02:06:42 +03:00
|
|
|
|
2018-07-17 23:50:18 +03:00
|
|
|
void
|
|
|
|
TimelineViewManager::updateReadReceipts(const QString &room_id,
|
|
|
|
const std::vector<QString> &event_ids)
|
|
|
|
{
|
|
|
|
if (timelineViewExists(room_id)) {
|
|
|
|
auto view = views_[room_id];
|
|
|
|
if (view)
|
|
|
|
emit view->markReadEvents(event_ids);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-20 13:47:22 +03:00
|
|
|
void
|
2018-06-09 16:03:14 +03:00
|
|
|
TimelineViewManager::removeTimelineEvent(const QString &room_id, const QString &event_id)
|
2017-04-13 04:11:22 +03:00
|
|
|
{
|
2018-06-09 16:03:14 +03:00
|
|
|
auto view = views_[room_id];
|
2017-04-13 04:11:22 +03:00
|
|
|
|
2018-06-09 16:03:14 +03:00
|
|
|
if (view)
|
|
|
|
view->removeEvent(event_id);
|
2017-11-15 19:38:50 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
TimelineViewManager::queueTextMessage(const QString &msg)
|
2017-04-13 04:11:22 +03:00
|
|
|
{
|
2018-02-02 20:50:02 +03:00
|
|
|
if (active_room_.isEmpty())
|
|
|
|
return;
|
|
|
|
|
2017-08-26 11:33:26 +03:00
|
|
|
auto room_id = active_room_;
|
|
|
|
auto view = views_[room_id];
|
2017-04-13 04:11:22 +03:00
|
|
|
|
2017-12-04 19:41:19 +03:00
|
|
|
view->addUserMessage(mtx::events::MessageType::Text, msg);
|
2017-09-03 11:43:45 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2017-11-15 19:38:50 +03:00
|
|
|
TimelineViewManager::queueEmoteMessage(const QString &msg)
|
2017-09-03 11:43:45 +03:00
|
|
|
{
|
2018-02-02 20:50:02 +03:00
|
|
|
if (active_room_.isEmpty())
|
|
|
|
return;
|
|
|
|
|
2017-09-03 11:43:45 +03:00
|
|
|
auto room_id = active_room_;
|
|
|
|
auto view = views_[room_id];
|
|
|
|
|
2017-12-04 19:41:19 +03:00
|
|
|
view->addUserMessage(mtx::events::MessageType::Emote, msg);
|
2017-04-13 04:11:22 +03:00
|
|
|
}
|
|
|
|
|
2019-06-10 02:03:18 +03:00
|
|
|
void
|
|
|
|
TimelineViewManager::queueReplyMessage(const QString &reply,
|
|
|
|
const QString &related_event)
|
|
|
|
{
|
|
|
|
if (active_room_.isEmpty())
|
|
|
|
return;
|
|
|
|
|
|
|
|
auto room_id = active_room_;
|
|
|
|
auto view = views_[room_id];
|
|
|
|
|
|
|
|
view->addUserMessage(mtx::events::MessageType::Text, reply, related_event);
|
|
|
|
}
|
|
|
|
|
2017-09-10 12:58:00 +03:00
|
|
|
void
|
2017-11-15 19:38:50 +03:00
|
|
|
TimelineViewManager::queueImageMessage(const QString &roomid,
|
2017-11-15 19:42:21 +03:00
|
|
|
const QString &filename,
|
2018-02-18 23:52:31 +03:00
|
|
|
const QString &url,
|
|
|
|
const QString &mime,
|
2018-07-10 23:31:51 +03:00
|
|
|
uint64_t size,
|
|
|
|
const QSize &dimensions)
|
2017-09-10 12:58:00 +03:00
|
|
|
{
|
2018-01-24 21:46:37 +03:00
|
|
|
if (!timelineViewExists(roomid)) {
|
2018-06-14 02:28:35 +03:00
|
|
|
nhlog::ui()->warn("Cannot send m.image message to a non-managed view");
|
2017-09-10 12:58:00 +03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto view = views_[roomid];
|
|
|
|
|
2018-07-10 23:31:51 +03:00
|
|
|
view->addUserMessage<ImageItem, mtx::events::MessageType::Image>(
|
|
|
|
url, filename, mime, size, dimensions);
|
2017-11-30 00:39:35 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
TimelineViewManager::queueFileMessage(const QString &roomid,
|
|
|
|
const QString &filename,
|
2018-02-18 23:52:31 +03:00
|
|
|
const QString &url,
|
|
|
|
const QString &mime,
|
2018-02-19 23:09:21 +03:00
|
|
|
uint64_t size)
|
2017-11-30 00:39:35 +03:00
|
|
|
{
|
2018-01-24 21:46:37 +03:00
|
|
|
if (!timelineViewExists(roomid)) {
|
2018-06-14 02:28:35 +03:00
|
|
|
nhlog::ui()->warn("cannot send m.file message to a non-managed view");
|
2017-11-30 00:39:35 +03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto view = views_[roomid];
|
|
|
|
|
2018-02-18 23:52:31 +03:00
|
|
|
view->addUserMessage<FileItem, mtx::events::MessageType::File>(url, filename, mime, size);
|
2017-09-10 12:58:00 +03:00
|
|
|
}
|
|
|
|
|
2017-12-01 18:33:49 +03:00
|
|
|
void
|
|
|
|
TimelineViewManager::queueAudioMessage(const QString &roomid,
|
|
|
|
const QString &filename,
|
2018-02-18 23:52:31 +03:00
|
|
|
const QString &url,
|
|
|
|
const QString &mime,
|
2018-02-19 23:09:21 +03:00
|
|
|
uint64_t size)
|
2017-12-01 18:33:49 +03:00
|
|
|
{
|
2018-01-24 21:46:37 +03:00
|
|
|
if (!timelineViewExists(roomid)) {
|
2018-06-14 02:28:35 +03:00
|
|
|
nhlog::ui()->warn("cannot send m.audio message to a non-managed view");
|
2017-12-01 18:33:49 +03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto view = views_[roomid];
|
|
|
|
|
2018-02-18 23:52:31 +03:00
|
|
|
view->addUserMessage<AudioItem, mtx::events::MessageType::Audio>(url, filename, mime, size);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
TimelineViewManager::queueVideoMessage(const QString &roomid,
|
|
|
|
const QString &filename,
|
|
|
|
const QString &url,
|
|
|
|
const QString &mime,
|
2018-02-19 23:09:21 +03:00
|
|
|
uint64_t size)
|
2018-02-18 23:52:31 +03:00
|
|
|
{
|
|
|
|
if (!timelineViewExists(roomid)) {
|
2018-06-14 02:28:35 +03:00
|
|
|
nhlog::ui()->warn("cannot send m.video message to a non-managed view");
|
2018-02-18 23:52:31 +03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto view = views_[roomid];
|
|
|
|
|
|
|
|
view->addUserMessage<VideoItem, mtx::events::MessageType::Video>(url, filename, mime, size);
|
2017-12-01 18:33:49 +03:00
|
|
|
}
|
|
|
|
|
2017-08-20 13:47:22 +03:00
|
|
|
void
|
2017-12-04 19:41:19 +03:00
|
|
|
TimelineViewManager::initialize(const mtx::responses::Rooms &rooms)
|
2017-04-06 02:06:42 +03:00
|
|
|
{
|
2017-12-04 19:41:19 +03:00
|
|
|
for (auto it = rooms.join.cbegin(); it != rooms.join.cend(); ++it) {
|
|
|
|
addRoom(it->second, QString::fromStdString(it->first));
|
2017-08-26 11:33:26 +03:00
|
|
|
}
|
2018-04-21 16:34:50 +03:00
|
|
|
|
|
|
|
sync(rooms);
|
2017-04-06 02:06:42 +03:00
|
|
|
}
|
|
|
|
|
2018-06-28 16:16:43 +03:00
|
|
|
void
|
|
|
|
TimelineViewManager::initWithMessages(const std::map<QString, mtx::responses::Timeline> &msgs)
|
|
|
|
{
|
|
|
|
for (auto it = msgs.cbegin(); it != msgs.cend(); ++it) {
|
|
|
|
if (timelineViewExists(it->first))
|
|
|
|
return;
|
|
|
|
|
|
|
|
// Create a history view with the room events.
|
|
|
|
TimelineView *view = new TimelineView(it->second, it->first);
|
|
|
|
views_.emplace(it->first, QSharedPointer<TimelineView>(view));
|
|
|
|
|
|
|
|
connect(view,
|
|
|
|
&TimelineView::updateLastTimelineMessage,
|
|
|
|
this,
|
|
|
|
&TimelineViewManager::updateRoomsLastMessage);
|
|
|
|
|
|
|
|
// Add the view in the widget stack.
|
|
|
|
addWidget(view);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-20 13:47:22 +03:00
|
|
|
void
|
2018-04-21 16:34:50 +03:00
|
|
|
TimelineViewManager::initialize(const std::vector<std::string> &rooms)
|
2017-07-29 11:49:00 +03:00
|
|
|
{
|
2018-01-24 21:46:37 +03:00
|
|
|
for (const auto &roomid : rooms)
|
2018-04-21 16:34:50 +03:00
|
|
|
addRoom(QString::fromStdString(roomid));
|
2017-10-01 19:49:36 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2017-12-04 19:41:19 +03:00
|
|
|
TimelineViewManager::addRoom(const mtx::responses::JoinedRoom &room, const QString &room_id)
|
2017-10-01 19:49:36 +03:00
|
|
|
{
|
2018-04-21 16:34:50 +03:00
|
|
|
if (timelineViewExists(room_id))
|
|
|
|
return;
|
|
|
|
|
2017-10-01 19:49:36 +03:00
|
|
|
// Create a history view with the room events.
|
2018-05-08 18:43:56 +03:00
|
|
|
TimelineView *view = new TimelineView(room.timeline, room_id);
|
2018-01-24 21:46:37 +03:00
|
|
|
views_.emplace(room_id, QSharedPointer<TimelineView>(view));
|
2017-08-26 11:33:26 +03:00
|
|
|
|
2017-10-01 19:49:36 +03:00
|
|
|
connect(view,
|
|
|
|
&TimelineView::updateLastTimelineMessage,
|
|
|
|
this,
|
|
|
|
&TimelineViewManager::updateRoomsLastMessage);
|
2017-08-26 11:33:26 +03:00
|
|
|
|
2017-10-01 19:49:36 +03:00
|
|
|
// Add the view in the widget stack.
|
|
|
|
addWidget(view);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
TimelineViewManager::addRoom(const QString &room_id)
|
|
|
|
{
|
2018-04-21 16:34:50 +03:00
|
|
|
if (timelineViewExists(room_id))
|
|
|
|
return;
|
|
|
|
|
2017-10-01 19:49:36 +03:00
|
|
|
// Create a history view without any events.
|
2018-05-08 18:43:56 +03:00
|
|
|
TimelineView *view = new TimelineView(room_id);
|
2018-01-24 21:46:37 +03:00
|
|
|
views_.emplace(room_id, QSharedPointer<TimelineView>(view));
|
2017-10-01 19:49:36 +03:00
|
|
|
|
|
|
|
connect(view,
|
|
|
|
&TimelineView::updateLastTimelineMessage,
|
|
|
|
this,
|
|
|
|
&TimelineViewManager::updateRoomsLastMessage);
|
|
|
|
|
|
|
|
// Add the view in the widget stack.
|
|
|
|
addWidget(view);
|
2017-07-29 11:49:00 +03:00
|
|
|
}
|
|
|
|
|
2017-08-20 13:47:22 +03:00
|
|
|
void
|
2017-12-04 19:41:19 +03:00
|
|
|
TimelineViewManager::sync(const mtx::responses::Rooms &rooms)
|
2017-04-06 02:06:42 +03:00
|
|
|
{
|
2018-03-03 23:08:56 +03:00
|
|
|
for (const auto &room : rooms.join) {
|
|
|
|
auto roomid = QString::fromStdString(room.first);
|
2017-04-06 02:06:42 +03:00
|
|
|
|
2018-01-24 21:46:37 +03:00
|
|
|
if (!timelineViewExists(roomid)) {
|
2018-06-14 02:28:35 +03:00
|
|
|
nhlog::ui()->warn("ignoring event from unknown room: {}",
|
|
|
|
roomid.toStdString());
|
2017-08-26 11:33:26 +03:00
|
|
|
continue;
|
|
|
|
}
|
2017-04-06 02:06:42 +03:00
|
|
|
|
2018-01-24 21:46:37 +03:00
|
|
|
auto view = views_.at(roomid);
|
2017-04-06 02:06:42 +03:00
|
|
|
|
2018-03-03 23:08:56 +03:00
|
|
|
view->addEvents(room.second.timeline);
|
2017-08-26 11:33:26 +03:00
|
|
|
}
|
2017-04-06 02:06:42 +03:00
|
|
|
}
|
|
|
|
|
2017-08-20 13:47:22 +03:00
|
|
|
void
|
|
|
|
TimelineViewManager::setHistoryView(const QString &room_id)
|
2017-04-06 02:06:42 +03:00
|
|
|
{
|
2018-01-24 21:46:37 +03:00
|
|
|
if (!timelineViewExists(room_id)) {
|
2018-06-14 02:28:35 +03:00
|
|
|
nhlog::ui()->warn("room from RoomList is not present in ViewManager: {}",
|
|
|
|
room_id.toStdString());
|
2017-08-26 11:33:26 +03:00
|
|
|
return;
|
|
|
|
}
|
2017-04-06 02:06:42 +03:00
|
|
|
|
2017-08-26 11:33:26 +03:00
|
|
|
active_room_ = room_id;
|
2018-01-24 21:46:37 +03:00
|
|
|
auto view = views_.at(room_id);
|
2017-04-06 02:06:42 +03:00
|
|
|
|
2017-08-26 11:33:26 +03:00
|
|
|
setCurrentWidget(view.data());
|
2017-06-05 19:54:45 +03:00
|
|
|
|
2017-08-26 11:33:26 +03:00
|
|
|
view->fetchHistory();
|
|
|
|
view->scrollDown();
|
2017-04-06 02:06:42 +03:00
|
|
|
}
|
2017-04-11 22:48:02 +03:00
|
|
|
|
2017-08-20 13:47:22 +03:00
|
|
|
QString
|
|
|
|
TimelineViewManager::chooseRandomColor()
|
2017-04-11 22:48:02 +03:00
|
|
|
{
|
2017-08-26 11:33:26 +03:00
|
|
|
std::random_device random_device;
|
2017-11-06 00:04:55 +03:00
|
|
|
std::mt19937 engine{random_device()};
|
2017-08-26 11:33:26 +03:00
|
|
|
std::uniform_real_distribution<float> dist(0, 1);
|
|
|
|
|
|
|
|
float hue = dist(engine);
|
|
|
|
float saturation = 0.9;
|
|
|
|
float value = 0.7;
|
|
|
|
|
|
|
|
int hue_i = hue * 6;
|
|
|
|
|
|
|
|
float f = hue * 6 - hue_i;
|
|
|
|
|
|
|
|
float p = value * (1 - saturation);
|
|
|
|
float q = value * (1 - f * saturation);
|
|
|
|
float t = value * (1 - (1 - f) * saturation);
|
|
|
|
|
|
|
|
float r = 0;
|
|
|
|
float g = 0;
|
|
|
|
float b = 0;
|
|
|
|
|
|
|
|
if (hue_i == 0) {
|
|
|
|
r = value;
|
|
|
|
g = t;
|
|
|
|
b = p;
|
|
|
|
} else if (hue_i == 1) {
|
|
|
|
r = q;
|
|
|
|
g = value;
|
|
|
|
b = p;
|
|
|
|
} else if (hue_i == 2) {
|
|
|
|
r = p;
|
|
|
|
g = value;
|
|
|
|
b = t;
|
|
|
|
} else if (hue_i == 3) {
|
|
|
|
r = p;
|
|
|
|
g = q;
|
|
|
|
b = value;
|
|
|
|
} else if (hue_i == 4) {
|
|
|
|
r = t;
|
|
|
|
g = p;
|
|
|
|
b = value;
|
|
|
|
} else if (hue_i == 5) {
|
|
|
|
r = value;
|
|
|
|
g = p;
|
|
|
|
b = q;
|
|
|
|
}
|
|
|
|
|
|
|
|
int ri = r * 256;
|
|
|
|
int gi = g * 256;
|
|
|
|
int bi = b * 256;
|
|
|
|
|
|
|
|
QColor color(ri, gi, bi);
|
|
|
|
|
|
|
|
return color.name();
|
2017-04-13 04:11:22 +03:00
|
|
|
}
|
2017-05-08 19:44:01 +03:00
|
|
|
|
2017-10-07 20:50:32 +03:00
|
|
|
bool
|
|
|
|
TimelineViewManager::hasLoaded() const
|
|
|
|
{
|
2018-03-03 23:08:56 +03:00
|
|
|
return std::all_of(views_.cbegin(), views_.cend(), [](const auto &view) {
|
|
|
|
return view.second->hasLoaded();
|
|
|
|
});
|
2017-10-07 20:50:32 +03:00
|
|
|
}
|