60 lines
2.4 KiB
C++
60 lines
2.4 KiB
C++
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
|
* *
|
|
* Copyright (C) 2019 Michael Zanetti <michael.zanetti@nymea.io> *
|
|
* *
|
|
* This file is part of nymea. *
|
|
* *
|
|
* nymea 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, version 2 of the License. *
|
|
* *
|
|
* 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 General Public License for more details. *
|
|
* *
|
|
* You should have received a copy of the GNU General Public License *
|
|
* along with nymea. If not, see <http://www.gnu.org/licenses/>. *
|
|
* *
|
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
|
|
|
#ifndef SCRIPTSHANDLER_H
|
|
#define SCRIPTSHANDLER_H
|
|
|
|
#include "jsonrpc/jsonhandler.h"
|
|
|
|
#include "scriptengine/scriptengine.h"
|
|
|
|
namespace nymeaserver {
|
|
|
|
|
|
class ScriptsHandler : public JsonHandler
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit ScriptsHandler(ScriptEngine *scriptEngine, QObject *parent = nullptr);
|
|
|
|
QString name() const override;
|
|
|
|
public slots:
|
|
JsonReply* GetScripts(const QVariantMap ¶ms);
|
|
JsonReply* GetScriptContent(const QVariantMap ¶ms);
|
|
JsonReply* AddScript(const QVariantMap ¶ms);
|
|
JsonReply* EditScript(const QVariantMap ¶ms);
|
|
JsonReply* RemoveScript(const QVariantMap ¶ms);
|
|
|
|
signals:
|
|
void ScriptAdded(const QVariantMap ¶ms);
|
|
void ScriptRemoved(const QVariantMap ¶ms);
|
|
void ScriptChanged(const QVariantMap ¶ms);
|
|
void ScriptContentChanged(const QVariantMap ¶ms);
|
|
void ScriptLogMessage(const QVariantMap ¶ms);
|
|
|
|
private:
|
|
ScriptEngine *m_engine = nullptr;
|
|
};
|
|
|
|
}
|
|
|
|
#endif // SCRIPTSHANDLER_H
|