-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
68 lines (52 loc) · 1.87 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
const HyperExpress = require('hyper-express')
const { getBalances, init } = require('./chains')
const webserver = new HyperExpress.Server()
const port = +(process.env.PORT ?? 5001)
const skipSubPath = process.env.API2_SKIP_SUBPATH === 'true'
if (!skipSubPath && !process.env.API2_SUBPATH) throw new Error('Missing API2_SUBPATH env var')
async function main() {
console.time('Api Server init')
// await init()
webserver.use((_req, res, next) => {
res.append('Access-Control-Allow-Origin', '*');
res.append('Access-Control-Allow-Methods', 'GET,PUT,POST,DELETE,OPTIONS');
next();
});
if (skipSubPath) {
setRoutes(webserver, '/')
}
if (process.env.API2_SUBPATH) {
const router = new HyperExpress.Router()
const subPath = '/' + process.env.API2_SUBPATH
webserver.use(subPath, router)
setRoutes(router, subPath)
}
webserver.get('/hash', (_req, res) => res.send('yes'))
webserver.listen(port)
.then(() => {
console.timeEnd('Api Server init')
console.log('Webserver started on port ' + port)
})
.catch((e) => console.log('Failed to start webserver on port ' + port, e.message))
}
process.on('SIGINT', shutdown);
process.on('SIGTERM', shutdown);
function shutdown() {
console.log('Shutting down gracefully...');
setTimeout(() => process.exit(0), 5000); // wait 5 seconds before forcing shutdown
webserver.close(() => {
console.log('Server has been shut down gracefully');
process.exit(0);
})
}
main()
function setRoutes(router) {
router.post('/get-balance', async (req, res) => {
const { addresses, network, combined = true } = await req.json()
if (!Array.isArray(addresses) || typeof network !== 'string' || typeof combined !== 'boolean') {
return res.status(400).send('Invalid input');
}
const response = await getBalances({ addresses, network, combined });
res.json(response)
});
}