-
Notifications
You must be signed in to change notification settings - Fork 10
/
detailedscrape.js
68 lines (60 loc) · 2.01 KB
/
detailedscrape.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
const fs = require('fs');
const https = require('https');
const breakthrough = require('./pages/detailed/breakthrough')
const spotlight = require('./pages/detailed/spotlight')
const communityday = require('./pages/detailed/communityday')
const raidbattles = require('./pages/detailed/raidbattles')
const generic = require('./pages/detailed/generic')
function main()
{
if (!fs.existsSync('files/temp'))
fs.mkdirSync('files/temp');
var events = JSON.parse(fs.readFileSync("./files/events.min.json"));
https.get("https://raw.githubusercontent.com/bigfoott/ScrapedDuck/data/events.min.json", (res) =>
{
let body = "";
res.on("data", (chunk) => { body += chunk; });
res.on("end", () => {
try
{
let bkp = JSON.parse(body);
events.forEach(e => {
// get generic extra data independend from event type
generic.get(e.link, e.eventID, bkp);
// get event type specific extra data
if (e.eventType == "research-breakthrough")
{
breakthrough.get(e.link, e.eventID, bkp);
}
else if (e.eventType == "pokemon-spotlight-hour")
{
spotlight.get(e.link, e.eventID, bkp);
}
else if (e.eventType == "community-day")
{
communityday.get(e.link, e.eventID, bkp);
}
else if (e.eventType == "raid-battles")
{
raidbattles.get(e.link, e.eventID, bkp);
}
});
}
catch (error)
{
console.error(error.message);
};
});
}).on("error", (error) => {
console.error(error.message);
});
}
try
{
main();
}
catch (e)
{
console.error("ERROR: " + e);
process.exit(1);
}