matrixion/src/notifications/Manager.cpp

36 lines
1.2 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"
#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
}
}