-
Notifications
You must be signed in to change notification settings - Fork 705
/
app.js
171 lines (146 loc) · 4.69 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
/*
* Monitor remote server uptime.
*/
var http = require('http');
var url = require('url');
var express = require('express');
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');
// database
var mongoose = require('./bootstrap');
var a = analyzer.createAnalyzer(config.analyzer);
a.start();
// web front
var app = module.exports = express();
var server = http.createServer(app);
app.configure(function(){
app.use(app.router);
// 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(express.bodyParser());
app.use(express.methodOverride());
app.use(express.cookieParser('Z5V45V6B5U56B7J5N67J5VTH345GC4G5V4'));
app.use(express.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);
app.configure('development', function() {
if (config.verbose) mongoose.set('debug', true);
app.use(express.static(__dirname + '/public'));
app.use(express.errorHandler({ dumpExceptions: true, showStack: true }));
});
app.configure('production', function() {
var oneYear = 31557600000;
app.use(express.static(__dirname + '/public', { maxAge: oneYear }));
app.use(express.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);
io.configure('production', function() {
io.enable('browser client etag');
io.set('log level', 1);
});
io.configure('development', function() {
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) {
socket.set('check', check);
});
Ping.on('afterInsert', function(ping) {
socket.get('check', function(err, check) {
if (ping.check == check) {
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 = 80;
}
}
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');
}