var request = require('request-promise'); var common = require('../../common'); var logger = require('../shared/logger'); var options = {}; exports.getNewAddress = (req, res, next) => { options = common.getOptions(); options.url = common.getSelLNServerUrl() + '/v1/newaddress?type=' + req.query.type; request(options).then((body) => { const body_str = (!body) ? '' : JSON.stringify(body); const search_idx = (!body) ? -1 : body_str.search('Not Found'); logger.info({fileName: 'NewAddress', msg: 'New Address Received: ' + body_str}); if(!body || search_idx > -1 || body.error) { logger.error({fileName: 'NewAddress', lineNum: 14, msg: 'New Address Error: ' + ((!body || !body.error) ? 'Error From Server!' : JSON.stringify(body.error))}); res.status(500).json({ message: "Fetching new address failed!", error: (!body || search_idx > -1) ? 'Error From Server!' : body.error }); } else { res.status(200).json(body); } }) .catch(errRes => { let err = JSON.parse(JSON.stringify(errRes)); if (err.options && err.options.headers && err.options.headers['Grpc-Metadata-macaroon']) { delete err.options.headers['Grpc-Metadata-macaroon']; } if (err.response && err.response.request && err.response.request.headers && err.response.request.headers['Grpc-Metadata-macaroon']) { delete err.response.request.headers['Grpc-Metadata-macaroon']; } logger.error({fileName: 'NewAddress', lineNum: 30, msg: 'New Address Error: ' + JSON.stringify(err)}); return res.status(500).json({ message: "Fetching new address failed!", error: err.error }); }); };