101 lines
2.7 KiB
C++
101 lines
2.7 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-plugins.
|
|
*
|
|
* nymea-plugins 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-plugins 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-plugins. If not, see <https://www.gnu.org/licenses/>.
|
|
*
|
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
|
|
|
#ifndef SHELLYJSONRPCCLIENT_H
|
|
#define SHELLYJSONRPCCLIENT_H
|
|
|
|
#include <QObject>
|
|
#include <QWebSocket>
|
|
|
|
class ShellyRpcReply: public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
enum Status {
|
|
StatusSuccess = 0,
|
|
|
|
// Shelly common error codes
|
|
StatusInvalidArgument = -103,
|
|
StatusDeadlineExceeded = -104,
|
|
StatusResourceExhausted = -108,
|
|
StatusFailedPrecondition = -109,
|
|
StatusUnavailable = -114,
|
|
|
|
StatusCodeBadRequest = 400,
|
|
StatusAuthenticationRequired = 401,
|
|
|
|
// Our own
|
|
StatusTimeout = -1
|
|
|
|
};
|
|
Q_ENUM(Status)
|
|
|
|
explicit ShellyRpcReply(const QVariantMap &requestBody, QObject *parent = nullptr);
|
|
|
|
int id() const;
|
|
QString method() const;
|
|
QVariantMap requestBody() const;
|
|
|
|
signals:
|
|
void finished(Status status, const QVariantMap &response);
|
|
|
|
private:
|
|
QVariantMap m_requestBody;
|
|
};
|
|
|
|
class ShellyJsonRpcClient : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit ShellyJsonRpcClient(QObject *parent = nullptr);
|
|
|
|
void open(const QHostAddress &address, const QString &user, const QString &password, const QString &shellyId);
|
|
|
|
ShellyRpcReply* sendRequest(const QString &method, const QVariantMap ¶ms = QVariantMap());
|
|
|
|
signals:
|
|
void stateChanged(QAbstractSocket::SocketState state);
|
|
void notificationReceived(const QVariantMap ¬ification);
|
|
|
|
private slots:
|
|
void onTextMessageReceived(const QString &message);
|
|
|
|
private:
|
|
QVariantMap createAuthMap() const;
|
|
|
|
QWebSocket *m_socket = nullptr;
|
|
QHash<int, ShellyRpcReply*> m_pendingReplies;
|
|
|
|
int m_currentId = 1;
|
|
|
|
// Needed (only) for authentication
|
|
QString m_user;
|
|
QString m_password;
|
|
QString m_shellyId;
|
|
qulonglong m_nonce = 0;
|
|
int m_nc = 0;
|
|
};
|
|
|
|
#endif // SHELLYJSONRPCCLIENT_H
|