-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.js
101 lines (85 loc) · 2.14 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
(() => {
'use strict';
var port = 19999;
var directory = './';
var http = require('http');
var url = require('url');
var path = require("path");
var fs = require('fs');
var mimeTypes = {
"html": "text/html",
"js": "text/javascript",
"css": "text/css",
"jpeg": "image/jpeg",
"jpg": "image/jpeg",
"png": "image/png",
"gif": "image/gif",
"svg": "image/svg"
// more
};
var request = (req, res) => {
var uri = url.parse(req.url).pathname;
var dir = path.join(__dirname, directory);
var filepath = path.join(dir, unescape(uri));
var indexfilepath = path.join(dir, unescape('index.html'));
console.info('filepath', filepath);
var f = (err, stats) => {
if (err) {
//do nothing
}
if (stats === undefined) // path does not exit 404
{
res.writeHead(404,
{
'Content-Type': 'text/plain'
});
res.write('404 Not Found\n');
res.end();
return;
} else if (stats.isFile()) // path exists, is a file
{
var mimeType = mimeTypes[path.extname(filepath).split(".")[1]];
res
.writeHead(200,
{
'Content-Type': mimeType
});
var fileStream = fs
.createReadStream(filepath)
.pipe(res);
return;
} else if (stats.isDirectory()) // path exists, is a directory
{
res
.writeHead(200,
{
'Content-Type': "text/html"
});
var fileStream2 = fs
.createReadStream(indexfilepath)
.pipe(res);
return;
} else {
// Symbolic link, other?
// TODO: follow symlinks? security?
res
.writeHead(500,
{
'Content-Type': 'text/plain'
})
.write('500 Internal server error\n')
.end();
return;
}
};
var component = fs.stat(filepath, f);
return;
};
var serverUp = () => {
console.info('HTTP server listening', port);
return;
};
var server = http
.createServer(request)
.listen(port, serverUp);
})();