2020-06-24 08:08:28 +00:00
|
|
|
import std.experimental.logger;
|
|
|
|
import std.range;
|
|
|
|
import std.string;
|
|
|
|
import std.stdio;
|
|
|
|
import std.typecons;
|
|
|
|
|
|
|
|
import vibe.d;
|
|
|
|
|
|
|
|
import article;
|
|
|
|
import page;
|
|
|
|
import project;
|
|
|
|
import watcher;
|
|
|
|
|
|
|
|
/**
|
2020-06-24 17:57:04 +00:00
|
|
|
* Internal list of articles, pages and projects by slug.
|
2020-06-24 08:08:28 +00:00
|
|
|
*/
|
|
|
|
Article[string] articles;
|
|
|
|
Page[string] pages;
|
|
|
|
Project[string] projects;
|
|
|
|
|
2020-06-24 17:57:04 +00:00
|
|
|
/**
|
|
|
|
* Default ordering and list with pointers to ordered articles.
|
|
|
|
* (Note: this is code which will actually be compiled and passed on!)
|
|
|
|
*/
|
2020-06-24 08:08:28 +00:00
|
|
|
immutable string articleSortPred = "a.firstPublished > b.firstPublished";
|
|
|
|
Article*[] articleList;
|
2020-06-24 13:53:18 +00:00
|
|
|
|
|
|
|
immutable string pageSortPred = "a.title < b.title";
|
2020-06-24 08:08:28 +00:00
|
|
|
Page*[] pageList;
|
2020-06-24 13:53:18 +00:00
|
|
|
|
|
|
|
immutable string projectSortPred = "a.title < b.title";
|
|
|
|
Project*[] projectList;
|
2020-06-24 08:08:28 +00:00
|
|
|
|
2020-06-24 17:57:04 +00:00
|
|
|
/**
|
|
|
|
* Output types for the content.
|
|
|
|
*/
|
2020-06-24 08:08:28 +00:00
|
|
|
enum OutputType {
|
|
|
|
HTML,
|
|
|
|
MARKDOWN
|
|
|
|
}
|
|
|
|
|
|
|
|
const string MIME_MARKDOWN = "text/markdown";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get's the document type for the given slug based on extension
|
2020-06-24 17:57:04 +00:00
|
|
|
* and returns the slug without extension and the document type. Also removes the extension from the
|
|
|
|
* slug.
|
2020-06-24 08:08:28 +00:00
|
|
|
*/
|
|
|
|
private OutputType getOutputType(ref string slug) {
|
|
|
|
if (slug.endsWith(".md")) {
|
|
|
|
slug = chomp(slug, ".md");
|
|
|
|
return OutputType.MARKDOWN;
|
|
|
|
} else if (slug.endsWith(".html")){
|
|
|
|
// If explicitly asking for HTML, we'll return HTML
|
|
|
|
slug = chomp(slug, ".html");
|
|
|
|
return OutputType.HTML;
|
|
|
|
} else {
|
|
|
|
// If in the future, for any reason, we no longer use HTML
|
|
|
|
// this allows to us to keep the current urls with an option
|
|
|
|
// to change the output in the future.
|
|
|
|
return OutputType.HTML;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-24 17:57:04 +00:00
|
|
|
/**
|
|
|
|
* Template method for fetching a single page for a subclass of page.
|
|
|
|
* Params:
|
|
|
|
* T = the data structure/class to be passed as template parameter. Must have a slug parameter.
|
|
|
|
* templ = The template to use when rendering.
|
|
|
|
* array = An associative array where the keys are slugs for parameters and the values the template parameter.
|
|
|
|
* req = The server request to consume. Assumes there is an slug parameter.
|
|
|
|
* res = The server response to write to.
|
|
|
|
*
|
|
|
|
*/
|
2020-06-24 08:08:28 +00:00
|
|
|
void getSingle(T, string templ)(ref T[string] array, HTTPServerRequest req, HTTPServerResponse res) {
|
|
|
|
string slug = req.params["slug"];
|
|
|
|
OutputType outputType = getOutputType(slug);
|
|
|
|
|
|
|
|
enforceHTTP(slug in array, HTTPStatus.notFound, "Page not found");
|
|
|
|
T content = array[slug];
|
|
|
|
res.headers["Cache-Control"] = "public";
|
|
|
|
switch(outputType) with (OutputType) {
|
|
|
|
case MARKDOWN:
|
|
|
|
res.writeBody(content.contentSource, MIME_MARKDOWN);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
case HTML:
|
|
|
|
res.render!(templ, content);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Generates response for /posts/:slug and /palen/:slug.
|
|
|
|
*/
|
|
|
|
void articleGetSingle(HTTPServerRequest req, HTTPServerResponse res) {
|
|
|
|
getSingle!(Article, "pages/article.dt")(articles, req, res);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2020-06-24 17:57:04 +00:00
|
|
|
* Generates response for /posts and /palen
|
2020-06-24 08:08:28 +00:00
|
|
|
*/
|
|
|
|
void articleGetOverview(HTTPServerRequest req, HTTPServerResponse res) {
|
|
|
|
res.headers["Cache-Control"] = "public";
|
|
|
|
render!("pages/article-list.dt", articleList)(res);
|
|
|
|
}
|
|
|
|
|
2020-06-24 17:57:04 +00:00
|
|
|
/**
|
|
|
|
* Generates response for /projects and /projecten
|
|
|
|
*/
|
2020-06-24 08:08:28 +00:00
|
|
|
void projectGetOverview(HTTPServerRequest req, HTTPServerResponse res) {
|
|
|
|
res.headers["Cache-Control"] = "public";
|
|
|
|
render!("pages/project-list.dt", projectList)(res);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Generate response for a page
|
|
|
|
*/
|
|
|
|
void pageGet(HTTPServerRequest req, HTTPServerResponse res) {
|
2020-06-24 13:53:18 +00:00
|
|
|
// If no slug is supplied, it will be adjusted to "index"
|
2020-06-24 08:08:28 +00:00
|
|
|
if (("slug" in req.params) is null) {
|
|
|
|
req.params.addField("slug", "index");
|
|
|
|
}
|
|
|
|
getSingle!(Page, "pages/page.dt")(pages, req, res);
|
|
|
|
}
|
|
|
|
|
2020-06-24 13:53:18 +00:00
|
|
|
/**
|
|
|
|
* Generate response for a project page
|
|
|
|
*/
|
|
|
|
void projectGet(HTTPServerRequest req, HTTPServerResponse res) {
|
|
|
|
res.headers["Cache-Control"] = "public";
|
|
|
|
getSingle!(Project, "pages/project.dt")(projects, req, res);
|
|
|
|
}
|
|
|
|
|
2020-06-24 08:08:28 +00:00
|
|
|
/**
|
|
|
|
* Generates response whenever an error occurs.
|
|
|
|
*/
|
|
|
|
@safe
|
|
|
|
void errorPage(HTTPServerRequest req, HTTPServerResponse res, HTTPServerErrorInfo error) {
|
|
|
|
render!("pages/error.dt", error)(res);
|
|
|
|
}
|
|
|
|
|
|
|
|
void main() {
|
|
|
|
HTTPServerSettings settings = new HTTPServerSettings;
|
|
|
|
settings.bindAddresses = ["0.0.0.0"];
|
|
|
|
settings.port = 3465;
|
|
|
|
settings.serverString = "zeg ik lekker niet";
|
|
|
|
settings.errorPageHandler = toDelegate(&errorPage);
|
|
|
|
settings.keepAliveTimeout = dur!"seconds"(60);
|
|
|
|
debug {
|
|
|
|
settings.accessLogToConsole = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
URLRouter router = new URLRouter;
|
|
|
|
router.get("/posts/:slug", &articleGetSingle);
|
|
|
|
router.get("/palen/:slug", &articleGetSingle);
|
|
|
|
router.get("/posts/", &articleGetOverview);
|
|
|
|
router.get("/palen/", &articleGetOverview);
|
|
|
|
router.get("/projects/", &projectGetOverview);
|
2020-06-24 13:53:18 +00:00
|
|
|
router.get("/projects/:slug", &projectGet);
|
|
|
|
router.get("/projecten/:slug", &projectGet);
|
2020-06-24 08:08:28 +00:00
|
|
|
router.get("/static/*", serveStaticFiles("./public/"));
|
|
|
|
router.get("/:slug", &pageGet);
|
|
|
|
router.get("/", &pageGet);
|
|
|
|
|
|
|
|
listenHTTP(settings, router);
|
2020-06-24 17:57:04 +00:00
|
|
|
|
|
|
|
// Start indexing pages.
|
2020-06-24 08:08:28 +00:00
|
|
|
runTask({
|
2020-06-24 13:53:18 +00:00
|
|
|
initPages!(Page, pageSortPred)(pages, pageList, "pages");
|
2020-06-24 08:08:28 +00:00
|
|
|
});
|
|
|
|
runTask({
|
|
|
|
initPages!(Article, articleSortPred)(articles, articleList, "articles");
|
|
|
|
});
|
2020-06-24 13:53:18 +00:00
|
|
|
runTask({
|
|
|
|
initPages!(Project, projectSortPred)(projects, projectList, "projects");
|
|
|
|
});
|
2020-06-24 08:08:28 +00:00
|
|
|
runApplication();
|
|
|
|
}
|