mirror of
https://github.com/Ride-The-Lightning/RTL
synced 2024-11-11 13:10:41 +00:00
c6f6798882
MultiNode Backend Complete
25 lines
1.2 KiB
JavaScript
25 lines
1.2 KiB
JavaScript
var request = require('request');
|
|
var options = require("../connect");
|
|
var common = require('../common');
|
|
|
|
exports.getGraphInfo = (req, res, next) => {
|
|
options = common.getOptions();
|
|
options.url = common.getSelLNDServerUrl() + '/graph/info';
|
|
request.get(options, (error, response, body) => {
|
|
const body_str = (undefined === body) ? '' : JSON.stringify(body);
|
|
const search_idx = (undefined === body) ? -1 : body_str.search('Not Found');
|
|
if(undefined === body || search_idx > -1 || body.error) {
|
|
res.status(500).json({
|
|
message: "Fetching network Info failed!",
|
|
error: (undefined === body || search_idx > -1) ? 'Error From Server!' : body.error
|
|
});
|
|
} else {
|
|
body.btc_total_network_capacity = (undefined === body.total_network_capacity) ? 0 : common.convertToBTC(body.total_network_capacity);
|
|
body.btc_avg_channel_size = (undefined === body.avg_channel_size) ? 0 : common.convertToBTC(body.avg_channel_size);
|
|
body.btc_min_channel_size = (undefined === body.min_channel_size) ? 0 : common.convertToBTC(body.min_channel_size);
|
|
body.btc_max_channel_size = (undefined === body.max_channel_size) ? 0 : common.convertToBTC(body.max_channel_size);
|
|
res.status(200).json(body);
|
|
}
|
|
});
|
|
};
|