Games now pull issues from Github.
This commit is contained in:
parent
aab4b23c12
commit
1da19ecfb8
|
@ -6,6 +6,7 @@ const logger = require('winston');
|
||||||
|
|
||||||
const sanitizeHtml = require('sanitize-html');
|
const sanitizeHtml = require('sanitize-html');
|
||||||
|
|
||||||
|
const request = require('request-promise');
|
||||||
const toml = require('toml');
|
const toml = require('toml');
|
||||||
const tomlify = require('tomlify-j0.4');
|
const tomlify = require('tomlify-j0.4');
|
||||||
const blackfriday = require('./blackfriday.js');
|
const blackfriday = require('./blackfriday.js');
|
||||||
|
@ -38,25 +39,67 @@ function getDirectories (srcpath) {
|
||||||
.filter(file => fs.lstatSync(path.join(srcpath, file)).isDirectory())
|
.filter(file => fs.lstatSync(path.join(srcpath, file)).isDirectory())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
async function getGithubIssues() {
|
||||||
|
var results = [];
|
||||||
|
|
||||||
|
// Force the while loop out after 10 calls.
|
||||||
|
for (var page = 0; page <= 3; page++) {
|
||||||
|
let options = {
|
||||||
|
url: `https://api.github.com/repos/citra-emu/citra/issues?per_page=99&page=${page}&client_id=fca88d03a8f4e3ae45f8&client_secret=97c8f5633b5f03a78bfa84f0ab50659db1303035`,
|
||||||
|
headers: { 'User-Agent': 'citrabot' }
|
||||||
|
};
|
||||||
|
|
||||||
|
logger.verbose(`Requesting Github Issue Page ${page}.`);
|
||||||
|
var body = await request.get(options);
|
||||||
|
var obj = JSON.parse(body);
|
||||||
|
|
||||||
|
if (obj == null || obj.length == 0) {
|
||||||
|
logger.verbose(`No more Github issues found -- on page ${page}.`);
|
||||||
|
break;
|
||||||
|
} else {
|
||||||
|
results = results.concat(obj);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return results;
|
||||||
|
}
|
||||||
|
|
||||||
// Fetch game information stored in Github repository.
|
// Fetch game information stored in Github repository.
|
||||||
gitPull(fsPathCode, 'https://github.com/citra-emu/citra-games-wiki.git');
|
gitPull(fsPathCode, 'https://github.com/citra-emu/citra-games-wiki.git');
|
||||||
|
|
||||||
// Fetch game articles stored in Github wiki.
|
// Fetch game articles stored in Github wiki.
|
||||||
gitPull(fsPathWiki, 'https://github.com/citra-emu/citra-games-wiki.wiki.git');
|
gitPull(fsPathWiki, 'https://github.com/citra-emu/citra-games-wiki.wiki.git');
|
||||||
|
|
||||||
// Make sure the output directories in Hugo exist.
|
// Fetch all issues from Github.
|
||||||
[fsPathHugoContent, fsPathHugoBoxart, fsPathHugoIcon, fsPathHugoSavefiles, fsPathHugoScreenshots].forEach(function (path) {
|
var githubIssues = null;
|
||||||
|
|
||||||
|
getGithubIssues()
|
||||||
|
.then(function(issues) {
|
||||||
|
logger.info(`Imported ${issues.length} issues from Github.`);
|
||||||
|
githubIssues = issues;
|
||||||
|
})
|
||||||
|
.then(function() {
|
||||||
|
// Make sure the output directories in Hugo exist.
|
||||||
|
[fsPathHugoContent, fsPathHugoBoxart, fsPathHugoIcon, fsPathHugoSavefiles, fsPathHugoScreenshots].forEach(function (path) {
|
||||||
if (fs.existsSync(path) == false) {
|
if (fs.existsSync(path) == false) {
|
||||||
logger.info(`Creating Hugo output directory: ${path}`);
|
logger.info(`Creating Hugo output directory: ${path}`);
|
||||||
fs.mkdirSync(path);
|
fs.mkdirSync(path);
|
||||||
}
|
}
|
||||||
|
});
|
||||||
|
})
|
||||||
|
.then(function() {
|
||||||
|
// Loop through each game and process it.
|
||||||
|
getDirectories(fsPathCode).forEach(function(game) {
|
||||||
|
processGame(game);
|
||||||
|
});
|
||||||
|
})
|
||||||
|
.catch(function(err) {
|
||||||
|
logger.error(err);
|
||||||
});
|
});
|
||||||
|
|
||||||
try {
|
function processGame(game) {
|
||||||
// Loop through each game folder.
|
|
||||||
getDirectories(fsPathCode).forEach(function(game) {
|
|
||||||
try {
|
try {
|
||||||
if (game == '.git') { return; }
|
if (game == '.git' || game == '_validation') { return; }
|
||||||
|
|
||||||
logger.info(`Processing game: ${game}`);
|
logger.info(`Processing game: ${game}`);
|
||||||
|
|
||||||
|
@ -117,6 +160,31 @@ try {
|
||||||
}
|
}
|
||||||
// END SAVEFILE BLOCK
|
// END SAVEFILE BLOCK
|
||||||
|
|
||||||
|
// GITHUB ISSUES BLOCK
|
||||||
|
if (model.github_issues != null && model.github_issues.length > 0) {
|
||||||
|
model.issues = [];
|
||||||
|
model.closed_issues = [];
|
||||||
|
|
||||||
|
model.github_issues.forEach(function(number) {
|
||||||
|
let issue = githubIssues.find(x => x.number == number);
|
||||||
|
if (issue == null) {
|
||||||
|
model.closed_issues.push(number);
|
||||||
|
} else {
|
||||||
|
model.issues.push({
|
||||||
|
number: issue.number.toString(),
|
||||||
|
title: issue.title,
|
||||||
|
state: issue.state,
|
||||||
|
created_at: issue.created_at,
|
||||||
|
updated_at: issue.updated_at,
|
||||||
|
labels: issue.labels.map(function(x) { return { name: x.name, color: x.color } })
|
||||||
|
});
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
github_issues = null;
|
||||||
|
}
|
||||||
|
// END GITHUB ISSUES BLOCK
|
||||||
|
|
||||||
// Copy the screenshots for the game.
|
// Copy the screenshots for the game.
|
||||||
let fsPathScreenshotInputGame = `${fsPathCode}/${game}/screenshots/`;
|
let fsPathScreenshotInputGame = `${fsPathCode}/${game}/screenshots/`;
|
||||||
let fsPathScreenshotOutputGame = `${fsPathHugoScreenshots}/${game}/`;
|
let fsPathScreenshotOutputGame = `${fsPathHugoScreenshots}/${game}/`;
|
||||||
|
@ -156,7 +224,4 @@ try {
|
||||||
logger.warn(`${game} failed to generate: ${ex}`);
|
logger.warn(`${game} failed to generate: ${ex}`);
|
||||||
logger.error(ex);
|
logger.error(ex);
|
||||||
}
|
}
|
||||||
});
|
|
||||||
} catch (ex) {
|
|
||||||
logger.error(ex);
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -8,6 +8,8 @@
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"delete": "^0.3.2",
|
"delete": "^0.3.2",
|
||||||
"fs-extra": "^3.0.1",
|
"fs-extra": "^3.0.1",
|
||||||
|
"request": "^2.81.0",
|
||||||
|
"request-promise": "^4.2.1",
|
||||||
"rimraf": "^2.6.1",
|
"rimraf": "^2.6.1",
|
||||||
"sanitize-html": "^1.14.1",
|
"sanitize-html": "^1.14.1",
|
||||||
"sync-exec": "^0.6.2",
|
"sync-exec": "^0.6.2",
|
||||||
|
|
|
@ -99,10 +99,40 @@
|
||||||
{{ end }}
|
{{ end }}
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
||||||
{{ if (where (readDir "/static/savefiles") "Name" .File.BaseFileName) }}
|
<!-- Github Issues -->
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-12">
|
||||||
|
<h2>Known Issues</h2>
|
||||||
|
{{- if isset .Params "issues" }}
|
||||||
|
<table class="table table-responsive table-striped">
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Created</th>
|
||||||
|
<th>Last Updated</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
{{- range .Params.issues }}
|
||||||
|
<tr>
|
||||||
|
<th><a href="https://github.com/citra-emu/citra/issues/{{ .number }}">{{ .title }}</a></th>
|
||||||
|
<td>{{ dateFormat "January 2, 2006" .created_at }}</td>
|
||||||
|
<td>{{ dateFormat "January 2, 2006" .updated_at }}</td>
|
||||||
|
</tr>
|
||||||
|
{{- end }}
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
{{- else }}
|
||||||
|
<p>No issues have been reported for this game.</p>
|
||||||
|
{{- end }}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Savefiles -->
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-md-12">
|
<div class="col-md-12">
|
||||||
<h2>Savefiles</h2>
|
<h2>Savefiles</h2>
|
||||||
|
{{ if (where (readDir "/static/savefiles") "Name" .File.BaseFileName) }}
|
||||||
<table class="table table-responsive table-striped">
|
<table class="table table-responsive table-striped">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
|
@ -123,14 +153,16 @@
|
||||||
{{ end }}
|
{{ end }}
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
</div>
|
{{ else }}
|
||||||
</div>
|
<p>No savefiles have been uploaded for this game.</p>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
{{ if (where (readDir "/static/images/screenshots0") "Name" .File.BaseFileName) }}
|
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-md-12">
|
<div class="col-md-12">
|
||||||
<h2>Screenshots</h2>
|
<h2>Screenshots</h2>
|
||||||
|
{{ if (where (readDir "/static/images/screenshots0") "Name" .File.BaseFileName) }}
|
||||||
{{ $files := readDir (printf "/static/images/screenshots0/%s/" .File.BaseFileName) }}
|
{{ $files := readDir (printf "/static/images/screenshots0/%s/" .File.BaseFileName) }}
|
||||||
{{ range $index, $element := $files }}
|
{{ range $index, $element := $files }}
|
||||||
<div class="popup-gallery col-lg-3 col-md-4 col-xs-6 thumb">
|
<div class="popup-gallery col-lg-3 col-md-4 col-xs-6 thumb">
|
||||||
|
@ -139,10 +171,11 @@
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
</div>
|
{{ else }}
|
||||||
</div>
|
<p>No screenshots have been uploaded for this game.</p>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
||||||
{{ define "scripts" }}
|
{{ define "scripts" }}
|
||||||
|
|
Loading…
Reference in New Issue