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

67 lines
2.3 KiB
JavaScript
Raw Normal View History

2019-01-01 16:26:51 +00:00
var request = require('request-promise');
var common = require('../common');
2019-01-13 22:55:25 +00:00
var logger = require('./logger');
var options = {};
2019-01-09 03:04:34 +00:00
exports.getTransactions = (req, res, next) => {
options = common.getOptions();
options.url = common.getSelLNDServerUrl() + '/transactions';
2019-01-09 03:04:34 +00: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-01-13 22:55:25 +00:00
logger.info('\r\nTransactions: 10: ' + JSON.stringify(Date.now()) + ': INFO: Transaction Received: ' + body_str);
2019-01-09 03:04:34 +00: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);
});
body.transactions = common.sortDescByKey(body.transactions, 'time_stamp');
2019-01-09 03:04:34 +00:00
}
res.status(200).json(body.transactions);
}
})
.catch(function (err) {
return res.status(500).json({
message: "Fetching Transactions Failed!",
error: err.error
});
});
};
exports.postTransactions = (req, res, next) => {
options = common.getOptions();
options.url = common.getSelLNDServerUrl() + '/transactions';
2019-03-03 00:56:23 +00:00
options.form = {
amount: req.body.amount,
addr: req.body.address,
sat_per_byte: req.body.fees,
target_conf: req.body.blocks
2019-03-03 00:56:23 +00:00
};
if (req.body.sendAll) {
options.form.send_all = req.body.sendAll;
}
options.form = JSON.stringify(options.form);
2019-01-01 16:26:51 +00:00
request.post(options).then((body) => {
2019-01-13 22:55:25 +00:00
logger.info('\r\nTransactions: 42: ' + JSON.stringify(Date.now()) + ': INFO: Transaction Post Response: ' + JSON.stringify(body));
if(undefined === body || body.error) {
res.status(500).json({
message: "Transactions post 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: "Transactions post failed!",
error: err.error
});
});
};