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

29 lines
929 B
JavaScript
Raw Normal View History

2019-01-01 17:26:51 +01:00
var request = require('request-promise');
2018-09-15 03:31:01 +02:00
var options = require("../connect");
var common = require('../common');
2018-09-15 03:31:01 +02:00
exports.getInfo = (req, res, next) => {
options.url = common.lnd_server_url + '/getinfo';
2019-01-01 17:26:51 +01:00
request(options).then((body) => {
console.log('body');
console.log(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');
console.log('Information Received: ' + body_str);
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
});
};