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();
|
2020-08-18 14:34:40 +00:00
|
|
|
options.url = common.getSelLNServerUrl() + '/v1/getinfo';
|
2020-01-20 16:15:04 +00:00
|
|
|
logger.info({fileName:'GetInfo', msg: 'Selected Node: ' + JSON.stringify(common.selectedNode.ln_node)});
|
2020-05-03 19:52:38 +00:00
|
|
|
logger.info({fileName: 'GetInfo', msg: 'Calling Info from LND server url: ' + options.url});
|
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); }});
|
|
|
|
request(options).then((body) => {
|
|
|
|
logger.info({fileName: 'GetInfo', msg: JSON.stringify(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) {
|
2020-05-03 19:52:38 +00:00
|
|
|
logger.error({fileName: 'GetInfo', lineNum: 26, msg: 'Get Info Error: ' + ((!body || !body.error) ? 'Error From Server!' : JSON.stringify(body.error))});
|
2019-11-06 00:26:40 +00:00
|
|
|
res.status(500).json({
|
|
|
|
message: "Fetching Info Failed!",
|
2020-03-10 17:25:52 +00:00
|
|
|
error: (!body || search_idx > -1) ? 'Error From Server!' : body.error
|
2019-11-06 00:26:40 +00:00
|
|
|
});
|
|
|
|
} else {
|
|
|
|
res.status(200).json(body);
|
|
|
|
}
|
|
|
|
})
|
2020-05-03 19:52:38 +00:00
|
|
|
.catch(errRes => {
|
|
|
|
let err = JSON.parse(JSON.stringify(errRes));
|
|
|
|
if (err.options && err.options.headers && err.options.headers['Grpc-Metadata-macaroon']) {
|
|
|
|
delete err.options.headers['Grpc-Metadata-macaroon'];
|
|
|
|
}
|
|
|
|
if (err.response && err.response.request && err.response.request.headers && err.response.request.headers['Grpc-Metadata-macaroon']) {
|
|
|
|
delete err.response.request.headers['Grpc-Metadata-macaroon'];
|
|
|
|
}
|
|
|
|
logger.error({fileName: 'GetInfo', lineNum: 42, msg: 'Get Info Error: ' + JSON.stringify(err)});
|
2019-11-06 00:26:40 +00:00
|
|
|
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
|
|
|
};
|