-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
43 lines (33 loc) · 1.11 KB
/
app.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
var CronJob = require('cron').CronJob;
import { app, errorHandler } from "mu";
import { OpenTDBService } from "./services/opentdb";
import { TriviaStore } from "./services/trivia-store";
const openTDBService = new OpenTDBService();
const store = new TriviaStore();
/* --- API --- */
app.get('/add-trivia', function (req, res) {
openTDBService.getTrivia({ amount: 50 }).then((data) => {
store.addTrivias(data).then(() => {
res.send("Successfully added new trivias to the store")
});
});
});
app.get('/trivia-count', function (req, res) {
store.getCount(req.query).then((data) => {
res.send(data);
});
});
app.get('/clear-store', function (req, res) {
store.clearDB().then(() => res.send("Successfully cleared the store"));
})
/* --- SCHEDULED SERVER TASKS --- */
var job = new CronJob('0 */10 * * * *', function() {
openTDBService.getTrivia({ amount: 50 }).then((data) => {
store.addTrivias(data).then(() => {
console.log("Successfully added new trivias to the store");
});
});
});
// to start the cron jobs
job.start();
app.use(errorHandler);