forked from ridencww/uniroster-server
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.js
74 lines (59 loc) · 2.05 KB
/
index.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
require('newrelic');
const express = require('express');
const config = require('./config');
const bodyParser = require('body-parser')
const oauthServer = require('./oauth/server')
const app = express()
app.use(bodyParser.urlencoded({ extended: false }));
app.use('/oauth', require('./routes/auth'))
app.use('/learningdata', oauthServer.authenticate(), require('./routes/routes'));
app.use('/settings', require('./routes/settings'));
if (config.httpActive == true) {
const http = require('http');
var httpServer = http.createServer(app);
httpServer.listen(config.httpPort);
httpServer.on('error', onError);
httpServer.on('listening', onListening);
}
if (config.httpsActive == true) {
const https = require('https');
const fs = require('fs');
const privateKey = fs.readFileSync(config.httpsPrivateKey, 'utf8');
const certificate = fs.readFileSync(config.httpsCert, 'utf8');
const credentials = {key: privateKey, cert: certificate};
var httpsServer = https.createServer(credentials, app);
httpsServer.listen(config.httpsPort);
httpsServer.on('error', onError);
httpsServer.on('listening', onListeningSecure);
}
function onError(error) {
if (error.syscall !== 'listen') {
throw error;
}
const bind = typeof port === 'string'
? 'Pipe ' + port
: 'Port ' + port;
switch (error.code) {
case 'EACCES':
console.error(bind + ' requires elevated privileges');
process.exit(1);
break;
case 'EADDRINUSE':
console.error(bind + ' is already in use');
process.exit(1);
break;
default:
throw error;
}
}
function onListening() {
const addr = httpServer.address();
const bind = typeof addr === 'string' ? 'pipe ' + addr : 'port ' + addr.port;
console.log('HTTP listening on ' + bind);
}
function onListeningSecure() {
const addr = httpsServer.address();
const bind = typeof addr === 'string' ? 'pipe ' + addr : 'port ' + addr.port;
console.log('HTTPS listening on ' + bind);
}
module.exports = app