-
Notifications
You must be signed in to change notification settings - Fork 49
/
generate.js
125 lines (117 loc) · 5.2 KB
/
generate.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
const fs = require('fs');
const path = require('path');
const active = fs.readdirSync('.').filter(f=>fs.existsSync(`${f}/modules`));
const directoryPath = path.join(__dirname, 'your-directory'); // replace 'your-directory' with your target directory
function listFilesSync(directory, callback) {
try {
const files = fs.readdirSync(directory);
files.forEach((file) => {
const filePath = path.join(directory, file);
const stats = fs.statSync(filePath);
if (stats.isDirectory()) {
// If the file is a directory, recurse into the directory
listFilesSync(filePath, callback);
} else {
// If the file is not a directory, print its path
callback(filePath, directory);
}
});
} catch (err) {
console.error('Error reading directory:', err);
}
}
const simplePath = p => p ? p.split(/pages./)[1].replace('\\', '/') : 'missing.adoc';
const allEn = [];
listFilesSync(`en/modules/ROOT/pages`, filePath => allEn.push(simplePath(filePath).replace('.adoc', '')));
let status = '';
for (const lang of active) {
const orphans = [];
const duplicates = [];
const translations = {};
const partials = [];
const antora = fs.readFileSync(`${lang}/antora.yml`, 'utf8');
const display = antora.split("\n").find(l=>l.includes('display_version')).split(':')[1].trim().replaceAll('\'', '');
let ok = 0;
const links = {};
const allPages = [];
listFilesSync(`${lang}/modules/ROOT/pages`, (filePath, directory) => {
const content = fs.readFileSync(filePath, 'utf8');
const pageEn = content.match(/:page-en:(.*)/);
const currentPath = simplePath(filePath);
allPages.push(currentPath);
if (currentPath == "missing.adoc" || currentPath == "broken.adoc") {
return;
}
if (!pageEn || allEn.indexOf(pageEn[1].trim()) == -1) {
if (lang == "nl" && fs.existsSync(filePath.replace(/nl.modules/,'en/modules'))) {
const lines = content.split('\n');
const fixedContent = lines[0]+'\n:page-en: '+currentPath.replace('.adoc','')+'\n'+lines.slice(1).join('\n')
fs.writeFileSync(filePath, fixedContent, 'utf8')
}
orphans.push(currentPath);
} else {
if (content.includes('UnderConstruction.png')) {
partials.push(simplePath(filePath));
}
if (translations[pageEn[1].trim()]) {
duplicates.push(simplePath(translations[pageEn[1].trim()]));
duplicates.push(currentPath);
} else if (!content.includes('UnderConstruction.png')){
ok++;
}
translations[pageEn[1].trim()] = filePath;
}
const refs = [...content.matchAll(/xref:([^.@]*\.adoc)/g)];
(refs || []).forEach(m => {
const linkRef = m[1].replace(/^\//, '');
const absRef = linkRef.startsWith('./') ? simplePath(directory) + linkRef.substring(1) : linkRef;
links[absRef] = links[absRef] || [];
links[absRef].push(simplePath(filePath));
})
});
for (const page of allPages) {
delete(links[page]);
}
const nav = fs.readFileSync('en/modules/ROOT/nav.adoc', 'utf8');
const localNav = nav.replace(/xref:(.+?).adoc/g, function(match, contents) {
return "xref:" + simplePath(translations[contents]);
});
const missing = [];
for (const enPage of allEn) {
if (!translations[enPage] && enPage != "missing" && enPage != "broken") {
missing.push(enPage);
}
}
if (!fs.existsSync(`${lang}/modules/ROOT/nav.adoc`)) {
fs.writeFileSync(`${lang}/modules/ROOT/nav.adoc`, localNav, 'utf8');
}
const linkify = k=>`\n * xref:${k}[${k.substr(0, k.length - 5)}]`;
const indentLinkify = k=>`\n ** xref:${k}[${k.substr(0, k.length - 5)}]`;
const missingList = !missing.length ? "All clear"
: missing.map(k=>`\n * xref:en@manual::${k}.adoc[${k}]`).join('');
const orphanList = !orphans.length ? "All clear"
: orphans.map(linkify).join('');
const partialList = !partials.length ? "All clear"
: partials.map(linkify).join('');
const dupeList = !duplicates.length ? "All clear"
: duplicates.map(k=>`\n * xref:${k}[${k.substr(0, k.length - 5)}]`).join('');
fs.writeFileSync(`${lang}/modules/ROOT/pages/missing.adoc`, '= Translation issues\n'
+ '\n== Extra translations\n'
+ orphanList
+ '\n\n== Missing translations\n'
+ missingList
+ '\n\n== Partial translations\n'
+ partialList
+ '\n\n== Duplicate translations\n'
+ dupeList, 'utf8');
fs.writeFileSync(`${lang}/modules/ROOT/pages/broken.adoc`, '= Broken links\n\n'
+ Object.entries(links).map(([link, sources]) =>
`* ${link}:\n ${sources.map(indentLinkify).join("")}\n`).join("") +"\n\n", 'utf8');
status += `| ${display} (${lang}) `.padEnd(25," ");
for (const stat of [ok, missing.length, orphans.length, duplicates.length, partials.length]) {
status += `| ${stat}`.padEnd(10," ")
}
status += '|\n';
}
const readme = fs.readFileSync('README.md', 'utf8').split(/---\|\r?\n/)[0] + "---|\n";
fs.writeFileSync('README.md', readme + status, 'utf8');