-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver-2.js
More file actions
63 lines (50 loc) · 1.52 KB
/
server-2.js
File metadata and controls
63 lines (50 loc) · 1.52 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
/**
* Created by liyang9 on 2016/10/17.
*/
var express = require('express');
var morgan = require('morgan');
var cookieParser = require('cookie-parser');
var hostname = 'localhost';
var port = 3000;
var app = express();
app.use(morgan('dev'));
app.use(cookieParser('12345-67890-09876-54321'));
function auth (req, res, next){
if(!req.signedCookies.user) {
var authHeader = req.headers.authorization;
if(!authHeader) {
var err = new Error('you are not authenticated!');
err.status = 401;
next(err);
return;
}
console.log(req.headers.authorization);
var auth = new Buffer(authHeader.split(' ')[1], 'base64').toString().split(':');
var user = auth[0];
var passwd = auth[1];
if (user == 'admin' && passwd == 'admin'){
res.cookie('user','admin',{signed:true);
next();
}else {
if(req.signedCookies.user == 'admin') {
next();
}else {
var err = new Error('You are not authenticated!');
err.status = 401;
next(err);
}
}
}
}
app.use(auth);
app.use(express.static(__dirname + '/public'));
app.use(function (err, req, res, next) {
res.writeHead(err.status || 500, {
'WWW-Authenticate':'Basic',
'Content-Type': 'text/plain'
});
res.end(err.message);
});
app.listen(port, hostname, function () {
console.log(`Server running at http://${hostname}:${port}`);
});