matrixion/src/notifications/Manager.cpp

58 lines
1.9 KiB
C++
Raw Normal View History

2021-03-17 21:14:25 +03:00
// SPDX-FileCopyrightText: 2021 Nheko Contributors
// SPDX-FileCopyrightText: 2022 Nheko Contributors
2021-03-17 21:14:25 +03:00
//
// SPDX-License-Identifier: GPL-3.0-or-later
#include "notifications/Manager.h"
#include "Cache.h"
#include "EventAccessors.h"
2022-10-13 18:19:54 +03:00
#include "Logging.h"
#include "Utils.h"
QString
2021-03-17 21:08:17 +03:00
NotificationsManager::getMessageTemplate(const mtx::responses::Notification &notification)
{
2021-09-18 01:22:33 +03:00
const auto sender =
cache::displayName(QString::fromStdString(notification.room_id),
QString::fromStdString(mtx::accessors::sender(notification.event)));
2021-03-17 21:08:17 +03:00
2021-09-18 01:22:33 +03:00
// 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>>(
&notification.event);
msg != nullptr) {
return tr("%1 sent an encrypted message").arg(sender);
}
2021-03-17 21:08:17 +03:00
2021-09-18 01:22:33 +03:00
if (mtx::accessors::msg_type(notification.event) == mtx::events::MessageType::Emote) {
return QStringLiteral("* %1 %2").arg(sender);
2021-09-18 01:22:33 +03:00
} 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);
2021-09-18 01:22:33 +03:00
}
}
2022-10-13 18:19:54 +03:00
void
NotificationsManager::removeNotifications(const QString &roomId_,
2022-10-13 18:19:54 +03:00
const std::vector<QString> &eventIds)
{
std::string room_id = roomId_.toStdString();
2022-10-13 18:19:54 +03:00
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] : qAsConst(this->notificationIds)) {
if (roomId != roomId_)
2022-10-13 18:19:54 +03:00
continue;
auto idx = cache::getEventIndex(room_id, eventId.toStdString());
if (!idx || markerPos >= idx) {
removeNotification(roomId, eventId);
}
}
}