diff options
Diffstat (limited to 'src/content/static')
-rw-r--r-- | src/content/static/Static.cpp | 51 | ||||
-rw-r--r-- | src/content/static/Static.hpp | 29 |
2 files changed, 80 insertions, 0 deletions
diff --git a/src/content/static/Static.cpp b/src/content/static/Static.cpp new file mode 100644 index 0000000..5e38b76 --- /dev/null +++ b/src/content/static/Static.cpp @@ -0,0 +1,51 @@ +#include "Static.hpp" + +Static::Static(std::string uriBasePath, std::string staticFilesPath) + : Content(), m_UriBasePath(uriBasePath), m_MainTemplatePath(""), m_StaticFilesPath(staticFilesPath) +{ +} + +bool Static::Init() +{ + std::cout << "Static files path: " << m_StaticFilesPath << std::endl; + + std::vector<std::string> extensions = {"json"}; + + if (m_StaticFiles.Scan(m_StaticFilesPath, extensions, false) == false) + { + return false; + } + + return true; +} + +void Static::Shutdown() +{ + std::cout << "Static files module shutdown" << std::endl; +} + +bool Static::Render(RequestResponse & rr, RenderData & rd, std::string & out) +{ + (void)rr; + (void)rd; + (void)out; + + rd["blah"] = "Yooooh!"; + + return true; +} + +std::string const & Static::GetUriBasePath() const +{ + return m_UriBasePath; +} + +std::string const & Static::GetMainTemplate() const +{ + return m_MainTemplatePath; +} + +Redirections const & Static::GetRedirections() const +{ + return m_Redirections; +} 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 |