2
0
mirror of https://github.com/Ride-The-Lightning/RTL synced 2024-11-03 23:15:24 +00:00
RTL/controllers/getInfo.js

29 lines
1.0 KiB
JavaScript
Raw Normal View History

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");
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) => {
options.url = common.lnd_server_url + '/getinfo';
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!",
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
});
};