2023-09-16 16:29:03 +02:00
|
|
|
#include "Includes/VWeb.h"
|
2022-08-23 14:13:21 +02:00
|
|
|
#include "StringUtils.h"
|
|
|
|
|
2024-04-16 20:09:22 +02:00
|
|
|
#include <iostream>
|
2022-08-23 14:13:21 +02:00
|
|
|
#include <type_traits>
|
2022-08-23 16:40:57 +02:00
|
|
|
#include <utility>
|
2022-08-23 14:13:21 +02:00
|
|
|
|
|
|
|
namespace VWeb {
|
|
|
|
|
2024-02-04 13:52:08 +01:00
|
|
|
#define stringify(name) \
|
|
|
|
{ name, std::string(#name).replace(0, 12, "") }
|
|
|
|
static std::unordered_map<HttpMethod, std::string> s_HttpMethodToString = {
|
|
|
|
stringify(HttpMethod::HEAD), stringify(HttpMethod::GET),
|
|
|
|
stringify(HttpMethod::OPTIONS), stringify(HttpMethod::POST),
|
|
|
|
stringify(HttpMethod::PUT), stringify(HttpMethod::PATCH),
|
|
|
|
stringify(HttpMethod::DELETE), stringify(HttpMethod::FALLBACK)};
|
|
|
|
#undef stringify
|
|
|
|
|
2022-08-23 14:13:21 +02:00
|
|
|
template <typename E> constexpr auto to_underlying(E e) noexcept {
|
|
|
|
return static_cast<std::underlying_type_t<E>>(e);
|
|
|
|
}
|
|
|
|
|
|
|
|
class ErrorRoute : public Route {
|
|
|
|
public:
|
2022-09-10 15:09:18 +02:00
|
|
|
bool Execute(Request &request, Response &response) override {
|
2022-08-23 14:13:21 +02:00
|
|
|
response.Reset();
|
|
|
|
response << "Unhandled Error: Status "
|
|
|
|
<< std::to_string(to_underlying(response.Status));
|
|
|
|
response.SetType("text/plain");
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2024-04-16 20:09:22 +02:00
|
|
|
void RouteTree::Add(const std::string &path, uint32_t allowedMethods,
|
|
|
|
RouteInstaniateFunction instaniate) {
|
|
|
|
auto segments = String::Split(path, "/");
|
|
|
|
auto node = &Root;
|
|
|
|
for (const auto &segment : segments) {
|
|
|
|
if (segment.empty())
|
|
|
|
continue;
|
|
|
|
if (!node->Children.contains(segment)) {
|
|
|
|
node->Children[segment] = std::make_unique<Node>(m_NodeID++);
|
|
|
|
}
|
|
|
|
node = node->Children.at(segment).get();
|
|
|
|
}
|
|
|
|
m_Routes[node->ID] = {.AllowedMethods = allowedMethods,
|
|
|
|
.Instaniate = std::move(instaniate)};
|
|
|
|
}
|
2022-08-23 14:13:21 +02:00
|
|
|
|
2024-04-16 20:09:22 +02:00
|
|
|
Ref<Route> RouteTree::Find(const std::string &path, Request &request) {
|
|
|
|
auto segments = String::Split(path, "/");
|
|
|
|
auto node = &Root;
|
|
|
|
for (const auto &segment : segments) {
|
|
|
|
if (segment.empty())
|
|
|
|
continue;
|
|
|
|
if (auto it = node->Children.find(segment); it != node->Children.end()) {
|
|
|
|
node = it->second.get();
|
|
|
|
} else {
|
|
|
|
// Arguments...
|
|
|
|
bool foundParameter = false;
|
|
|
|
for (auto &[key, child] : node->Children) {
|
|
|
|
if (key[0] == ':') {
|
|
|
|
node = child.get();
|
|
|
|
foundParameter = true;
|
|
|
|
request.URLParameters[key.substr(1)] = segment;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!foundParameter) {
|
|
|
|
request.URLParameters = {};
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (m_Routes.contains(node->ID)) {
|
|
|
|
const auto &instance = m_Routes[node->ID];
|
|
|
|
auto ref = instance.Instaniate();
|
|
|
|
ref->SetAllowedMethods(instance.AllowedMethods);
|
|
|
|
return ref;
|
2022-08-23 14:13:21 +02:00
|
|
|
}
|
2024-04-16 20:09:22 +02:00
|
|
|
request.URLParameters = {};
|
|
|
|
return nullptr;
|
2022-08-23 14:13:21 +02:00
|
|
|
}
|
|
|
|
|
2024-04-16 20:09:22 +02:00
|
|
|
Router::Router() { Register<ErrorRoute>("@"); }
|
|
|
|
|
2024-02-04 13:52:08 +01:00
|
|
|
static void HandleOptions(Ref<Response> &response, uint32_t allowedMethods) {
|
|
|
|
std::stringstream str{};
|
|
|
|
bool isFirst = true;
|
|
|
|
for (auto &[key, value] : s_HttpMethodToString) {
|
|
|
|
if (allowedMethods & static_cast<uint32_t>(key)) {
|
|
|
|
if (!isFirst)
|
|
|
|
str << ", ";
|
|
|
|
str << value;
|
|
|
|
isFirst = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
response->SetHeader("Allow", str.str());
|
|
|
|
}
|
|
|
|
|
2022-08-23 14:13:21 +02:00
|
|
|
Ref<Response> Router::HandleRoute(Ref<Request> &request) {
|
|
|
|
auto response = CreateRef<Response>();
|
|
|
|
auto route = FindRoute(request);
|
|
|
|
response->CookieData = request->CookieData;
|
2022-08-23 16:40:57 +02:00
|
|
|
response->SessionData = request->SessionData;
|
2022-08-23 14:13:21 +02:00
|
|
|
response->Method = request->Method;
|
2024-02-04 13:52:08 +01:00
|
|
|
|
2022-08-23 14:13:21 +02:00
|
|
|
if (!route) {
|
2024-04-16 20:09:22 +02:00
|
|
|
route = m_Tree.Find(s_HttpMethodToString[request->Method] + request->URI,
|
|
|
|
*request);
|
|
|
|
if (!route) {
|
|
|
|
response->SetStatus(HttpStatusCode::NotFound);
|
|
|
|
m_Tree.Find("@", *request)->Execute(*request, *response);
|
2024-02-04 13:52:08 +01:00
|
|
|
return response;
|
|
|
|
}
|
2022-08-23 14:13:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!route->IsAllowed(*request)) {
|
|
|
|
response->SetStatus(HttpStatusCode::Forbidden);
|
2024-04-16 20:09:22 +02:00
|
|
|
m_Tree.Find("@", *request)->Execute(*request, *response);
|
2024-02-04 13:52:08 +01:00
|
|
|
return response;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (request->Method == HttpMethod::OPTIONS) {
|
|
|
|
HandleOptions(response, route->GetAllowedMethods());
|
2022-08-23 14:13:21 +02:00
|
|
|
return response;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!route->Execute(*request, *response)) {
|
|
|
|
std::string rKey = "@" + std::to_string(to_underlying(response->Status));
|
2024-04-16 20:09:22 +02:00
|
|
|
auto r = m_Tree.Find(rKey, *request);
|
|
|
|
if (r) {
|
|
|
|
r->Execute(*request, *response);
|
|
|
|
} else {
|
|
|
|
m_Tree.Find("@", *request)->Execute(*request, *response);
|
|
|
|
}
|
2022-08-23 14:13:21 +02:00
|
|
|
}
|
|
|
|
return response;
|
|
|
|
}
|
|
|
|
|
|
|
|
Ref<Route> Router::FindRoute(Ref<Request> &request) {
|
2024-02-04 13:52:08 +01:00
|
|
|
const auto &url = request->URI;
|
2022-08-23 14:13:21 +02:00
|
|
|
if (url.starts_with("@"))
|
|
|
|
return nullptr;
|
2024-04-16 20:09:22 +02:00
|
|
|
return m_Tree.Find(url, *request);
|
2022-08-23 14:13:21 +02:00
|
|
|
}
|
|
|
|
|
2024-04-16 20:09:22 +02:00
|
|
|
struct InlineRoute : Route {
|
|
|
|
explicit InlineRoute(RouteFunction function) : Func(std::move(function)) {}
|
|
|
|
RouteFunction Func;
|
|
|
|
bool Execute(Request &request, Response &response) override {
|
|
|
|
Func(request, response);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
bool IsAllowed(Request &request) override { return true; }
|
|
|
|
};
|
2022-08-23 16:40:57 +02:00
|
|
|
|
2024-04-16 20:09:22 +02:00
|
|
|
void Router::Get(const std::string &path, const RouteFunction &func) {
|
|
|
|
m_Tree.Add(s_HttpMethodToString[HttpMethod::GET] + path,
|
|
|
|
(uint32_t)HttpMethod::GET,
|
|
|
|
[func] { return std::make_shared<InlineRoute>(func); });
|
2022-08-23 16:40:57 +02:00
|
|
|
}
|
2024-04-16 20:09:22 +02:00
|
|
|
void Router::Post(const std::string &path, const RouteFunction &func) {
|
|
|
|
m_Tree.Add(s_HttpMethodToString[HttpMethod::POST] + path,
|
|
|
|
(uint32_t)HttpMethod::POST,
|
|
|
|
[func] { return std::make_shared<InlineRoute>(func); });
|
2022-08-23 16:40:57 +02:00
|
|
|
}
|
2024-04-16 20:09:22 +02:00
|
|
|
void Router::Put(const std::string &path, const RouteFunction &func) {
|
|
|
|
m_Tree.Add(s_HttpMethodToString[HttpMethod::PUT] + path,
|
|
|
|
(uint32_t)HttpMethod::PUT,
|
|
|
|
[func] { return std::make_shared<InlineRoute>(func); });
|
2022-08-23 16:40:57 +02:00
|
|
|
}
|
2024-04-16 20:09:22 +02:00
|
|
|
void Router::Patch(const std::string &path, const RouteFunction &func) {
|
|
|
|
m_Tree.Add(s_HttpMethodToString[HttpMethod::PATCH] + path,
|
|
|
|
(uint32_t)HttpMethod::PATCH,
|
|
|
|
[func] { return std::make_shared<InlineRoute>(func); });
|
2022-08-23 16:40:57 +02:00
|
|
|
}
|
2024-04-16 20:09:22 +02:00
|
|
|
void Router::Delete(const std::string &path, const RouteFunction &func) {
|
|
|
|
m_Tree.Add(s_HttpMethodToString[HttpMethod::DELETE] + path,
|
|
|
|
(uint32_t)HttpMethod::DELETE,
|
|
|
|
[func] { return std::make_shared<InlineRoute>(func); });
|
2022-08-23 16:40:57 +02:00
|
|
|
}
|
2022-11-09 14:34:20 +01:00
|
|
|
} // namespace VWeb
|