2019-02-25 14:48:22 +01:00
|
|
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
2015-11-02 16:35:21 +01:00
|
|
|
|
|
|
|
#ifndef CONSOLEHANDLER_H
|
|
|
|
#define CONSOLEHANDLER_H
|
|
|
|
|
|
|
|
#include "remote/httphandler.hpp"
|
|
|
|
#include "base/scriptframe.hpp"
|
|
|
|
|
|
|
|
namespace icinga
|
|
|
|
{
|
|
|
|
|
2017-12-31 07:22:16 +01:00
|
|
|
struct ApiScriptFrame
|
2015-11-02 16:35:21 +01:00
|
|
|
{
|
2018-01-04 09:43:49 +01:00
|
|
|
double Seen{0};
|
|
|
|
int NextLine{1};
|
2015-11-02 16:35:21 +01:00
|
|
|
std::map<String, String> Lines;
|
|
|
|
Dictionary::Ptr Locals;
|
|
|
|
};
|
|
|
|
|
2018-01-04 06:11:04 +01:00
|
|
|
class ConsoleHandler final : public HttpHandler
|
2015-11-02 16:35:21 +01:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
DECLARE_PTR_TYPEDEFS(ConsoleHandler);
|
|
|
|
|
2018-01-04 05:12:56 +01:00
|
|
|
bool HandleRequest(const ApiUser::Ptr& user, HttpRequest& request,
|
2017-12-19 15:50:05 +01:00
|
|
|
HttpResponse& response, const Dictionary::Ptr& params) override;
|
2015-11-02 16:35:21 +01:00
|
|
|
|
|
|
|
static std::vector<String> GetAutocompletionSuggestions(const String& word, ScriptFrame& frame);
|
|
|
|
|
|
|
|
private:
|
|
|
|
static bool ExecuteScriptHelper(HttpRequest& request, HttpResponse& response,
|
2017-12-20 15:31:05 +01:00
|
|
|
const Dictionary::Ptr& params, const String& command, const String& session, bool sandboxed);
|
2015-11-02 16:35:21 +01:00
|
|
|
static bool AutocompleteScriptHelper(HttpRequest& request, HttpResponse& response,
|
2017-12-20 15:31:05 +01:00
|
|
|
const Dictionary::Ptr& params, const String& command, const String& session, bool sandboxed);
|
2015-11-02 16:35:21 +01:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* CONSOLEHANDLER_H */
|