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);
|
|
|
|
|
2019-02-15 10:33:01 +01:00
|
|
|
bool HandleRequest(
|
2019-02-15 11:51:12 +01:00
|
|
|
AsioTlsStream& stream,
|
2019-02-15 10:33:01 +01:00
|
|
|
const ApiUser::Ptr& user,
|
|
|
|
boost::beast::http::request<boost::beast::http::string_body>& request,
|
|
|
|
const Url::Ptr& url,
|
|
|
|
boost::beast::http::response<boost::beast::http::string_body>& response,
|
2019-02-15 11:51:12 +01:00
|
|
|
const Dictionary::Ptr& params,
|
|
|
|
boost::asio::yield_context& yc,
|
2019-04-02 17:37:29 +02:00
|
|
|
HttpServerConnection& server
|
2019-02-15 10:33:01 +01:00
|
|
|
) override;
|
2015-11-02 16:35:21 +01:00
|
|
|
|
|
|
|
static std::vector<String> GetAutocompletionSuggestions(const String& word, ScriptFrame& frame);
|
|
|
|
|
|
|
|
private:
|
2019-02-15 10:33:01 +01:00
|
|
|
static bool ExecuteScriptHelper(boost::beast::http::request<boost::beast::http::string_body>& request,
|
|
|
|
boost::beast::http::response<boost::beast::http::string_body>& response,
|
2017-12-20 15:31:05 +01:00
|
|
|
const Dictionary::Ptr& params, const String& command, const String& session, bool sandboxed);
|
2019-02-15 10:33:01 +01:00
|
|
|
static bool AutocompleteScriptHelper(boost::beast::http::request<boost::beast::http::string_body>& request,
|
|
|
|
boost::beast::http::response<boost::beast::http::string_body>& 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 */
|