citra-emu
/
citra-web
Archived
1
0
Fork 0
This repository has been archived on 2024-03-23. You can view files and clone it, but cannot push or open issues or pull requests.
citra-web/scripts/games/app.js

130 lines
4.7 KiB
JavaScript
Raw Normal View History

const fs = require('fs-extra');
2017-06-03 01:36:17 +00:00
const path = require('path');
const util = require('util');
const logger = require('winston');
2017-06-07 07:32:12 +00:00
const request = require('request-promise');
const tomlify = require('tomlify-j0.4');
2017-06-03 01:36:17 +00:00
const exec = require('sync-exec');
const fsPathCode = './citra-games-wiki/games'
const fsPathWiki = './citra-games-wiki.wiki'
const fsPathHugoContent = '../../site/content/game'
const fsPathHugoBoxart = '../../site/static/images/game/boxart'
const fsPathHugoIcon = '../../site/static/images/game/icons'
const fsPathHugoScreenshots = '../../site/static/images/screenshots0'
const fsPathHugoSavefiles = '../../site/static/savefiles/'
process.on('unhandledRejection', err => {
logger.error('Unhandled rejection on process.');
logger.error(err);
process.exit(1);
});
2017-06-03 01:36:17 +00:00
function gitPull(directory, repository) {
if (fs.existsSync(directory)) {
logger.info(`Fetching latest from Github : ${directory}`);
logger.info(`git --git-dir=${directory} pull`);
exec(`git --git-dir=${directory} pull`);
2017-06-03 01:36:17 +00:00
} else {
logger.info(`Cloning repository from Github : ${directory}`);
logger.info(`git clone ${repository}`);
exec(`git clone ${repository}`);
2017-06-07 07:32:12 +00:00
}
}
async function getDirectories(x) {
return fs.readdir(x).filter(file => fs.lstatSync(path.join(x, file)).isDirectory())
}
async function run() {
2017-06-07 07:32:12 +00:00
// Make sure the output directories in Hugo exist.
[fsPathHugoContent, fsPathHugoBoxart, fsPathHugoIcon, fsPathHugoSavefiles, fsPathHugoScreenshots].forEach(function (path) {
if (fs.existsSync(path) == false) {
logger.info(`Creating Hugo output directory: ${path}`);
fs.ensureDirSync(path);
2017-06-07 07:32:12 +00:00
}
});
// Fetch game files stored in games-wiki repository.
gitPull('./citra-games-wiki', 'https://github.com/citra-emu/citra-games-wiki.git');
2017-06-07 07:32:12 +00:00
// Loop through each game and process it.
let games = await request.get({ uri: 'https://api.citra-emu.org/gamedb/websiteFeed/', json: true })
await Promise.all(games.map(async (x) => {
try {
logger.info(`Processing game: ${x.id}`);
2017-06-03 20:10:29 +00:00
// Set metadata.
x.date = `${new Date().toISOString()}`
// In Hugo, data keys need to be strings.
x.compatibility = x.compatibility.toString()
2017-06-03 20:10:29 +00:00
// Hugo requires compatibility to be a string to link to data JSON.
x.testcases.forEach(x => x.compatibility = x.compatibility.toString())
x.issues = x.issues.filter(x => x.state === 'open') || []
// Copy the boxart for the game.
fs.copySync(`${fsPathCode}/${x.id}/boxart.png`, `${fsPathHugoBoxart}/${x.id}.png`);
// Copy the icon for the game.
fs.copySync(`${fsPathCode}/${x.id}/icon.png`, `${fsPathHugoIcon}/${x.id}.png`);
// SAVEFILE BLOCK
var fsPathCodeSavefilesGame = `${fsPathCode}/${x.id}/savefiles/`;
var fsPathHugoSavefilesGame = `${fsPathHugoSavefiles}/${x.id}/`;
if (fs.existsSync(fsPathCodeSavefilesGame)) {
// Create the savefile directory for the game.
if (fs.existsSync(fsPathHugoSavefilesGame) == false) {
2017-06-07 07:32:12 +00:00
fs.mkdirSync(fsPathHugoSavefilesGame);
}
// Copy all savefiles into the output folder, and read their data.
fs.readdirSync(fsPathCodeSavefilesGame).forEach(file => {
if (path.extname(file) == '.zip') {
fs.copySync(`${fsPathCodeSavefilesGame}/${file}`, `${fsPathHugoSavefilesGame}/${file}`);
}
});
// Finished copying all savefiles into the output folder, and reading their data.
}
// END SAVEFILE BLOCK
// Copy the screenshots for the game.
let fsPathScreenshotInputGame = `${fsPathCode}/${x.id}/screenshots/`;
let fsPathScreenshotOutputGame = `${fsPathHugoScreenshots}/${x.id}/`;
if (fs.existsSync(fsPathScreenshotInputGame)) {
// Create the savefile directory for each game.
if (fs.existsSync(fsPathScreenshotOutputGame) == false) {
fs.mkdirSync(fsPathScreenshotOutputGame);
2017-06-07 07:32:12 +00:00
}
// Copy all screenshots into the output folder.
fs.readdirSync(fsPathScreenshotInputGame).forEach(file => {
if (path.extname(file) == '.png') {
fs.copySync(`${fsPathScreenshotInputGame}/${file}`, `${fsPathScreenshotOutputGame}/${file}`);
}
});
}
2017-06-03 01:36:17 +00:00
// Clear out the wiki markdown so it won't be stored with the metadata.
let wikiText = x.wiki_markdown
x.wiki_markdown = null
2017-06-07 07:32:12 +00:00
let meta = tomlify(x, null, 2);
let contentOutput = `+++\r\n${meta}\r\n+++\r\n\r\n${wikiText}\r\n`;
2017-06-07 07:32:12 +00:00
await fs.writeFile(`${fsPathHugoContent}/${x.id}.md`, contentOutput);
2017-06-07 07:32:12 +00:00
return x
} catch (ex) {
logger.warn(`${x.id} ${x.title} failed to generate: ${ex}`);
logger.error(ex);
throw ex
}
}))
2017-06-03 01:36:17 +00:00
}
// Script start
run()