kdeconnect-kde/plugins/telephony/telephonyplugin.cpp

161 lines
6 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 "telephonyplugin.h"
2013-06-06 04:57:06 +01:00
#include "sendsmsdialog.h"
2013-09-04 20:19:02 +01:00
#include <KLocalizedString>
#include <QIcon>
#include <QDebug>
#include <QDBusPendingCall>
#include <KPluginFactory>
K_PLUGIN_FACTORY_WITH_JSON( KdeConnectPluginFactory, "kdeconnect_telephony.json", registerPlugin< TelephonyPlugin >(); )
Q_LOGGING_CATEGORY(KDECONNECT_PLUGIN_TELEPHONY, "kdeconnect.plugin.telephony")
TelephonyPlugin::TelephonyPlugin(QObject *parent, const QVariantList &args)
: KdeConnectPlugin(parent, args)
, m_telepathyInterface("org.freedesktop.Telepathy.ConnectionManager.kdeconnect", "/kdeconnect")
2013-08-07 10:29:56 +01:00
{
connect(&m_telepathyInterface, SIGNAL(messageReceived(QString,QString)), SLOT(sendSms(QString,QString)));
2013-08-07 10:29:56 +01:00
}
KNotification* TelephonyPlugin::createNotification(const NetworkPackage& np)
{
2014-03-04 01:34:09 +00:00
const QString event = np.get<QString>("event");
const QString phoneNumber = np.get<QString>("phoneNumber", i18n("unknown number"));
const QString contactName = np.get<QString>("contactName", phoneNumber);
const QByteArray phoneThumbnail = QByteArray::fromBase64(np.get<QByteArray>("phoneThumbnail", ""));
2013-06-06 04:57:06 +01:00
// In case telepathy can handle the message, don't do anything else
if (event == QLatin1String("sms") && m_telepathyInterface.isValid()) {
qCDebug(KDECONNECT_PLUGIN_TELEPHONY) << "Passing a text message to the telepathy interface";
const QString messageBody = np.get<QString>("messageBody","");
m_telepathyInterface.asyncCall("sendMessage", phoneNumber, contactName, messageBody);
return nullptr;
}
2014-03-04 01:34:09 +00:00
QString content, type, icon;
KNotification::NotificationFlags flags = KNotification::CloseOnTimeout | KNotification::CloseWhenWidgetActivated;
2014-03-04 01:34:09 +00:00
const QString title = device()->name();
2013-08-07 10:29:56 +01:00
if (event == "ringing") {
type = QStringLiteral("callReceived");
icon = QStringLiteral("call-start");
content = i18n("Incoming call from %1", contactName);
} else if (event == "missedCall") {
type = QStringLiteral("missedCall");
icon = QStringLiteral("call-start");
content = i18n("Missed call from %1", contactName);
flags |= KNotification::Persistent;
} else if (event == "sms") {
type = QStringLiteral("smsReceived");
icon = QStringLiteral("mail-receive");
QString messageBody = np.get<QString>("messageBody", "");
content = i18n("SMS from %1<br>%2", contactName, messageBody);
flags |= KNotification::Persistent;
2013-08-18 17:06:56 +01:00
} else if (event == "talking") {
return nullptr;
2013-06-06 04:57:06 +01:00
} else {
#ifndef NDEBUG
return nullptr;
2014-10-10 19:47:35 +01:00
#else
type = QStringLiteral("callReceived");
icon = QStringLiteral("phone");
content = i18n("Unknown telephony event: %1", event);
2014-10-10 19:47:35 +01:00
#endif
2013-06-06 04:57:06 +01:00
}
qCDebug(KDECONNECT_PLUGIN_TELEPHONY) << "Creating notification with type:" << type;
2013-06-06 04:57:06 +01:00
KNotification* notification = new KNotification(type, flags, this);
if (!phoneThumbnail.isEmpty()) {
QPixmap photo;
photo.loadFromData(phoneThumbnail, "JPEG");
notification->setPixmap(photo);
} else {
notification->setIconName(icon);
}
notification->setComponentName("kdeconnect");
2013-06-06 04:57:06 +01:00
notification->setTitle(title);
notification->setText(content);
2013-06-06 04:57:06 +01:00
if (event == QLatin1String("ringing")) {
notification->setActions( QStringList(i18n("Mute Call")) );
connect(notification, &KNotification::action1Activated, this, &TelephonyPlugin::sendMutePackage);
} else if (event == QLatin1String("sms")) {
const QString messageBody = np.get<QString>("messageBody","");
notification->setActions( QStringList(i18n("Reply")) );
notification->setProperty("phoneNumber", phoneNumber);
notification->setProperty("contactName", contactName);
notification->setProperty("originalMessage", messageBody);
connect(notification, &KNotification::action1Activated, this, &TelephonyPlugin::showSendSmsDialog);
}
2013-06-06 04:57:06 +01:00
return notification;
}
bool TelephonyPlugin::receivePackage(const NetworkPackage& np)
{
if (np.get<bool>("isCancel")) {
2013-06-06 04:57:06 +01:00
//TODO: Clear the old notification
return true;
}
KNotification* n = createNotification(np);
if (n != nullptr) n->sendEvent();
2013-06-06 04:57:06 +01:00
return true;
}
void TelephonyPlugin::sendMutePackage()
{
NetworkPackage package(PACKAGE_TYPE_TELEPHONY_REQUEST, {{"action", "mute"}});
sendPackage(package);
}
void TelephonyPlugin::sendSms(const QString& phoneNumber, const QString& messageBody)
{
NetworkPackage np(PACKAGE_TYPE_SMS_REQUEST, {
{"sendSms", true},
{"phoneNumber", phoneNumber},
{"messageBody", messageBody}
});
sendPackage(np);
}
void TelephonyPlugin::showSendSmsDialog()
{
QString phoneNumber = sender()->property("phoneNumber").toString();
QString contactName = sender()->property("contactName").toString();
QString originalMessage = sender()->property("originalMessage").toString();
SendSmsDialog* dialog = new SendSmsDialog(originalMessage, phoneNumber, contactName);
connect(dialog, SIGNAL(sendSms(QString,QString)), this, SLOT(sendSms(QString,QString)));
dialog->show();
}
#include "telephonyplugin.moc"