diff --git a/Telegram/SourceFiles/platform/linux/notifications_manager_linux.cpp b/Telegram/SourceFiles/platform/linux/notifications_manager_linux.cpp index b8a86f0b6..4f094e591 100644 --- a/Telegram/SourceFiles/platform/linux/notifications_manager_linux.cpp +++ b/Telegram/SourceFiles/platform/linux/notifications_manager_linux.cpp @@ -16,6 +16,7 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL #include #include #include +#include #include #endif // !TDESKTOP_DISABLE_DBUS_INTEGRATION @@ -28,6 +29,7 @@ namespace { constexpr auto kService = "org.freedesktop.Notifications"_cs; constexpr auto kObjectPath = "/org/freedesktop/Notifications"_cs; constexpr auto kInterface = kService; +constexpr auto kPropertiesInterface = "org.freedesktop.DBus.Properties"_cs; std::vector GetServerInformation() { std::vector serverInformation; @@ -75,6 +77,30 @@ QStringList GetCapabilities() { return {}; } +bool Inhibited() { + auto message = QDBusMessage::createMethodCall( + kService.utf16(), + kObjectPath.utf16(), + kPropertiesInterface.utf16(), + qsl("Get")); + + message.setArguments({ + qsl("org.freedesktop.Notifications"), + qsl("Inhibited") + }); + + const QDBusReply reply = QDBusConnection::sessionBus().call( + message); + + if (reply.isValid()) { + return reply.value().toBool(); + } else if (reply.error().type() != QDBusError::InvalidArgs) { + LOG(("Native notification error: %1").arg(reply.error().message())); + } + + return false; +} + QVersionNumber ParseSpecificationVersion( const std::vector &serverInformation) { if (serverInformation.size() >= 4) { @@ -332,6 +358,26 @@ const QDBusArgument &operator>>( } #endif // !TDESKTOP_DISABLE_DBUS_INTEGRATION +bool SkipAudio() { +#ifndef TDESKTOP_DISABLE_DBUS_INTEGRATION + if (Supported()) { + return Inhibited(); + } +#endif // !TDESKTOP_DISABLE_DBUS_INTEGRATION + + return false; +} + +bool SkipToast() { +#ifndef TDESKTOP_DISABLE_DBUS_INTEGRATION + if (Supported()) { + return Inhibited(); + } +#endif // !TDESKTOP_DISABLE_DBUS_INTEGRATION + + return false; +} + bool Supported() { #ifndef TDESKTOP_DISABLE_DBUS_INTEGRATION static const auto Available = QDBusInterface( diff --git a/Telegram/SourceFiles/platform/linux/notifications_manager_linux.h b/Telegram/SourceFiles/platform/linux/notifications_manager_linux.h index 82c74d26d..2cd5ba953 100644 --- a/Telegram/SourceFiles/platform/linux/notifications_manager_linux.h +++ b/Telegram/SourceFiles/platform/linux/notifications_manager_linux.h @@ -19,14 +19,6 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL namespace Platform { namespace Notifications { -inline bool SkipAudio() { - return false; -} - -inline bool SkipToast() { - return false; -} - inline void FlashBounce() { }