mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
ea796160af
- Added CodeDocs config file for customization - Fixing LGTM alerts - LGTM bug fixed again - added token option to hyperion-remote - fix DBManager::getDB() - next bugfix - correct broken signal from SettingManager to Hyperion - Token list is created after the schema is fetched Signed-off-by: Paulchen-Panther <Paulchen-Panter@protonmail.com>
30 lines
551 B
C++
30 lines
551 B
C++
#pragma once
|
|
|
|
#include <utils/Logger.h>
|
|
|
|
#include <QJsonObject>
|
|
|
|
class QtHttpServer;
|
|
class QtHttpRequest;
|
|
class QtHttpClientWrapper;
|
|
class JsonAPI;
|
|
|
|
class WebJsonRpc : public QObject {
|
|
Q_OBJECT
|
|
public:
|
|
WebJsonRpc(QtHttpRequest* request, QtHttpServer* server, const bool& localConnection, QtHttpClientWrapper* parent);
|
|
|
|
void handleMessage(QtHttpRequest* request);
|
|
|
|
private:
|
|
QtHttpServer* _server;
|
|
QtHttpClientWrapper* _wrapper;
|
|
Logger* _log;
|
|
JsonAPI* _jsonAPI;
|
|
|
|
bool _unlocked = false;
|
|
|
|
private slots:
|
|
void handleCallback(QJsonObject obj);
|
|
};
|