forked from grishrl/leagueUp
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathheroesprofileAudit.js
79 lines (68 loc) · 1.62 KB
/
heroesprofileAudit.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
/*
{
$and: [{
season: 8
}, {
postedToHP: true
}, {
$or: [{
forfeit: {
$exists: false
}
}, {
forfeit: false
}]
}]
}
*/
const mongoose = require('mongoose');
const Match = require('./server/models/match-model');
const _ = require('lodash');
const fs = require('fs');
// connect to mongo db
mongoose.connect(process.env.mongoURI, () => {
console.log('connected to mongodb');
});
Match.find({
$and: [{
season: 8
}, {
postedToHP: true
}, {
$or: [{
forfeit: {
$exists: false
}
}, {
forfeit: false
}]
}]
}).then(
found => {
let replayList = [];
let greif = [];
found.forEach(
match => {
match = match.toObject();
let replayObj = match.replays;
_.forEach(replayObj, (val, key) => {
if (key != '_id') {
if (val.parsedUrl) {
let indOfEq = val.parsedUrl.indexOf('=') + 1;
let id = val.parsedUrl.substring(indOfEq, val.parsedUrl.length);
replayList.push(id);
} else {
greif.push(match.matchId);
}
}
});
}
);
fs.writeFile('audit.json', JSON.stringify(replayList), (err) => {
console.log(err);
});
fs.writeFile('grief.json', JSON.stringify(greif), (err) => {
console.log(err);
});
}
)