-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.js
More file actions
138 lines (110 loc) · 3.46 KB
/
Copy pathserver.js
File metadata and controls
138 lines (110 loc) · 3.46 KB
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
/**
*
* Aaron
*
* Copyright 2015-2016 Landstinget Dalarna Bibliotek och Informationscentral
* Copyright 2015-2016 Emil Hemdal (@emilhem)
*
* Aaron is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Aaron is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with Aaron. If not, see <http://www.gnu.org/licenses/>.
*
*/
'use strict';
var express = require('express');
var serveStatic = require('serve-static');
var bodyParser = require('body-parser');
var Cookies = require('cookies');
var path = require('path');
var mysql = require('mysql');
var debug = require('debug')('aaron:server');
var app = express();
var pugGen = require('./lib/pugGenerator.js');
var browserifyGen = require('./lib/browserifyGenerator.js');
var AM = require('./lib/accountManager.js');
var login = require('./lib/login.js');
var AM = require('./lib/accountManager.js');
var password = require('./lib/passwords.js');
var routeUser = require('./routes/user.js');
var config = require('./config.json');
var pool = mysql.createPool({
connectionLimit: 25,
host: config.mysql.host,
user: config.mysql.user,
password: config.mysql.password,
database: config.mysql.database
});
/**
* Test the connection. Kill the server if it fails.
*/
pool.getConnection(function(err, connection) {
if(err) {
throw err;
}
debug('MySQL: Database connected!');
connection.release();
});
AM.setPool(pool);
password.setSalt(config.salts.serverSalt);
if(config.production) {
debug('We\'re in production!');
browserifyGen.build();
} else {
debug('We\'re in development!');
browserifyGen.watch();
}
app.set('trust proxy', true);
app.use(serveStatic(path.join(__dirname, 'public/'), { 'index': false, dotfiles: 'ignore' }));
app.use(Cookies.express( config.cookieSecrets )); // TODO change the keys!
var urlencodedParser = bodyParser.urlencoded({ extended: false });
app.use(login.checkLoginStatus);
app.use(AM.getPermissions);
app.use('/admin', AM.getAdminStatus);
app.post('/login', urlencodedParser, login.doLogin);
app.get('/logout', urlencodedParser, login.doLogout);
app.get('/', function (req, res) {
if(!req.loggedIn) {
return login.render(req, res);
}
var html = pugGen['main.pug']();
res.status(200);
res.set({
'Content-Type': 'text/html',
'Content-Length': html.length,
});
res.end(html);
});
app.get('/help', function(req, res) {
var html = pugGen['help.pug']();
res.status(200).set({
'Content-Type': 'text/html',
'Content-Length': html.length,
});
res.end(html);
});
app.get('/admin', function(req, res) {
var html = pugGen['admin.pug']({app: 'adminPanel'});
res.status(200).set({
'Content-Type': 'text/html',
'Content-Length': html.length,
});
res.end(html);
});
routeUser(app);
app.get('*', function (req, res) {
debug('Reached 404.', req.url);
res.status(404);
res.end('404');
});
app.listen(34535, function () {
console.log('Server is now running!');
});