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/>.
|
|
|
|
*/
|
|
|
|
|
2013-08-13 22:26:09 +01:00
|
|
|
#include "telephonyplugin.h"
|
2013-06-06 04:57:06 +01:00
|
|
|
|
2013-09-04 20:19:02 +01:00
|
|
|
#include <KLocalizedString>
|
|
|
|
#include <KIcon>
|
2013-06-06 04:57:06 +01:00
|
|
|
|
2013-11-06 21:16:55 +00:00
|
|
|
#include "../../kdebugnamespace.h"
|
|
|
|
|
2013-08-15 21:28:35 +01:00
|
|
|
K_PLUGIN_FACTORY( KdeConnectPluginFactory, registerPlugin< TelephonyPlugin >(); )
|
2014-01-28 01:08:34 +00:00
|
|
|
K_EXPORT_PLUGIN( KdeConnectPluginFactory("kdeconnect_telephony", "kdeconnect-kded") )
|
2013-08-15 21:28:35 +01:00
|
|
|
|
2013-08-13 22:26:09 +01:00
|
|
|
TelephonyPlugin::TelephonyPlugin(QObject *parent, const QVariantList &args)
|
|
|
|
: KdeConnectPlugin(parent, args)
|
2013-08-07 10:29:56 +01:00
|
|
|
{
|
2013-08-16 00:01:05 +01:00
|
|
|
|
2013-08-07 10:29:56 +01:00
|
|
|
}
|
|
|
|
|
2013-08-13 22:26:09 +01:00
|
|
|
KNotification* TelephonyPlugin::createNotification(const NetworkPackage& np)
|
2013-07-26 15:21:19 +01:00
|
|
|
{
|
2013-06-06 04:57:06 +01:00
|
|
|
|
2013-08-16 05:23:03 +01:00
|
|
|
QString event = np.get<QString>("event");
|
2013-09-04 20:19:02 +01:00
|
|
|
QString phoneNumber = np.get<QString>("phoneNumber", i18n("unknown number"));
|
2013-06-06 04:57:06 +01:00
|
|
|
|
2013-07-04 18:17:22 +01:00
|
|
|
QString title, content, type, icon;
|
|
|
|
|
2013-08-13 22:26:09 +01:00
|
|
|
title = device()->name();
|
2013-08-07 10:29:56 +01:00
|
|
|
|
2013-08-16 05:23:03 +01:00
|
|
|
if (event == "ringing") {
|
2013-06-06 04:57:06 +01:00
|
|
|
type = "callReceived";
|
|
|
|
icon = "call-start";
|
2013-09-04 20:19:02 +01:00
|
|
|
content = i18n("Incoming call from %1", phoneNumber);
|
2013-08-16 05:23:03 +01:00
|
|
|
} else if (event == "missedCall") {
|
2013-07-04 18:17:22 +01:00
|
|
|
type = "missedCall";
|
2013-06-06 04:57:06 +01:00
|
|
|
icon = "call-start";
|
2013-09-04 20:19:02 +01:00
|
|
|
content = i18n("Missed call from %1", phoneNumber);
|
2013-08-16 05:23:03 +01:00
|
|
|
} else if (event == "sms") {
|
2013-06-06 04:57:06 +01:00
|
|
|
type = "smsReceived";
|
|
|
|
icon = "mail-receive";
|
2013-09-13 18:20:24 +01:00
|
|
|
QString messageBody = np.get<QString>("messageBody","");
|
|
|
|
content = i18n("SMS from %1: %2", phoneNumber, messageBody);
|
2013-08-18 17:06:56 +01:00
|
|
|
} else if (event == "talking") {
|
|
|
|
return NULL;
|
2013-06-06 04:57:06 +01:00
|
|
|
} else {
|
2013-07-04 18:17:22 +01:00
|
|
|
//TODO: return NULL if !debug
|
2013-06-06 04:57:06 +01:00
|
|
|
type = "unknownEvent";
|
|
|
|
icon = "pda";
|
2013-09-04 20:19:02 +01:00
|
|
|
content = i18n("Unknown telephony event: %2", event);
|
2013-06-06 04:57:06 +01:00
|
|
|
}
|
|
|
|
|
2013-11-06 21:16:55 +00:00
|
|
|
kDebug(kdeconnect_kded()) << "Creating notification with type:" << type;
|
2013-06-06 04:57:06 +01:00
|
|
|
|
2013-10-11 14:19:23 +01:00
|
|
|
KNotification* notification = new KNotification(type, KNotification::CloseOnTimeout, this); //, KNotification::Persistent
|
2013-06-06 04:57:06 +01:00
|
|
|
notification->setPixmap(KIcon(icon).pixmap(48, 48));
|
2014-02-28 17:50:06 +00:00
|
|
|
notification->setComponentData(KComponentData("kdeconnect", "kdeconnect-kded"));
|
2013-06-06 04:57:06 +01:00
|
|
|
notification->setTitle(title);
|
2013-07-04 18:17:22 +01:00
|
|
|
notification->setText(content);
|
2013-06-06 04:57:06 +01:00
|
|
|
|
|
|
|
return notification;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2013-08-13 22:26:09 +01:00
|
|
|
bool TelephonyPlugin::receivePackage(const NetworkPackage& np)
|
2013-07-26 15:21:19 +01:00
|
|
|
{
|
2013-07-04 18:17:22 +01:00
|
|
|
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,
|
2013-07-04 18:17:22 +01:00
|
|
|
//...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
|
|
|
|
2013-07-04 18:17:22 +01:00
|
|
|
} else {
|
2013-06-06 04:57:06 +01:00
|
|
|
|
2013-08-13 22:26:09 +01:00
|
|
|
KNotification* n = createNotification(np);
|
2013-07-04 18:17:22 +01:00
|
|
|
if (n != NULL) n->sendEvent();
|
2013-06-06 04:57:06 +01:00
|
|
|
|
2013-07-04 18:17:22 +01:00
|
|
|
}
|
2013-06-06 04:57:06 +01:00
|
|
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
}
|