2019-01-01 16:26:51 +00:00
|
|
|
var request = require('request-promise');
|
2018-09-15 01:31:01 +00:00
|
|
|
var options = require("../connect");
|
2018-10-10 00:08:05 +00:00
|
|
|
var common = require('../common');
|
2019-01-13 22:55:25 +00:00
|
|
|
var logger = require('./logger');
|
2018-09-15 01:31:01 +00:00
|
|
|
|
|
|
|
exports.getInfo = (req, res, next) => {
|
2018-10-10 00:08:05 +00:00
|
|
|
options.url = common.lnd_server_url + '/getinfo';
|
2019-02-14 02:31:26 +00:00
|
|
|
logger.info('\r\nCalling getinfo from lnd server url: INFO: ' + options.url);
|
2019-01-01 16:26:51 +00:00
|
|
|
request(options).then((body) => {
|
2019-01-13 22:55:25 +00:00
|
|
|
logger.info('\r\nGetInfo: 9: ' + JSON.stringify(Date.now()) + ': INFO: ' + JSON.stringify(body));
|
2018-09-16 06:29:21 +00:00
|
|
|
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) {
|
2018-09-15 01:31:01 +00:00
|
|
|
res.status(500).json({
|
|
|
|
message: "Fetching Info failed!",
|
2018-10-12 00:03:54 +00:00
|
|
|
error: (undefined === body || search_idx > -1) ? 'Error From Server!' : body.error
|
2018-09-15 01:31:01 +00:00
|
|
|
});
|
|
|
|
} else {
|
2018-09-16 06:29:21 +00:00
|
|
|
res.status(200).json(body);
|
2018-09-15 01:31:01 +00:00
|
|
|
}
|
2019-01-01 16:26:51 +00:00
|
|
|
})
|
|
|
|
.catch(function (err) {
|
|
|
|
return res.status(500).json({
|
|
|
|
message: "Fetching Info failed!",
|
|
|
|
error: err.error
|
|
|
|
});
|
2018-09-15 01:31:01 +00:00
|
|
|
});
|
|
|
|
};
|