2015-07-22 02:37:34 +01:00
|
|
|
/**
|
|
|
|
* Copyright 2015 Aleix Pol Gonzalez <aleixpol@kde.org>
|
|
|
|
*
|
|
|
|
* 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
|
2019-03-23 16:29:26 +00:00
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2015-07-22 02:37:34 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "lockdeviceplugin.h"
|
|
|
|
|
|
|
|
#include <KLocalizedString>
|
|
|
|
#include <KPluginFactory>
|
|
|
|
|
|
|
|
#include <QDebug>
|
|
|
|
#include "screensaverdbusinterface.h"
|
2020-05-26 17:55:47 +01:00
|
|
|
#include "plugin_lock_debug.h"
|
2015-07-22 02:37:34 +01:00
|
|
|
|
|
|
|
#include <core/device.h>
|
2019-06-09 16:28:49 +01:00
|
|
|
#include <dbushelper.h>
|
2015-07-22 02:37:34 +01:00
|
|
|
|
2019-06-12 21:16:54 +01:00
|
|
|
K_PLUGIN_CLASS_WITH_JSON(LockDevicePlugin, "kdeconnect_lockdevice.json")
|
2015-07-22 02:37:34 +01:00
|
|
|
|
|
|
|
LockDevicePlugin::LockDevicePlugin(QObject* parent, const QVariantList& args)
|
|
|
|
: KdeConnectPlugin(parent, args)
|
|
|
|
, m_remoteLocked(false)
|
|
|
|
, m_iface(nullptr)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
LockDevicePlugin::~LockDevicePlugin()
|
|
|
|
{
|
|
|
|
delete m_iface;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool LockDevicePlugin::isLocked() const
|
|
|
|
{
|
|
|
|
return m_remoteLocked;
|
|
|
|
}
|
|
|
|
void LockDevicePlugin::setLocked(bool locked)
|
|
|
|
{
|
2019-06-10 15:40:28 +01:00
|
|
|
NetworkPacket np(PACKET_TYPE_LOCK_REQUEST, {{QStringLiteral("setLocked"), locked}});
|
2018-03-04 19:48:51 +00:00
|
|
|
sendPacket(np);
|
2015-07-22 02:37:34 +01:00
|
|
|
}
|
|
|
|
|
2018-03-04 19:48:51 +00:00
|
|
|
bool LockDevicePlugin::receivePacket(const NetworkPacket & np)
|
2015-07-22 02:37:34 +01:00
|
|
|
{
|
2016-11-26 14:38:08 +00:00
|
|
|
if (np.has(QStringLiteral("isLocked"))) {
|
|
|
|
bool locked = np.get<bool>(QStringLiteral("isLocked"));
|
2015-07-22 02:37:34 +01:00
|
|
|
if (m_remoteLocked != locked) {
|
|
|
|
m_remoteLocked = locked;
|
|
|
|
Q_EMIT lockedChanged(locked);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-26 14:38:08 +00:00
|
|
|
bool sendState = np.has(QStringLiteral("requestLocked"));
|
|
|
|
if (np.has(QStringLiteral("setLocked"))) {
|
|
|
|
iface()->SetActive(np.get<bool>(QStringLiteral("setLocked")));
|
2015-07-22 02:37:34 +01:00
|
|
|
sendState = true;
|
|
|
|
}
|
|
|
|
if (sendState) {
|
2019-06-10 15:40:28 +01:00
|
|
|
NetworkPacket np(PACKET_TYPE_LOCK, QVariantMap {{QStringLiteral("isLocked"), QVariant::fromValue<bool>(iface()->GetActive())}});
|
2018-03-04 19:48:51 +00:00
|
|
|
sendPacket(np);
|
2015-07-22 02:37:34 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
OrgFreedesktopScreenSaverInterface* LockDevicePlugin::iface()
|
|
|
|
{
|
|
|
|
if (!m_iface) {
|
2019-08-14 16:36:19 +01:00
|
|
|
m_iface = new OrgFreedesktopScreenSaverInterface(QStringLiteral("org.freedesktop.ScreenSaver"), QStringLiteral("/org/freedesktop/ScreenSaver"), DBusHelper::sessionBus());
|
2015-07-22 02:37:34 +01:00
|
|
|
if(!m_iface->isValid())
|
|
|
|
qCWarning(KDECONNECT_PLUGIN_LOCKREMOTE) << "Couldn't connect to the ScreenSaver interface";
|
|
|
|
}
|
|
|
|
return m_iface;
|
|
|
|
}
|
|
|
|
|
|
|
|
void LockDevicePlugin::connected()
|
|
|
|
{
|
2019-06-10 15:40:28 +01:00
|
|
|
NetworkPacket np(PACKET_TYPE_LOCK_REQUEST, {{QStringLiteral("requestLocked"), QVariant()}});
|
2018-03-04 19:48:51 +00:00
|
|
|
sendPacket(np);
|
2015-07-22 02:37:34 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
QString LockDevicePlugin::dbusPath() const
|
|
|
|
{
|
2019-06-10 15:40:28 +01:00
|
|
|
return QStringLiteral("/modules/kdeconnect/devices/") + device()->id() + QStringLiteral("/lockdevice");
|
2015-07-22 02:37:34 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#include "lockdeviceplugin.moc"
|