From ec7cfa85530082127703278cf1ae5167990c0f45 Mon Sep 17 00:00:00 2001 From: Toni Uhlig Date: Mon, 21 Jun 2021 19:55:06 +0200 Subject: Request/Response handling w/ libevent2 Signed-off-by: Toni Uhlig --- src/Content.hpp | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) (limited to 'src/Content.hpp') diff --git a/src/Content.hpp b/src/Content.hpp index 6a1d422..c379522 100644 --- a/src/Content.hpp +++ b/src/Content.hpp @@ -1,6 +1,8 @@ #ifndef CONTENT_H #define CONTENT_H 1 +#include "RequestResponse.hpp" + #include #include #include @@ -12,25 +14,24 @@ class Content { public: virtual bool Init() = 0; virtual void Shutdown() = 0; - virtual bool Render(std::string & out) = 0; + virtual bool Render(RequestResponse & rr, std::string & out) = 0; - virtual std::string const & GetBasePath() const = 0; + virtual std::string const & GetBaseUri() const = 0; virtual Redirections const & GetRedirections() const = 0; + virtual void GetRequiredFiles(std::vector & requiredFiles) const = 0; }; class TemplatedContent : public Content { public: - explicit TemplatedContent(std::string filesystemPath); + explicit TemplatedContent(std::string mainTemplate); virtual bool Init(); virtual void Shutdown(); - virtual bool Render(std::string & out); - - void SetTemplateData(nlohmann::json & data); + virtual bool Render(RequestResponse & rr, std::string & out); + virtual void GetRequiredFiles(std::vector & requiredFiles) const; private: std::string m_FilesystemPath; - nlohmann::json m_TemplateData; }; #endif -- cgit v1.2.3