mirror of
https://github.com/Icinga/icinga2.git
synced 2026-03-21 18:11:32 -04:00
to respect `l_FlushThreshold` in all messages. Especially `l_FlushThreshold` may now be lowered in the future without re-evaluating all possible responses. Side effect: all HTTP responses use chunked encoding now.
47 lines
1.2 KiB
C++
47 lines
1.2 KiB
C++
// SPDX-FileCopyrightText: 2012 Icinga GmbH <https://icinga.com>
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#ifndef CONSOLEHANDLER_H
|
|
#define CONSOLEHANDLER_H
|
|
|
|
#include "remote/httphandler.hpp"
|
|
#include "base/scriptframe.hpp"
|
|
#include <mutex>
|
|
|
|
namespace icinga
|
|
{
|
|
|
|
struct ApiScriptFrame
|
|
{
|
|
std::mutex Mutex;
|
|
double Seen{0};
|
|
int NextLine{1};
|
|
std::map<String, String> Lines;
|
|
Dictionary::Ptr Locals;
|
|
};
|
|
|
|
class ConsoleHandler final : public HttpHandler
|
|
{
|
|
public:
|
|
DECLARE_PTR_TYPEDEFS(ConsoleHandler);
|
|
|
|
bool HandleRequest(
|
|
const WaitGroup::Ptr& waitGroup,
|
|
const HttpApiRequest& request,
|
|
HttpApiResponse& response,
|
|
boost::asio::yield_context& yc
|
|
) override;
|
|
|
|
static std::vector<String> GetAutocompletionSuggestions(const String& word, ScriptFrame& frame);
|
|
|
|
private:
|
|
static bool ExecuteScriptHelper(const HttpApiRequest& request, HttpApiResponse& response,
|
|
const String& command, const String& session, bool sandboxed, boost::asio::yield_context& yc);
|
|
static bool AutocompleteScriptHelper(const HttpApiRequest& request, HttpApiResponse& response,
|
|
const String& command, const String& session, bool sandboxed, boost::asio::yield_context& yc);
|
|
|
|
};
|
|
|
|
}
|
|
|
|
#endif /* CONSOLEHANDLER_H */
|