2018-11-23 01:30:30 +00:00
|
|
|
var request = require("request-promise");
|
2018-11-04 23:47:00 +00:00
|
|
|
var common = require('../common');
|
2019-01-13 22:55:25 +00:00
|
|
|
var logger = require('./logger');
|
2019-03-02 17:55:19 +00:00
|
|
|
var options = {};
|
2018-11-04 23:47:00 +00:00
|
|
|
|
2018-11-12 03:17:30 +00:00
|
|
|
exports.getDescribeGraph = (req, res, next) => {
|
2019-04-07 00:20:40 +00:00
|
|
|
options = common.getOptions();
|
|
|
|
options.url = common.getSelLNDServerUrl() + '/graph';
|
2019-01-01 16:26:51 +00:00
|
|
|
request.get(options).then((body) => {
|
2018-11-12 03:17:30 +00:00
|
|
|
const body_str = (undefined === body) ? '' : JSON.stringify(body);
|
|
|
|
const search_idx = (undefined === body) ? -1 : body_str.search('Not Found');
|
2019-01-13 22:55:25 +00:00
|
|
|
logger.info('\r\nGraph: 10: ' + JSON.stringify(Date.now()) + ': INFO: Describe Graph Received: ' + body_str);
|
2018-11-12 03:17:30 +00:00
|
|
|
if(undefined === body || search_idx > -1 || body.error) {
|
|
|
|
res.status(500).json({
|
|
|
|
message: "Fetching Describe Graph Failed!",
|
|
|
|
error: (undefined === body || search_idx > -1) ? 'Error From Server!' : body.error
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
res.status(200).json(body);
|
|
|
|
}
|
2019-01-01 16:26:51 +00:00
|
|
|
})
|
|
|
|
.catch((err) => {
|
|
|
|
return res.status(500).json({
|
|
|
|
message: "Fetching Describe Graph Failed!",
|
|
|
|
error: err.error
|
|
|
|
});
|
2018-11-12 03:17:30 +00:00
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2018-11-04 23:47:00 +00:00
|
|
|
exports.getGraphInfo = (req, res, next) => {
|
2019-04-07 00:20:40 +00:00
|
|
|
options = common.getOptions();
|
|
|
|
options.url = common.getSelLNDServerUrl() + '/graph/info';
|
2019-01-01 16:26:51 +00:00
|
|
|
request.get(options).then((body) => {
|
2018-11-04 23:47:00 +00:00
|
|
|
const body_str = (undefined === body) ? '' : JSON.stringify(body);
|
|
|
|
const search_idx = (undefined === body) ? -1 : body_str.search('Not Found');
|
2019-01-13 22:55:25 +00:00
|
|
|
logger.info('\r\nGraph: 33: ' + JSON.stringify(Date.now()) + ': INFO: Network Info Received: ' + body_str);
|
2018-11-04 23:47:00 +00:00
|
|
|
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);
|
2019-01-13 22:55:25 +00:00
|
|
|
logger.info('\r\nGraph: 44: ' + JSON.stringify(Date.now()) + ': INFO: Network Information After Rounding and Conversion: ' + body_str);
|
2018-11-04 23:47:00 +00:00
|
|
|
res.status(200).json(body);
|
|
|
|
}
|
2019-01-01 16:26:51 +00:00
|
|
|
})
|
|
|
|
.catch((err) => {
|
|
|
|
return res.status(500).json({
|
|
|
|
message: "Fetching network Info failed!",
|
|
|
|
error: err.error
|
|
|
|
});
|
2018-11-04 23:47:00 +00:00
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
exports.getGraphNode = (req, res, next) => {
|
2019-04-07 00:20:40 +00:00
|
|
|
options = common.getOptions();
|
|
|
|
options.url = common.getSelLNDServerUrl() + '/graph/node/' + req.params.pubKey;
|
2018-11-23 01:30:30 +00:00
|
|
|
request(options).then((body) => {
|
2019-01-13 22:55:25 +00:00
|
|
|
logger.info('\r\nGraph: 59: ' + JSON.stringify(Date.now()) + ': INFO: Node Info Received: ' + JSON.stringify(body));
|
2018-11-23 01:30:30 +00:00
|
|
|
if(undefined === body || body.error) {
|
2018-11-04 23:47:00 +00:00
|
|
|
res.status(500).json({
|
|
|
|
message: "Fetching node Info failed!",
|
2018-11-23 01:30:30 +00:00
|
|
|
error: (undefined === body) ? 'Error From Server!' : body.error
|
2018-11-04 23:47:00 +00:00
|
|
|
});
|
|
|
|
}
|
2019-03-02 17:55:19 +00:00
|
|
|
if (undefined !== body) {
|
|
|
|
body.node.last_update_str = (undefined === body.node.last_update) ? '' : common.convertTimestampToDate(body.node.last_update);
|
|
|
|
}
|
2018-11-23 01:30:30 +00:00
|
|
|
res.status(200).json(body);
|
|
|
|
})
|
|
|
|
.catch((err) => {
|
2019-01-01 16:26:51 +00:00
|
|
|
return res.status(500).json({
|
2018-11-23 01:30:30 +00:00
|
|
|
message: "Fetching node Info failed!",
|
2019-01-01 16:26:51 +00:00
|
|
|
error: err.error
|
2018-11-23 01:30:30 +00:00
|
|
|
});
|
|
|
|
});
|
2018-11-04 23:47:00 +00:00
|
|
|
};
|
2018-11-23 01:30:30 +00:00
|
|
|
|
2019-01-09 03:04:34 +00:00
|
|
|
exports.getGraphEdge = (req, res, next) => {
|
2019-04-07 00:20:40 +00:00
|
|
|
options = common.getOptions();
|
|
|
|
options.url = common.getSelLNDServerUrl() + '/graph/edge/' + req.params.chanid;
|
2019-01-09 03:04:34 +00:00
|
|
|
request(options).then((body) => {
|
2019-01-13 22:55:25 +00:00
|
|
|
logger.info('\r\nGraph: 79: ' + JSON.stringify(Date.now()) + ': INFO: Edge Info Received: ' + JSON.stringify(body));
|
2019-01-09 03:04:34 +00:00
|
|
|
if(undefined === body || body.error) {
|
|
|
|
res.status(500).json({
|
|
|
|
message: "Fetching Edge Info Failed!",
|
|
|
|
error: (undefined === body) ? 'Error From Server!' : body.error
|
|
|
|
});
|
|
|
|
}
|
2019-03-02 17:55:19 +00:00
|
|
|
if (undefined !== body) {
|
|
|
|
body.last_update_str = (undefined === body.last_update) ? '' : common.convertTimestampToDate(body.last_update);
|
|
|
|
}
|
2019-01-09 03:04:34 +00:00
|
|
|
res.status(200).json(body);
|
|
|
|
})
|
|
|
|
.catch((err) => {
|
|
|
|
return res.status(500).json({
|
|
|
|
message: "Fetching Edge Info Failed!",
|
|
|
|
error: err.error
|
|
|
|
});
|
|
|
|
});
|
|
|
|
};
|