2019-01-01 16:26:51 +00:00
|
|
|
var request = require('request-promise');
|
2019-09-01 17:01:38 +00:00
|
|
|
var common = require('../../common');
|
|
|
|
var logger = require('../logger');
|
|
|
|
var connect = require('../../connect');
|
2019-03-02 17:55:19 +00:00
|
|
|
var options = {};
|
2018-09-15 01:31:01 +00:00
|
|
|
|
|
|
|
exports.getInfo = (req, res, next) => {
|
2019-04-06 22:42:09 +00:00
|
|
|
common.setOptions();
|
2019-04-07 00:20:40 +00:00
|
|
|
options = common.getOptions();
|
2019-09-02 04:11:37 +00:00
|
|
|
options.url = common.getSelLNServerUrl() + '/getinfo';
|
2020-01-20 16:15:04 +00:00
|
|
|
logger.info({fileName:'GetInfo', msg: 'Selected Node: ' + JSON.stringify(common.selectedNode.ln_node)});
|
2019-11-06 00:26:40 +00:00
|
|
|
if (!options.headers || !options.headers['Grpc-Metadata-macaroon']) {
|
2020-01-21 22:04:26 +00:00
|
|
|
logger.error({fileName: 'GetInfo', lineNum: 17, msg: 'LND Get info failed due to bad or missing macaroon!'});
|
2019-11-06 21:37:04 +00:00
|
|
|
res.status(502).json({
|
2019-11-06 00:26:40 +00:00
|
|
|
message: "Fetching Info Failed!",
|
|
|
|
error: "Bad Macaroon"
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
common.nodes.map(node => { if (node.lnImplementation === 'LND') { connect.getAllNodeAllChannelBackup(node); }});
|
|
|
|
logger.info({fileName: 'GetInfo', msg: 'Calling getinfo from lnd server url: ' + options.url});
|
|
|
|
request(options).then((body) => {
|
|
|
|
logger.info({fileName: 'GetInfo', msg: JSON.stringify(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 Info Failed!",
|
|
|
|
error: (undefined === body || search_idx > -1) ? 'Error From Server!' : body.error
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
res.status(200).json(body);
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.catch(function (err) {
|
|
|
|
return res.status(500).json({
|
|
|
|
message: "Fetching Info Failed!",
|
|
|
|
error: err.error
|
2018-09-15 01:31:01 +00:00
|
|
|
});
|
2019-01-01 16:26:51 +00:00
|
|
|
});
|
2019-11-06 00:26:40 +00:00
|
|
|
}
|
2018-09-15 01:31:01 +00:00
|
|
|
};
|