-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathserver.js
57 lines (48 loc) · 1.44 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
'use strict';
const http = require('node:http');
const fs = require('node:fs');
const routeHandler = require('./src/handler.js');
const index = fs.readFileSync('./index.html', 'utf8');
const resolveHostIP = require('./src/utils/ip.js');
let port = 3000;
if (Number(process.env.PORT) > 0) {
port = Number(process.env.PORT);
} else {
console.log(`[WARN]: No port specified, using default port ${port}`);
}
const server = http.createServer(async (req, res) => {
req.on('error', (err) => {
console.error(err);
res.statusCode = 500;
res.end();
});
const { url, method, headers } = req;
const [path, queryString = ''] = url.split('?');
const query = Object.fromEntries(
queryString.split('&')
.filter(q => !!q)
.map(q => q.split('='))
);
if (path === '/' && method === 'GET') {
res.statusCode = 200;
res.setHeader('Content-Type', 'text/html');
res.write(index);
res.end();
return;
}
if (path === '/action_request' && method === 'POST') {
const responseCode = await routeHandler({ path, method, headers, query });
res.statusCode = responseCode;
res.setHeader('Content-Type', 'text/html');
res.end();
return;
}
}).listen(port, () => {
const host = resolveHostIP();
const msg = host ? `[INFO]: Listening on http://${host}:${port}` : `[INFO]: Listening on port ${port}`
console.log(msg);
});
server.on('error', (err) => {
console.error(`[ERROR]: ${err}`);
process.exit(1);
});