2019-02-25 14:48:22 +01:00
|
|
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
2015-07-21 16:10:13 +02:00
|
|
|
|
|
|
|
#ifndef CONFIGMODULESHANDLER_H
|
|
|
|
#define CONFIGMODULESHANDLER_H
|
|
|
|
|
|
|
|
#include "remote/httphandler.hpp"
|
|
|
|
|
|
|
|
namespace icinga
|
|
|
|
{
|
|
|
|
|
2018-01-04 06:11:04 +01:00
|
|
|
class ConfigPackagesHandler final : public HttpHandler
|
2015-07-21 16:10:13 +02:00
|
|
|
{
|
|
|
|
public:
|
2015-08-28 17:58:29 +02:00
|
|
|
DECLARE_PTR_TYPEDEFS(ConfigPackagesHandler);
|
2015-07-21 16:10:13 +02:00
|
|
|
|
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-07-21 16:10:13 +02:00
|
|
|
|
|
|
|
private:
|
2019-02-15 10:33:01 +01:00
|
|
|
void HandleGet(
|
|
|
|
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,
|
|
|
|
const Dictionary::Ptr& params
|
|
|
|
);
|
|
|
|
void HandlePost(
|
|
|
|
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,
|
|
|
|
const Dictionary::Ptr& params
|
|
|
|
);
|
|
|
|
void HandleDelete(
|
|
|
|
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,
|
|
|
|
const Dictionary::Ptr& params
|
|
|
|
);
|
2015-07-21 16:10:13 +02:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* CONFIGMODULESHANDLER_H */
|