mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-25 12:38:48 +03:00
112 lines
4.3 KiB
C++
112 lines
4.3 KiB
C++
// SPDX-FileCopyrightText: Nheko Contributors
|
|
//
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
#include "Manager.h"
|
|
|
|
#include <QRegularExpression>
|
|
#include <QTextDocumentFragment>
|
|
|
|
#include "Cache.h"
|
|
#include "EventAccessors.h"
|
|
#include "MxcImageProvider.h"
|
|
#include "Utils.h"
|
|
|
|
#include <mtx/responses/notifications.hpp>
|
|
|
|
#include <variant>
|
|
|
|
static QString
|
|
formatNotification(const mtx::responses::Notification ¬ification)
|
|
{
|
|
return utils::stripReplyFallbacks(notification.event, {}, {}).quoted_body;
|
|
}
|
|
|
|
NotificationsManager::NotificationsManager(QObject *parent)
|
|
: QObject(parent)
|
|
{
|
|
// Putting these here to pass along since I'm not sure how
|
|
// our translate step interacts with .mm files
|
|
respondStr = QObject::tr("Respond");
|
|
sendStr = QObject::tr("Send");
|
|
placeholder = QObject::tr("Write a message...");
|
|
|
|
connect(
|
|
this,
|
|
&NotificationsManager::systemPostNotificationCb,
|
|
this,
|
|
[this](const QString &room_id,
|
|
const QString &event_id,
|
|
const QString &roomName,
|
|
const QString &text,
|
|
const QImage &) {
|
|
objCxxPostNotification(roomName,
|
|
room_id,
|
|
event_id,
|
|
text,
|
|
/*const QString &informativeText*/ "",
|
|
"",
|
|
true);
|
|
},
|
|
Qt::QueuedConnection);
|
|
}
|
|
|
|
void
|
|
NotificationsManager::postNotification(const mtx::responses::Notification ¬ification,
|
|
const QImage &icon)
|
|
{
|
|
Q_UNUSED(icon)
|
|
|
|
const auto room_name = QString::fromStdString(cache::singleRoomInfo(notification.room_id).name);
|
|
const auto sender =
|
|
cache::displayName(QString::fromStdString(notification.room_id),
|
|
QString::fromStdString(mtx::accessors::sender(notification.event)));
|
|
|
|
const auto room_id = QString::fromStdString(notification.room_id);
|
|
const auto event_id = QString::fromStdString(mtx::accessors::event_id(notification.event));
|
|
|
|
const auto isEncrypted = std::get_if<mtx::events::EncryptedEvent<mtx::events::msg::Encrypted>>(
|
|
¬ification.event) != nullptr;
|
|
const auto isReply = utils::isReply(notification.event);
|
|
|
|
auto playSound = false;
|
|
|
|
if (std::find(notification.actions.begin(),
|
|
notification.actions.end(),
|
|
mtx::pushrules::actions::Action{mtx::pushrules::actions::set_tweak_sound{
|
|
.value = "default"}}) != notification.actions.end()) {
|
|
playSound = true;
|
|
}
|
|
if (isEncrypted) {
|
|
// TODO: decrypt this message if the decryption setting is on in the UserSettings
|
|
const QString messageInfo = (isReply ? tr("%1 replied with an encrypted message")
|
|
: tr("%1 sent an encrypted message"))
|
|
.arg(sender);
|
|
objCxxPostNotification(room_name, room_id, event_id, messageInfo, "", "", playSound);
|
|
} else {
|
|
const QString messageInfo =
|
|
(isReply ? tr("%1 replied to a message") : tr("%1 sent a message")).arg(sender);
|
|
if (mtx::accessors::msg_type(notification.event) == mtx::events::MessageType::Image)
|
|
MxcImageProvider::download(
|
|
QString::fromStdString(mtx::accessors::url(notification.event)).remove("mxc://"),
|
|
QSize(200, 80),
|
|
[this, notification, room_name, room_id, event_id, messageInfo, playSound](
|
|
QString, QSize, QImage, QString imgPath) {
|
|
objCxxPostNotification(room_name,
|
|
room_id,
|
|
event_id,
|
|
messageInfo,
|
|
formatNotification(notification),
|
|
imgPath,
|
|
playSound);
|
|
});
|
|
else
|
|
objCxxPostNotification(room_name,
|
|
room_id,
|
|
event_id,
|
|
messageInfo,
|
|
formatNotification(notification),
|
|
"",
|
|
playSound);
|
|
}
|
|
}
|