mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-25 12:38:48 +03:00
55 lines
1.9 KiB
C++
55 lines
1.9 KiB
C++
// SPDX-FileCopyrightText: Nheko Contributors
|
|
//
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
#include "notifications/Manager.h"
|
|
|
|
#include "Cache.h"
|
|
#include "EventAccessors.h"
|
|
#include "Utils.h"
|
|
|
|
QString
|
|
NotificationsManager::getMessageTemplate(const mtx::responses::Notification ¬ification)
|
|
{
|
|
const auto sender =
|
|
cache::displayName(QString::fromStdString(notification.room_id),
|
|
QString::fromStdString(mtx::accessors::sender(notification.event)));
|
|
|
|
// TODO: decrypt this message if the decryption setting is on in the UserSettings
|
|
if (auto msg = std::get_if<mtx::events::EncryptedEvent<mtx::events::msg::Encrypted>>(
|
|
¬ification.event);
|
|
msg != nullptr) {
|
|
return tr("%1 sent an encrypted message").arg(sender);
|
|
}
|
|
|
|
if (mtx::accessors::msg_type(notification.event) == mtx::events::MessageType::Emote) {
|
|
return QStringLiteral("* %1 %2").arg(sender);
|
|
} else if (utils::isReply(notification.event)) {
|
|
return tr("%1 replied: %2",
|
|
"Format a reply in a notification. %1 is the sender, %2 the message")
|
|
.arg(sender);
|
|
} else {
|
|
return QStringLiteral("%1: %2").arg(sender);
|
|
}
|
|
}
|
|
|
|
void
|
|
NotificationsManager::removeNotifications(const QString &roomId_,
|
|
const std::vector<QString> &eventIds)
|
|
{
|
|
std::string room_id = roomId_.toStdString();
|
|
|
|
std::uint64_t markerPos = 0;
|
|
for (const auto &e : eventIds) {
|
|
markerPos = std::max(markerPos, cache::getEventIndex(room_id, e.toStdString()).value_or(0));
|
|
}
|
|
|
|
for (const auto &[roomId, eventId] : std::as_const(this->notificationIds)) {
|
|
if (roomId != roomId_)
|
|
continue;
|
|
auto idx = cache::getEventIndex(room_id, eventId.toStdString());
|
|
if (!idx || markerPos >= idx) {
|
|
removeNotification(roomId, eventId);
|
|
}
|
|
}
|
|
}
|