-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.js
62 lines (52 loc) · 1.33 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
const http = require('http')
const fs = require('fs')
const path = require('path')
const util = require('util')
const port = process.env.PORT || 7010
const allowedExtensions = ['.css', '.js', '.ico', '.html']
exports.startServer = () => {
const server = http.createServer((req, res) => {
serve(req, res).catch((e) => {
console.error(e)
res.writeHead(500)
res.end('Internal error')
})
}).listen({
host: 'localhost',
port
})
console.log('Listening on', server.address())
}
async function serve (req, res) {
let filePath = null
try {
filePath = await util.promisify(fs.realpath)(path.normalize('.' + req.url))
} catch (e) {
return notFound(res, e)
}
console.log('Real path: ', filePath)
if (!path.dirname(filePath).startsWith(path.dirname(__filename))) {
return internal(res, 'Invalid path')
}
if (allowedExtensions.indexOf(path.extname(filePath)) === -1) {
return internal(res, 'Invalid path')
}
try {
const file = fs.createReadStream(filePath, 'utf8')
res.writeHead(200, { 'Content-Type': 'html' })
file.pipe(res)
} catch (e) {
return notFound(res, e)
}
}
function internal (res, e) {
res.writeHead(500)
res.end(e)
}
function notFound (res, e) {
res.writeHead(404)
res.end('Not found: ' + e)
}
if (require.main === module) {
exports.startServer()
}