2019-09-08 19:09:00 +00:00
|
|
|
var request = require('request-promise');
|
|
|
|
var common = require('../../common');
|
|
|
|
var logger = require('../logger');
|
|
|
|
var options = {};
|
|
|
|
|
|
|
|
exports.getRoute = (req, res, next) => {
|
|
|
|
options = common.getOptions();
|
|
|
|
options.url = common.getSelLNServerUrl() + '/network/getRoute/' + req.params.destPubkey + '/' + req.params.amount;
|
|
|
|
request(options).then((body) => {
|
|
|
|
logger.info({fileName: 'Network', msg: 'Query Routes Received: ' + JSON.stringify(body)});
|
2020-03-10 17:25:52 +00:00
|
|
|
if(!body || body.error) {
|
2019-09-08 19:09:00 +00:00
|
|
|
res.status(500).json({
|
|
|
|
message: "Fetching Query Routes Failed!",
|
2020-03-10 17:25:52 +00:00
|
|
|
error: (!body) ? 'Error From Server!' : body.error
|
2019-09-08 19:09:00 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
res.status(200).json({routes: body});
|
|
|
|
})
|
|
|
|
.catch((err) => {
|
|
|
|
return res.status(500).json({
|
|
|
|
message: "Fetching Query Routes Failed!",
|
|
|
|
error: err.error
|
|
|
|
});
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
exports.listNode = (req, res, next) => {
|
|
|
|
options = common.getOptions();
|
2019-09-10 23:53:28 +00:00
|
|
|
options.url = common.getSelLNServerUrl() + '/network/listNode/' + req.params.id;
|
2019-09-08 19:09:00 +00:00
|
|
|
request(options).then(function (body) {
|
2019-09-10 23:53:28 +00:00
|
|
|
logger.info({fileName: 'Network', msg: 'Node Lookup: ' + JSON.stringify(body)});
|
2020-01-04 01:06:36 +00:00
|
|
|
body.forEach(node => {
|
|
|
|
node.last_timestamp_str = (node.last_timestamp) ? common.convertTimestampToDate(node.last_timestamp) : '';
|
|
|
|
});
|
2019-09-10 23:53:28 +00:00
|
|
|
res.status(200).json(body);
|
2019-09-08 19:09:00 +00:00
|
|
|
})
|
|
|
|
.catch((err) => {
|
|
|
|
return res.status(500).json({
|
2019-09-10 23:53:28 +00:00
|
|
|
message: "Node Lookup Failed!",
|
2019-09-08 19:09:00 +00:00
|
|
|
error: err.error
|
|
|
|
});
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
exports.listChannel = (req, res, next) => {
|
|
|
|
options = common.getOptions();
|
2019-09-10 23:53:28 +00:00
|
|
|
options.url = common.getSelLNServerUrl() + '/network/listChannel/' + req.params.channelShortId;
|
2019-09-08 19:09:00 +00:00
|
|
|
request(options).then(function (body) {
|
2019-09-10 23:53:28 +00:00
|
|
|
logger.info({fileName: 'Network', msg: 'Channel Lookup: ' + JSON.stringify(body)});
|
|
|
|
body[0].last_update_str = (body.length > 0 && body[0].last_update) ? common.convertTimestampToDate(body[0].last_update) : '';
|
|
|
|
body[1].last_update_str = (body.length > 1 && body[1].last_update) ? common.convertTimestampToDate(body[1].last_update) : '';
|
|
|
|
res.status(200).json(body);
|
2019-09-08 19:09:00 +00:00
|
|
|
})
|
|
|
|
.catch((err) => {
|
|
|
|
return res.status(500).json({
|
2019-09-10 23:53:28 +00:00
|
|
|
message: "Channel Lookup Failed!",
|
2019-09-08 19:09:00 +00:00
|
|
|
error: err.error
|
|
|
|
});
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
exports.feeRates = (req, res, next) => {
|
|
|
|
options = common.getOptions();
|
2019-09-11 01:41:33 +00:00
|
|
|
options.url = common.getSelLNServerUrl() + '/network/feeRates/' + req.params.feeRateStyle;
|
2019-09-08 19:09:00 +00:00
|
|
|
request(options).then(function (body) {
|
2019-09-11 01:41:33 +00:00
|
|
|
res.status(200).json(body);
|
2019-09-08 19:09:00 +00:00
|
|
|
})
|
|
|
|
.catch((err) => {
|
|
|
|
return res.status(500).json({
|
2019-09-11 01:41:33 +00:00
|
|
|
message: "Fee Rates Failed!",
|
2019-09-08 19:09:00 +00:00
|
|
|
error: err.error
|
|
|
|
});
|
|
|
|
});
|
|
|
|
};
|