2019-02-25 08:48:22 -05:00
|
|
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
2015-06-22 05:11:21 -04:00
|
|
|
|
2015-09-24 11:38:44 -04:00
|
|
|
#ifndef OBJECTQUERYHANDLER_H
|
|
|
|
|
#define OBJECTQUERYHANDLER_H
|
2015-06-22 05:11:21 -04:00
|
|
|
|
|
|
|
|
#include "remote/httphandler.hpp"
|
|
|
|
|
|
|
|
|
|
namespace icinga
|
|
|
|
|
{
|
|
|
|
|
|
2018-01-04 00:11:04 -05:00
|
|
|
class ObjectQueryHandler final : public HttpHandler
|
2015-06-22 05:11:21 -04:00
|
|
|
{
|
|
|
|
|
public:
|
2015-09-24 11:38:44 -04:00
|
|
|
DECLARE_PTR_TYPEDEFS(ObjectQueryHandler);
|
2015-06-22 05:11:21 -04:00
|
|
|
|
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;
|
2015-11-06 05:04:58 -05:00
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
static Dictionary::Ptr SerializeObjectAttrs(const Object::Ptr& object, const String& attrPrefix,
|
2017-12-19 09:50:05 -05:00
|
|
|
const Array::Ptr& attrs, bool isJoin, bool allAttrs);
|
2015-06-22 05:11:21 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2015-09-24 11:38:44 -04:00
|
|
|
#endif /* OBJECTQUERYHANDLER_H */
|