Use QDBusConnection::connect to fix signal connection on old distributions

This commit is contained in:
Ilya Fedin 2020-01-24 23:55:01 +04:00 committed by John Preston
parent 24da40ef05
commit 74942cd06e
1 changed files with 44 additions and 23 deletions

View File

@ -13,7 +13,6 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
#ifndef TDESKTOP_DISABLE_DBUS_INTEGRATION #ifndef TDESKTOP_DISABLE_DBUS_INTEGRATION
#include <QtCore/QVersionNumber> #include <QtCore/QVersionNumber>
#include <QtDBus/QDBusConnection>
#include <QtDBus/QDBusReply> #include <QtDBus/QDBusReply>
#include <QtDBus/QDBusMetaType> #include <QtDBus/QDBusMetaType>
#endif #endif
@ -31,7 +30,7 @@ constexpr auto kInterface = kService;
std::vector<QString> GetServerInformation( std::vector<QString> GetServerInformation(
const std::shared_ptr<QDBusInterface> &notificationInterface) { const std::shared_ptr<QDBusInterface> &notificationInterface) {
std::vector<QString> serverInformation; std::vector<QString> serverInformation;
auto serverInformationReply = notificationInterface const auto serverInformationReply = notificationInterface
->call(qsl("GetServerInformation")); ->call(qsl("GetServerInformation"));
if (serverInformationReply.type() == QDBusMessage::ReplyMessage) { if (serverInformationReply.type() == QDBusMessage::ReplyMessage) {
@ -58,7 +57,7 @@ std::vector<QString> GetServerInformation(
QStringList GetCapabilities( QStringList GetCapabilities(
const std::shared_ptr<QDBusInterface> &notificationInterface) { const std::shared_ptr<QDBusInterface> &notificationInterface) {
QDBusReply<QStringList> capabilitiesReply = notificationInterface const QDBusReply<QStringList> capabilitiesReply = notificationInterface
->call(qsl("GetCapabilities")); ->call(qsl("GetCapabilities"));
if (capabilitiesReply.isValid()) { if (capabilitiesReply.isValid()) {
@ -95,7 +94,7 @@ NotificationData::NotificationData(
, _title(title) , _title(title)
, _peerId(peerId) , _peerId(peerId)
, _msgId(msgId) { , _msgId(msgId) {
auto capabilities = GetCapabilities(_notificationInterface); const auto capabilities = GetCapabilities(_notificationInterface);
if (capabilities.contains(qsl("body-markup"))) { if (capabilities.contains(qsl("body-markup"))) {
_body = subtitle.isEmpty() _body = subtitle.isEmpty()
@ -112,17 +111,25 @@ NotificationData::NotificationData(
if (capabilities.contains(qsl("actions"))) { if (capabilities.contains(qsl("actions"))) {
_actions << qsl("default") << QString(); _actions << qsl("default") << QString();
connect(_notificationInterface.get(), _notificationInterface->connection().connect(
SIGNAL(ActionInvoked(uint, QString)), str_const_toString(kService),
this, SLOT(notificationClicked(uint))); str_const_toString(kObjectPath),
str_const_toString(kInterface),
qsl("ActionInvoked"),
this,
SLOT(notificationClicked(uint)));
if (capabilities.contains(qsl("inline-reply"))) { if (capabilities.contains(qsl("inline-reply"))) {
_actions << qsl("inline-reply") _actions << qsl("inline-reply")
<< tr::lng_notification_reply(tr::now); << tr::lng_notification_reply(tr::now);
connect(_notificationInterface.get(), _notificationInterface->connection().connect(
SIGNAL(NotificationReplied(uint,QString)), str_const_toString(kService),
this, SLOT(notificationReplied(uint,QString))); str_const_toString(kObjectPath),
str_const_toString(kInterface),
qsl("NotificationReplied"),
this,
SLOT(notificationReplied(uint,QString)));
} else { } else {
// icon name according to https://specifications.freedesktop.org/icon-naming-spec/icon-naming-spec-latest.html // icon name according to https://specifications.freedesktop.org/icon-naming-spec/icon-naming-spec-latest.html
_actions << qsl("mail-reply-sender") _actions << qsl("mail-reply-sender")
@ -153,15 +160,26 @@ NotificationData::NotificationData(
_hints["desktop-entry"] = _hints["desktop-entry"] =
qsl(MACRO_TO_STRING(TDESKTOP_LAUNCHER_BASENAME)); qsl(MACRO_TO_STRING(TDESKTOP_LAUNCHER_BASENAME));
connect(_notificationInterface.get(), _notificationInterface->connection().connect(
SIGNAL(NotificationClosed(uint, uint)), str_const_toString(kService),
this, SLOT(notificationClosed(uint))); str_const_toString(kObjectPath),
str_const_toString(kInterface),
qsl("NotificationClosed"),
this,
SLOT(notificationClosed(uint)));
} }
bool NotificationData::show() { bool NotificationData::show() {
QDBusReply<uint> notifyReply = _notificationInterface->call(qsl("Notify"), const QDBusReply<uint> notifyReply = _notificationInterface->call(
str_const_toString(AppName), uint(0), QString(), _title, _body, qsl("Notify"),
_actions, _hints, -1); str_const_toString(AppName),
uint(0),
QString(),
_title,
_body,
_actions,
_hints,
-1);
if (notifyReply.isValid()) { if (notifyReply.isValid()) {
_notificationId = notifyReply.value(); _notificationId = notifyReply.value();
@ -174,7 +192,7 @@ bool NotificationData::show() {
} }
bool NotificationData::close() { bool NotificationData::close() {
QDBusReply<void> closeReply = _notificationInterface const QDBusReply<void> closeReply = _notificationInterface
->call(qsl("CloseNotification"), _notificationId); ->call(qsl("CloseNotification"), _notificationId);
if (!closeReply.isValid()) { if (!closeReply.isValid()) {
@ -186,7 +204,7 @@ bool NotificationData::close() {
} }
void NotificationData::setImage(const QString &imagePath) { void NotificationData::setImage(const QString &imagePath) {
auto specificationVersion = ParseSpecificationVersion( const auto specificationVersion = ParseSpecificationVersion(
GetServerInformation(_notificationInterface)); GetServerInformation(_notificationInterface));
QString imageKey; QString imageKey;
@ -211,8 +229,11 @@ void NotificationData::setImage(const QString &imagePath) {
return; return;
} }
auto image = QImage(imagePath).convertToFormat(QImage::Format_RGBA8888); const auto image = QImage(imagePath)
QByteArray imageBytes((const char*)image.constBits(), .convertToFormat(QImage::Format_RGBA8888);
const QByteArray imageBytes(
(const char*)image.constBits(),
image.sizeInBytes()); image.sizeInBytes());
ImageData imageData; ImageData imageData;
@ -285,7 +306,7 @@ const QDBusArgument &operator>>(const QDBusArgument &argument,
bool Supported() { bool Supported() {
#ifndef TDESKTOP_DISABLE_DBUS_INTEGRATION #ifndef TDESKTOP_DISABLE_DBUS_INTEGRATION
static auto Available = QDBusInterface( static const auto Available = QDBusInterface(
str_const_toString(kService), str_const_toString(kService),
str_const_toString(kObjectPath), str_const_toString(kObjectPath),
str_const_toString(kInterface)).isValid(); str_const_toString(kInterface)).isValid();
@ -316,10 +337,10 @@ Manager::Private::Private(Manager *manager, Type type)
str_const_toString(kInterface))) { str_const_toString(kInterface))) {
qDBusRegisterMetaType<NotificationData::ImageData>(); qDBusRegisterMetaType<NotificationData::ImageData>();
auto specificationVersion = ParseSpecificationVersion( const auto specificationVersion = ParseSpecificationVersion(
GetServerInformation(_notificationInterface)); GetServerInformation(_notificationInterface));
auto capabilities = GetCapabilities(_notificationInterface); const auto capabilities = GetCapabilities(_notificationInterface);
if (!specificationVersion.isNull()) { if (!specificationVersion.isNull()) {
LOG(("Notification daemon specification version: %1") LOG(("Notification daemon specification version: %1")