2018-09-15 01:31:01 +00:00
|
|
|
var fs = require('fs');
|
|
|
|
var request = require('request');
|
|
|
|
var options = require("../connect");
|
|
|
|
var config = require('../config');
|
|
|
|
|
|
|
|
exports.getPeers = (req, res, next) => {
|
|
|
|
options.url = config.lnd_server_url + '/peers';
|
|
|
|
request.get(options, (error, response, body) => {
|
|
|
|
console.log('Peers Received: ' + JSON.stringify(body));
|
|
|
|
if(error) {
|
|
|
|
res.status(500).json({
|
|
|
|
message: "Fetching peers failed!",
|
|
|
|
error: error
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
res.status(200).json(body.peers);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
exports.postPeer = (req, res, next) => {
|
2018-09-16 06:29:21 +00:00
|
|
|
// setTimeout(()=>{res.status(201).json({message: 'Peer Added!'});}, 5000);
|
2018-09-16 23:20:06 +00:00
|
|
|
options.url = config.lnd_server_url + '/peers';
|
2018-09-15 01:31:01 +00:00
|
|
|
options.form = JSON.stringify({
|
|
|
|
addr: { host: req.body.host, pubkey: req.body.pubkey },
|
|
|
|
perm: req.body.perm
|
|
|
|
});
|
|
|
|
console.log('Options: ' + JSON.stringify(options));
|
|
|
|
request.post(options, (error, response, body) => {
|
|
|
|
console.log('Peer Add Response: ');
|
|
|
|
console.log(body);
|
|
|
|
if(undefined === body || body.error) {
|
|
|
|
res.status(500).json({
|
|
|
|
message: "Adding peers failed!",
|
|
|
|
error: (undefined === body) ? 'ERROR From Server!' : body.error
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
res.status(201).json({message: 'Peer Added!'});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
};
|