forked from HowProgrammingWorks/AbstractionLayers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbadServer.js
92 lines (81 loc) · 2.44 KB
/
badServer.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
// Dependencies
var http = require('http'),
fs = require('fs');
// Cache
var cache = {};
// HTTP Server
http.createServer(function (req, res) {
// Parse cookies
var cookie = req.headers.cookie,
cookies = {};
if (cookie) cookie.split(';').forEach(function(item) {
var parts = item.split('=');
cookies[(parts[0]).trim()] = (parts[1] || '').trim();
});
// Logging
var date = new Date().toISOString();
console.log([date, req.method, req.url].join(' '));
// Serve from cache
if (cache[req.url] && req.method === 'GET') {
res.writeHead(200);
res.end(cache[req.url]);
} else {
// Routing
if (req.url === '/') {
if (req.method === 'GET') {
res.writeHead(200, {
'Set-Cookie': 'mycookie=test',
'Content-Type': 'text/html'
});
var ip = req.connection.remoteAddress;
res.write('<h1>Welcome</h1>Your IP: ' + ip);
res.end('<pre>' + JSON.stringify(cookies) + '</pre>');
}
} else if (req.url === '/person') {
if (req.method === 'GET') {
// Some business logic
fs.readFile('./person.json', function(err, data) {
if (!err) {
var obj = JSON.parse(data);
obj.birth = new Date(obj.birth);
var difference = new Date() - obj.birth;
obj.age = Math.floor(difference / 31536000000);
delete obj.birth;
var data = JSON.stringify(obj);
cache[req.url] = data;
// HTTP reply
res.writeHead(200);
res.end(data);
} else {
res.writeHead(500);
res.end('Read error');
}
});
} else if (req.method === 'POST') {
// Receiving POST data
var body = [];
req.on('data', function(chunk) {
body.push(chunk);
}).on('end', function() {
var data = Buffer.concat(body).toString();
var obj = JSON.parse(data);
if (obj.name) obj.name = obj.name.trim();
data = JSON.stringify(obj);
cache[req.url] = data;
fs.writeFile('./person.json', data, function(err) {
if (!err) {
res.writeHead(200);
res.end('File saved');
} else {
res.writeHead(500);
res.end('Write error');
}
});
});
}
} else {
res.writeHead(404);
res.end('Path not found');
}
}
}).listen(80);