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/invoices.js

81 lines
2.8 KiB
JavaScript

5 years ago
var request = require('request-promise');
var common = require('../../common');
var logger = require('../logger');
var options = {};
exports.deleteExpiredInvoice = (req, res, next) => {
5 years ago
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)});
if(!body || body.error) {
5 years ago
res.status(500).json({
message: "Deleting Invoice Failed!",
error: (!body) ? 'Error From Server!' : body.error
5 years ago
});
}
res.status(204).json({status: 'Invoice Deleted Successfully'});
5 years ago
})
.catch((err) => {
return res.status(500).json({
message: "Deleting Invoice Failed!",
5 years ago
error: err.error
});
});
};
exports.listInvoices = (req, res, next) => {
options = common.getOptions();
5 years ago
const labelQuery = req.query.label ? '?label=' + req.query.label : '';
options.url = common.getSelLNServerUrl() + '/invoice/listInvoices' + labelQuery;
5 years ago
request(options).then((body) => {
5 years ago
logger.info({fileName: 'Invoice', msg: 'Invoices List Received: ' + body});
if(!body || body.error) {
5 years ago
res.status(500).json({
message: "Fetching Invoice Info failed!",
error: (!body) ? 'Error From Server!' : body.error
5 years ago
});
} else {
if ( body.invoices && body.invoices.length > 0) {
5 years ago
body.invoices.forEach(invoice => {
invoice.paid_at_str = (!invoice.paid_at) ? '' : common.convertTimestampToDate(invoice.paid_at);
invoice.expires_at_str = (!invoice.expires_at) ? '' : common.convertTimestampToDate(invoice.expires_at);
5 years ago
});
5 years ago
body.invoices = common.sortDescByKey(body.invoices, 'expires_at');
5 years ago
}
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;
5 years ago
request.post(options).then((body) => {
logger.info({fileName: 'Invoice', msg: 'Add Invoice Responce: ' + JSON.stringify(body)});
if(!body || body.error) {
5 years ago
res.status(500).json({
message: "Add Invoice Failed!",
error: (!body) ? 'Error From Server!' : body.error
5 years ago
});
} else {
res.status(201).json(body);
}
})
.catch(function (err) {
return res.status(500).json({
message: "Add Invoice Failed!",
error: err.error
});
});
};