kdeconnect-kde/plugins/lockdevice/lockdeviceplugin.cpp
Nicolas Fella ed91dfb1ec [plugins/lockdevice] Port to use logind interface
KScreenLocker does not allow unlocking the screen via the screensaver interface by design (https://bugs.kde.org/show_bug.cgi?id=425616).

However it allows to do it via the logind interface, so let's use that here.

While at it also refactor the code and properly track and send the state, so the other device can show an appropriate label.
2020-08-28 11:58:22 +00:00

117 lines
3.4 KiB
C++

/**
* SPDX-FileCopyrightText: 2015 Aleix Pol Gonzalez <aleixpol@kde.org>
*
* SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
*/
#include "lockdeviceplugin.h"
#include <KLocalizedString>
#include <KPluginFactory>
#include <QDebug>
#include "plugin_lock_debug.h"
#include <core/device.h>
#include <dbushelper.h>
K_PLUGIN_CLASS_WITH_JSON(LockDevicePlugin, "kdeconnect_lockdevice.json")
LockDevicePlugin::LockDevicePlugin(QObject* parent, const QVariantList& args)
: KdeConnectPlugin(parent, args)
, m_remoteLocked(false)
, m_login1Interface(QStringLiteral("org.freedesktop.login1"), QStringLiteral("/org/freedesktop/login1/session/auto"), QDBusConnection::systemBus())
// Connect on all paths since the PropertiesChanged signal is only emitted
// from /org/freedesktop/login1/session/<sessionId> and not /org/freedesktop/login1/session/auto
, m_propertiesInterface(QStringLiteral("org.freedesktop.login1"), QString(), QDBusConnection::systemBus())
{
if (!m_login1Interface.isValid()) {
qCWarning(KDECONNECT_PLUGIN_LOCKREMOTE) << "Could not connect to logind interface" << m_login1Interface.lastError();
}
if (!m_propertiesInterface.isValid()) {
qCWarning(KDECONNECT_PLUGIN_LOCKREMOTE) << "Could not connect to logind properties interface" << m_propertiesInterface.lastError();
}
connect(&m_propertiesInterface, &OrgFreedesktopDBusPropertiesInterface::PropertiesChanged, this, [this](const QString& interface, const QVariantMap& properties, QStringList invalidatedProperties ) {
Q_UNUSED(invalidatedProperties);
if (interface != QLatin1String("org.freedesktop.login1.Session")) {
return;
}
if (!properties.contains(QStringLiteral("LockedHint"))) {
return;
}
m_localLocked = properties.value(QStringLiteral("LockedHint")).toBool();
sendState();
});
m_localLocked = m_login1Interface.lockedHint();
}
LockDevicePlugin::~LockDevicePlugin()
{
}
bool LockDevicePlugin::isLocked() const
{
return m_remoteLocked;
}
void LockDevicePlugin::setLocked(bool locked)
{
NetworkPacket np(PACKET_TYPE_LOCK_REQUEST, {{QStringLiteral("setLocked"), locked}});
sendPacket(np);
}
bool LockDevicePlugin::receivePacket(const NetworkPacket & np)
{
if (np.has(QStringLiteral("isLocked"))) {
bool locked = np.get<bool>(QStringLiteral("isLocked"));
if (m_remoteLocked != locked) {
m_remoteLocked = locked;
Q_EMIT lockedChanged(locked);
}
}
if (np.has(QStringLiteral("requestLocked"))) {
sendState();
}
if (np.has(QStringLiteral("setLocked"))) {
const bool lock = np.get<bool>(QStringLiteral("setLocked"));
if (lock) {
m_login1Interface.Lock();
} else {
m_login1Interface.Unlock();
}
sendState();
}
return true;
}
void LockDevicePlugin::sendState()
{
NetworkPacket np(PACKET_TYPE_LOCK, {{QStringLiteral("isLocked"), m_localLocked}});
sendPacket(np);
}
void LockDevicePlugin::connected()
{
NetworkPacket np(PACKET_TYPE_LOCK_REQUEST, {{QStringLiteral("requestLocked"), QVariant()}});
sendPacket(np);
}
QString LockDevicePlugin::dbusPath() const
{
return QStringLiteral("/modules/kdeconnect/devices/") + device()->id() + QStringLiteral("/lockdevice");
}
#include "lockdeviceplugin.moc"