2019-09-07 21:31:32 +00:00
|
|
|
var request = require('request-promise');
|
|
|
|
var common = require('../../common');
|
|
|
|
var logger = require('../logger');
|
|
|
|
var options = {};
|
|
|
|
|
2019-09-08 19:09:00 +00:00
|
|
|
exports.listPayments = (req, res, next) => {
|
2019-09-07 21:31:32 +00:00
|
|
|
options = common.getOptions();
|
2019-09-08 19:09:00 +00:00
|
|
|
options.url = common.getSelLNServerUrl() + '/pay/listPayments';
|
2019-09-07 21:31:32 +00:00
|
|
|
request(options).then((body) => {
|
2019-09-08 19:09:00 +00:00
|
|
|
logger.info({fileName: 'Payments', msg: 'Payment List Received: ' + JSON.stringify(body.payments)});
|
|
|
|
if(undefined === body || body.error) {
|
2019-09-07 21:31:32 +00:00
|
|
|
res.status(500).json({
|
|
|
|
message: "Payments List Failed!",
|
2019-09-08 19:09:00 +00:00
|
|
|
error: (undefined === body) ? 'Error From Server!' : body.error
|
2019-09-07 21:31:32 +00:00
|
|
|
});
|
|
|
|
} else {
|
2019-10-27 20:39:40 +00:00
|
|
|
if (undefined !== body && undefined !== body.payments && body.payments.length > 0) {
|
2019-09-07 21:31:32 +00:00
|
|
|
body.payments.forEach(payment => {
|
2019-09-08 19:09:00 +00:00
|
|
|
payment.created_at_str = (undefined === payment.created_at) ? '' : common.convertTimestampToDate(payment.created_at);
|
2019-09-07 21:31:32 +00:00
|
|
|
});
|
2019-09-08 19:09:00 +00:00
|
|
|
body.payments = common.sortDescByKey(body.payments, 'created_at');
|
2019-09-07 21:31:32 +00:00
|
|
|
}
|
|
|
|
res.status(200).json(body.payments);
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.catch(function (err) {
|
|
|
|
return res.status(500).json({
|
|
|
|
message: "Payments List Failed!",
|
|
|
|
error: err.error
|
|
|
|
});
|
|
|
|
});
|
|
|
|
};
|
2019-09-08 19:09:00 +00:00
|
|
|
|
|
|
|
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(undefined === body || body.error) {
|
|
|
|
res.status(500).json({
|
|
|
|
message: "Payment Request Decode Failed!",
|
|
|
|
error: (undefined === body || search_idx > -1) ? 'Error From Server!' : body.error
|
|
|
|
});
|
|
|
|
} else {
|
2019-09-14 19:58:21 +00:00
|
|
|
body.created_at_str = (undefined === body.created_at) ? '' : common.convertTimestampToDate(body.created_at);
|
|
|
|
body.expire_at_str = (undefined === body.created_at || undefined === body.expiry) ? '' : common.convertTimestampToDate(body.created_at + body.expiry);
|
2019-09-08 19:09:00 +00:00
|
|
|
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(undefined === body || body.error) {
|
|
|
|
res.status(500).json({
|
2019-09-14 19:58:21 +00:00
|
|
|
message: "Payment Post Failed!",
|
2019-09-08 19:09:00 +00:00
|
|
|
error: (undefined === body) ? 'Error From Server!' : body.error
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
res.status(201).json(body);
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.catch(function (err) {
|
|
|
|
return res.status(500).json({
|
2019-09-14 19:58:21 +00:00
|
|
|
message: "Payment Post Failed!",
|
2019-09-08 19:09:00 +00:00
|
|
|
error: err.error
|
|
|
|
});
|
|
|
|
});
|
|
|
|
};
|