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