mirror of
https://github.com/Ride-The-Lightning/RTL.git
synced 2026-08-17 13:06:58 +02:00
ECL Enable MPP #452 Authentication layout fix on Safari #473 Updated error message for download backup #471 Increase badge width with number #453 CLT Sweep All #451 CLT Invoice incorrect fiat conversion #454 UTXO Hint, MPP Indentation, ECL Inactive Peer Reconnect #459, #460, #462 LND filter outgoing channel for send payment #463 Show Description on Payments Info #467 Added Description in Payments Info #489 ECL Added Settled Amount in Invoices list #441 List the UTXOs for the wallet #420 Loop upgraded to 9.0 with backward compatibility #472 Confirmation message updated for force close Display the active HTLCs #498 Path information missing for transaction #497 Problem parsing eclair.conf #383 Created Contributing.md Separate fee and payments calls #428 Updated Forwarding History Table and View Info #437 (#507) Showing channel ID when alias is missing #495 & #481 Add payment description #510 Force close pending channels #447
79 lines
3.3 KiB
JavaScript
79 lines
3.3 KiB
JavaScript
var request = require('request-promise');
|
|
var common = require('../../common');
|
|
var logger = require('../logger');
|
|
var options = {};
|
|
|
|
exports.decodePayment = (req, res, next) => {
|
|
options = common.getOptions();
|
|
options.url = common.getSelLNServerUrl() + '/v1/payreq/' + req.params.payRequest;
|
|
request(options).then((body) => {
|
|
const body_str = (!body) ? '' : JSON.stringify(body);
|
|
const search_idx = (!body) ? -1 : body_str.search('Not Found');
|
|
logger.info({fileName: 'PayReq', msg: 'Payment Decode Received: ' + body_str});
|
|
if(!body || search_idx > -1 || body.error) {
|
|
logger.error({fileName: 'PayReq', lineNum: 14, msg: 'Payment Decode Error: ' + ((!body || !body.error) ? 'Error From Server!' : JSON.stringify(body.error))});
|
|
res.status(500).json({
|
|
message: "Payment Request Decode Failed!",
|
|
error: (!body || search_idx > -1) ? 'Error From Server!' : body.error
|
|
});
|
|
} else {
|
|
body.btc_num_satoshis = (!body.num_satoshis) ? 0 : common.convertToBTC(body.num_satoshis);
|
|
body.timestamp_str = (!body.timestamp) ? '' : common.convertTimestampToDate(body.timestamp);
|
|
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: 'PayReq', lineNum: 32, msg: 'Payment Decode Error: ' + JSON.stringify(err)});
|
|
return res.status(500).json({
|
|
message: "Payment Request Decode Failed!",
|
|
error: err.error
|
|
});
|
|
});
|
|
};
|
|
|
|
exports.decodePayments = (req, res, next) => {
|
|
options = common.getOptions();
|
|
if (req.body.payments) {
|
|
let paymentsArr = req.body.payments.split(',');
|
|
Promise.all(paymentsArr.map(payment => {return decodePaymentFromPaymentRequest(payment)}))
|
|
.then(function(values) {
|
|
logger.info({fileName: 'PayReq', msg: 'Decoded Payments: ' + JSON.stringify(values)});
|
|
res.status(200).json(values);
|
|
})
|
|
.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: 'PayReq', lineNum: 58, msg: 'Decode Payments Failed: ' + JSON.stringify(err)});
|
|
return res.status(500).json({
|
|
message: "Decode Payments Failed!",
|
|
error: err.error
|
|
});
|
|
});
|
|
} else {
|
|
res.status(200).json([]);
|
|
}
|
|
};
|
|
|
|
decodePaymentFromPaymentRequest = (payment) => {
|
|
return new Promise(function(resolve, reject) {
|
|
options.url = common.getSelLNServerUrl() + '/v1/payreq/' + payment;
|
|
request(options)
|
|
.then(function(res) {
|
|
logger.info({fileName: 'PayReq', msg: 'Description: ' + JSON.stringify(res.description)});
|
|
resolve(res);
|
|
})
|
|
.catch(err => resolve({}));
|
|
});
|
|
}
|