This repository has been archived by the owner on Sep 14, 2022. It is now read-only.
forked from dturak/uptime
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathapp.js
224 lines (194 loc) · 6.32 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
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
/*
* Monitor remote server uptime.
*/
var http = require('http');
var url = require('url');
var express = require('express');
var errorHandler = require('express-error-handler');
var bodyParser = require('body-parser');
var cookieParser = require('cookie-parser');
var methodOverride = require('method-override');
var cookieSession = require('cookie-session');
var config = require('config');
var socketIo = require('socket.io');
var fs = require('fs');
var monitor = require('./lib/monitor');
var analyzer = require('./lib/analyzer');
var CheckEvent = require('./models/checkEvent');
var Ping = require('./models/ping');
var PollerCollection = require('./lib/pollers/pollerCollection');
var apiApp = require('./app/api/app');
var dashboardApp = require('./app/dashboard/app');
var mongoose = require('./bootstrap');
// configure mongodb
mongoose.connect(
config.mongodb.connectionString
||
'mongodb://' + config.mongodb.user + ':' + config.mongodb.password + '@' + config.mongodb.server +'/' + config.mongodb.database,
{
useNewUrlParser: true,
useUnifiedTopology: true,
useCreateIndex: true,
useFindAndModify: false
}
).catch(function (error) {
if (config.debug) {
console.error('MongoDB error: ' + error.message);
}
console.error('\x1b[31m%s\x1b[0m', 'Make sure a mongoDB server is running and accessible by this application')
});
var a = analyzer.createAnalyzer(config.analyzer);
a.start();
// web front
var app = module.exports = express();
var server = http.createServer(app);
// set up rate limiter: maximum of request determined by pollingInterval
var RateLimit = require('express-rate-limit');
var limiter = new RateLimit({
windowMs: 60000, // 1 minute
max: config.monitor.pollingInterval/10
});
app.use(limiter);
// the following middlewares are only necessary for the mounted 'dashboard' app,
// but express needs it on the parent app (?) and it therefore pollutes the api
app.use(bodyParser.urlencoded({
extended: true
}));
app.use(bodyParser.json());
app.use(methodOverride(function (req, res) {
if (req.body && typeof req.body === 'object' && '_method' in req.body) {
// look in urlencoded POST bodies and delete it
var method = req.body._method
delete req.body._method
return method
}
}))
let crypto = require('crypto')
let cookie = crypto.randomBytes(64).toString('hex');
let secret = crypto.randomBytes(64).toString('hex');
app.use(cookieParser(cookie));
app.use(cookieSession({
key: 'uptime',
secret: secret,
proxy: true,
cookie: { maxAge: 60 * 60 * 1000 }
}));
app.set('pollerCollection', new PollerCollection());
// load plugins (may add their own routes and middlewares)
config.plugins.forEach(function(pluginName) {
var plugin = require(pluginName);
if (typeof plugin.initWebApp !== 'function') return;
console.log('loading plugin %s on app', pluginName);
plugin.initWebApp({
app: app,
api: apiApp, // mounted into app, but required for events
dashboard: dashboardApp, // mounted into app, but required for events
io: io,
config: config,
mongoose: mongoose
});
});
app.emit('beforeFirstRoute', app, apiApp);
if (app.get('env') === 'development') {
if (config.verbose) mongoose.set('debug', true);
app.use(express.static(__dirname + '/public'));
app.use(errorHandler({ dumpExceptions: true, showStack: true }));
}
if (app.get('env') === 'production') {
var oneYear = 31557600000;
app.use(express.static(__dirname + '/public', { maxAge: oneYear }));
app.use(errorHandler());
}
// Routes
app.emit('beforeApiRoutes', app, apiApp);
app.use('/api', apiApp);
app.emit('beforeDashboardRoutes', app, dashboardApp);
app.use('/dashboard', dashboardApp);
app.get('/', function(req, res) {
res.redirect('/dashboard/events');
});
app.get('/favicon.ico', function(req, res) {
res.redirect(301, '/dashboard/favicon.ico');
});
app.emit('afterLastRoute', app);
// Sockets
var io = socketIo.listen(server);
if (app.get('env') === 'production') {
io.enable('browser client etag');
//io.set('log level', 1);
io.set("transports", ["xhr-polling"]);
io.set("polling duration", 10);
}
if (app.get('env') === 'development') {
// if (!config.verbose) io.set('log level', 1);
}
CheckEvent.on('afterInsert', function(event) {
io.sockets.emit('CheckEvent', event.toJSON());
});
io.sockets.on('connection', function(socket) {
socket.on('set check', function(check) {
if (typeof check === 'function') {
check();
}
});
Ping.on('afterInsert', function(ping) {
socket.emit('ping', ping);
});
});
// old way to load plugins, kept for BC
fs.exists('./plugins/index.js', function(exists) {
if (exists) {
var pluginIndex = require('./plugins');
var initFunction = pluginIndex.init || pluginIndex.initWebApp;
if (typeof initFunction === 'function') {
initFunction({
app: app,
api: apiApp, // mounted into app, but required for events
dashboard: dashboardApp, // mounted into app, but required for events
io: io,
config: config,
mongoose: mongoose
});
}
}
});
module.exports = app;
var monitorInstance;
if (!module.parent) {
var serverUrl = url.parse(config.url);
var port;
if (config.server && config.server.port) {
console.error('Warning: The server port setting is deprecated, please use the url setting instead');
port = config.server.port;
}
port = port || serverUrl.port || process.env.PORT;
var host = serverUrl.hostname || process.env.HOST;
server.listen(port, function(){
console.log("Express server listening on host %s, port %d in %s mode", host, port, app.settings.env);
});
server.on('error', function(error) {
if (monitorInstance) {
var bind = typeof port === 'string'
? 'Pipe ' + port
: 'Port ' + port;
switch (error.code) {
case 'EACCES':
console.error('\x1b[31m%s\x1b[0m', bind + ' requires elevated privileges');
process.exit(1);
break;
case 'EADDRINUSE':
console.error('\x1b[31m%s\x1b[0m', bind + ' is already in use');
process.exit(1);
break;
default:
throw error;
}
monitorInstance.stop();
process.exit(1);
}
});
}
// monitor
if (config.autoStartMonitor) {
monitorInstance = require('./monitor');
}