2013-07-04 18:17:22 +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 04:14:46 +01:00
|
|
|
#include "pingplugin.h"
|
2013-07-04 18:17:22 +01:00
|
|
|
|
2013-08-13 04:07:32 +01:00
|
|
|
#include <KNotification>
|
2014-09-13 00:04:48 +01:00
|
|
|
#include <QIcon>
|
2014-09-21 23:45:41 +01:00
|
|
|
#include <QDebug>
|
2013-09-04 20:19:02 +01:00
|
|
|
#include <KLocalizedString>
|
2013-07-04 18:17:22 +01:00
|
|
|
|
2014-06-14 15:34:00 +01:00
|
|
|
#include <core/device.h>
|
2014-06-27 17:21:40 +01:00
|
|
|
#include <QDBusConnection>
|
2013-11-06 21:16:55 +00:00
|
|
|
|
2013-08-13 04:14:46 +01:00
|
|
|
K_PLUGIN_FACTORY( KdeConnectPluginFactory, registerPlugin< PingPlugin >(); )
|
2013-08-12 15:09:52 +01:00
|
|
|
|
2014-09-21 23:45:41 +01:00
|
|
|
Q_LOGGING_CATEGORY(KDECONNECT_PLUGIN_PING, "kdeconnect.plugin.ping");
|
|
|
|
|
2013-08-13 04:14:46 +01:00
|
|
|
PingPlugin::PingPlugin(QObject* parent, const QVariantList& args)
|
|
|
|
: KdeConnectPlugin(parent, args)
|
2013-08-12 15:09:52 +01:00
|
|
|
{
|
2014-09-21 23:45:41 +01:00
|
|
|
// qCDebug(KDECONNECT_PLUGIN_PING) << "Ping plugin constructor for device" << device()->name();
|
2013-08-12 15:09:52 +01:00
|
|
|
}
|
|
|
|
|
2013-08-14 00:35:12 +01:00
|
|
|
PingPlugin::~PingPlugin()
|
|
|
|
{
|
2014-09-21 23:45:41 +01:00
|
|
|
// qCDebug(KDECONNECT_PLUGIN_PING) << "Ping plugin destructor for device" << device()->name();
|
2013-08-14 00:35:12 +01:00
|
|
|
}
|
|
|
|
|
2013-08-13 04:14:46 +01:00
|
|
|
bool PingPlugin::receivePackage(const NetworkPackage& np)
|
2013-07-26 15:21:19 +01:00
|
|
|
{
|
2013-07-04 18:17:22 +01:00
|
|
|
KNotification* notification = new KNotification("pingReceived"); //KNotification::Persistent
|
2014-09-13 00:04:48 +01:00
|
|
|
notification->setPixmap(QIcon::fromTheme("dialog-ok").pixmap(48, 48));
|
2014-06-16 19:02:07 +01:00
|
|
|
notification->setComponentName("kdeconnect");
|
2013-08-16 08:27:32 +01:00
|
|
|
notification->setTitle(device()->name());
|
2013-09-24 13:14:34 +01:00
|
|
|
notification->setText(np.get<QString>("message",i18n("Ping!"))); //This can be a source of spam
|
2013-07-04 18:17:22 +01:00
|
|
|
notification->sendEvent();
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
}
|
2014-06-16 19:02:07 +01:00
|
|
|
|
2014-06-27 17:21:40 +01:00
|
|
|
void PingPlugin::sendPing()
|
|
|
|
{
|
|
|
|
NetworkPackage np(PACKAGE_TYPE_PING);
|
|
|
|
bool success = sendPackage(np);
|
2014-09-21 23:45:41 +01:00
|
|
|
qCDebug(KDECONNECT_PLUGIN_PING) << "sendPing:" << success;
|
2014-06-27 17:21:40 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void PingPlugin::connected()
|
|
|
|
{
|
|
|
|
QDBusConnection::sessionBus().registerObject(dbusPath(), this, QDBusConnection::ExportAllContents);
|
|
|
|
}
|
|
|
|
|
|
|
|
QString PingPlugin::dbusPath() const
|
|
|
|
{
|
|
|
|
return "/modules/kdeconnect/devices/" + device()->id() + "/ping";
|
|
|
|
}
|
2014-07-01 22:59:38 +01:00
|
|
|
|
2014-06-16 19:02:07 +01:00
|
|
|
#include "pingplugin.moc"
|
2014-07-01 22:59:38 +01:00
|
|
|
|