/** * Copyright 2013 Albert Vaca * * 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 . */ #include "notificationsdbusinterface.h" #include #include #include #include NotificationsDbusInterface::NotificationsDbusInterface(Device* device, QObject *parent) : QDBusAbstractAdaptor(parent) , mDevice(device) , mLastId(0) { } NotificationsDbusInterface::~NotificationsDbusInterface() { qDeleteAll(mNotifications); } QStringList NotificationsDbusInterface::activeNotifications() { return mNotifications.keys(); } void NotificationsDbusInterface::processPackage(const NetworkPackage& np) { if (np.get("isCancel")) { removeNotification(np.get("id")); } else { Notification* noti = new Notification(np, this); //Do not show updates to existent notification nor answers to a initialization request if (!mInternalIdToPublicId.contains(noti->internalId()) && !np.get("requestAnswer", false)) { KNotification* notification = new KNotification("notification"); notification->setPixmap(KIcon("preferences-desktop-notification").pixmap(48, 48)); notification->setComponentData(KComponentData("kdeconnect", "kdeconnect")); notification->setTitle(mDevice->name()); notification->setText(noti->appName() + ": " + noti->ticker()); notification->sendEvent(); } addNotification(noti); } } void NotificationsDbusInterface::addNotification(Notification* noti) { const QString& internalId = noti->internalId(); if (mInternalIdToPublicId.contains(internalId)) { removeNotification(internalId); } connect(noti, SIGNAL(dismissRequested(Notification*)), this, SLOT(dismissRequested(Notification*))); const QString& publicId = newId(); mNotifications[publicId] = noti; mInternalIdToPublicId[internalId] = publicId; QDBusConnection::sessionBus().registerObject(mDevice->dbusPath()+"/notifications/"+publicId, noti, QDBusConnection::ExportScriptableContents); Q_EMIT notificationPosted(publicId); } void NotificationsDbusInterface::removeNotification(const QString& internalId) { qDebug() << "removeNotification" << internalId; if (!mInternalIdToPublicId.contains(internalId)) { qDebug() << "Not found"; return; } QString publicId = mInternalIdToPublicId[internalId]; mInternalIdToPublicId.remove(internalId); if (!mNotifications.contains(publicId)) { qDebug() << "Not found"; return; } Notification* noti = mNotifications[publicId]; mNotifications.remove(publicId); //Deleting the notification will unregister it automatically //QDBusConnection::sessionBus().unregisterObject(mDevice->dbusPath()+"/notifications/"+publicId); noti->deleteLater(); Q_EMIT notificationRemoved(publicId); } void NotificationsDbusInterface::dismissRequested(Notification* notification) { const QString& internalId = notification->internalId(); NetworkPackage np(PACKAGE_TYPE_NOTIFICATION); np.set("cancel", internalId); mDevice->sendPackage(np); //This should be called automatically back from server //removeNotification(internalId); } QString NotificationsDbusInterface::newId() { return QString::number(++mLastId); }