2019-02-25 08:48:22 -05:00
|
|
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
2016-06-16 02:38:01 -04:00
|
|
|
|
|
|
|
|
#ifndef VARIABLEQUERYHANDLER_H
|
|
|
|
|
#define VARIABLEQUERYHANDLER_H
|
|
|
|
|
|
|
|
|
|
#include "remote/httphandler.hpp"
|
|
|
|
|
|
|
|
|
|
namespace icinga
|
|
|
|
|
{
|
|
|
|
|
|
2018-01-04 00:11:04 -05:00
|
|
|
class VariableQueryHandler final : public HttpHandler
|
2016-06-16 02:38:01 -04:00
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
DECLARE_PTR_TYPEDEFS(VariableQueryHandler);
|
|
|
|
|
|
2019-02-15 04:33:01 -05:00
|
|
|
bool HandleRequest(
|
2019-02-15 05:51:12 -05:00
|
|
|
AsioTlsStream& stream,
|
2019-02-15 04:33:01 -05: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 05:51:12 -05:00
|
|
|
const Dictionary::Ptr& params,
|
|
|
|
|
boost::asio::yield_context& yc,
|
2019-04-02 11:37:29 -04:00
|
|
|
HttpServerConnection& server
|
2019-02-15 04:33:01 -05:00
|
|
|
) override;
|
2016-06-16 02:38:01 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endif /* VARIABLEQUERYHANDLER_H */
|