gctGenerator/scripts/inject_codes.js

58 lines
2.1 KiB
JavaScript
Raw Normal View History

2020-07-01 14:26:48 +09:00
const fs = require('fs');
const path = require('path');
const jsdom = require('jsdom');
2020-07-01 13:55:31 +09:00
2020-07-01 14:26:48 +09:00
const jsonFilePath = path.join(__dirname, '../site/.vuepress/data/gameVersions.json');
2020-07-01 13:55:31 +09:00
const codeVersions = ['GMSE01', 'GMSJ01', 'GMSP01', 'GMSJ0A'];
2020-07-01 14:44:30 +09:00
const injectionTag = '<!-- injectionpoint -->';
2020-07-01 13:55:31 +09:00
2020-07-01 14:44:30 +09:00
const parseXml = (xmlString) => {
2020-07-01 14:26:48 +09:00
const codeCollection = new jsdom.JSDOM(xmlString).window.document.getElementsByTagName('code');
2020-06-28 06:33:20 +09:00
const codes = [...codeCollection];
2020-07-01 14:44:30 +09:00
return codes.map((code) => ({
2020-06-29 00:35:18 +09:00
author: parseTextNode(code, 'author'),
title: parseTextNode(code, 'title'),
description: parseTextNode(code, 'description'),
version: parseTextNode(code, 'version'),
date: parseTextNode(code, 'date'),
source: parseTextNode(code, 'source').replace(/[\s\n\r\t]+/gm, ''),
2020-06-28 06:33:20 +09:00
}));
};
2020-06-29 00:35:18 +09:00
const parseTextNode = (node, identifier) => node.getElementsByTagName(identifier)[0].textContent;
2020-06-28 06:33:20 +09:00
2020-07-01 14:44:30 +09:00
const codeJson = JSON.parse(fs.readFileSync(jsonFilePath));
2020-07-01 13:55:31 +09:00
for (let i = 0; i < codeVersions.length; i++) {
2020-07-01 14:26:48 +09:00
const xml = fs.readFileSync(path.join(__dirname, `../codes/${codeVersions[i]}.xml`));
2020-07-01 14:44:30 +09:00
codeJson.find((c) => c.identifier === codeVersions[i]).codes = parseXml(xml);
2020-07-01 13:55:31 +09:00
}
2020-07-01 14:44:30 +09:00
fs.writeFileSync(jsonFilePath, JSON.stringify(codeJson));
for (let i = 0; i < codeVersions.length; i++) {
const reference = fs.readFileSync(
path.join(__dirname, `../site/code-references/${codeVersions[i].toLowerCase()}.md`),
);
if (!reference.includes(injectionTag)) {
throw new Error(`No injection tag found in ${codeVersions[i].toLowerCase()}.md`);
}
const fileContent = reference.split(injectionTag)[0] + injectionTag;
const codes = codeJson.find((c) => c.identifier === codeVersions[i]).codes;
codes.forEach((code) => {
const title = `#${code.title}`;
const author = `*${code.author.includes(',') ? 'Authors' : 'Author'} ${code.author}`;
const version = `*${code.version} (${code.date})`;
const description = code.description;
fileContent += `\n\n${title}\n\n${version}\n\n${author}\n\n${description}`;
});
fs.writeFileSync(`../site/code-references/${codeVersions[i].toLowerCase()}.md`, fileContent);
}