2
0
mirror of https://github.com/Ride-The-Lightning/RTL synced 2024-11-11 13:10:41 +00:00
RTL/controllers/c-lightning/invoices.js

81 lines
2.9 KiB
JavaScript
Raw Normal View History

2019-09-07 21:31:32 +00:00
var request = require('request-promise');
var common = require('../../common');
var logger = require('../logger');
var options = {};
exports.deleteExpiredInvoice = (req, res, next) => {
2019-09-07 21:31:32 +00:00
options = common.getOptions();
const queryStr = req.query.maxExpiry ? '?maxexpiry=' + req.query.maxExpiry : '';
options.url = common.getSelLNServerUrl() + '/invoice/delExpiredInvoice' + queryStr;
request.delete(options).then((body) => {
logger.info({fileName: 'Invoice', msg: 'Invoices Deleted: ' + JSON.stringify(body)});
2019-09-07 21:31:32 +00:00
if(undefined === body || body.error) {
res.status(500).json({
message: "Deleting Invoice Failed!",
2019-09-07 21:31:32 +00:00
error: (undefined === body) ? 'Error From Server!' : body.error
});
}
res.status(204).json({status: 'Invoice Deleted Successfully'});
2019-09-07 21:31:32 +00:00
})
.catch((err) => {
return res.status(500).json({
message: "Deleting Invoice Failed!",
2019-09-07 21:31:32 +00:00
error: err.error
});
});
};
exports.listInvoices = (req, res, next) => {
options = common.getOptions();
2019-09-10 23:53:28 +00:00
const labelQuery = req.query.label ? '?label=' + req.query.label : '';
options.url = common.getSelLNServerUrl() + '/invoice/listInvoices' + labelQuery;
2019-09-07 21:31:32 +00:00
request(options).then((body) => {
2019-09-10 23:53:28 +00:00
logger.info({fileName: 'Invoice', msg: 'Invoices List Received: ' + body});
if(undefined === body || body.error) {
2019-09-07 21:31:32 +00:00
res.status(500).json({
message: "Fetching Invoice Info failed!",
2019-09-10 23:53:28 +00:00
error: (undefined === body) ? 'Error From Server!' : body.error
2019-09-07 21:31:32 +00:00
});
} else {
if (undefined !== body.invoices) {
body.invoices.forEach(invoice => {
2019-09-10 23:53:28 +00:00
invoice.paid_at_str = (undefined === invoice.paid_at) ? '' : common.convertTimestampToDate(invoice.paid_at);
invoice.expires_at_str = (undefined === invoice.expires_at) ? '' : common.convertTimestampToDate(invoice.expires_at);
2019-09-07 21:31:32 +00:00
});
2019-09-10 23:53:28 +00:00
body.invoices = common.sortDescByKey(body.invoices, 'expires_at');
2019-09-07 21:31:32 +00:00
}
logger.info({fileName: 'Invoice', msg: 'Invoices List Received: ' + JSON.stringify(body)});
res.status(200).json(body);
}
})
.catch(function (err) {
return res.status(500).json({
message: "Fetching Invoice Info failed!",
error: err.error
});
});
};
exports.addInvoice = (req, res, next) => {
options = common.getOptions();
options.url = common.getSelLNServerUrl() + '/invoice/genInvoice';
options.body = req.body;
2019-09-07 21:31:32 +00:00
request.post(options).then((body) => {
logger.info({fileName: 'Invoice', msg: 'Add Invoice Responce: ' + JSON.stringify(body)});
if(undefined === body || body.error) {
res.status(500).json({
message: "Add Invoice Failed!",
error: (undefined === body) ? 'Error From Server!' : body.error
});
} else {
res.status(201).json(body);
}
})
.catch(function (err) {
return res.status(500).json({
message: "Add Invoice Failed!",
error: err.error
});
});
};