2018-01-22 11:24:19 +00:00
|
|
|
const winston = require('winston');
|
2018-01-19 17:33:27 +00:00
|
|
|
const SignerProvider = require('ethjs-provider-signer');
|
|
|
|
const sign = require('ethjs-signer').sign;
|
|
|
|
const Eth = require('ethjs-query');
|
2018-01-20 16:34:11 +00:00
|
|
|
const prices = require('./prices');
|
2018-01-20 16:32:11 +00:00
|
|
|
const config = require('../config');
|
2018-01-19 17:33:27 +00:00
|
|
|
|
2018-01-20 16:32:11 +00:00
|
|
|
const provider = new SignerProvider(config.signerPath, {
|
2018-01-19 17:33:27 +00:00
|
|
|
signTransaction: (rawTx, cb) => cb(null, sign(rawTx, process.env.KEY)),
|
|
|
|
accounts: (cb) => cb(null, [address]),
|
|
|
|
});
|
|
|
|
const eth = new Eth(provider);
|
|
|
|
|
2018-01-22 11:24:19 +00:00
|
|
|
const logger = winston.createLogger({
|
|
|
|
level: 'info',
|
|
|
|
format: winston.format.json(),
|
|
|
|
transports: [
|
|
|
|
new winston.transports.File({ filename: 'error.log', level: 'error' }),
|
|
|
|
new winston.transports.File({ filename: 'info.log', level: 'info'}),
|
|
|
|
new winston.transports.File({ filename: 'combined.log' })
|
|
|
|
]
|
|
|
|
});
|
2018-01-19 17:33:27 +00:00
|
|
|
|
|
|
|
const needsFunding = function(req) {
|
2018-01-20 16:26:49 +00:00
|
|
|
if (req.body.action !== 'created' || !req.body.hasOwnProperty('comment'))
|
2018-01-19 17:33:27 +00:00
|
|
|
return false
|
2018-01-20 13:15:49 +00:00
|
|
|
//else if (req.comment.user.login !== 'status-open-bounty')
|
|
|
|
// return false
|
2018-01-19 17:33:27 +00:00
|
|
|
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
const getAddress = function(req) {
|
2018-01-20 13:15:49 +00:00
|
|
|
let commentBody = req.body.comment.body;
|
2018-01-19 17:33:27 +00:00
|
|
|
return commentBody.substring(commentBody.search("Contract address:") + 18, commentBody.search("Contract address:") + 60)
|
|
|
|
}
|
|
|
|
|
2018-01-20 13:15:49 +00:00
|
|
|
const getLabel = function(req) {
|
2018-01-22 15:49:41 +00:00
|
|
|
return github.getLabels(req)
|
|
|
|
.then(labels => {
|
|
|
|
if (labels.length === 1) {
|
|
|
|
resolve(labels[0]);
|
|
|
|
} else {
|
|
|
|
// TODO: Handle error
|
|
|
|
}
|
|
|
|
}).catch(err => {
|
|
|
|
// TODO: Handle error
|
|
|
|
});
|
2018-01-19 17:33:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const getAmount = function(req) {
|
2018-01-20 16:34:11 +00:00
|
|
|
let tokenPricePromise = prices.getTokenPrice(config.token);
|
2018-01-19 17:33:27 +00:00
|
|
|
|
|
|
|
let label = getLabel(req);
|
|
|
|
let amountToPayDollar = config.priceHour * config.workHours[label];
|
|
|
|
|
|
|
|
tokenPricePromise
|
2018-01-20 12:51:57 +00:00
|
|
|
.then((tokenPrice) => {return tokenPrice * config.amountToPayInDollars} )
|
|
|
|
.catch((err) => {console.log("TODO-ERROR: Failed token price request throw log error")});
|
2018-01-19 17:33:27 +00:00
|
|
|
// Check how to handle errors when promises does not arrive
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2018-01-22 11:24:19 +00:00
|
|
|
const log = function(msg) {
|
|
|
|
logger.info(msg);
|
2018-01-19 17:33:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
eth: new Eth(provider),
|
|
|
|
needsFunding: needsFunding,
|
|
|
|
getAddress: getAddress,
|
|
|
|
getAmount: getAmount,
|
2018-01-22 15:49:41 +00:00
|
|
|
getGasPrice: prices.getGasPrice,
|
2018-01-19 17:33:27 +00:00
|
|
|
log: log
|
|
|
|
}
|