101 lines
2.8 KiB
C++
101 lines
2.8 KiB
C++
/**
|
|
* SPDX-FileCopyrightText: 2013 Albert Vaca <albertvaka@gmail.com>
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
|
|
*/
|
|
|
|
#include "runcommandplugin.h"
|
|
|
|
#include <KPluginFactory>
|
|
|
|
#include <QDBusConnection>
|
|
#include <QDir>
|
|
#include <QJsonDocument>
|
|
#include <QProcess>
|
|
#include <QSettings>
|
|
|
|
#ifdef SAILFISHOS
|
|
#define KCMUTILS_VERSION 0
|
|
#else
|
|
#include <KShell>
|
|
#include <kcmutils_version.h>
|
|
#endif
|
|
|
|
#include <core/daemon.h>
|
|
#include <core/device.h>
|
|
#include <core/networkpacket.h>
|
|
#include <core/openconfig.h>
|
|
|
|
#include "plugin_runcommand_debug.h"
|
|
|
|
#define PACKET_TYPE_RUNCOMMAND QStringLiteral("kdeconnect.runcommand")
|
|
|
|
#define COMMAND "/bin/sh"
|
|
#define ARGS "-c"
|
|
|
|
K_PLUGIN_CLASS_WITH_JSON(RunCommandPlugin, "kdeconnect_runcommand.json")
|
|
|
|
RunCommandPlugin::RunCommandPlugin(QObject *parent, const QVariantList &args)
|
|
: KdeConnectPlugin(parent, args)
|
|
{
|
|
connect(config(), &KdeConnectPluginConfig::configChanged, this, &RunCommandPlugin::configChanged);
|
|
}
|
|
|
|
RunCommandPlugin::~RunCommandPlugin()
|
|
{
|
|
}
|
|
|
|
bool RunCommandPlugin::receivePacket(const NetworkPacket &np)
|
|
{
|
|
if (np.get<bool>(QStringLiteral("requestCommandList"), false)) {
|
|
sendConfig();
|
|
return true;
|
|
}
|
|
|
|
if (np.has(QStringLiteral("key"))) {
|
|
QJsonDocument commandsDocument = QJsonDocument::fromJson(config()->getByteArray(QStringLiteral("commands"), "{}"));
|
|
QJsonObject commands = commandsDocument.object();
|
|
QString key = np.get<QString>(QStringLiteral("key"));
|
|
QJsonValue value = commands[key];
|
|
if (value == QJsonValue::Undefined) {
|
|
qCWarning(KDECONNECT_PLUGIN_RUNCOMMAND) << key << "is not a configured command";
|
|
}
|
|
const QJsonObject commandJson = value.toObject();
|
|
qCInfo(KDECONNECT_PLUGIN_RUNCOMMAND) << "Running:" << COMMAND << ARGS << commandJson[QStringLiteral("command")].toString();
|
|
#ifdef Q_OS_WIN
|
|
QProcess::startDetached(commandJson[QStringLiteral("command")].toString());
|
|
#else
|
|
QProcess::startDetached(QStringLiteral(COMMAND), QStringList() << QStringLiteral(ARGS) << commandJson[QStringLiteral("command")].toString());
|
|
#endif
|
|
return true;
|
|
} else if (np.has(QStringLiteral("setup"))) {
|
|
OpenConfig oc;
|
|
oc.openConfiguration(device()->id(), QStringLiteral("kdeconnect_runcommand"));
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
void RunCommandPlugin::connected()
|
|
{
|
|
sendConfig();
|
|
}
|
|
|
|
void RunCommandPlugin::sendConfig()
|
|
{
|
|
QString commands = config()->getString(QStringLiteral("commands"), QStringLiteral("{}"));
|
|
NetworkPacket np(PACKET_TYPE_RUNCOMMAND, {{QStringLiteral("commandList"), commands}});
|
|
|
|
#if KCMUTILS_VERSION >= QT_VERSION_CHECK(5, 45, 0)
|
|
np.set<bool>(QStringLiteral("canAddCommand"), true);
|
|
#endif
|
|
|
|
sendPacket(np);
|
|
}
|
|
|
|
void RunCommandPlugin::configChanged()
|
|
{
|
|
sendConfig();
|
|
}
|
|
|
|
#include "runcommandplugin.moc"
|