-
Notifications
You must be signed in to change notification settings - Fork 0
/
scheduledFunctions.js
453 lines (422 loc) · 15.1 KB
/
scheduledFunctions.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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
const { MongoClient, ServerApiVersion } = require("mongodb");
const { env } = process;
const CronJob = require("node-cron");
const fetch = require("node-fetch");
var access_token = env.ACCESS_TOKEN;
const uri = env.MONGO_DB_URI;
const client = new MongoClient(uri, {
useNewUrlParser: true,
useUnifiedTopology: true,
serverApi: ServerApiVersion.v1,
});
// # ┌───────────── minute (0 - 59)
// # │ ┌───────────── hour (0 - 23)
// # │ │ ┌───────────── day of the month (1 - 31)
// # │ │ │ ┌───────────── month (1 - 12)
// # │ │ │ │ ┌───────────── day of the week (0 - 6) (Sunday to Saturday;
// # │ │ │ │ │ 7 is also Sunday on some systems)
// # │ │ │ │ │ OR sun, mon, tue, wed, thu, fri, sat
// # │ │ │ │ │
// # * * * * *
exports.initScheduledJobs = () => {
const scheduledJobFunction = CronJob.schedule("0 0 * * SUN", () => {
const databaseName ="raiddon-bnet-api"
const connect = client.db(databaseName);
connect.dropDatabase();
console.log("Dropping successful");
// Data to be inserted: Playable races
client.connect((err) => {
const collection1 = client
.db("raiddon-bnet-api")
.collection("playable-races")
fetch(
"https://us.api.blizzard.com/data/wow/playable-race/index?namespace=static-classic-us&locale=en_US&access_token=" +
access_token
)
.then((response) => response.json())
.then((data) => {
myobj = data.races;
collection1.insertMany(myobj, function (err, res) {
if (err) throw err;
console.log("Playable races collection inserted into Raiddon db");
});
});
// Data to be inserted: Playable classes
const collection2 = client
.db("raiddon-bnet-api")
.collection("playable-classes");
fetch(
"https://us.api.blizzard.com/data/wow/playable-class/index?namespace=static-classic-us&locale=en_US&access_token=" +
access_token
)
.then((response) => response.json())
.then((data) => {
myobj = data.classes;
collection2.insertMany(myobj, function (err, res) {
if (err) throw err;
console.log("Playable classes collection inserted into Raiddon db");
});
});
// Data to be inserted: Auction house index
const collection3 = client
.db("raiddon-bnet-api")
.collection("auction-house-index");
fetch(
"https://us.api.blizzard.com/data/wow/connected-realm/4372/auctions/index?namespace=dynamic-classic-us&locale=en_US&access_token=" +
access_token
)
.then((response) => response.json())
.then((data) => {
myobj = data.auctions;
// Collection in which the data will be inserted
collection3.insertMany(myobj, function (err, res) {
if (err) throw err;
console.log("Auction house index collection inserted into Raiddon db");
});
});
// Data to be inserted: Auction house alliance
const collection4 = client
.db("raiddon-bnet-api")
.collection("auction-house-alliance");
fetch(
"https://us.api.blizzard.com/data/wow/connected-realm/4372/auctions/2?namespace=dynamic-classic-us&locale=en_US&access_token=" +
access_token
)
.then((response) => response.json())
.then((data) => {
myobj = data.auctions;
// Collection in which the data will be inserted
collection4.insertMany(myobj, function (err, res) {
if (err) throw err;
console.log(
"Auction house alliance collection inserted into Raiddon db"
);
});
});
// Data to be inserted: Auction house horde
const collection5 = client
.db("raiddon-bnet-api")
.collection("auction-house-horde");
fetch(
"https://us.api.blizzard.com/data/wow/connected-realm/4372/auctions/6?namespace=dynamic-classic-us&locale=en_US&access_token=" +
access_token
)
.then((response) => response.json())
.then((data) => {
myobj = data.auctions;
// Collection in which the data will be inserted
collection5.insertMany(myobj, function (err, res) {
if (err) throw err;
console.log("Auction house horde collection inserted into Raiddon db");
});
});
// Data to be inserted: Item classes
const collection6 = client.db("raiddon-bnet-api").collection("item-classes");
fetch(
"https://us.api.blizzard.com/data/wow/item-class/index?namespace=static-classic-us&locale=en_US&access_token=" +
access_token
)
.then((response) => response.json())
.then((data) => {
myobj = data.item_classes;
collection6.insertMany(myobj, function (err, res) {
if (err) throw err;
console.log("Item classes collection inserted into Raiddon db");
});
});
// Data to be inserted: Consumables
const collection7 = client.db("raiddon-bnet-api").collection("consumables");
fetch(
"https://us.api.blizzard.com/data/wow/item-class/0?namespace=static-classic-us&locale=en_US&access_token=" +
access_token
)
.then((response) => response.json())
.then((data) => {
myobj = data.item_subclasses;
// Collection in which the data will be inserted
collection7.insertMany(myobj, function (err, res) {
if (err) throw err;
console.log("Consumables collection inserted into Raiddon db");
});
});
// Data to be inserted: Containers
const collection8 = client.db("raiddon-bnet-api").collection("containers");
fetch(
"https://us.api.blizzard.com/data/wow/item-class/1?namespace=static-classic-us&locale=en_US&access_token=" +
access_token
)
.then((response) => response.json())
.then((data) => {
myobj = data.item_subclasses;
// Collection in which the data will be inserted
collection8.insertMany(myobj, function (err, res) {
if (err) throw err;
console.log("Containers collection inserted into Raiddon db");
});
});
// Data to be inserted: Weapons
const collection9 = client.db("raiddon-bnet-api").collection("weapons");
fetch(
"https://us.api.blizzard.com/data/wow/item-class/2?namespace=static-classic-us&locale=en_US&access_token=" +
access_token
)
.then((response) => response.json())
.then((data) => {
myobj = data.item_subclasses;
collection9.insertMany(myobj, function (err, res) {
if (err) throw err;
console.log("Weapons collection inserted into Raiddon db");
});
});
// Data to be inserted: Gems
const collection10 = client.db("raiddon-bnet-api").collection("gems");
fetch(
"https://us.api.blizzard.com/data/wow/item-class/3?namespace=static-classic-us&locale=en_US&access_token=" +
access_token
)
.then((response) => response.json())
.then((data) => {
myobj = data.item_subclasses;
collection10.insertMany(myobj, function (err, res) {
if (err) throw err;
console.log("Gems collection inserted into Raiddon db");
});
});
// Data to be inserted: Armor
const collection11 = client.db("raiddon-bnet-api").collection("armor");
fetch(
"https://us.api.blizzard.com/data/wow/item-class/4?namespace=static-classic-us&locale=en_US&access_token=" +
access_token
)
.then((response) => response.json())
.then((data) => {
myobj = data.item_subclasses;
collection11.insertMany(myobj, function (err, res) {
if (err) throw err;
console.log("Armor collection inserted into Raiddon db");
});
});
// Data to be inserted: Professions
const collection12 = client.db("raiddon-bnet-api").collection("professions");
fetch(
"https://us.api.blizzard.com/data/wow/profession/index?namespace=static-us&locale=en_US&access_token=" +
access_token
)
.then((response) => response.json())
.then((data) => {
myobj = data.professions;
collection12.insertMany(myobj, function (err, res) {
if (err) throw err;
console.log("Professions collection inserted into Raiddon db");
});
});
// Data to be inserted: Power types
const collection13 = client.db("raiddon-bnet-api").collection("power-types");
fetch(
"https://us.api.blizzard.com/data/wow/power-type/index?namespace=static-classic-us&locale=en_US&access_token=" +
access_token
)
.then((response) => response.json())
.then((data) => {
myobj = data.power_types;
collection13.insertMany(myobj, function (err, res) {
if (err) throw err;
console.log("Power types collection inserted into Raiddon db");
});
});
// Data to be inserted: Realms
const collection14 = client.db("raiddon-bnet-api").collection("realms");
fetch(
"https://us.api.blizzard.com/data/wow/realm/index?namespace=dynamic-classic-us&locale=en_US&access_token=" +
access_token
)
.then((response) => response.json())
.then((data) => {
myobj = data.realms;
collection14.insertMany(myobj, function (err, res) {
if (err) throw err;
console.log("Realms collection inserted into Raiddon db");
});
});
// Data to be inserted: Creature families
const collection15 = client
.db("raiddon-bnet-api")
.collection("creature-families");
fetch(
"https://us.api.blizzard.com/data/wow/creature-family/index?namespace=static-classic-us&locale=en_US&access_token=" +
access_token
)
.then((response) => response.json())
.then((data) => {
myobj = data.creature_families;
collection15.insertMany(myobj, function (err, res) {
if (err) throw err;
console.log("Creature families collection inserted into Raiddon db");
});
});
// Data to be inserted: Creature types
const collection16 = client
.db("raiddon-bnet-api")
.collection("creature-types");
fetch(
"https://us.api.blizzard.com/data/wow/creature-type/index?namespace=static-classic-us&locale=en_US&access_token=" +
access_token
)
.then((response) => response.json())
.then((data) => {
myobj = data.creature_types;
collection16.insertMany(myobj, function (err, res) {
if (err) throw err;
console.log("Creature types collection inserted into Raiddon db");
});
});
// Data to be inserted: Achievements
const collection17 = client.db("raiddon-bnet-api").collection("achievements");
fetch(
"https://us.api.blizzard.com/data/wow/achievement/index?namespace=static-us&locale=en_US&access_token=" +
access_token
)
.then((response) => response.json())
.then((data) => {
myobj = data.achievements;
collection17.insertMany(myobj, function (err, res) {
if (err) throw err;
console.log("Achievements collection inserted into Raiddon db");
});
});
// Data to be inserted: Mounts
const collection18 = client.db("raiddon-bnet-api").collection("mounts");
fetch(
"https://us.api.blizzard.com/data/wow/mount/index?namespace=static-us&locale=en_US&access_token=" +
access_token
)
.then((response) => response.json())
.then((data) => {
myobj = data.mounts;
collection18.insertMany(myobj, function (err, res) {
if (err) throw err;
console.log("Mounts collection inserted into Raiddon db");
});
});
// Data to be inserted: Character specializations
const collection19 = client
.db("raiddon-bnet-api")
.collection("character-specializations");
fetch(
"https://us.api.blizzard.com/data/wow/playable-specialization/index?namespace=static-us&locale=en_US&access_token=" +
access_token
)
.then((response) => response.json())
.then((data) => {
myobj = data.character_specializations;
collection19.insertMany(myobj, function (err, res) {
if (err) throw err;
console.log(
"Character collection inserted into Raiddon db"
);
});
});
// Data to be inserted: Quest categories
const collection20 = client
.db("raiddon-bnet-api")
.collection("quest-categories");
fetch(
"https://us.api.blizzard.com/data/wow/quest/category/index?namespace=static-us&locale=en_US&access_token=" +
access_token
)
.then((response) => response.json())
.then((data) => {
myobj = data.categories;
collection20.insertMany(myobj, function (err, res) {
if (err) throw err;
console.log(
"Quest categories collection inserted into Raiddon db"
);
});
});
// Data to be inserted: Areas
const collection21 = client.db("raiddon-bnet-api").collection("areas");
fetch(
"https://us.api.blizzard.com/data/wow/quest/area/index?namespace=static-us&locale=en_US&access_token=" +
access_token
)
.then((response) => response.json())
.then((data) => {
myobj = data.areas;
collection21.insertMany(myobj, function (err, res) {
if (err) throw err;
console.log(
"Areas collection inserted into Raiddon db"
);
});
});
// Data to be inserted: Reputation factions
const collection22 = client
.db("raiddon-bnet-api")
.collection("reputation-factions");
fetch(
"https://us.api.blizzard.com/data/wow/reputation-faction/index?namespace=static-us&locale=en_US&access_token=" +
access_token
)
.then((response) => response.json())
.then((data) => {
myobj = data.factions;
collection22.insertMany(myobj, function (err, res) {
if (err) throw err;
console.log(
"Reputation factions collection inserted into Raiddon db"
);
});
});
// Data to be inserted: Class talents
const collection23 = client
.db("raiddon-bnet-api")
.collection("class-talents");
fetch(
"https://us.api.blizzard.com/data/wow/talent-tree/index?namespace=static-us&locale=en_US&access_token=" +
access_token
)
.then((response) => response.json())
.then((data) => {
myobj = data.talent_trees;
collection23.insertMany(myobj, function (err, res) {
if (err) throw err;
console.log(
"Class talents collection inserted into Raiddon db"
);
});
});
// Data to be inserted: Titles
const collection24 = client.db("raiddon-bnet-api").collection("titles");
fetch(
"https://us.api.blizzard.com/data/wow/title/index?namespace=static-us&locale=en_US&access_token=" +
access_token
)
.then((response) => response.json())
.then((data) => {
myobj = data.titles;
collection24.insertMany(myobj, function (err, res) {
if (err) throw err;
console.log(
"Titles collection inserted into Raiddon db"
);
});
});
// Data to be inserted: Achievements categories
const collection25 = client.db("raiddon-bnet-api").collection("achievements-categories");
fetch(
"https://us.api.blizzard.com/data/wow/achievement-category/index ?namespace=static-us&locale=en_US&access_token=" +
access_token
)
.then((response) => response.json())
.then((data) => {
myobj = data.categories;
collection25.insertMany(myobj, function (err, res) {
if (err) throw err;
console.log("Achievements categories inserted into Raiddon db");
});
});
});
});
scheduledJobFunction.start();
};