acl/app/wizard/tmpl/http/http_service.h

37 lines
1.1 KiB
C
Raw Normal View History

#pragma once
class http_service
{
public:
http_service(void);
~http_service(void);
public:
// Register all Http handlers with the http url path
http_service& Get(const char* path, http_handler_t fn);
http_service& Post(const char* path, http_handler_t fn);
http_service& Head(const char* path, http_handler_t fn);
http_service& Put(const char* path, http_handler_t fn);
http_service& Patch(const char* path, http_handler_t fn);
http_service& Connect(const char* path, http_handler_t fn);
http_service& Purge(const char* path, http_handler_t fn);
http_service& Delete(const char* path, http_handler_t fn);
http_service& Options(const char* path, http_handler_t fn);
http_service& Propfind(const char* path, http_handler_t fn);
http_service& Websocket(const char* path, http_handler_t fn);
http_service& Unknown(const char* path, http_handler_t fn);
http_service& Error(const char* path, http_handler_t fn);
public:
http_handlers_t* get_handlers(void)
{
return handlers_;
}
private:
http_handlers_t handlers_[http_handler_max];
void Service(int type, const char* path, http_handler_t fn);
};