Fix license compliance and fix things up, add reverse proxy, fix some security flaws with HttpUtils
Some checks failed
Build and Deploy on Tag / 🔨 Build for everything else (git.tesses.org/tesses50/linux-arm64:latest, aarch64-linux-gnu, arm64) (push) Successful in 2m37s
Build and Deploy on Tag / 🔨 Build for everything else (git.tesses.org/tesses50/linux-arm:latest, arm-linux-gnueabihf, arm7) (push) Successful in 2m37s
Build and Deploy on Tag / 🔨 Build for PowerPC (push) Successful in 2m58s
Build and Deploy on Tag / 🔨 Build win32 and update the tap 🍺 (push) Failing after 3m36s
Build and Deploy on Tag / 🔨 Build for everything else (git.tesses.org/tesses50/linux-riscv64:latest, riscv64-linux-gnu, riscv64) (push) Successful in 2m19s
Build and Deploy on Tag / 🔨 Build for everything else (git.tesses.org/tesses50/linux-x64:latest, x86_64-linux-gnu, amd64) (push) Successful in 2m21s
Build and Deploy on Tag / 🔨 Build for everything else (git.tesses.org/tesses50/linux-x86:latest, i386-linux-gnu, 386) (push) Successful in 2m6s

This commit is contained in:
2026-08-31 20:57:18 -05:00
parent 313e75b14c
commit 3bce736834
41 changed files with 2227 additions and 384 deletions

40
src/Http/DomainServer.cpp Normal file
View File

@@ -0,0 +1,40 @@
#include "TessesFramework/Http/DomainServer.hpp"
namespace Tesses::Framework::Http {
DomainServer::DomainServer() {}
DomainServer::DomainServer(std::shared_ptr<IHttpServer> root) : root(root) {}
void DomainServer::Set(std::string domain,
std::shared_ptr<IHttpServer> server) {
mtx.Lock();
this->servers[domain] = server;
mtx.Unlock();
}
void DomainServer::Unset(std::string domain) {
mtx.Lock();
this->servers.erase(domain);
mtx.Unlock();
}
void DomainServer::Clear() {
mtx.Lock();
this->servers.clear();
mtx.Unlock();
}
bool DomainServer::Handle(ServerContext &ctx) {
std::string host;
std::shared_ptr<IHttpServer> server = nullptr;
if (ctx.requestHeaders.TryGetFirst("Host", host)) {
mtx.Lock();
if (this->servers.count(host) > 0)
server = this->servers[host];
mtx.Unlock();
}
if (server)
return server->Handle(ctx);
if (this->root)
return this->root->Handle(ctx);
return false;
}
} // namespace Tesses::Framework::Http