Ride-The-Lightning-RTL/controllers/getInfo.js

30 lines
1.0 KiB
JavaScript
Raw Normal View History

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