/* This file is part of Telegram Desktop, the official desktop application for the Telegram messaging service. For license and copyright information please follow this link: https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL */ #include "platform/linux/notifications_manager_linux.h" #include "history/history.h" #include "lang/lang_keys.h" #include "facades.h" #include #include #include #include namespace Platform { namespace Notifications { namespace { constexpr auto kService = str_const("org.freedesktop.Notifications"); constexpr auto kObjectPath = str_const("/org/freedesktop/Notifications"); constexpr auto kInterface = kService; std::vector GetServerInformation( const std::shared_ptr ¬ificationInterface) { std::vector serverInformation; auto serverInformationReply = notificationInterface ->call("GetServerInformation"); if (serverInformationReply.type() == QDBusMessage::ReplyMessage) { for (const auto &arg : serverInformationReply.arguments()) { if (static_cast(arg.type()) == QMetaType::QString) { serverInformation.push_back(arg.toString()); } else { LOG(("Native notification error: " "all elements in GetServerInformation " "should be strings")); } } } else if (serverInformationReply.type() == QDBusMessage::ErrorMessage) { LOG(("Native notification error: %1") .arg(QDBusError(serverInformationReply).message())); } else { LOG(("Native notification error: " "error while getting information about notification daemon")); } return serverInformation; } std::vector GetCapabilities( const std::shared_ptr ¬ificationInterface) { QDBusReply capabilitiesReply = notificationInterface ->call("GetCapabilities"); if (capabilitiesReply.isValid()) { return capabilitiesReply.value().toVector().toStdVector(); } else { LOG(("Native notification error: %1") .arg(capabilitiesReply.error().message())); } return std::vector(); } QVersionNumber ParseSpecificationVersion( const std::vector &serverInformation) { if (serverInformation.size() >= 4) { return QVersionNumber::fromString(serverInformation[3]); } else { LOG(("Native notification error: " "server information should have 4 elements")); } return QVersionNumber(); } } NotificationData::NotificationData( const std::shared_ptr ¬ificationInterface, const base::weak_ptr &manager, const QString &title, const QString &subtitle, const QString &msg, PeerId peerId, MsgId msgId) : _notificationInterface(notificationInterface) , _manager(manager) , _title(title) , _peerId(peerId) , _msgId(msgId) { auto capabilities = GetCapabilities(_notificationInterface); auto capabilitiesEnd = capabilities.end(); if (ranges::find(capabilities, qsl("body-markup")) != capabilitiesEnd) { _body = subtitle.isEmpty() ? msg.toHtmlEscaped() : qsl("%1\n%2").arg(subtitle.toHtmlEscaped()) .arg(msg.toHtmlEscaped()); } else { _body = subtitle.isEmpty() ? msg : qsl("%1\n%2").arg(subtitle).arg(msg); } if (ranges::find(capabilities, qsl("actions")) != capabilitiesEnd) { // icon name according to https://specifications.freedesktop.org/icon-naming-spec/icon-naming-spec-latest.html _actions << "mail-reply-sender" << tr::lng_notification_reply(tr::now); connect(_notificationInterface.get(), SIGNAL(ActionInvoked(uint, QString)), this, SLOT(notificationClicked(uint))); } if (ranges::find(capabilities, qsl("action-icons")) != capabilitiesEnd) { _hints["action-icons"] = true; } // suppress system sound if telegram sound activated, otherwise use system sound if (ranges::find(capabilities, qsl("sound")) != capabilitiesEnd) { if (Global::SoundNotify()) { _hints["suppress-sound"] = true; } else { // sound name according to http://0pointer.de/public/sound-naming-spec.html _hints["sound-name"] = "message-new-instant"; } } if (ranges::find(capabilities, qsl("x-canonical-append")) != capabilitiesEnd) { _hints["x-canonical-append"] = "true"; } _hints["category"] = "im.received"; _hints["desktop-entry"] = "telegramdesktop"; connect(_notificationInterface.get(), SIGNAL(NotificationClosed(uint, uint)), this, SLOT(notificationClosed(uint))); } bool NotificationData::show() { QDBusReply notifyReply = _notificationInterface->call("Notify", str_const_toString(AppName), uint(0), "telegram", _title, _body, _actions, _hints, -1); if (notifyReply.isValid()) { _notificationId = notifyReply.value(); } else { LOG(("Native notification error: %1") .arg(notifyReply.error().message())); } return notifyReply.isValid(); } bool NotificationData::close() { QDBusReply closeReply = _notificationInterface ->call("CloseNotification", _notificationId); if (!closeReply.isValid()) { LOG(("Native notification error: %1") .arg(closeReply.error().message())); } return closeReply.isValid(); } void NotificationData::setImage(const QString &imagePath) { auto specificationVersion = ParseSpecificationVersion( GetServerInformation(_notificationInterface)); QString imageKey; if (!specificationVersion.isNull()) { const auto majorVersion = specificationVersion.majorVersion(); const auto minorVersion = specificationVersion.minorVersion(); if ((majorVersion == 1 && minorVersion >= 2) || majorVersion > 1) { imageKey = "image-data"; } else if (majorVersion == 1 && minorVersion) { imageKey = "image_data"; } else if ((majorVersion == 1 && minorVersion < 1) || majorVersion < 1) { imageKey = "icon_data"; } else { LOG(("Native notification error: unknown specification version")); return; } } else { LOG(("Native notification error: specification version is null")); return; } auto image = QImage(imagePath).convertToFormat(QImage::Format_RGBA8888); QByteArray imageBytes((const char*)image.constBits(), image.sizeInBytes()); ImageData imageData; imageData.width = image.width(); imageData.height = image.height(); imageData.rowStride = image.bytesPerLine(); imageData.hasAlpha = true; imageData.bitsPerSample = 8; imageData.channels = 4; imageData.data = imageBytes; _hints[imageKey] = QVariant::fromValue(imageData); } void NotificationData::notificationClosed(uint id) { if (id == _notificationId) { const auto manager = _manager; crl::on_main(manager, [=] { manager->clearNotification(_peerId, _msgId); }); } } void NotificationData::notificationClicked(uint id) { if (id == _notificationId) { const auto manager = _manager; crl::on_main(manager, [=] { manager->notificationActivated(_peerId, _msgId); }); } } QDBusArgument &operator<<(QDBusArgument &argument, const NotificationData::ImageData &imageData) { argument.beginStructure(); argument << imageData.width << imageData.height << imageData.rowStride << imageData.hasAlpha << imageData.bitsPerSample << imageData.channels << imageData.data; argument.endStructure(); return argument; } const QDBusArgument &operator>>(const QDBusArgument &argument, NotificationData::ImageData &imageData) { argument.beginStructure(); argument >> imageData.width >> imageData.height >> imageData.rowStride >> imageData.hasAlpha >> imageData.bitsPerSample >> imageData.channels >> imageData.data; argument.endStructure(); return argument; } bool Supported() { static auto Checked = false; static auto NotificationDaemonRunning = false; if (!Checked) { Checked = true; NotificationDaemonRunning = QDBusInterface( str_const_toString(kService), str_const_toString(kObjectPath), str_const_toString(kInterface)).isValid(); } return NotificationDaemonRunning; } std::unique_ptr Create( Window::Notifications::System *system) { if (Global::NativeNotifications() && Supported()) { return std::make_unique(system); } return nullptr; } Manager::Private::Private(Manager *manager, Type type) : _cachedUserpics(type) , _manager(manager) , _notificationInterface(std::make_shared( str_const_toString(kService), str_const_toString(kObjectPath), str_const_toString(kInterface))) { qDBusRegisterMetaType(); auto specificationVersion = ParseSpecificationVersion( GetServerInformation(_notificationInterface)); auto capabilities = GetCapabilities(_notificationInterface); if (!specificationVersion.isNull()) { LOG(("Notification daemon specification version: %1") .arg(specificationVersion.toString())); } if (!capabilities.empty()) { const auto capabilitiesString = std::accumulate( capabilities.begin(), capabilities.end(), QString{}, [](auto &s, auto &p) { return s + (p + qstr(", ")); }).chopped(2); LOG(("Notification daemon capabilities: %1").arg(capabilitiesString)); } } void Manager::Private::showNotification( not_null peer, MsgId msgId, const QString &title, const QString &subtitle, const QString &msg, bool hideNameAndPhoto, bool hideReplyButton) { auto notification = std::make_shared( _notificationInterface, _manager, title, subtitle, msg, peer->id, msgId); const auto key = hideNameAndPhoto ? InMemoryKey() :peer->userpicUniqueKey(); notification->setImage(_cachedUserpics.get(key, peer)); auto i = _notifications.find(peer->id); if (i != _notifications.cend()) { auto j = i->find(msgId); if (j != i->cend()) { auto oldNotification = j.value(); i->erase(j); oldNotification->close(); i = _notifications.find(peer->id); } } if (i == _notifications.cend()) { i = _notifications.insert(peer->id, QMap()); } _notifications[peer->id].insert(msgId, notification); if (!notification->show()) { i = _notifications.find(peer->id); if (i != _notifications.cend()) { i->remove(msgId); if (i->isEmpty()) _notifications.erase(i); } } } void Manager::Private::clearAll() { auto temp = base::take(_notifications); for_const (auto ¬ifications, temp) { for_const (auto notification, notifications) { notification->close(); } } } void Manager::Private::clearFromHistory(not_null history) { auto i = _notifications.find(history->peer->id); if (i != _notifications.cend()) { auto temp = base::take(i.value()); _notifications.erase(i); for_const (auto notification, temp) { notification->close(); } } } void Manager::Private::clearNotification(PeerId peerId, MsgId msgId) { auto i = _notifications.find(peerId); if (i != _notifications.cend()) { i.value().remove(msgId); if (i.value().isEmpty()) { _notifications.erase(i); } } } Manager::Private::~Private() { clearAll(); } Manager::Manager(Window::Notifications::System *system) : NativeManager(system) , _private(std::make_unique(this, Private::Type::Rounded)) { } void Manager::clearNotification(PeerId peerId, MsgId msgId) { _private->clearNotification(peerId, msgId); } Manager::~Manager() = default; void Manager::doShowNativeNotification( not_null peer, MsgId msgId, const QString &title, const QString &subtitle, const QString &msg, bool hideNameAndPhoto, bool hideReplyButton) { _private->showNotification( peer, msgId, title, subtitle, msg, hideNameAndPhoto, hideReplyButton); } void Manager::doClearAllFast() { _private->clearAll(); } void Manager::doClearFromHistory(not_null history) { _private->clearFromHistory(history); } } // namespace Notifications } // namespace Platform