You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
RTL/controllers/peers.js

41 lines
1.2 KiB
JavaScript

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) => {
options.url = 'https://localhost:8080/v1/peers';
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!'});
}
});
};