kdeconnect-kde/daemon/plugins/eventnotifications/notificationpackageinterface.cpp

158 lines
5.4 KiB
C++
Raw Normal View History

2013-06-06 04:57:06 +01:00
/**
* Copyright 2013 Albert Vaca <albertvaka@gmail.com>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; either version 2 of
* the License or (at your option) version 3 or any later version
* accepted by the membership of KDE e.V. (or its successor approved
* by the membership of KDE e.V.), which shall act as a proxy
* defined in Section 14 of version 3 of the license.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "notificationpackageinterface.h"
2013-06-06 04:57:06 +01:00
#include <QDebug>
2013-06-06 04:57:06 +01:00
#include <kicon.h>
2013-08-07 10:29:56 +01:00
NotificationPackageInterface::NotificationPackageInterface(QObject* parent)
: PackageInterface(parent)
{
//TODO: Split in EventNotificationInterface and NotificationDrawerSyncInterface
trayIcon = new KStatusNotifierItem(parent);
trayIcon->setIconByName("pda");
trayIcon->setTitle("KdeConnect");
connect(trayIcon,SIGNAL(activateRequested(bool,QPoint)),this,SLOT(showPendingNotifications()));
}
KNotification* NotificationPackageInterface::createNotification(const QString& deviceName, const NetworkPackage& np)
{
2013-06-06 04:57:06 +01:00
2013-08-07 10:29:56 +01:00
QString id = QString::number(np.id());
QString npType = np.get<QString>("notificationType");
2013-06-06 04:57:06 +01:00
QString title, content, type, icon;
2013-08-07 10:29:56 +01:00
bool transient;
title = deviceName;
2013-08-07 10:29:56 +01:00
if (npType == "ringing") {
2013-06-06 04:57:06 +01:00
type = "callReceived";
icon = "call-start";
content = "Incoming call from " + np.get<QString>("phoneNumber","unknown number");
2013-08-07 10:29:56 +01:00
transient = false;
} else if (npType == "missedCall") {
type = "missedCall";
2013-06-06 04:57:06 +01:00
icon = "call-start";
content = "Missed call from " + np.get<QString>("phoneNumber","unknown number");
2013-08-07 10:29:56 +01:00
transient = true;
} else if (npType == "sms") {
2013-06-06 04:57:06 +01:00
type = "smsReceived";
icon = "mail-receive";
2013-08-01 01:32:43 +01:00
content = "SMS from "
+ np.get<QString>("phoneNumber","unknown number")
+ ":\n"
+ np.get<QString>("messageBody","");
2013-08-07 10:29:56 +01:00
transient = true;
} else if (npType == "battery") {
2013-06-06 04:57:06 +01:00
type = "battery100";
icon = "battery-100";
content = "Battery at " + np.get<QString>("batteryLevel") + "%";
2013-08-07 10:29:56 +01:00
transient = false;
} else if (npType == "notification") {
2013-06-06 04:57:06 +01:00
type = "pingReceived";
icon = "dialog-ok";
content = np.get<QString>("notificationContent");
2013-08-07 10:29:56 +01:00
transient = false;
2013-06-06 04:57:06 +01:00
} else {
//TODO: return NULL if !debug
2013-06-06 04:57:06 +01:00
type = "unknownEvent";
icon = "pda";
content = "Unknown notification type: " + npType;
2013-08-07 10:29:56 +01:00
transient = false;
2013-06-06 04:57:06 +01:00
}
qDebug() << "Creating notification with type:" << type;
2013-06-06 04:57:06 +01:00
2013-08-07 10:29:56 +01:00
if (transient) {
trayIcon->setStatus(KStatusNotifierItem::Active);
KNotification* notification = new KNotification(type); //KNotification::Persistent
notification->setPixmap(KIcon(icon).pixmap(48, 48));
notification->setComponentData(KComponentData("kdeconnect", "kdeconnect"));
notification->setTitle(title);
notification->setText(content);
pendingNotifications.insert(id, notification);
}
2013-06-06 04:57:06 +01:00
KNotification* notification = new KNotification(type); //KNotification::Persistent
notification->setPixmap(KIcon(icon).pixmap(48, 48));
notification->setComponentData(KComponentData("kdeconnect", "kdeconnect"));
2013-06-06 04:57:06 +01:00
notification->setTitle(title);
notification->setText(content);
2013-08-07 10:29:56 +01:00
notification->setProperty("id",id);
connect(notification,SIGNAL(activated()),this,SLOT(notificationAttended()));
connect(notification,SIGNAL(closed()),this,SLOT(notificationAttended()));
2013-06-06 04:57:06 +01:00
return notification;
}
2013-08-07 10:29:56 +01:00
void NotificationPackageInterface::notificationAttended()
{
KNotification* normalNotification = (KNotification*)sender();
QString id = normalNotification->property("id").toString();
if (pendingNotifications.contains(id)) {
delete pendingNotifications[id];
pendingNotifications.remove(id);
if (pendingNotifications.isEmpty()) {
trayIcon->setStatus(KStatusNotifierItem::Passive);
}
}
}
void NotificationPackageInterface::showPendingNotifications()
{
trayIcon->setStatus(KStatusNotifierItem::Passive);
Q_FOREACH (KNotification* notification, pendingNotifications) {
notification->sendEvent();
}
pendingNotifications.clear();
}
bool NotificationPackageInterface::receivePackage(const Device& device, const NetworkPackage& np)
{
2013-06-06 04:57:06 +01:00
if (np.type() != PACKAGE_TYPE_NOTIFICATION) return false;
if (np.get<bool>("isCancel")) {
2013-06-06 04:57:06 +01:00
//It would be awesome to remove the old notification from the system tray here, but there is no way to do it :(
//Now I realize why at the end of the day I have hundreds of notifications from facebook messages that I HAVE ALREADY READ,
//...it's just because the telepathy client has no way to remove them! even when it knows that I have read those messages!
2013-06-06 04:57:06 +01:00
} else {
2013-06-06 04:57:06 +01:00
KNotification* n = createNotification(device.name(), np);
if (n != NULL) n->sendEvent();
2013-06-06 04:57:06 +01:00
}
2013-06-06 04:57:06 +01:00
return true;
}