-
Notifications
You must be signed in to change notification settings - Fork 8
/
build.js
executable file
·280 lines (245 loc) · 8.81 KB
/
build.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
#!/usr/bin/env node
const fs = require('fs/promises');
const path = require('path');
const crypto = require('crypto');
const srcDir = path.resolve(__dirname, 'src');
const templateFile = path.resolve(srcDir, 'template.html');
const contentDir = path.resolve(srcDir, 'content');
const resourcesDir = path.resolve(srcDir, 'resources');
const outputDir = path.resolve(__dirname, 'build');
const outputResourcesDir = path.resolve(outputDir, 'resources');
tryBuild();
function tryBuild() {
return build().catch((e) => console.error(`Build failed! ${e.message}`));
}
async function build() {
console.log('Starting build...');
await fs.mkdir(outputDir, { recursive: true });
const template = (await fs.readFile(templateFile)).toString().replaceAll('\r', '');
const processor = new TemplateProcessor();
const compiledTemplate = processor.compile(template);
console.log('Generating script hashes');
const scriptHashes = template.split('<script>')
.slice(1) // Remove the first element: this is the document start.
.map((part) => part.split('</script>', 2)[0]) // Get the section until the script end tag.
.map((script) => `sha256-${crypto.createHash('sha256').update(script).digest('base64')}`);
console.log('Loading languages');
const languages = JSON.parse((await fs.readFile(path.join(contentDir, 'languages.json'))).toString());
console.log('Processing languages');
const defaultLanguage = languages.default;
for (const language of languages.languages) {
const code = language.code;
const isDefault = code === defaultLanguage;
const name = language.name;
const contentFile = path.join(contentDir, language.contentFile);
console.log(` - ${code} ${name}${isDefault ? ' (default)' : ''} from ${contentFile}`);
const content = {
...JSON.parse((await fs.readFile(contentFile)).toString()),
lang: code,
languages: languages.languages.map(l => ({
code: l.code,
name: l.name,
href: (l.code === defaultLanguage) ? '/' : `/${l.outPath}`,
isCurrentLanguage: l.code === code,
})),
scriptHashes,
};
const processed = processor.process(compiledTemplate, content);
console.log(' Input processed');
const languageDir = path.join(outputDir, language.outPath);
fs.mkdir(languageDir, { recursive: true });
console.log(` Writing to ${languageDir}/index.html`);
await fs.writeFile(path.join(languageDir, 'index.html'), processed);
if (isDefault) {
console.log(` Writing to ${outputDir}/index.html`);
await fs.writeFile(path.join(outputDir, 'index.html'), processed);
}
}
console.log('Copying resources');
await fs.copyFile(path.resolve(srcDir, 'style.css'), path.resolve(outputDir, 'style.css'));
await fs.mkdir(outputResourcesDir, { recursive: true });
const resFiles = await fs.readdir(resourcesDir);
for (const resFile of resFiles) {
await fs.copyFile(
path.resolve(resourcesDir, resFile),
path.resolve(outputResourcesDir, resFile),
);
}
console.log(`Build finished at ${new Date().toLocaleString('en-GB')}`);
}
/**
* The TemplateProcessor class is a very lightweight templating engine.
* It's based on the Handlebars syntax.
*
* Usage:
*
* ```
* const templateString = 'A {{value}} string';
* const templateValues = { value: 'template' };
*
* const processor = new TemplateProcessor();
* const compiled = processor.compile(templateString);
* const result = processor.process(compiled, templateValues);
*
* // Result now contains: 'A template string'.
* ```
*/
class TemplateProcessor {
static #TOKEN_TYPE_LITERAL = 'literal';
static #TOKEN_TYPE_REFERENCE = 'reference';
static #TOKEN_TYPE_FUNC = 'func';
#funcMapping = {
each: this.#processFuncEach.bind(this),
if: this.#processFuncIf.bind(this),
};
/**
* Compile a template into a list of tokens.
*
* A token is an object with a type (one of the static `TOKEN_TYPE`s) and additional information.
*
* A literal token contains just a string value which will be used verbatim:
*
* ```
* {
* type: 'literal',
* value: 'A literal string value.'
* }
* ```
*
* A reference token contains a reference to a value from the content, which will be replaced:
*
* ```
* {
* type: 'reference',
* value: 'value.from.content'
* }
* ```
*
* A func token contains the tag name and arguments, and the body, which is a list of tokens:
*
* ```
* {
* type: 'func',
* tag: {
* name: 'each',
* args: [ 'list' ]
* },
* value: [
* {
* type: 'reference',
* value: 'this'
* }
* ]
* }
* ```
*
* @param {string} template
*/
compile(template) {
return this.#doCompile(template, 0)[0];
}
#doCompile(template, startIndex, openingTag) {
const compiled = [];
let index = startIndex;
let tagStartIndex = -1;
while ((tagStartIndex = template.indexOf('{{', index)) >= 0) {
compiled.push({ type: TemplateProcessor.#TOKEN_TYPE_LITERAL, value: template.substring(index, tagStartIndex) });
index = template.indexOf('}}', tagStartIndex) + 2;
const tag = template.substring(tagStartIndex, index);
const tagContent = tag.substring(2, tag.length - 2);
if (tag[2] === '#') {
// The tag is opening a function block.
const [name, ...args] = tagContent.substring(1).split(' ');
if (!this.#funcMapping[name]) {
throw new Error(`Unknown tag function "${name}"`);
}
const subTag = { name, args };
const [sub, subEndIndex] = this.#doCompile(template, index, subTag);
index = subEndIndex;
compiled.push({ type: TemplateProcessor.#TOKEN_TYPE_FUNC, tag: subTag, value: sub });
} else if (tag[2] === '/') {
// The tag is closing a function block.
const name = tagContent.substring(1);
if (!openingTag || name !== openingTag.name) {
throw new Error(`Closing tag "${name}" does not match opening tag "${openingTag?.name}".`);
}
return [compiled, index];
} else {
// The tag is a reference.
compiled.push({ type: TemplateProcessor.#TOKEN_TYPE_REFERENCE, value: tagContent });
}
}
if (openingTag) {
throw new Error(`Unclosed tag: ${openingTag.name}`);
}
compiled.push({ type: TemplateProcessor.#TOKEN_TYPE_LITERAL, value: template.substring(index) });
return [compiled];
}
/**
* Process a template, replacing all template tags with the content.
*
* @param compiledTemplate The compiled template, as returned by {@link compile}.
* @param content The template content.
* @return {string}
*/
process(compiledTemplate, content) {
return compiledTemplate
.map((token) => {
switch (token.type) {
case TemplateProcessor.#TOKEN_TYPE_LITERAL:
return token.value;
case TemplateProcessor.#TOKEN_TYPE_REFERENCE:
const contentValue = this.#resolveContentReference(content, token.value);
if (contentValue === undefined) {
throw new Error(`Undefined content reference: ${token.value}`);
}
return contentValue;
case TemplateProcessor.#TOKEN_TYPE_FUNC:
return this.#funcMapping[token.tag.name](token.tag, token.value, content);
default:
throw new Error(`Unknown token type: ${token.type}`);
}
})
.join('');
}
/**
* Get a value from the content by a reference.
*
* If the content is an object, the reference can be a dot-separated path.
*
* If the content is a string, the reference can only be 'this'.
*
* @param {Object|string} content
* @param {string} reference
*/
#resolveContentReference(content, reference) {
if (typeof content === 'string') {
return this.#resolveContentReference({ this: content }, reference);
}
if (reference.includes('.')) {
const [first, ...rest] = reference.split('.');
return this.#resolveContentReference(content[first], rest.join('.'));
}
return content[reference];
}
#processFuncEach(tag, compiledTemplate, content) {
TemplateProcessor.#assertArgLength(tag, 1);
const list = this.#resolveContentReference(content, tag.args[0]);
if (!Array.isArray(list)) {
throw new Error(`Argument "${tag.args[0]}" for "${tag.name}" must be a list, ${typeof list} given`);
}
return list.map((item) => this.process(compiledTemplate, item)).join('');
}
#processFuncIf(tag, compiledTemplate, content) {
// limited to checking a single boolean
if (!content[tag.args[0]]) {
return;
}
return this.process(compiledTemplate, content);
}
static #assertArgLength(tag, expected) {
if (tag.args.length !== expected) {
throw new Error(`Expected ${expected} argument(s) for "${tag.name}", but got ${tag.args.length}`);
}
}
}