2
0
mirror of https://github.com/Ride-The-Lightning/RTL synced 2024-11-15 18:13:00 +00:00
RTL/controllers/lnd/graphInfo.js

25 lines
1.1 KiB
JavaScript
Raw Normal View History

2019-05-27 18:55:09 +00:00
var request = require('request-promise');
var common = require('../../common');
2020-01-25 00:47:04 +00:00
var options = {};
exports.getGraphInfo = (req, res, next) => {
options = common.getOptions();
2019-09-02 04:11:37 +00:00
options.url = common.getSelLNServerUrl() + '/graph/info';
2019-05-27 18:55:09 +00:00
request(options).then((body) => {
const body_str = (!body) ? '' : JSON.stringify(body);
const search_idx = (!body) ? -1 : body_str.search('Not Found');
if(!body || search_idx > -1 || body.error) {
res.status(500).json({
message: "Fetching network Info failed!",
error: (!body || search_idx > -1) ? 'Error From Server!' : body.error
});
} else {
body.btc_total_network_capacity = (!body.total_network_capacity) ? 0 : common.convertToBTC(body.total_network_capacity);
body.btc_avg_channel_size = (!body.avg_channel_size) ? 0 : common.convertToBTC(body.avg_channel_size);
body.btc_min_channel_size = (!body.min_channel_size) ? 0 : common.convertToBTC(body.min_channel_size);
body.btc_max_channel_size = (!body.max_channel_size) ? 0 : common.convertToBTC(body.max_channel_size);
res.status(200).json(body);
}
});
};