autobounty/index.js

68 lines
1.8 KiB
JavaScript
Raw Normal View History

2017-06-10 15:07:15 +00:00
/*
2018-01-22 11:24:19 +00:00
* Bot that receives a POST request (from a GitHub issue comment webhook)
* and in case it's a comment that has "@autobounty <decimal> <currency>"
* awards that bounty to the address posted earlier in the thread (by the
* commiteth bot).
* TODO tests
* REVIEW parsing, non-persisting storage of addresses, hardcoded string length.
* Depends on commiteth version as of 2017-06-10.
*/
2018-01-17 16:48:56 +00:00
const config = require('./config');
const bot = require('./bot');
2018-01-17 16:48:56 +00:00
2017-06-09 10:15:53 +00:00
var express = require('express'),
2018-01-22 11:24:19 +00:00
cors = require('cors'),
helmet = require('helmet'),
app = express(),
bodyParser = require('body-parser'),
jsonParser = bodyParser.json();
2017-03-07 11:24:01 +00:00
app.use(cors());
2018-01-19 10:42:58 +00:00
app.use(helmet());
2018-01-17 16:48:56 +00:00
2017-06-10 15:07:15 +00:00
// Receive a POST request at the address specified by an env. var.
app.post(`${config.urlEndpoint}`, jsonParser, function(req, res, next) {
2018-01-22 11:24:19 +00:00
// TODO decide how long the delay to start everything should be
if (!req.body || !req.body.action)
return res.sendStatus(400);
2018-01-19 10:42:58 +00:00
2018-01-22 11:24:19 +00:00
if (!bot.needsFunding(req))
return res.sendStatus(204);
2018-01-19 10:42:58 +00:00
2018-01-22 11:24:19 +00:00
//const eth = bot.eth;
//const from = config.sourceAddress;
//const to = bot.getAddress(req);
const amount = bot.getAmount(req);
const gasPrice = bot.getGasPrice();
bot.log('amount: ' + amount);
bot.log('gasPrice: ' + gasPrice);
/*
eth.getTransactionCount(address, (err, nonce) => {
eth.sendTransaction({
from: from,
to: to,
gas: gas,
gasPrice: gasPrice,
value: amount,
nonce,
}, (err, txID) => {
if (err) {
config.log('Request failed', err)
return res.status(500).json(err)
}
else {
config.log('Successful request:', txID)
res.json({ txID })
}
});
});
*/
return res.sendStatus(200);
2017-03-07 11:24:01 +00:00
});
const port = process.env.PORT || 8181
app.listen(port, function(){
2018-01-22 11:24:19 +00:00
console.log('Autobounty listening on port', port);
2017-06-10 18:24:34 +00:00
});