2019-01-01 11:26:51 -05:00
|
|
|
var request = require('request-promise');
|
2018-10-09 20:08:05 -04:00
|
|
|
var common = require('../common');
|
2019-01-13 17:55:25 -05:00
|
|
|
var logger = require('./logger');
|
2019-03-02 12:55:19 -05:00
|
|
|
var options = {};
|
2018-09-14 21:31:01 -04:00
|
|
|
|
|
|
|
exports.getFees = (req, res, next) => {
|
2019-04-06 18:42:09 -04:00
|
|
|
options = common.getOptions(1);
|
|
|
|
options.url = common.findNode(1).lnd_server_url + '/fees';
|
2019-01-01 11:26:51 -05:00
|
|
|
request(options).then((body) => {
|
2019-01-13 17:55:25 -05:00
|
|
|
logger.info('\r\nFees: 8: ' + JSON.stringify(Date.now()) + ': INFO: Fee Received: ' + JSON.stringify(body));
|
2018-09-14 21:31:01 -04:00
|
|
|
if(undefined === body || body.error) {
|
|
|
|
res.status(500).json({
|
|
|
|
message: "Fetching fee failed!",
|
2018-10-11 20:03:54 -04:00
|
|
|
error: (undefined === body) ? 'Error From Server!' : body.error
|
2018-09-14 21:31:01 -04:00
|
|
|
});
|
|
|
|
} else {
|
|
|
|
if (undefined === body.day_fee_sum) {
|
|
|
|
body.day_fee_sum = 0;
|
2018-11-16 08:47:20 -05:00
|
|
|
body.btc_day_fee_sum = 0;
|
|
|
|
} else {
|
|
|
|
body.btc_day_fee_sum = common.convertToBTC(body.day_fee_sum);
|
2018-09-14 21:31:01 -04:00
|
|
|
}
|
|
|
|
if (undefined === body.week_fee_sum) {
|
|
|
|
body.week_fee_sum = 0;
|
2018-11-16 08:47:20 -05:00
|
|
|
body.btc_week_fee_sum = 0;
|
|
|
|
} else {
|
|
|
|
body.btc_week_fee_sum = common.convertToBTC(body.week_fee_sum);
|
2018-09-14 21:31:01 -04:00
|
|
|
}
|
|
|
|
if (undefined === body.month_fee_sum) {
|
|
|
|
body.month_fee_sum = 0;
|
2018-11-16 08:47:20 -05:00
|
|
|
body.btc_month_fee_sum = 0;
|
|
|
|
} else {
|
|
|
|
body.btc_month_fee_sum = common.convertToBTC(body.month_fee_sum);
|
2018-09-14 21:31:01 -04:00
|
|
|
}
|
2018-09-26 22:02:46 -04:00
|
|
|
res.status(200).json(body);
|
2018-09-14 21:31:01 -04:00
|
|
|
}
|
2019-01-01 11:26:51 -05:00
|
|
|
})
|
|
|
|
.catch(function (err) {
|
|
|
|
return res.status(500).json({
|
|
|
|
message: "Fetching fee failed!",
|
|
|
|
error: err.error
|
|
|
|
});
|
2018-09-14 21:31:01 -04:00
|
|
|
});
|
|
|
|
};
|