2
0
mirror of https://github.com/Ride-The-Lightning/RTL synced 2024-11-09 13:10:44 +00:00
RTL/controllers/getInfo.js

21 lines
753 B
JavaScript
Raw Normal View History

2018-09-15 01:31:01 +00:00
var request = require('request');
var options = require("../connect");
var config = require('../config');
exports.getInfo = (req, res, next) => {
options.url = config.lnd_server_url + '/getinfo';
request.get(options, (error, response, 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');
console.log('Information Received: ' + body_str);
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-09-16 06:29:21 +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
}
});
};