-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.js
41 lines (35 loc) · 1.02 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
var express = require('express');
var path = require('path');
var cookieParser = require('cookie-parser');
var logger = require('morgan');
const fetchOperatingStatus = require('fetch-db-operating-status');
var app = express();
app.use(logger('dev'));
app.use(express.json());
app.use(express.urlencoded({ extended: false }));
app.use(cookieParser());
app.use(express.static(path.join(__dirname, 'public')));
app.get('/alert', async function (req, res, next) {
var result = await fetchOperatingStatus().catch((end) => {
return {
messageId: 0,
translations: {
en: {
title: 'No Alerts',
message: 'null',
link: 'null'
},
de: {
title: 'Kein Alarm',
message: 'null',
link: 'null'
}
}
}
});
res.status(200).send({
success: 'true',
message: result
});
});
module.exports = app;