1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152
|
/*
* Copyright (C) 2013-2016 Canonical Ltd.
*
* 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; version 3.
*
* 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/>.
*/
#include "AccountsServiceDBusAdaptor.h"
#include <QDBusConnection>
#include <QDBusConnectionInterface>
#include <QDBusMessage>
#include <QDBusVariant>
#include <QDebug>
AccountsServiceDBusAdaptor::AccountsServiceDBusAdaptor(QObject* parent)
: QObject(parent),
m_accountsManager(nullptr),
m_ignoreNextChanged(false)
{
QDBusConnection connection = QDBusConnection::SM_BUSNAME();
QDBusConnectionInterface *interface = connection.interface();
interface->startService(QStringLiteral("org.freedesktop.Accounts"));
m_accountsManager = new QDBusInterface(QStringLiteral("org.freedesktop.Accounts"),
QStringLiteral("/org/freedesktop/Accounts"),
QStringLiteral("org.freedesktop.Accounts"),
connection, this);
}
QDBusPendingReply<QVariantMap> AccountsServiceDBusAdaptor::getAllPropertiesAsync(const QString &user, const QString &interface)
{
QDBusInterface *iface = getUserInterface(user);
if (iface != nullptr && iface->isValid()) {
return iface->asyncCall(QStringLiteral("GetAll"), interface);
}
return QDBusPendingReply<QVariantMap>(QDBusMessage::createError(QDBusError::Other, QStringLiteral("Invalid Interface")));
}
QDBusPendingReply<QVariant> AccountsServiceDBusAdaptor::getUserPropertyAsync(const QString &user, const QString &interface, const QString &property)
{
QDBusInterface *iface = getUserInterface(user);
if (iface != nullptr && iface->isValid()) {
return iface->asyncCall(QStringLiteral("Get"), interface, property);
}
return QDBusPendingReply<QVariant>(QDBusMessage::createError(QDBusError::Other, QStringLiteral("Invalid Interface")));
}
QDBusPendingCall AccountsServiceDBusAdaptor::setUserPropertyAsync(const QString &user, const QString &interface, const QString &property, const QVariant &value)
{
QDBusInterface *iface = getUserInterface(user);
if (iface != nullptr && iface->isValid()) {
if (interface == QStringLiteral("org.freedesktop.Accounts.User")) {
// Standard AccountsService properties use special set methods.
// It will not let you use the usual DBus property setters.
QDBusInterface accountsIface(iface->service(),
iface->path(),
interface,
iface->connection());
return accountsIface.asyncCall(QStringLiteral("Set") + property, value);
} else {
// The value needs to be carefully wrapped
return iface->asyncCall(QStringLiteral("Set"), interface, property, QVariant::fromValue(QDBusVariant(value)));
}
}
return QDBusPendingCall::fromCompletedCall(QDBusMessage::createError(QDBusError::Other, QStringLiteral("Invalid Interface")));
}
void AccountsServiceDBusAdaptor::propertiesChangedSlot(const QString &interface, const QVariantMap &changed, const QStringList &invalid)
{
// Merge changed and invalidated together
QStringList combined;
combined << invalid;
combined << changed.keys();
combined.removeDuplicates();
Q_EMIT propertiesChanged(getUserForPath(message().path()), interface, combined);
// In case a non-builtin property changes, we're getting propertiesChanged *and* changed
// As the generic changed requires asking back over DBus, it's quite slow to process.
// We don't want to trigger that when we know it's not a built-in property change.
m_ignoreNextChanged = true;
}
void AccountsServiceDBusAdaptor::maybeChangedSlot()
{
if (!m_ignoreNextChanged) {
Q_EMIT maybeChanged(getUserForPath(message().path()));
}
m_ignoreNextChanged = false;
}
QString AccountsServiceDBusAdaptor::getUserForPath(const QString &path) const
{
QMap<QString, QDBusInterface *>::const_iterator i;
for (i = m_users.constBegin(); i != m_users.constEnd(); ++i) {
if (i.value()->path() == path) {
return i.key();
}
}
return QString();
}
QDBusInterface *AccountsServiceDBusAdaptor::getUserInterface(const QString &user)
{
QDBusInterface *iface = m_users.value(user);
if (iface == nullptr && m_accountsManager->isValid()) {
QDBusReply<QDBusObjectPath> answer = m_accountsManager->call(QStringLiteral("FindUserByName"), user);
if (answer.isValid()) {
const QString path = answer.value().path();
iface = new QDBusInterface(QStringLiteral("org.freedesktop.Accounts"),
path,
QStringLiteral("org.freedesktop.DBus.Properties"),
m_accountsManager->connection(), this);
// With its own pre-defined properties, AccountsService is oddly
// close-lipped. It won't send out proper DBus.Properties notices,
// but it does have one catch-all Changed() signal. So let's
// listen to that.
iface->connection().connect(
iface->service(),
path,
QStringLiteral("org.freedesktop.Accounts.User"),
QStringLiteral("Changed"),
this,
SLOT(maybeChangedSlot()));
// But custom properties do send out the right notifications, so
// let's still listen there.
iface->connection().connect(
iface->service(),
path,
QStringLiteral("org.freedesktop.DBus.Properties"),
QStringLiteral("PropertiesChanged"),
this,
SLOT(propertiesChangedSlot(QString, QVariantMap, QStringList)));
m_users.insert(user, iface);
} else {
qWarning() << "Couldn't get user interface" << answer.error().name() << answer.error().message();
}
}
return iface;
}
|