2019-05-27 18:55:09 +00:00
|
|
|
var request = require('request-promise');
|
2019-09-01 17:01:38 +00:00
|
|
|
var common = require('../../common');
|
2020-01-25 00:47:04 +00:00
|
|
|
var options = {};
|
2018-09-27 02:02:46 +00:00
|
|
|
|
|
|
|
exports.getGraphInfo = (req, res, next) => {
|
2019-04-07 00:20:40 +00:00
|
|
|
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) => {
|
2020-03-10 17:25:52 +00:00
|
|
|
const body_str = (!body) ? '' : JSON.stringify(body);
|
|
|
|
const search_idx = (!body) ? -1 : body_str.search('Not Found');
|
|
|
|
if(!body || search_idx > -1 || body.error) {
|
2018-09-27 02:02:46 +00:00
|
|
|
res.status(500).json({
|
|
|
|
message: "Fetching network Info failed!",
|
2020-03-10 17:25:52 +00:00
|
|
|
error: (!body || search_idx > -1) ? 'Error From Server!' : body.error
|
2018-09-27 02:02:46 +00:00
|
|
|
});
|
|
|
|
} else {
|
2020-03-10 17:25:52 +00:00
|
|
|
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);
|
2018-09-27 02:02:46 +00:00
|
|
|
res.status(200).json(body);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
};
|