diff options
Diffstat (limited to 'src/Content.hpp')
-rw-r--r-- | src/Content.hpp | 15 |
1 files changed, 8 insertions, 7 deletions
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 <inja/inja.hpp> #include <string> #include <tuple> @@ -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<std::string> & 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<std::string> & requiredFiles) const; private: std::string m_FilesystemPath; - nlohmann::json m_TemplateData; }; #endif |