2013-07-04 18:17:22 +01:00
|
|
|
/**
|
2020-08-17 10:48:10 +01:00
|
|
|
* SPDX-FileCopyrightText: 2013 Albert Vaca <albertvaka@gmail.com>
|
2013-07-04 18:17:22 +01:00
|
|
|
*
|
2020-08-17 10:48:10 +01:00
|
|
|
* SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
|
2013-07-04 18:17:22 +01:00
|
|
|
*/
|
|
|
|
|
2013-08-13 04:14:46 +01:00
|
|
|
#include "pingplugin.h"
|
2013-07-04 18:17:22 +01:00
|
|
|
|
2013-09-04 20:19:02 +01:00
|
|
|
#include <KLocalizedString>
|
2014-09-22 01:37:10 +01:00
|
|
|
#include <KPluginFactory>
|
2015-03-10 04:59:36 +00:00
|
|
|
|
|
|
|
#include <QDebug>
|
|
|
|
#include <QDBusConnection>
|
|
|
|
|
2014-06-14 15:34:00 +01:00
|
|
|
#include <core/device.h>
|
2018-03-18 11:42:15 +00:00
|
|
|
#include <core/daemon.h>
|
2013-11-06 21:16:55 +00:00
|
|
|
|
2020-05-26 17:55:47 +01:00
|
|
|
#include "plugin_ping_debug.h"
|
2013-08-12 15:09:52 +01:00
|
|
|
|
2020-05-26 17:55:47 +01:00
|
|
|
K_PLUGIN_CLASS_WITH_JSON(PingPlugin, "kdeconnect_ping.json")
|
2014-09-21 23:45:41 +01:00
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2018-03-04 19:48:51 +00:00
|
|
|
bool PingPlugin::receivePacket(const NetworkPacket& np)
|
2013-07-26 15:21:19 +01:00
|
|
|
{
|
2018-03-18 11:42:15 +00:00
|
|
|
Daemon::instance()->sendSimpleNotification(QStringLiteral("pingReceived"), device()->name(), np.get<QString>(QStringLiteral("message"),i18n("Ping!")), QStringLiteral("dialog-ok"));
|
2013-07-04 18:17:22 +01:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2014-06-16 19:02:07 +01:00
|
|
|
|
2014-06-27 17:21:40 +01:00
|
|
|
void PingPlugin::sendPing()
|
|
|
|
{
|
2018-03-04 19:48:51 +00:00
|
|
|
NetworkPacket np(PACKET_TYPE_PING);
|
|
|
|
bool success = sendPacket(np);
|
2014-09-21 23:45:41 +01:00
|
|
|
qCDebug(KDECONNECT_PLUGIN_PING) << "sendPing:" << success;
|
2014-06-27 17:21:40 +01:00
|
|
|
}
|
|
|
|
|
2014-09-27 04:39:38 +01:00
|
|
|
void PingPlugin::sendPing(const QString& customMessage)
|
|
|
|
{
|
2018-03-04 19:48:51 +00:00
|
|
|
NetworkPacket np(PACKET_TYPE_PING);
|
2014-09-27 04:39:38 +01:00
|
|
|
if (!customMessage.isEmpty()) {
|
2016-11-26 14:38:08 +00:00
|
|
|
np.set(QStringLiteral("message"), customMessage);
|
2014-09-27 04:39:38 +01:00
|
|
|
}
|
2018-03-04 19:48:51 +00:00
|
|
|
bool success = sendPacket(np);
|
2014-11-04 18:12:29 +00:00
|
|
|
qCDebug(KDECONNECT_PLUGIN_PING) << "sendPing:" << success;
|
2014-09-27 04:39:38 +01:00
|
|
|
}
|
|
|
|
|
2014-06-27 17:21:40 +01:00
|
|
|
QString PingPlugin::dbusPath() const
|
|
|
|
{
|
2019-06-10 15:40:28 +01:00
|
|
|
return QStringLiteral("/modules/kdeconnect/devices/") + device()->id() + QStringLiteral("/ping");
|
2014-06-27 17:21:40 +01:00
|
|
|
}
|
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
|
|
|
|