2019-01-01 16:26:51 +00:00
|
|
|
var request = require('request-promise');
|
2019-09-01 17:01:38 +00:00
|
|
|
var common = require('../../common');
|
2021-02-21 19:02:31 +00:00
|
|
|
var logger = require('../shared/logger');
|
2020-01-06 15:42:42 +00:00
|
|
|
var swtch = require('./switch');
|
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();
|
2020-08-18 14:34:40 +00:00
|
|
|
options.url = common.getSelLNServerUrl() + '/v1/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)});
|
2020-03-10 17:25:52 +00:00
|
|
|
if(!body || body.error) {
|
2020-05-03 19:52:38 +00:00
|
|
|
logger.error({fileName: 'Fees', lineNum: 13, msg: 'Get Fee Error: ' + ((!body || !body.error) ? 'Error From Server!' : JSON.stringify(body.error))});
|
2018-09-15 01:31:01 +00:00
|
|
|
res.status(500).json({
|
|
|
|
message: "Fetching fee failed!",
|
2020-03-10 17:25:52 +00:00
|
|
|
error: (!body) ? 'Error From Server!' : body.error
|
2018-09-15 01:31:01 +00:00
|
|
|
});
|
|
|
|
} else {
|
2020-03-10 17:25:52 +00:00
|
|
|
if (!body.day_fee_sum) {
|
2018-09-15 01:31:01 +00:00
|
|
|
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
|
|
|
}
|
2020-03-10 17:25:52 +00:00
|
|
|
if (!body.week_fee_sum) {
|
2018-09-15 01:31:01 +00:00
|
|
|
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
|
|
|
}
|
2020-03-10 17:25:52 +00:00
|
|
|
if (!body.month_fee_sum) {
|
2018-09-15 01:31:01 +00:00
|
|
|
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
|
|
|
}
|
2020-12-20 23:36:04 +00:00
|
|
|
let today = new Date(Date.now());
|
|
|
|
let current_time = Math.round((today.getTime()) / 1000);
|
|
|
|
let month_start_time = Math.round((new Date(today.getFullYear(), today.getMonth() - 1, today.getDate() + 1, 0, 0, 0).getTime()) / 1000);
|
2020-01-03 00:02:43 +00:00
|
|
|
let week_start_time = current_time - 604800;
|
|
|
|
let day_start_time = current_time - 86400;
|
2020-02-13 02:27:46 +00:00
|
|
|
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;
|
2020-02-13 02:27:46 +00:00
|
|
|
body.forwarding_events_history = history;
|
2020-05-03 19:52:38 +00:00
|
|
|
if (history.error) {
|
|
|
|
logger.error({fileName: 'Fees', lineNum: 50, msg: 'Fetch Forwarding Events Error: ' + JSON.stringify(history.error)});
|
|
|
|
}
|
2020-02-13 02:27:46 +00:00
|
|
|
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
|
|
|
})
|
2020-05-03 19:52:38 +00:00
|
|
|
.catch(errRes => {
|
|
|
|
let err = JSON.parse(JSON.stringify(errRes));
|
|
|
|
if (err.options && err.options.headers && err.options.headers['Grpc-Metadata-macaroon']) {
|
|
|
|
delete err.options.headers['Grpc-Metadata-macaroon'];
|
|
|
|
}
|
|
|
|
if (err.response && err.response.request && err.response.request.headers && err.response.request.headers['Grpc-Metadata-macaroon']) {
|
|
|
|
delete err.response.request.headers['Grpc-Metadata-macaroon'];
|
|
|
|
}
|
|
|
|
logger.error({fileName: 'Fees', lineNum: 63, msg: 'Fetch Forwarding Events Error: ' + JSON.stringify(err)});
|
2019-01-01 16:26:51 +00:00
|
|
|
return res.status(500).json({
|
|
|
|
message: "Fetching fee failed!",
|
|
|
|
error: err.error
|
|
|
|
});
|
2018-09-15 01:31:01 +00:00
|
|
|
});
|
|
|
|
};
|