mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
2a77f6f012
Signed-off-by: Paulchen-Panther <Paulchen--Panter@gmx.net>
36 lines
683 B
C++
36 lines
683 B
C++
#ifndef CGIHANDLER_H
|
|
#define CGIHANDLER_H
|
|
|
|
#include <QObject>
|
|
#include <QString>
|
|
#include <QStringList>
|
|
|
|
#include <utils/Logger.h>
|
|
|
|
#include "QtHttpReply.h"
|
|
#include "QtHttpRequest.h"
|
|
|
|
class CgiHandler : public QObject {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
CgiHandler (QObject * parent = NULL);
|
|
virtual ~CgiHandler (void);
|
|
|
|
void setBaseUrl(const QString& url);
|
|
void exec(const QStringList & args,QtHttpRequest * request, QtHttpReply * reply);
|
|
|
|
// cgi commands
|
|
void cmd_cfg_jsonserver();
|
|
void cmd_runscript ();
|
|
|
|
private:
|
|
QtHttpReply * _reply;
|
|
QtHttpRequest * _request;
|
|
QStringList _args;
|
|
QString _baseUrl;
|
|
Logger * _log;
|
|
};
|
|
|
|
#endif // CGIHANDLER_H
|