-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathserver.js
executable file
·196 lines (162 loc) · 4.76 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
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
189
190
191
192
193
194
195
196
#!/usr/bin/env node
var express = require('express');
var hash = require('./pass').hash;
var config = require('../config').config;
var fs = require('fs');
var _ = require('underscore');
var app = express();
var collectDownloads = function() {
var downloads = [];
var path = config.rootServerPath + '/' + config.downloadsLoc;
fs.readdirSync(path).forEach(function(f) {
downloads.push({
serverpath: '/' + config.downloadsLoc + '/' + f,
clientpath: '/' + config.downloadsLoc + '/' + f,
filename: f
});
});
return downloads;
};
// build a user database that includes salt+hash pairs instead of
// plaintext passwords
var users = {};
var addUser = function(uname, pwd) {
hash(pwd, function(err, salt, hash) {
if (err) {
throw err;
}
users[uname] = {
name: uname,
salt: salt,
hash: hash
};
});
};
config.userSpecs.forEach(function(spec) {
if (config.passwordIsUsername) {
addUser(spec, spec);
} else {
spec = spec.split(' ');
addUser(spec[0], spec[1]);
}
});
// express config & middleware
app.set('view engine', 'hbs');
app.set('views', __dirname);
app.use(express.bodyParser());
app.use(express.cookieParser(config.cookieSecret));
app.use(express.session());
app.enable('jsonp callback');
// session-persisted handlebars context
app.use(function(req, res, next) {
var err = null;
if (req.session) {
var err = req.session.error;
delete req.session.error;
}
res.locals.message = err ? err : '';
res.locals.authenticated = !!req.session.user;
res.locals.site = config.staticSiteLoc + '/' + config.homePage;
res.locals.sitename = config.staticSiteName;
res.locals.passwordIsUsername = config.passwordIsUsername;
res.locals.baseurl = req.protocol + "://" + req.get('host');
// We should really cache this, but it's kinda
// nice to have it update after hitting refresh.
res.locals.files = collectDownloads();
next();
});
// check the user database by applying salt
function authenticate(name, pass, fn) {
var user = users[name];
if (!user) {
return fn(new Error('cannot find user'));
}
hash(pass, user.salt, function(err, hash) {
if (err) {
return fn(err);
}
// There's probably a better way to compare buffers,
// but for now we'll convert them to strings. If we
// don't do this, some versions of node always fail
// this comparison.
if (hash.toString() == user.hash.toString()) {
return fn(null, user);
}
fn(new Error('invalid password'));
});
}
// define a validation callback for restricted areas
function restrict(req, res, next) {
if (req.session.user) {
next();
} else {
res.render('index');
}
}
// let the routing begin!
app.all('/', function(req, res, next) {
res.header("Access-Control-Allow-Origin", "*");
res.header("Access-Control-Allow-Headers", "X-Requested-With");
next();
});
app.get('/', function(req, res) {
res.render('index');
});
app.get('/login', function(req, res) {
res.render('index');
});
app.get('/' + config.staticSiteLoc, restrict, function(req, res) {
res.sendfile(
config.staticSiteLoc + '/index.html',
{root: config.rootServerPath, maxAge: null});
});
app.get('/' + config.staticSiteLoc + '/*', restrict, function(req, res) {
res.sendfile(
config.staticSiteLoc + '/' + req.params[0],
{root: config.rootServerPath, maxAge: null});
});
var endsWith = function(str, suffix) {
return str.indexOf(suffix, str.length - suffix.length) !== -1;
};
app.get('/public/*', function(req, res) {
res.header("Access-Control-Allow-Origin", "*");
res.header("Access-Control-Allow-Headers", "X-Requested-With");
if (endsWith(req.params[0], '.css')) {
res.header("Content-Type", "text/css");
}
res.sendfile(
'nodehost/public/' + req.params[0].split('&')[0],
{root: config.rootServerPath, maxAge: null});
});
app.get('/' + config.downloadsLoc + '/:file', restrict, function(req, res) {
var downloads = collectDownloads();
var doc = _.findWhere(downloads, {filename: req.params.file});
if (!doc) {
console.error('Cannot find', req.params.file);
return;
}
res.sendfile(
doc.serverpath,
{root: config.rootServerPath, maxAge: null});
});
app.get('/logout', function(req, res) {
req.session.destroy(function() {
res.redirect('/');
});
});
app.post('/login', function(req, res) {
var uname = req.body[config.passwordIsUsername ? 'password' : 'username'];
authenticate(uname, req.body.password, function(err, user) {
if (user) {
req.session.regenerate(function() {
req.session.user = user;
res.redirect('back');
});
} else {
req.session.error = 'Authentication failure.';
res.redirect('/');
}
});
});
app.listen(config.port);
console.log('Express started on port ' + config.port);