2
0
mirror of https://github.com/Ride-The-Lightning/RTL synced 2024-10-31 09:20:27 +00:00
RTL/controllers/newAddress.js

29 lines
1.0 KiB
JavaScript
Raw Normal View History

2019-01-01 16:26:51 +00:00
var request = require('request-promise');
var options = require("../connect");
var common = require('../common');
exports.getNewAddress = (req, res, next) => {
options.url = common.lnd_server_url + '/newaddress?type=' + req.query.type;
2018-10-01 23:11:28 +00:00
console.log('Request Query Params: ' + JSON.stringify(req.query));
console.log('Options URL: ' + JSON.stringify(options.url));
2019-01-01 16:26:51 +00:00
request(options).then((body) => {
2018-10-01 23:11:28 +00:00
const body_str = (undefined === body) ? '' : JSON.stringify(body);
const search_idx = (undefined === body) ? -1 : body_str.search('Not Found');
console.log("New Address Received: " + body_str);
if(undefined === body || search_idx > -1 || body.error) {
res.status(500).json({
message: "Fetching new address failed!",
error: (undefined === body || search_idx > -1) ? 'Error From Server!' : body.error
});
} else {
2018-10-01 23:11:28 +00:00
res.status(200).json(body);
}
2019-01-01 16:26:51 +00:00
})
.catch(function (err) {
return res.status(500).json({
message: "Fetching new address failed!",
error: err.error
});
});
};