mirror of https://github.com/Icinga/icinga2.git
55 lines
1.1 KiB
C++
55 lines
1.1 KiB
C++
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
|
|
|
#ifndef HTTPHANDLER_H
|
|
#define HTTPHANDLER_H
|
|
|
|
#include "remote/i2-remote.hpp"
|
|
#include "remote/httpresponse.hpp"
|
|
#include "remote/apiuser.hpp"
|
|
#include "base/registry.hpp"
|
|
#include <vector>
|
|
|
|
namespace icinga
|
|
{
|
|
|
|
/**
|
|
* HTTP handler.
|
|
*
|
|
* @ingroup remote
|
|
*/
|
|
class HttpHandler : public Object
|
|
{
|
|
public:
|
|
DECLARE_PTR_TYPEDEFS(HttpHandler);
|
|
|
|
virtual bool HandleRequest(const ApiUser::Ptr& user, HttpRequest& request, HttpResponse& response, const Dictionary::Ptr& params) = 0;
|
|
|
|
static void Register(const Url::Ptr& url, const HttpHandler::Ptr& handler);
|
|
static void ProcessRequest(const ApiUser::Ptr& user, HttpRequest& request, HttpResponse& response);
|
|
|
|
private:
|
|
static Dictionary::Ptr m_UrlTree;
|
|
};
|
|
|
|
/**
|
|
* Helper class for registering HTTP handlers.
|
|
*
|
|
* @ingroup remote
|
|
*/
|
|
class RegisterHttpHandler
|
|
{
|
|
public:
|
|
RegisterHttpHandler(const String& url, const HttpHandler& function);
|
|
};
|
|
|
|
#define REGISTER_URLHANDLER(url, klass) \
|
|
INITIALIZE_ONCE([]() { \
|
|
Url::Ptr uurl = new Url(url); \
|
|
HttpHandler::Ptr handler = new klass(); \
|
|
HttpHandler::Register(uurl, handler); \
|
|
})
|
|
|
|
}
|
|
|
|
#endif /* HTTPHANDLER_H */
|