1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
|
#include "notificationmanager.h"
#include <QDebug>
#include <QTimer>
#include <QFile>
#include <QSettings>
#include <QDBusInterface>
#include <QDBusPendingReply>
class NotificationManagerPrivate
{
Q_DECLARE_PUBLIC(NotificationManager)
public:
NotificationManagerPrivate(NotificationManager *q)
: q_ptr(q),
interface(NULL),
connected(false)
{ /*...*/ }
NotificationManager *q_ptr;
QDBusInterface *interface;
bool connected;
};
NotificationManager::NotificationManager(QObject *parent)
: QObject(parent), d_ptr(new NotificationManagerPrivate(this))
{
Q_D(NotificationManager);
QDBusConnection::sessionBus().registerObject("/org/freedesktop/Notifications", this, QDBusConnection::ExportAllSlots);
d->interface = new QDBusInterface("org.freedesktop.DBus",
"/org/freedesktop/DBus",
"org.freedesktop.DBus");
d->interface->call("AddMatch", "interface='org.freedesktop.Notifications',member='Notify',type='method_call',eavesdrop='true'");
this->initialize();
}
NotificationManager::~NotificationManager()
{
Q_D(NotificationManager);
delete d;
}
void NotificationManager::initialize(bool notifyError)
{
Q_D(NotificationManager);
bool success = false;
if(d->interface->isValid())
{
success = true;
}
if(!(d->connected = success))
{
QTimer::singleShot(2000, this, SLOT(initialize()));
if(notifyError) emit this->error("Failed to connect to Notifications D-Bus service.");
}
}
QDBusInterface* NotificationManager::interface() const
{
Q_D(const NotificationManager);
return d->interface;
}
QString NotificationManager::detectCleanAppname(QString app_name)
{
QString desktopFile = "/usr/share/applications/" + app_name + ".desktop";
QFile testFile(desktopFile);
if (testFile.exists()) {
QSettings settings(desktopFile, QSettings::IniFormat);
settings.beginGroup("Desktop Entry");
QString cleanName = settings.value("Name").toString();
settings.endGroup();
if (!cleanName.isEmpty()) {
return cleanName;
}
}
return app_name;
}
void NotificationManager::Notify(const QString &app_name, uint replaces_id, const QString &app_icon, const QString &summary, const QString &body, const QStringList &actions, const QVariantHash &hints, int expire_timeout) {
//Ignore notifcations from myself
if (app_name == "pebbled") {
return;
}
qDebug() << "Got notification via dbus from" << detectCleanAppname(app_name);
if (app_name == "messageserver5") {
emit this->emailNotify(hints.value("x-nemo-preview-summary", detectCleanAppname(app_name)).toString(),
hints.value("x-nemo-preview-body", "").toString(),
""
);
} else if (app_name == "commhistoryd") {
if (summary == "" && body == "") {
emit this->smsNotify(hints.value("x-nemo-preview-summary", "default").toString(),
hints.value("x-nemo-preview-body", "default").toString()
);
}
} else {
QString data = summary;
QString subject = body;
if (data.isEmpty()) {
data = hints.value("x-nemo-preview-summary", "").toString();
}
if (subject.isEmpty()) {
subject = hints.value("x-nemo-preview-body", "").toString();
}
if (data.isEmpty() && !subject.isEmpty()) {
data = subject;
subject = "";
}
emit this->emailNotify(detectCleanAppname(app_name), data, subject);
}
}
|