-
Notifications
You must be signed in to change notification settings - Fork 1
/
publish.js
68 lines (58 loc) · 2.94 KB
/
publish.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
/**
* Created by bjdmeest on 10/06/2016.
* Header comment and inline comments added by slieber on 18/01/2021
* Copying of resources added by dyvassch and ghaesend on 06/01/2023
*
* Usually for specifications the most current version is available as index.html under the root address
* and additionally for each version a dedicated version folder exists. Each version refers with
* a link to its previous version (another folder under the root address with the version in its name)
*
* This script has the aim to populate a new version based on the provided content, therefore it:
* - sets correct current and previous dates in the provided content
* - creates a new dedicated version folder with the new content
* - replaces the current root index.html with the new content
*/
var fs = require('fs');
var path = require('path');
var copydir = require('copy-dir');
if (process.argv.length != 3 && process.argv.length != 4) {
console.log("");
console.log("Please provide the name of the HTML file which should be used to populate the new version of the spec");
console.log("The placeholders %thisDate% and %prevDate% will be replaced with respective values.");
console.log("Optionally, you can also provide the date");
console.log("Usage: node publish.sh [spec HTML version] [yyyymmdd?]");
process.exit(1);
}
var inputFilename = process.argv[2];
// Create a new directory for the new version within dist, e.g. dist/20210118
var dateString = process.argv[3] || (new Date()).toISOString().split('T')[0].replace(/-/g, '');
try {
fs.mkdirSync(path.resolve(__dirname, 'dist', dateString));
} catch (e) {
}
// Create a list of all folders in dist, i.e. resources folder and all previous version folders without the main index.html file
var files = fs.readdirSync(path.resolve(__dirname, 'dist'));
var dirs = [];
for (var i = 0; i < files.length; i++) {
if (fs.lstatSync(path.resolve(__dirname, 'dist', files[i])).isDirectory()) {
dirs.push(files[i]);
}
}
// Within the created list of directories, remove 'resources' and the version we just created
dirs.sort();
dirs.reverse();
if (dirs[0] === "resources") {
dirs.splice(0, 1);
}
if (dirs[0] === dateString) {
dirs.splice(0, 1);
}
// Use the content of inputFilename as new content: replace date placeholders and put it as 'current version' in dist root
var html = fs.readFileSync(inputFilename, 'utf8');
html = html.replace(/%thisDate%/g, dateString);
html = html.replace(/%prevDate%/g, dirs[0]);
fs.writeFileSync(path.resolve(__dirname, 'dist', 'index.html'), html);
copydir.sync(path.resolve(__dirname, 'resources'), path.resolve(__dirname, 'dist', 'resources'));
copydir.sync(path.resolve(__dirname, 'resources'), path.resolve(__dirname, 'dist', dateString, 'resources'));
// Next to the dist root, the current version will also reside in its dedicated version directory for which paths need to be adapted
fs.writeFileSync(path.resolve(__dirname, 'dist', dateString, 'index.html'), html);