From 76ae7c28ea6224b2c919122d5dc71bcc00a0ecaa Mon Sep 17 00:00:00 2001 From: yum Date: Mon, 3 Jul 2023 18:44:43 -0700 Subject: Begin work on proxy server Create a simple server with 3 endpoints: * /create_session: Create a session and return its identifier. * /set_transcript: Update a session's transcript. * /get_transcript: Fetch a session's transcript. Right now the session ID provides authentication *and* authorization. There is no public/private ID so you have to trust whoever you share your ID with. IDs are long and generated by the server, so it should be somewhat secure against low-effort hacking. Other updates: * Drop whisper_requirements.txt - no longer needed. * Vendor curl to make it easier to interact with the server. TODO: * Fuzz test the server. --- BrowserSource/Proxy/WebServer.h | 48 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 BrowserSource/Proxy/WebServer.h (limited to 'BrowserSource/Proxy/WebServer.h') diff --git a/BrowserSource/Proxy/WebServer.h b/BrowserSource/Proxy/WebServer.h new file mode 100644 index 0000000..7815e89 --- /dev/null +++ b/BrowserSource/Proxy/WebServer.h @@ -0,0 +1,48 @@ +#pragma once + +#include + +#include +#include +#include +#include +#include +#include + +#include "WebCommon.h" + +namespace WebServer { + class WebServer { + public: + WebServer(std::uint16_t port); + + typedef std::function handler_t; + + bool RegisterPathHandler(const std::string& method, + const std::string& path, handler_t&& handler); + void RegisterDefaultHandler(handler_t&& handler); + + bool Run(volatile bool* run); + + private: + // Dispatch requests by mapping from (method, path) to handler. + // Dispatch key is (method, path) in that order. + typedef std::tuple dispatch_key_t; + static inline dispatch_key_t GetDispatchKey(const std::string& method, const std::string& path) + { + return dispatch_key_t(method, path); + } + + typedef std::map dispatch_map_t; + dispatch_map_t dispatch_map_; + handler_t default_handler_; + + const uint16_t port_; + + std::vector> connections_; + }; +} + -- cgit v1.2.3