2018-09-27 02:02:46 +00:00
|
|
|
var request = require('request');
|
|
|
|
var options = require("../connect");
|
|
|
|
var config = require('../config');
|
|
|
|
|
|
|
|
exports.getGraphInfo = (req, res, next) => {
|
|
|
|
options.url = config.lnd_server_url + '/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');
|
|
|
|
console.log('Network Information Received: ' + body_str);
|
|
|
|
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 {
|
2018-09-28 21:39:54 +00:00
|
|
|
body.avg_out_degree = (undefined === body.avg_out_degree) ? 0 : twoDecimalRound(body.avg_out_degree);
|
2018-10-02 21:22:45 +00:00
|
|
|
// body.total_network_capacity = (undefined === body.total_network_capacity) ? 0 : convertToBTC(body.total_network_capacity);
|
|
|
|
// body.avg_channel_size = (undefined === body.avg_channel_size) ? 0 : convertToBTC(body.avg_channel_size);
|
|
|
|
// body.min_channel_size = (undefined === body.min_channel_size) ? 0 : convertToBTC(body.min_channel_size);
|
|
|
|
// body.max_channel_size = (undefined === body.max_channel_size) ? 0 : convertToBTC(body.max_channel_size);
|
2018-09-28 21:39:54 +00:00
|
|
|
console.log('Network Information After Rounding and Conversion: ' + body_str);
|
2018-09-27 02:02:46 +00:00
|
|
|
res.status(200).json(body);
|
|
|
|
}
|
|
|
|
});
|
2018-09-28 21:39:54 +00:00
|
|
|
|
|
|
|
twoDecimalRound = (num) => {
|
|
|
|
return num.toFixed(2);
|
|
|
|
};
|
|
|
|
|
2018-10-02 21:22:45 +00:00
|
|
|
// convertToBTC = (num) => {
|
|
|
|
// return (num / 100000000).toFixed(6);
|
|
|
|
// };
|
2018-09-28 21:39:54 +00:00
|
|
|
|
2018-09-27 02:02:46 +00:00
|
|
|
};
|