-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptimize.js
84 lines (77 loc) · 3.05 KB
/
optimize.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
"use strict";
const fs = require('fs'),
path = require('path'),
mkdirp = require('mkdirp'),
_ = require('underscore'),
noop = () => {},
sort = (object) => {
//Adapted from https://whitfin.io/sorting-object-recursively-node-jsjavascript/
let sorted = {},
keys = _.keys(object);
keys = _.sortBy(keys, function(key){
return key;
});
_.each(keys, function(key) {
if(typeof object[key] == 'object' && !(object[key] instanceof Array)){
sorted[key] = sort(object[key]);
} else {
sorted[key] = object[key];
}
});
return sorted;
},
read = (base) => {
try {
fs.accessSync(path.join(__dirname, 'content', base, 'index.json'), fs.R_OK | fs.W_OK);
delete require.cache[require.resolve('./content/'+base+'/index.json')];
return require('./content/'+base+'/index.json');
} catch(e) {
console.log(e);
return {};
}
},
save = (base, data) => {
mkdirp(path.join(__dirname, './content/', base), (err) => {
if (err) {
console.error(err);
} else {
fs.writeFile(path.join(__dirname, './content/', base, '/index.json'), JSON.stringify(sort(data), null, 2)+'\n', noop);
}
});
};
//The game record is the only authoritate record for all information
//To keep this database organized the script will walk though each
//game list and make sure that:
// [] the index is correct
// [] the publishers list is correct
// [] the developers list is correct
// [] every JSON is valid and formatted
let root = read('platforms');
let publishers = read('publishers');
Object.keys(root.companies).forEach((company) => {
company = read(`platforms/${company}`);
Object.keys(company.platforms).forEach((platform) => {
platform = read(`platforms/${company.guid}/${platform}`);
Object.keys(platform.regions).forEach((region) => {
region = read(`platforms/${company.guid}/${platform.guid}/${region}`);
Object.keys(region.games).forEach((guid) => {
let game = read(`platforms/${company.guid}/${platform.guid}/${region.guid}/${guid}`);
//Make sure there is a publisher profile
let publisher = read(`publishers/${game.publisher}`);
if(publisher.platforms) {
if(!_.contains(publisher.platforms, `${company.guid}/${platform.guid}/${region.guid}`)) {
publisher.platforms.push(`${company.guid}/${platform.guid}/${region.guid}`);
}
} else {
publisher['platforms'] = [`${company.guid}/${platform.guid}/${region.guid}`];
}
save(`publishers/${game.publisher}`, publisher);
//Check and clead
save(`platforms/${company.guid}/${platform.guid}/${region.guid}/${guid}`, game);
console.log(company.guid, '>', platform.guid, '>', region.guid, '>', game.name);
});
});
});
});
//Now that the game list is denormalized make sure the index files for
//developers and publishers is correct