2
0
mirror of https://github.com/Ride-The-Lightning/RTL synced 2024-11-19 15:25:29 +00:00
RTL/controllers/lnd/fees.js

60 lines
2.5 KiB
JavaScript
Raw Normal View History

2019-01-01 16:26:51 +00:00
var request = require('request-promise');
var common = require('../../common');
var logger = require('../logger');
2020-01-06 15:42:42 +00:00
var swtch = require('./switch');
var options = {};
2018-09-15 01:31:01 +00:00
exports.getFees = (req, res, next) => {
options = common.getOptions();
2019-09-02 04:11:37 +00:00
options.url = common.getSelLNServerUrl() + '/fees';
2019-01-01 16:26:51 +00:00
request(options).then((body) => {
2019-07-27 18:20:17 +00:00
logger.info({fileName: 'Fees', msg: '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
}
let current_time = Math.round((new Date().getTime()) / 1000);
let month_start_time = current_time - 2629743;
let week_start_time = current_time - 604800;
let day_start_time = current_time - 86400;
swtch.getAllForwardingEvents(month_start_time, current_time, 0, (history) => {
2020-01-06 15:42:42 +00:00
logger.info({fileName: 'Fees', msg: 'Forwarding History Received: ' + JSON.stringify(history)});
let daily_tx_count = history.forwarding_events.filter(event => event.timestamp >= day_start_time);
2020-01-01 21:23:31 +00:00
body.daily_tx_count = daily_tx_count && daily_tx_count.length ? daily_tx_count.length : 0;
2020-01-06 15:42:42 +00:00
let weekly_tx_count = history.forwarding_events.filter(event => event.timestamp >= week_start_time);
2020-01-01 21:23:31 +00:00
body.weekly_tx_count = weekly_tx_count && weekly_tx_count.length ? weekly_tx_count.length : 0;
2020-01-06 15:42:42 +00:00
body.monthly_tx_count = history.forwarding_events && history.forwarding_events.length ? history.forwarding_events.length : 0;
body.forwarding_events_history = history;
if (history.error) { logger.error({fileName: 'Fees', lineNum: 48, msg: 'Fetch Forwarding Events Error: ' + JSON.stringify(err)}); }
res.status(200).json(body);
2020-01-01 21:23:31 +00:00
})
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
});
};