You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
RTL/controllers/c-lightning/payments.js

80 lines
2.7 KiB
JavaScript

5 years ago
var request = require('request-promise');
var common = require('../../common');
var logger = require('../logger');
var options = {};
exports.listPayments = (req, res, next) => {
5 years ago
options = common.getOptions();
options.url = common.getSelLNServerUrl() + '/pay/listPayments';
5 years ago
request(options).then((body) => {
logger.info({fileName: 'Payments', msg: 'Payment List Received: ' + JSON.stringify(body.payments)});
if(!body || body.error) {
5 years ago
res.status(500).json({
message: "Payments List Failed!",
error: (!body) ? 'Error From Server!' : body.error
5 years ago
});
} else {
if ( body && body.payments && body.payments.length > 0) {
5 years ago
body.payments.forEach(payment => {
payment.created_at_str = (!payment.created_at) ? '' : common.convertTimestampToDate(payment.created_at);
5 years ago
});
body.payments = common.sortDescByKey(body.payments, 'created_at');
5 years ago
}
res.status(200).json(body.payments);
}
})
.catch(function (err) {
return res.status(500).json({
message: "Payments List Failed!",
error: err.error
});
});
};
exports.decodePayment = (req, res, next) => {
options = common.getOptions();
options.url = common.getSelLNServerUrl() + '/pay/decodePay/' + req.params.invoice;
request(options).then((body) => {
logger.info({fileName: 'Payments', msg: 'Payment Decode Received: ' + JSON.stringify(body)});
if(!body || body.error) {
res.status(500).json({
message: "Payment Request Decode Failed!",
error: (!body || search_idx > -1) ? 'Error From Server!' : body.error
});
} else {
body.created_at_str = (!body.created_at) ? '' : common.convertTimestampToDate(body.created_at);
body.expire_at_str = (!body.created_at || !body.expiry) ? '' : common.convertTimestampToDate(body.created_at + body.expiry);
res.status(200).json(body);
}
})
.catch(function (err) {
return res.status(500).json({
message: "Payment Request Decode Failed!",
error: err.error
});
});
};
exports.postPayment = (req, res, next) => {
options = common.getOptions();
options.url = common.getSelLNServerUrl() + '/pay';
options.body = req.body;
request.post(options).then((body) => {
logger.info({fileName: 'Payments', msg: 'Payment Post Response: ' + JSON.stringify(body)});
if(!body || body.error) {
res.status(500).json({
message: "Payment Post Failed!",
error: (!body) ? 'Error From Server!' : body.error
});
} else {
res.status(201).json(body);
}
})
.catch(function (err) {
return res.status(500).json({
message: "Payment Post Failed!",
error: err.error
});
});
};