Asciidoc rendering in backend
This commit is contained in:
@@ -17,6 +17,20 @@ hljs.registerLanguage("bash", bash);
|
||||
hljs.registerLanguage("console", bash);
|
||||
hljs.registerLanguage("shell", bash);
|
||||
|
||||
interface APISuccess {
|
||||
type: "success";
|
||||
html: string;
|
||||
date: string;
|
||||
repoUrl: string;
|
||||
}
|
||||
|
||||
interface APIError {
|
||||
type: "error";
|
||||
html: string;
|
||||
}
|
||||
|
||||
export type APIReturn = APISuccess | APIError;
|
||||
|
||||
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>`;
|
||||
@@ -48,18 +62,19 @@ export async function getContentList() {
|
||||
}
|
||||
}
|
||||
|
||||
export async function generateContent(content: Project|Diary, selectedPage?: number): Promise<string> {
|
||||
if(!content) return projectEmpty;
|
||||
export async function generateContent(content: Project|Diary, selectedPage?: number, api: boolean = false): Promise<string|APIReturn> {
|
||||
if(!content) return api ? {type: "error", html: projectEmpty} : projectEmpty;
|
||||
|
||||
switch (content.type) {
|
||||
case "project": return await generateProjectHTML(content);
|
||||
case "diary": return await generateDiaryHTML(content, selectedPage);
|
||||
case "project": return await generateProjectHTML(content, api);
|
||||
case "diary": return await generateDiaryHTML(content, selectedPage, api);
|
||||
default: return projectNotFoundHtml;
|
||||
}
|
||||
}
|
||||
|
||||
async function generateProjectHTML(project: Project): Promise<string> {
|
||||
async function generateProjectHTML(project: Project, api: boolean = false): Promise<string|APIReturn> {
|
||||
// First we test if the file exist
|
||||
if(!projectFiles.find((f) => f.name === `${project.name}.adoc`)) return projectNotFoundHtml;
|
||||
if(!projectFiles.find((f) => f.name === `${project.name}.adoc`)) return api ? { type: "error", html: projectNotFoundHtml } : projectNotFoundHtml;
|
||||
|
||||
// Resolve the path
|
||||
const path = resolve(projectPath, `${project.name}.adoc`);
|
||||
@@ -72,8 +87,19 @@ async function generateProjectHTML(project: Project): Promise<string> {
|
||||
const pathsCorrected = rawAd.replace(/(image[:]+)(.*\.[a-zA-Z]+)\[/g, "$1/content/projects/$2[");
|
||||
const adDoc = ad.load(pathsCorrected, { attributes: { showtitle: true } });
|
||||
|
||||
// Convert to HTML
|
||||
const converted = adDoc.convert(adDoc).toString();
|
||||
|
||||
// For the API we want the HTML and the date only
|
||||
if (api) return {
|
||||
type: "success",
|
||||
html: converted,
|
||||
date: new Date(adDoc.getAttribute("docdatetime")).toISOString(),
|
||||
repoUrl: `https://git.c0ntroller.de/c0ntroller/frontpage-content/src/branch/${process.env.IS_DEV ? "dev" : "senpai"}/projects/${project.name}.adoc`,
|
||||
};
|
||||
|
||||
// Return and add the footer
|
||||
return `${adDoc.convert(adDoc).toString()}
|
||||
return `${converted}
|
||||
<hr>
|
||||
<div id="footer">
|
||||
<div id="footer-text">
|
||||
@@ -83,18 +109,18 @@ async function generateProjectHTML(project: Project): Promise<string> {
|
||||
} catch (e) {
|
||||
// Something gone wrong
|
||||
console.error(e);
|
||||
return projectServerErrorHtml;
|
||||
return api ? { type: "error", html: projectServerErrorHtml } : projectServerErrorHtml;
|
||||
}
|
||||
}
|
||||
|
||||
async function generateDiaryHTML(diary: Diary, selectedPage?: number): Promise<string> {
|
||||
async function generateDiaryHTML(diary: Diary, selectedPage?: number, api: boolean = false): Promise<string|APIReturn> {
|
||||
// First we test if the file exist
|
||||
if(!diaryFiles.find((f) => f.isFile() && f.name === `${diary.name}.adoc`)) return projectNotFoundHtml;
|
||||
if(!diaryFiles.find((f) => f.isFile() && f.name === `${diary.name}.adoc`)) return api ? { type: "error", html: projectNotFoundHtml } : projectNotFoundHtml;
|
||||
|
||||
// First we need the page number and the path to load
|
||||
const page: number = Number.parseInt(selectedPage?.toString() || "0") - 1;
|
||||
// If the page number is not -1, a directory must exist
|
||||
if (page !== -1 && !diaryFiles.find((f) => f.isDirectory() && f.name === diary.name)) return projectNotFoundHtml;
|
||||
if (page !== -1 && !diaryFiles.find((f) => f.isDirectory() && f.name === diary.name)) return api ? { type: "error", html: projectNotFoundHtml } : projectNotFoundHtml;
|
||||
|
||||
// Next we load the correct path
|
||||
const path = page === -1 ? resolve(diaryPath, `${diary.name}.adoc`) : resolve(diaryPath, diary.name, `${diary.entries[page].filename}.adoc`);
|
||||
@@ -107,8 +133,20 @@ async function generateDiaryHTML(diary: Diary, selectedPage?: number): Promise<s
|
||||
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`;
|
||||
|
||||
// Convert to HTML
|
||||
const converted = adDoc.convert(adDoc).toString();
|
||||
|
||||
// For the API we want the HTML and the date only
|
||||
if (api) return {
|
||||
type: "success",
|
||||
html: converted,
|
||||
date: new Date(adDoc.getAttribute("docdatetime")).toISOString(),
|
||||
repoUrl: `https://git.c0ntroller.de/c0ntroller/frontpage-content/src/branch/${process.env.IS_DEV ? "dev" : "senpai"}/diaries/${gitfile}`,
|
||||
};
|
||||
|
||||
// Return and add the footer
|
||||
return `${adDoc.convert(adDoc).toString()}
|
||||
return `${converted}
|
||||
<hr>
|
||||
<div id="footer">
|
||||
<div id="footer-text">
|
||||
@@ -118,7 +156,7 @@ async function generateDiaryHTML(diary: Diary, selectedPage?: number): Promise<s
|
||||
} catch (e) {
|
||||
// Something gone wrong
|
||||
console.error(e);
|
||||
return projectServerErrorHtml;
|
||||
return api ? { type: "error", html: projectServerErrorHtml } : projectServerErrorHtml;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user