2022-06-12 14:22:15 +02:00
|
|
|
import type { Project, Diary } from "./types";
|
|
|
|
import asciidoctor from "asciidoctor";
|
|
|
|
|
|
|
|
export const projectEmpty = "<div>Kein Projekt ausgewählt.</div>";
|
|
|
|
const projectNotFoundHtml = `<div class="${"error"}">Sorry! There is no data for this project. Please check back later to see if that changed!</div>`;
|
|
|
|
const projectServerErrorHtml = `<div class="${"error"}">Sorry! A server error happend when the project data was fetched!</div>`;
|
|
|
|
|
|
|
|
const ad = asciidoctor();
|
|
|
|
|
|
|
|
export async function generateContent(content: Project|Diary, selectedPage?: number): Promise<string> {
|
|
|
|
if(!content) return projectEmpty;
|
|
|
|
switch (content.type) {
|
|
|
|
case "project": return await generateProjectHTML(content);
|
|
|
|
case "diary": return await generateDiaryHTML(content, selectedPage);
|
|
|
|
default: return projectNotFoundHtml;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
async function generateProjectHTML(project: Project): Promise<string> {
|
|
|
|
const resp = await fetch(`/content/projects/${project.name}.adoc`);
|
|
|
|
if (resp.status !== 200) return projectServerErrorHtml;
|
2022-06-12 19:44:50 +02:00
|
|
|
const rawAd = await resp.text();
|
2022-06-13 00:02:28 +02:00
|
|
|
const pathsCorrected = rawAd.replace(/(image[:]+)(.*\.[a-zA-Z]+)\[/g, "$1/content/projects/$2[");
|
2022-06-12 19:44:50 +02:00
|
|
|
const adDoc = ad.load(pathsCorrected, { attributes: { showtitle: true } });
|
2022-06-12 14:22:15 +02:00
|
|
|
return `${adDoc.convert(adDoc).toString()}
|
|
|
|
<hr>
|
|
|
|
<div id="footer">
|
|
|
|
<div id="footer-text">
|
2022-06-13 12:54:40 +02:00
|
|
|
Last updated: ${adDoc.getAttribute("docdatetime")} | <a href="https://git.c0ntroller.de/c0ntroller/frontpage-content/src/branch/senpai/projects/${project.name}.adoc" target="_blank">Document source</a>
|
2022-06-12 14:22:15 +02:00
|
|
|
</div>
|
|
|
|
</div>`;
|
|
|
|
}
|
|
|
|
|
|
|
|
async function generateDiaryHTML(diary: Diary, selectedPage?: number): Promise<string> {
|
2022-06-13 12:54:40 +02:00
|
|
|
const page: number = Number.parseInt(selectedPage?.toString() || "0") - 1;
|
|
|
|
const resp = page === -1 ? await fetch(`/content/diaries/${diary.name}.adoc`) : await fetch(`/content/diaries/${diary.name}/${diary.entries[page].filename}.adoc`);
|
2022-06-12 14:22:15 +02:00
|
|
|
if (resp.status !== 200) return projectServerErrorHtml;
|
2022-06-13 12:54:40 +02:00
|
|
|
const rawAd = await resp.text();
|
|
|
|
const pathsCorrected = rawAd.replace(/(image[:]{1,2})(.*\.[a-zA-Z]+)\[/g, "$1/content/diaries/$2[");
|
|
|
|
const adDoc = ad.load(pathsCorrected, { attributes: { showtitle: true } });
|
|
|
|
const gitfile = page === -1 ? `${diary.name}.adoc` : `${diary.name}/${diary.entries[page].filename}.adoc`;
|
2022-06-12 14:22:15 +02:00
|
|
|
return `${adDoc.convert(adDoc).toString()}
|
|
|
|
<hr>
|
|
|
|
<div id="footer">
|
|
|
|
<div id="footer-text">
|
2022-06-13 12:54:40 +02:00
|
|
|
Last updated: ${adDoc.getAttribute("docdatetime")} | <a href="https://git.c0ntroller.de/c0ntroller/frontpage-content/src/branch/senpai/diaries/${gitfile}" target="_blank">Document source</a>
|
2022-06-12 14:22:15 +02:00
|
|
|
</div>
|
|
|
|
</div>`;
|
|
|
|
}
|