forked from ParalelniPolis/rfid-access-system-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
server.js
96 lines (64 loc) · 1.75 KB
/
server.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
'use strict';
var util = require('./lib/util');
process.on('uncaughtException', function(error) {
util.error(error);
});
var _ = require('underscore');
var async = require('async');
var express = require('express');
var app = module.exports = express();
app.env = process.env.NODE_ENV || 'development';
var lib = app.lib = require('./lib');
var config = app.config = require('./config');
var db = app.db = require('./db');
var models = app.models = require('./models');
var onReadyQueue = [];
app.onReady = function(fn) {
if (app.isReady) {
return fn();
}
onReadyQueue.push(fn);
};
async.parallel([
function prepareDatabase(next) {
async.eachSeries(models, function(model, nextModel) {
model.setUpTable(nextModel);
}, next);
},
function prepareSessionStore(next) {
var MySQLStore = require('express-mysql-session');
var options = _.extend(
{},
app.config.db.connection,
app.config.sessions.storeOptions
);
app.sessionStore = new MySQLStore(options, next);
}
], function(error) {
if (error) {
console.error(error);
return process.exit(1);
}
// The app should be ready now.
require('./middleware')(app);
require('./controllers')(app);
app.use(function(error, req, res, next) {
// Catches errors from middleware and controllers.
if (error) {
error.status || (error.status = 500);
if (error.status === 500) {
util.error(error);
error.message = 'Unexpected error.';
}
return res.status(error.status).send(error.message || 'Unexpected error.');
}
next();
});
var server = app.server = app.listen(config.port, config.host);
console.log('Server listening on', config.host + ':' + config.port);
app.isReady = true;
_.each(onReadyQueue, function(fn) {
fn();
});
onReadyQueue = [];
});