2019-01-01 16:26:51 +00:00
|
|
|
var request = require('request-promise');
|
2021-06-20 20:27:08 +00:00
|
|
|
var common = require('../../routes/common');
|
2021-02-21 19:02:31 +00:00
|
|
|
var logger = require('../shared/logger');
|
2019-03-02 17:55:19 +00:00
|
|
|
var options = {};
|
2018-09-15 01:31:01 +00:00
|
|
|
|
|
|
|
exports.getInfo = (req, res, next) => {
|
2021-06-20 20:27:08 +00:00
|
|
|
logger.log({level: 'INFO', fileName: 'GetInfo', msg: 'Getting CLightning Node Information..'});
|
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';
|
2021-06-20 20:27:08 +00:00
|
|
|
logger.log({level: 'DEBUG', fileName:'GetInfo', msg: 'Selected Node', data: common.selectedNode.ln_node});
|
|
|
|
logger.log({level: 'DEBUG', fileName: 'GetInfo', msg: 'Calling Info from C-Lightning server url', data: options.url});
|
2020-05-03 19:52:38 +00:00
|
|
|
if (!options.headers || !options.headers.macaroon) {
|
2021-06-20 20:27:08 +00:00
|
|
|
logger.log({level: 'ERROR', fileName: 'GetInfo', msg: 'C-Lightning Get info failed due to bad or missing macaroon!', error: {error: 'Bad macaroon.'}});
|
2020-05-03 19:52:38 +00:00
|
|
|
res.status(502).json({
|
|
|
|
message: "Fetching Info Failed!",
|
|
|
|
error: "Bad Macaroon"
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
request(options).then((body) => {
|
2021-06-20 20:27:08 +00:00
|
|
|
logger.log({level: 'DEBUG', fileName: 'GetInfo', msg: 'Node Information', data: body});
|
2020-05-03 19:52:38 +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) {
|
2021-06-20 20:27:08 +00:00
|
|
|
logger.log({level: 'ERROR', fileName: 'GetInfo', msg: 'Get Info Error', error: body.error});
|
2020-05-03 19:52:38 +00:00
|
|
|
res.status(500).json({
|
|
|
|
message: "Fetching Info failed!",
|
|
|
|
error: (!body || search_idx > -1) ? 'Error From Server!' : body.error
|
2020-01-04 20:24:17 +00:00
|
|
|
});
|
2020-05-03 19:52:38 +00:00
|
|
|
} else {
|
|
|
|
body.lnImplementation = 'C-Lightning';
|
|
|
|
let chainObj = { chain: '', network: '' };
|
|
|
|
if (body.network === 'testnet') {
|
|
|
|
chainObj.chain = 'Bitcoin';
|
|
|
|
chainObj.network = 'Testnet';
|
|
|
|
} else if (body.network === 'bitcoin') {
|
|
|
|
chainObj.chain = 'Bitcoin';
|
|
|
|
chainObj.network = 'Mainnet';
|
|
|
|
} else if (body.network === 'litecoin') {
|
|
|
|
chainObj.chain = 'Litecoin';
|
|
|
|
chainObj.network = 'Mainnet';
|
|
|
|
} else if (body.network === 'litecoin-testnet') {
|
|
|
|
chainObj.chain = 'Litecoin';
|
|
|
|
chainObj.network = 'Testnet';
|
|
|
|
}
|
|
|
|
body.chains = [chainObj];
|
|
|
|
body.uris = [];
|
|
|
|
if (body.address && body.address.length>0) {
|
|
|
|
body.address.forEach(addr => {
|
|
|
|
body.uris.push(body.id + '@' + addr.address + ':' + addr.port);
|
|
|
|
});
|
|
|
|
}
|
2021-06-20 20:27:08 +00:00
|
|
|
logger.log({level: 'INFO', fileName: 'GetInfo', msg: 'CLightning Node Information Received'});
|
2020-05-03 19:52:38 +00:00
|
|
|
res.status(200).json(body);
|
2020-01-04 20:24:17 +00:00
|
|
|
}
|
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.macaroon) {
|
|
|
|
delete err.options.headers.macaroon;
|
|
|
|
}
|
|
|
|
if (err.response && err.response.request && err.response.request.headers && err.response.request.headers.macaroon) {
|
|
|
|
delete err.response.request.headers.macaroon;
|
|
|
|
}
|
2021-06-20 20:27:08 +00:00
|
|
|
logger.log({level: 'ERROR', fileName: 'GetInfo', msg: 'Get Info Error', error: err});
|
2020-05-03 19:52:38 +00:00
|
|
|
return res.status(500).json({
|
|
|
|
message: "Fetching Info failed!",
|
|
|
|
error: err.error
|
|
|
|
});
|
2019-01-01 16:26:51 +00:00
|
|
|
});
|
2020-05-03 19:52:38 +00:00
|
|
|
}
|
2018-09-15 01:31:01 +00:00
|
|
|
};
|