You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
RTL/controllers/getInfo.js

32 lines
1.1 KiB
JavaScript

var request = require('request-promise');
var common = require('../common');
5 years ago
var logger = require('./logger');
var options = {};
6 years ago
exports.getInfo = (req, res, next) => {
common.setOptions();
options = common.getOptions(1);
options.url = common.findNode(1).lnd_server_url + '/getinfo';
console.log(common.nodes);
logger.info('\r\nCalling getinfo from lnd server url: INFO: ' + options.url);
request(options).then((body) => {
5 years ago
logger.info('\r\nGetInfo: 9: ' + JSON.stringify(Date.now()) + ': INFO: ' + 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) {
6 years ago
res.status(500).json({
message: "Fetching Info failed!",
error: (undefined === body || search_idx > -1) ? 'Error From Server!' : body.error
6 years ago
});
} else {
res.status(200).json(body);
6 years ago
}
})
.catch(function (err) {
return res.status(500).json({
message: "Fetching Info failed!",
error: err.error
});
6 years ago
});
};