diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2021-10-01 17:59:24 +0200 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2021-10-01 17:59:24 +0200 |
commit | 5ff3d7a51be30a0052b12f9330fdf54f3c104739 (patch) | |
tree | 07f6780c4196205fe70b4caf6486b13fba80e30f /src/content/static/Static.hpp | |
parent | 2186064e52ec4029fd060323b51de973da4cee5f (diff) |
Added Markdown and Static content module.
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'src/content/static/Static.hpp')
-rw-r--r-- | src/content/static/Static.hpp | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/src/content/static/Static.hpp b/src/content/static/Static.hpp new file mode 100644 index 0000000..85ffd8c --- /dev/null +++ b/src/content/static/Static.hpp @@ -0,0 +1,29 @@ +#ifndef STATIC_H +#define STATIC_H 1 + +#include "../../Content.hpp" +#include "../../Filesystem.hpp" +#include "../markdown/Markdown.hpp" + +class Static : public Content +{ +public: + explicit Static(std::string uriBasePath, std::string staticFilesPath); + + bool Init(); + void Shutdown(); + bool Render(RequestResponse & rr, RenderData & rd, std::string & out); + + std::string const & GetUriBasePath() const; + std::string const & GetMainTemplate() const; + Redirections const & GetRedirections() const; + +private: + std::string m_UriBasePath; + std::string m_MainTemplatePath; + std::string m_StaticFilesPath; + Redirections m_Redirections; + Filesystem m_StaticFiles; +}; + +#endif |