2
0
mirror of https://github.com/Ride-The-Lightning/RTL synced 2024-11-11 13:10:41 +00:00
RTL/controllers/fees.js

45 lines
1.4 KiB
JavaScript
Raw Normal View History

2019-01-01 16:26:51 +00:00
var request = require('request-promise');
var common = require('../common');
2019-01-13 22:55:25 +00:00
var logger = require('./logger');
var options = {};
2018-09-15 01:31:01 +00:00
exports.getFees = (req, res, next) => {
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!",
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;
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;
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;
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
}
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
});
};