2019-01-01 11:26:51 -05:00
|
|
|
var request = require('request-promise');
|
2018-10-09 20:08:05 -04:00
|
|
|
var common = require('../common');
|
2019-01-13 17:55:25 -05:00
|
|
|
var logger = require('./logger');
|
2019-03-02 12:55:19 -05:00
|
|
|
var options = {};
|
2018-09-26 22:02:46 -04:00
|
|
|
|
2019-01-08 22:04:34 -05:00
|
|
|
exports.getTransactions = (req, res, next) => {
|
2019-04-06 20:20:40 -04:00
|
|
|
options = common.getOptions();
|
|
|
|
options.url = common.getSelLNDServerUrl() + '/transactions';
|
2019-01-08 22:04:34 -05:00
|
|
|
request(options).then((body) => {
|
|
|
|
const body_str = (undefined === body) ? '' : JSON.stringify(body);
|
|
|
|
const search_idx = (undefined === body) ? -1 : body_str.search('Not Found');
|
2019-07-27 14:20:17 -04:00
|
|
|
logger.info({fileName: 'Transactions', msg: 'Transaction Received: ' + body_str});
|
2019-01-08 22:04:34 -05:00
|
|
|
if(undefined === body || search_idx > -1 || body.error) {
|
|
|
|
res.status(500).json({
|
|
|
|
message: "Fetching Transactions Failed!",
|
|
|
|
error: (undefined === body || search_idx > -1) ? 'Error From Server!' : body.error
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
if (undefined !== body.transactions) {
|
|
|
|
body.transactions.forEach(transaction => {
|
|
|
|
transaction.time_stamp_str = (undefined === transaction.time_stamp) ? '' : common.convertTimestampToDate(transaction.time_stamp);
|
|
|
|
});
|
2019-01-19 18:47:56 -05:00
|
|
|
body.transactions = common.sortDescByKey(body.transactions, 'time_stamp');
|
2019-01-08 22:04:34 -05:00
|
|
|
}
|
|
|
|
res.status(200).json(body.transactions);
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.catch(function (err) {
|
|
|
|
return res.status(500).json({
|
|
|
|
message: "Fetching Transactions Failed!",
|
|
|
|
error: err.error
|
|
|
|
});
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2018-09-26 22:02:46 -04:00
|
|
|
exports.postTransactions = (req, res, next) => {
|
2019-04-06 20:20:40 -04:00
|
|
|
options = common.getOptions();
|
|
|
|
options.url = common.getSelLNDServerUrl() + '/transactions';
|
2019-03-02 19:56:23 -05:00
|
|
|
options.form = {
|
2018-09-26 22:02:46 -04:00
|
|
|
amount: req.body.amount,
|
|
|
|
addr: req.body.address,
|
|
|
|
sat_per_byte: req.body.fees,
|
|
|
|
target_conf: req.body.blocks
|
2019-03-02 19:56:23 -05:00
|
|
|
};
|
|
|
|
if (req.body.sendAll) {
|
|
|
|
options.form.send_all = req.body.sendAll;
|
|
|
|
}
|
|
|
|
options.form = JSON.stringify(options.form);
|
2019-01-01 11:26:51 -05:00
|
|
|
request.post(options).then((body) => {
|
2019-07-27 14:20:17 -04:00
|
|
|
logger.info({fileName: 'Transactions', msg: 'Transaction Post Response: ' + JSON.stringify(body)});
|
2018-09-26 22:02:46 -04:00
|
|
|
if(undefined === body || body.error) {
|
|
|
|
res.status(500).json({
|
|
|
|
message: "Transactions post failed!",
|
2018-10-11 20:03:54 -04:00
|
|
|
error: (undefined === body) ? 'Error From Server!' : body.error
|
2018-09-26 22:02:46 -04:00
|
|
|
});
|
|
|
|
} else {
|
|
|
|
res.status(201).json(body);
|
|
|
|
}
|
2019-01-01 11:26:51 -05:00
|
|
|
})
|
|
|
|
.catch(function (err) {
|
|
|
|
return res.status(500).json({
|
|
|
|
message: "Transactions post failed!",
|
|
|
|
error: err.error
|
|
|
|
});
|
2018-09-26 22:02:46 -04:00
|
|
|
});
|
|
|
|
};
|