// SPDX-License-Identifier: LGPL-3.0-or-later /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * Copyright (C) 2013 - 2024, nymea GmbH * Copyright (C) 2024 - 2025, chargebyte austria GmbH * * This file is part of nymea. * * nymea is free software: you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public License * as published by the Free Software Foundation, either version 3 * of the License, or (at your option) any later version. * * nymea 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 Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with nymea. If not, see . * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ #ifndef CONFIGURATIONHANDLER_H #define CONFIGURATIONHANDLER_H #include #include "jsonrpc/jsonhandler.h" #include "nymeaconfiguration.h" namespace nymeaserver { class ConfigurationHandler : public JsonHandler { Q_OBJECT public: ConfigurationHandler(QObject *parent = nullptr); QString name() const override; Q_INVOKABLE JsonReply *GetConfigurations(const QVariantMap ¶ms) const; Q_INVOKABLE JsonReply *GetTimeZones(const QVariantMap ¶ms) const; Q_INVOKABLE JsonReply *GetAvailableLanguages(const QVariantMap ¶ms) const; Q_INVOKABLE JsonReply *SetServerName(const QVariantMap ¶ms) const; Q_INVOKABLE JsonReply *SetTimeZone(const QVariantMap ¶ms) const; Q_INVOKABLE JsonReply *SetLanguage(const QVariantMap ¶ms) const; Q_INVOKABLE JsonReply *SetLocation(const QVariantMap ¶ms) const; Q_INVOKABLE JsonReply *SetDebugServerEnabled(const QVariantMap ¶ms) const; Q_INVOKABLE JsonReply *SetTcpServerConfiguration(const QVariantMap ¶ms) const; Q_INVOKABLE JsonReply *DeleteTcpServerConfiguration(const QVariantMap ¶ms) const; Q_INVOKABLE JsonReply *SetWebServerConfiguration(const QVariantMap ¶ms) const; Q_INVOKABLE JsonReply *DeleteWebServerConfiguration(const QVariantMap ¶ms) const; Q_INVOKABLE JsonReply *SetWebSocketServerConfiguration(const QVariantMap ¶ms) const; Q_INVOKABLE JsonReply *DeleteWebSocketServerConfiguration(const QVariantMap ¶ms) const; Q_INVOKABLE JsonReply *SetTunnelProxyServerConfiguration(const QVariantMap ¶ms) const; Q_INVOKABLE JsonReply *DeleteTunnelProxyServerConfiguration(const QVariantMap ¶ms) const; Q_INVOKABLE JsonReply *GetMqttServerConfigurations(const QVariantMap ¶ms) const; Q_INVOKABLE JsonReply *SetMqttServerConfiguration(const QVariantMap ¶ms) const; Q_INVOKABLE JsonReply *DeleteMqttServerConfiguration(const QVariantMap ¶ms) const; Q_INVOKABLE JsonReply *GetMqttPolicies(const QVariantMap ¶ms) const; Q_INVOKABLE JsonReply *SetMqttPolicy(const QVariantMap ¶ms) const; Q_INVOKABLE JsonReply *DeleteMqttPolicy(const QVariantMap ¶ms) const; signals: void BasicConfigurationChanged(const QVariantMap ¶ms); // TODO: remove, should be part of BasicConfigurationChanged void LanguageChanged(const QVariantMap ¶ms); void CloudConfigurationChanged(const QVariantMap ¶ms); void TcpServerConfigurationChanged(const QVariantMap ¶ms); void TcpServerConfigurationRemoved(const QVariantMap ¶ms); void WebServerConfigurationChanged(const QVariantMap ¶ms); void WebServerConfigurationRemoved(const QVariantMap ¶ms); void WebSocketServerConfigurationChanged(const QVariantMap ¶ms); void WebSocketServerConfigurationRemoved(const QVariantMap ¶ms); void TunnelProxyServerConfigurationChanged(const QVariantMap ¶ms); void TunnelProxyServerConfigurationRemoved(const QVariantMap ¶ms); void MqttServerConfigurationChanged(const QVariantMap ¶ms); void MqttServerConfigurationRemoved(const QVariantMap ¶ms); void MqttPolicyChanged(const QVariantMap ¶ms); void MqttPolicyRemoved(const QVariantMap ¶ms); private slots: void onBasicConfigurationChanged(); void onLanguageChanged(); void onTcpServerConfigurationChanged(const QString &id); void onTcpServerConfigurationRemoved(const QString &id); void onWebServerConfigurationChanged(const QString &id); void onWebServerConfigurationRemoved(const QString &id); void onWebSocketServerConfigurationChanged(const QString &id); void onWebSocketServerConfigurationRemoved(const QString &id); void onTunnelProxyServerConfigurationChanged(const QString &id); void onTunnelProxyServerConfigurationRemoved(const QString &id); void onMqttServerConfigurationChanged(const QString &id); void onMqttServerConfigurationRemoved(const QString &id); void onMqttPolicyChanged(const QString &clientId); void onMqttPolicyRemoved(const QString &clientId); private: static QVariantMap packBasicConfiguration(); QVariantMap statusToReply(NymeaConfiguration::ConfigurationError status) const; }; } #endif // CONFIGURATIONHANDLER_H