2019-01-01 16:26:51 +00:00
|
|
|
var request = require('request-promise');
|
2019-09-01 17:01:38 +00:00
|
|
|
var common = require('../../common');
|
|
|
|
var logger = require('../logger');
|
2019-03-02 17:55:19 +00:00
|
|
|
var options = {};
|
2018-11-23 01:36:28 +00:00
|
|
|
|
2019-01-09 03:04:34 +00:00
|
|
|
exports.getInvoice = (req, res, next) => {
|
2019-04-07 00:20:40 +00:00
|
|
|
options = common.getOptions();
|
2019-09-02 04:11:37 +00:00
|
|
|
options.url = common.getSelLNServerUrl() + '/invoice/' + req.params.rHashStr;
|
2019-01-09 03:04:34 +00:00
|
|
|
request(options).then((body) => {
|
2019-07-27 18:20:17 +00:00
|
|
|
logger.info({fileName: 'Invoice', msg: 'Invoice Info Received: ' + JSON.stringify(body)});
|
2019-01-09 03:04:34 +00:00
|
|
|
if(undefined === body || body.error) {
|
|
|
|
res.status(500).json({
|
|
|
|
message: "Fetching Invoice Info Failed!",
|
|
|
|
error: (undefined === body) ? 'Error From Server!' : body.error
|
|
|
|
});
|
|
|
|
}
|
|
|
|
res.status(200).json(body);
|
|
|
|
})
|
|
|
|
.catch((err) => {
|
|
|
|
return res.status(500).json({
|
|
|
|
message: "Fetching Invoice Info Failed!",
|
|
|
|
error: err.error
|
|
|
|
});
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2018-11-23 01:36:28 +00:00
|
|
|
exports.listInvoices = (req, res, next) => {
|
2019-04-07 00:20:40 +00:00
|
|
|
options = common.getOptions();
|
2019-09-02 04:11:37 +00:00
|
|
|
options.url = common.getSelLNServerUrl() + '/invoices?num_max_invoices=' + req.query.num_max_invoices + '&index_offset=' + req.query.index_offset +
|
2019-05-08 01:30:48 +00:00
|
|
|
'&reversed=' + req.query.reversed;
|
2019-01-01 16:26:51 +00:00
|
|
|
request(options).then((body) => {
|
2018-11-23 01:36:28 +00:00
|
|
|
const body_str = (undefined === body) ? '' : JSON.stringify(body);
|
|
|
|
const search_idx = (undefined === body) ? -1 : body_str.search('Not Found');
|
2019-07-27 18:20:17 +00:00
|
|
|
logger.info({fileName: 'Invoice', msg: 'Invoices List Received: ' + body_str});
|
2018-11-23 01:36:28 +00:00
|
|
|
if(undefined === body || search_idx > -1 || body.error) {
|
|
|
|
res.status(500).json({
|
|
|
|
message: "Fetching Invoice Info failed!",
|
|
|
|
error: (undefined === body || search_idx > -1) ? 'Error From Server!' : body.error
|
|
|
|
});
|
|
|
|
} else {
|
2019-10-27 20:39:40 +00:00
|
|
|
if (undefined !== body.invoices && body.invoices.length > 0) {
|
2019-01-19 23:47:56 +00:00
|
|
|
body.invoices.forEach(invoice => {
|
|
|
|
invoice.creation_date_str = (undefined === invoice.creation_date) ? '' : common.convertTimestampToDate(invoice.creation_date);
|
|
|
|
invoice.settle_date_str = (undefined === invoice.settle_date) ? '' : common.convertTimestampToDate(invoice.settle_date);
|
|
|
|
invoice.btc_value = (undefined === invoice.value) ? 0 : common.convertToBTC(invoice.value);
|
|
|
|
invoice.btc_amt_paid_sat = (undefined === invoice.amt_paid_sat) ? 0 : common.convertToBTC(invoice.amt_paid_sat);
|
|
|
|
});
|
|
|
|
body.invoices = common.sortDescByKey(body.invoices, 'creation_date');
|
|
|
|
}
|
2019-07-27 18:20:17 +00:00
|
|
|
logger.info({fileName: 'Invoice', msg: 'Invoices List Received: ' + JSON.stringify(body)});
|
2018-11-23 01:36:28 +00:00
|
|
|
res.status(200).json(body);
|
|
|
|
}
|
2019-01-01 16:26:51 +00:00
|
|
|
})
|
|
|
|
.catch(function (err) {
|
|
|
|
return res.status(500).json({
|
|
|
|
message: "Fetching Invoice Info failed!",
|
|
|
|
error: err.error
|
|
|
|
});
|
2018-11-23 01:36:28 +00:00
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
exports.addInvoice = (req, res, next) => {
|
2019-04-07 00:20:40 +00:00
|
|
|
options = common.getOptions();
|
2019-09-02 04:11:37 +00:00
|
|
|
options.url = common.getSelLNServerUrl() + '/invoices';
|
2018-11-23 01:36:28 +00:00
|
|
|
options.form = JSON.stringify({
|
|
|
|
memo: req.body.memo,
|
2019-05-08 23:44:34 +00:00
|
|
|
value: req.body.amount,
|
2019-06-11 22:45:29 +00:00
|
|
|
private: req.body.private,
|
2019-06-17 21:26:46 +00:00
|
|
|
expiry: req.body.expiry
|
2018-11-23 01:36:28 +00:00
|
|
|
});
|
2019-01-01 16:26:51 +00:00
|
|
|
request.post(options).then((body) => {
|
2019-07-27 18:20:17 +00:00
|
|
|
logger.info({fileName: 'Invoice', msg: 'Add Invoice Responce: ' + JSON.stringify(body)});
|
2018-11-23 01:36:28 +00:00
|
|
|
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);
|
|
|
|
}
|
2019-01-01 16:26:51 +00:00
|
|
|
})
|
|
|
|
.catch(function (err) {
|
|
|
|
return res.status(500).json({
|
|
|
|
message: "Add Invoice Failed!",
|
|
|
|
error: err.error
|
|
|
|
});
|
2018-11-23 01:36:28 +00:00
|
|
|
});
|
|
|
|
};
|