-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.js
44 lines (37 loc) · 1.1 KB
/
index.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
var express = require('express')
var request = require('request')
var bodyParser = require('body-parser')
var config = require('./config').Config
const gethRpcUrl = 'http://localhost:8545'
var app = express()
app.use(bodyParser.json())
app.get('/', function (req, res) {
res.send('etherlab :)')
})
function authorize (req) {
return typeof req.body.method !== 'undefined' && req.body.method
&& (config.authorized_calls.indexOf(req.body.method) > -1)
}
app.post('/', function (req, res) {
if (authorize(req) || !config.enforce) {
console.log(req.body.method)
var data = JSON.stringify(req.body)
var fwd_req = {
uri: 'http://' + config.geth_addr + ':' + config.geth_port,
method: 'POST',
headers: {
'content-type': 'application/json',
'content-length': data.length
},
}
var r = request.post(fwd_req)
r.write(JSON.stringify(req.body))
r.pipe(res, {end: true})
} else {
console.log('denied ' + req.body.method)
res.json({ error: {message: 'unauthorized'}})
}
})
app.listen(3000, function () {
console.log('listening on port 3000!')
})