mirror of
https://github.com/Ride-The-Lightning/RTL
synced 2024-11-11 13:10:41 +00:00
1321ff071f
CL Home
29 lines
1017 B
JavaScript
29 lines
1017 B
JavaScript
var request = require('request-promise');
|
|
var common = require('../../common');
|
|
var logger = require('../logger');
|
|
var options = {};
|
|
|
|
exports.getNewAddress = (req, res, next) => {
|
|
options = common.getOptions();
|
|
options.url = common.getSelLNServerUrl() + '/newaddress?type=' + req.query.type;
|
|
request(options).then((body) => {
|
|
const body_str = (undefined === body) ? '' : JSON.stringify(body);
|
|
const search_idx = (undefined === body) ? -1 : body_str.search('Not Found');
|
|
logger.info({fileName: 'NewAddress', msg: '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 {
|
|
res.status(200).json(body);
|
|
}
|
|
})
|
|
.catch(function (err) {
|
|
return res.status(500).json({
|
|
message: "Fetching new address failed!",
|
|
error: err.error
|
|
});
|
|
});
|
|
};
|