forked from fzaninotto/uptime
-
Notifications
You must be signed in to change notification settings - Fork 4
/
app.js
188 lines (163 loc) · 5.45 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
/*
* 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);
mongoose.connection.on('error', function (err) {
console.error('MongoDB error: ' + err.message);
console.error('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);
// 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
}
}))
app.use(cookieParser('Z5V45V6B5U56B7J5N67J5VTH345GC4G5V4'));
app.use(cookieSession({
key: 'uptime',
secret: 'FZ5HEE5YHD3E566756234C45BY4DSFZ4',
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;
} else {
port = serverUrl.port;
if (port === null) {
port = 1337;
}
}
var port = process.env.PORT || port;
var host = process.env.HOST || serverUrl.hostname;
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(e) {
if (monitorInstance) {
monitorInstance.stop();
process.exit(1);
}
});
}
// monitor
if (config.autoStartMonitor) {
monitorInstance = require('./monitor');
}