-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathapp.js
49 lines (41 loc) · 1.27 KB
/
app.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
const http = require('http')
const httpProxy = require('http-proxy')
const validateUser = require('./validate')
const config = require('./config')
const proxy = httpProxy.createProxyServer({})
proxy.on('error', function (err) {
console.error(err)
})
const server = http.createServer(function (req, res) {
if (config.whitelist) {
const path = req.url
const whitelisted = config.whitelist.find(function (whitelist) {
const matchingMethod = !whitelist.method || whitelist.method === req.method
const matchingPath = path === whitelist.path
return matchingMethod && matchingPath
})
if (whitelisted) {
console.log(path + ' is whitelisted')
return proxy.web(req, res, { target: config.target })
}
}
validateUser(req, function (err) {
if (err) {
res.write('Authorize yourself at anrop.se first')
res.end()
} else {
proxy.web(req, res, { target: config.target })
}
})
})
server.on('upgrade', function (req, socket, head) {
validateUser(req, function (err) {
if (err) {
socket.destroy(new Error('Authorize yourself at anrop.se first'))
} else {
proxy.ws(req, socket, head, { target: config.target })
}
})
})
console.log('listening on port ' + config.port)
server.listen(config.port)