65 lines
2.4 KiB
C++
65 lines
2.4 KiB
C++
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
|
*
|
|
* Copyright (C) 2013 - 2024, nymea GmbH
|
|
* Copyright (C) 2024 - 2025, chargebyte austria GmbH
|
|
*
|
|
* This file is part of nymea-networkmanager.
|
|
*
|
|
* nymea-networkmanager 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 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* nymea-networkmanager 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 nymea-networkmanager. If not, see <https://www.gnu.org/licenses/>.
|
|
*
|
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
|
|
|
#include "pushbuttonagent.h"
|
|
|
|
#include <QDBusMessage>
|
|
#include <QDBusObjectPath>
|
|
#include <QLoggingCategory>
|
|
|
|
Q_DECLARE_LOGGING_CATEGORY(dcNymeaService)
|
|
|
|
PushButtonAgent::PushButtonAgent(QObject *parent) :
|
|
QObject(parent)
|
|
{
|
|
|
|
}
|
|
|
|
bool PushButtonAgent::init(QDBusConnection::BusType busType)
|
|
{
|
|
QDBusConnection bus = busType == QDBusConnection::SessionBus ? QDBusConnection::sessionBus() : QDBusConnection::systemBus();
|
|
|
|
bool result = bus.registerObject("/io/nymea/nymea-networkmanager/pushbutton", this, QDBusConnection::ExportScriptableContents);
|
|
if (!result) {
|
|
qCWarning(dcNymeaService()) << "PushButtonAgent: Error registering PushButton agent on D-Bus.";
|
|
return false;
|
|
}
|
|
|
|
QDBusMessage message = QDBusMessage::createMethodCall("io.guh.nymead", "/io/guh/nymead/UserManager", QString(), "RegisterButtonAgent");
|
|
message << QVariant::fromValue(QDBusObjectPath("/io/nymea/nymea-networkmanager/pushbutton"));
|
|
QDBusMessage reply = bus.call(message);
|
|
if (!reply.errorName().isEmpty()) {
|
|
qCWarning(dcNymeaService()) << "PushButtonAgent: Error registering PushButton agent:" << reply.errorMessage();
|
|
return false;
|
|
}
|
|
qCDebug(dcNymeaService()) << "PushButton agent registered.";
|
|
return true;
|
|
}
|
|
|
|
void PushButtonAgent::sendButtonPressed()
|
|
{
|
|
qCDebug(dcNymeaService()) << "PushButtonAgent: Sending button pressed event.";
|
|
emit PushButtonPressed();
|
|
}
|