You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

48 lines
1.4 KiB
C++

#include "webcc/rest_service.h"
#include "webcc/logger.h"
namespace webcc {
// -----------------------------------------------------------------------------
void RestListService::Handle(const RestRequest& request,
RestResponse* response) {
const std::string& method = request.http->method();
if (method == http::methods::kGet) {
Get(UrlQuery(request.http->url().query()), response);
} else if (method == http::methods::kPost) {
Post(request.http->content(), response);
} else {
LOG_ERRO("RestListService doesn't support '%s' method.", method.c_str());
}
}
// -----------------------------------------------------------------------------
void RestDetailService::Handle(const RestRequest& request,
RestResponse* response) {
const std::string& method = request.http->method();
if (method == http::methods::kGet) {
Get(request.url_matches, UrlQuery(request.http->url().query()), response);
} else if (method == http::methods::kPut) {
Put(request.url_matches, request.http->content(), response);
} else if (method == http::methods::kPatch) {
Patch(request.url_matches, request.http->content(), response);
} else if (method == http::methods::kDelete) {
Delete(request.url_matches, response);
} else {
LOG_ERRO("RestDetailService doesn't support '%s' method.", method.c_str());
}
}
} // namespace webcc