mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
5e559627be
* Push progress TODO: rework RESET, probably to main.cpp again * resetPassword rework * enable administration restriction * add short cmd for userdata * Js apis * Refactor JsonCB class * Add userToken Auth * Feat: Close connection if ext clients when def pw is set * Feat: Protect db against pw/token tests * WebUi PW Support (#9) * Initial WebUi Password Support * Small changes * Initial WebUi Password Support * Small changes * Basic WebUi Token support * added "removeStorage", added uiLock, updated login page * Small improvments * Small change * Fix: prevent downgrade of authorization * Add translation for localAdminAuth * Feat: Show always save button in led layout * Revert "Feat: Show always save button in led layout" This reverts commit caad1dfcdee311bb6496839752b2a2df3f0fd98b. * Feat: Password change link in notification * Fix: body padding modal overlap * Feat: Add instance index to response on switch * prevent schema error Signed-off-by: Paulchen-Panther <Paulchen-Panter@protonmail.com> * Feat: add pw save * Feat: callout settings/pw replaced with notification
31 lines
578 B
C++
31 lines
578 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 _stopHandle = false;
|
|
bool _unlocked = false;
|
|
|
|
private slots:
|
|
void handleCallback(QJsonObject obj);
|
|
};
|