aboutsummaryrefslogtreecommitdiff
path: root/src/content/markdown
diff options
context:
space:
mode:
authorToni Uhlig <matzeton@googlemail.com>2021-10-01 17:59:24 +0200
committerToni Uhlig <matzeton@googlemail.com>2021-10-01 17:59:24 +0200
commit5ff3d7a51be30a0052b12f9330fdf54f3c104739 (patch)
tree07f6780c4196205fe70b4caf6486b13fba80e30f /src/content/markdown
parent2186064e52ec4029fd060323b51de973da4cee5f (diff)
Added Markdown and Static content module.
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'src/content/markdown')
-rw-r--r--src/content/markdown/Markdown.cpp51
-rw-r--r--src/content/markdown/Markdown.hpp28
2 files changed, 79 insertions, 0 deletions
diff --git a/src/content/markdown/Markdown.cpp b/src/content/markdown/Markdown.cpp
new file mode 100644
index 0000000..2009772
--- /dev/null
+++ b/src/content/markdown/Markdown.cpp
@@ -0,0 +1,51 @@
+#include "Markdown.hpp"
+
+Markdown::Markdown(std::string uriBasePath, std::string markdownFilesPath)
+ : Content(), m_UriBasePath(uriBasePath), m_MainTemplatePath(""), m_MarkdownFilesPath(markdownFilesPath)
+{
+}
+
+bool Markdown::Init()
+{
+ std::cout << "Markdown files path: " << m_MarkdownFilesPath << std::endl;
+
+ std::vector<std::string> extensions = {"md"};
+
+ if (m_MarkdownFiles.Scan(m_MarkdownFilesPath, extensions, false) == false)
+ {
+ return false;
+ }
+
+ return true;
+}
+
+void Markdown::Shutdown()
+{
+ std::cout << "Markdown module shutdown" << std::endl;
+}
+
+bool Markdown::Render(RequestResponse & rr, RenderData & rd, std::string & out)
+{
+ (void)out;
+
+ rd["blub"] = "Yoh21!";
+ rr.UseOutputHeader();
+ rr.AddOutputHeader("blaaaa", "blubb");
+
+ return true;
+}
+
+std::string const & Markdown::GetUriBasePath() const
+{
+ return m_UriBasePath;
+}
+
+std::string const & Markdown::GetMainTemplate() const
+{
+ return m_MainTemplatePath;
+}
+
+Redirections const & Markdown::GetRedirections() const
+{
+ return m_Redirections;
+}
diff --git a/src/content/markdown/Markdown.hpp b/src/content/markdown/Markdown.hpp
new file mode 100644
index 0000000..41c8b4d
--- /dev/null
+++ b/src/content/markdown/Markdown.hpp
@@ -0,0 +1,28 @@
+#ifndef MARKDOWN_H
+#define MARKDOWN_H 1
+
+#include "../../Content.hpp"
+#include "../../Filesystem.hpp"
+
+class Markdown : public Content
+{
+public:
+ explicit Markdown(std::string uriBasePath, std::string markdownFilesPath);
+
+ 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_MarkdownFilesPath;
+ Redirections m_Redirections;
+ Filesystem m_MarkdownFiles;
+};
+
+#endif