2020-07-07 17:57:15 +00:00
|
|
|
var request = require('request-promise');
|
2021-06-20 20:27:08 +00:00
|
|
|
var common = require('../../routes/common');
|
2021-02-21 19:02:31 +00:00
|
|
|
var logger = require('../shared/logger');
|
2020-07-07 17:57:15 +00:00
|
|
|
var options = {};
|
|
|
|
var pendingInvoices = [];
|
|
|
|
|
|
|
|
getReceivedPaymentInfo = (invoice) => {
|
|
|
|
let idx = -1;
|
2021-06-20 20:27:08 +00:00
|
|
|
invoice.expiresAt = (!invoice.expiry) ? null : (+invoice.timestamp + +invoice.expiry);
|
|
|
|
if (invoice.amount) { invoice.amount = Math.round(invoice.amount/1000); }
|
|
|
|
idx = pendingInvoices.findIndex(pendingInvoice => invoice.serialized === pendingInvoice.serialized);
|
|
|
|
if (idx < 0) {
|
|
|
|
options.url = common.getSelLNServerUrl() + '/getreceivedinfo';
|
|
|
|
options.form = { paymentHash: invoice.paymentHash };
|
|
|
|
return request(options).then(response => {
|
|
|
|
invoice.status = response.status.type;
|
|
|
|
if (response.status && response.status.type === 'received') {
|
|
|
|
invoice.amountSettled = response.status.amount ? Math.round(response.status.amount/1000) : 0;
|
|
|
|
invoice.receivedAt = response.status.receivedAt ? Math.round(response.status.receivedAt / 1000) : 0;
|
|
|
|
}
|
|
|
|
return invoice;
|
|
|
|
}).catch(err => {
|
|
|
|
invoice.status = 'unknown';
|
|
|
|
return invoice;
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
pendingInvoices.splice(idx, 1);
|
|
|
|
invoice.status = 'unpaid';
|
|
|
|
return invoice;
|
|
|
|
}
|
2020-07-07 17:57:15 +00:00
|
|
|
}
|
|
|
|
|
2021-08-22 14:40:28 +00:00
|
|
|
exports.getInvoice = (req, res, next) => {
|
|
|
|
logger.log({level: 'INFO', fileName: 'Channels', msg: 'Getting Invoice..'});
|
|
|
|
options = common.getOptions();
|
|
|
|
options.url = common.getSelLNServerUrl() + '/getinvoice';
|
|
|
|
options.form = { paymentHash: req.params.paymentHash };
|
|
|
|
request.post(options).then(function (body) {
|
|
|
|
logger.log({level: 'DEBUG', fileName: 'Invoice', msg: 'Invoice Found', data: body});
|
|
|
|
let current_time = (Math.round(new Date(Date.now()).getTime()/1000)).toString();
|
|
|
|
body.amount = body.amount ? body.amount/1000 : 0;
|
|
|
|
body.expiresAt = body.expiresAt ? body.expiresAt : (body.timestamp + body.expiry);
|
|
|
|
body.status = body.status ? body.status : (+body.expiresAt < current_time ? "expired" : "unknown");
|
|
|
|
res.status(200).json(body);
|
|
|
|
})
|
|
|
|
.catch(errRes => {
|
|
|
|
const err = common.handleError(errRes, 'Invoices', 'Get Invoice Error');
|
|
|
|
return res.status(err.statusCode).json({message: err.message, error: err.error});
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2020-07-07 17:57:15 +00:00
|
|
|
exports.listInvoices = (req, res, next) => {
|
2021-06-20 20:27:08 +00:00
|
|
|
logger.log({level: 'INFO', fileName: 'Invoices', msg: 'Getting List Invoices..'});
|
2020-07-07 17:57:15 +00:00
|
|
|
options = common.getOptions();
|
|
|
|
options.form = {};
|
|
|
|
options1 = JSON.parse(JSON.stringify(options));
|
|
|
|
options1.url = common.getSelLNServerUrl() + '/listinvoices';
|
|
|
|
options1.form = {};
|
|
|
|
options2 = JSON.parse(JSON.stringify(options));
|
|
|
|
options2.url = common.getSelLNServerUrl() + '/listpendinginvoices';
|
|
|
|
options2.form = {};
|
2021-06-20 20:27:08 +00:00
|
|
|
if (common.read_dummy_data) {
|
|
|
|
common.getDummyData('Invoices').then(function(body) {
|
|
|
|
let invoices = (!body[0] || body[0].length <= 0) ? [] : body[0];
|
|
|
|
pendingInvoices = (!body[1] || body[1].length <= 0) ? [] : body[1];
|
|
|
|
return Promise.all(invoices.map(invoice => getReceivedPaymentInfo(invoice)))
|
2020-07-07 17:57:15 +00:00
|
|
|
.then(values => {
|
|
|
|
body = common.sortDescByKey(invoices, 'expiresAt');
|
|
|
|
res.status(200).json(invoices);
|
2021-06-20 20:27:08 +00:00
|
|
|
});
|
2020-07-07 17:57:15 +00:00
|
|
|
});
|
2021-06-20 20:27:08 +00:00
|
|
|
} else {
|
|
|
|
return Promise.all([request(options1), request(options2)])
|
|
|
|
.then(body => {
|
|
|
|
logger.log({level: 'DEBUG', fileName: 'Invoice', msg: 'Invoices List Received', data: body});
|
|
|
|
let invoices = (!body[0] || body[0].length <= 0) ? [] : body[0];
|
|
|
|
pendingInvoices = (!body[1] || body[1].length <= 0) ? [] : body[1];
|
|
|
|
if (invoices && invoices.length > 0) {
|
|
|
|
return Promise.all(invoices.map(invoice => getReceivedPaymentInfo(invoice)))
|
|
|
|
.then(values => {
|
|
|
|
body = common.sortDescByKey(invoices, 'expiresAt');
|
|
|
|
logger.log({level: 'DEBUG', fileName: 'Invoice', msg: 'Final Invoices List', data: invoices});
|
|
|
|
logger.log({level: 'INFO', fileName: 'Invoices', msg: 'List Invoices Received'});
|
|
|
|
res.status(200).json(invoices);
|
|
|
|
})
|
|
|
|
.catch(errRes => {
|
2021-08-17 11:21:01 +00:00
|
|
|
const err = common.handleError(errRes, 'Invoices', 'List Invoices Error');
|
|
|
|
return res.status(err.statusCode).json({message: err.message, error: err.error});
|
2021-06-20 20:27:08 +00:00
|
|
|
});
|
|
|
|
} else {
|
|
|
|
logger.log({level: 'INFO', fileName: 'Invoices', msg: 'Empty List Invoice Received'});
|
|
|
|
res.status(200).json([]);
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.catch(errRes => {
|
2021-08-17 11:21:01 +00:00
|
|
|
const err = common.handleError(errRes, 'Invoices', 'List Invoices Error');
|
|
|
|
return res.status(err.statusCode).json({message: err.message, error: err.error});
|
2021-06-20 20:27:08 +00:00
|
|
|
});
|
|
|
|
}
|
2020-07-07 17:57:15 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
exports.createInvoice = (req, res, next) => {
|
2021-06-20 20:27:08 +00:00
|
|
|
logger.log({level: 'INFO', fileName: 'Invoices', msg: 'Creating Invoice..'});
|
2020-07-07 17:57:15 +00:00
|
|
|
options = common.getOptions();
|
|
|
|
options.url = common.getSelLNServerUrl() + '/createinvoice';
|
|
|
|
options.form = req.body;
|
|
|
|
request.post(options).then((body) => {
|
2021-06-20 20:27:08 +00:00
|
|
|
logger.log({level: 'DEBUG', fileName: 'Invoice', msg: 'Create Invoice Response', data: body});
|
2020-07-07 17:57:15 +00:00
|
|
|
if (body.amount) { body.amount = Math.round(body.amount/1000); }
|
2021-06-20 20:27:08 +00:00
|
|
|
logger.log({level: 'INFO', fileName: 'Invoices', msg: 'Invoice Created'});
|
2020-07-07 17:57:15 +00:00
|
|
|
res.status(201).json(body);
|
|
|
|
})
|
|
|
|
.catch(errRes => {
|
2021-08-17 11:21:01 +00:00
|
|
|
const err = common.handleError(errRes, 'Invoices', 'Create Invoice Error');
|
|
|
|
return res.status(err.statusCode).json({message: err.message, error: err.error});
|
2020-07-07 17:57:15 +00:00
|
|
|
});
|
|
|
|
};
|