acl/app/wizard/tmpl/http/http_service.cpp
2020-06-29 17:26:20 +08:00

106 lines
2.3 KiB
C++

#include "stdafx.h"
#include "http_service.h"
http_service::http_service(void)
{
}
http_service::~http_service(void)
{
}
http_service& http_service::Get(const char* path, http_handler_t fn)
{
Service(http_handler_get, path, fn);
return *this;
}
http_service& http_service::Post(const char* path, http_handler_t fn)
{
Service(http_handler_post, path, fn);
return *this;
}
http_service& http_service::Head(const char* path, http_handler_t fn)
{
Service(http_handler_head, path, fn);
return *this;
}
http_service& http_service::Put(const char* path, http_handler_t fn)
{
Service(http_handler_put, path, fn);
return *this;
}
http_service& http_service::Patch(const char* path, http_handler_t fn)
{
Service(http_handler_patch, path, fn);
return *this;
}
http_service& http_service::Connect(const char* path, http_handler_t fn)
{
Service(http_handler_connect, path, fn);
return *this;
}
http_service& http_service::Purge(const char* path, http_handler_t fn)
{
Service(http_handler_purge, path, fn);
return *this;
}
http_service& http_service::Delete(const char* path, http_handler_t fn)
{
Service(http_handler_delete, path, fn);
return *this;
}
http_service& http_service::Options(const char* path, http_handler_t fn)
{
Service(http_handler_options, path, fn);
return *this;
}
http_service& http_service::Propfind(const char* path, http_handler_t fn)
{
Service(http_handler_profind, path, fn);
return *this;
}
http_service& http_service::Websocket(const char* path, http_handler_t fn)
{
Service(http_handler_websocket, path, fn);
return *this;
}
http_service& http_service::Unknown(const char* path, http_handler_t fn)
{
Service(http_handler_unknown, path, fn);
return *this;
}
http_service& http_service::Error(const char* path, http_handler_t fn)
{
Service(http_handler_error, path, fn);
return *this;
}
void http_service::Service(int type, const char* path, http_handler_t fn)
{
if (type >= http_handler_get && type < http_handler_max
&& path && *path) {
// The path should lookup like as "/xxx/" with
// lower charactors.
acl::string buf(path);
if (buf[buf.size() - 1] != '/') {
buf += '/';
}
buf.lower();
handlers_[type][buf] = fn;
}
}