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

30 lines
727 B

const tor = require('../lib/tor');
module.exports = (req, res) => {
let title = 'Top 10 nodes by consensus weight';
const query = {
limit: 10
};
if(req.query.s) {
title = `Search results for "${req.query.s}":`;
query.search = req.query.s;
if(req.query.p) {
query.offset = (query.limit * req.query.p) - query.limit;
}
} else {
query.order = '-consensus_weight';
query.running = true;
}
tor.listNodes(query)
.then(nodes => res.render('listing.html', {
pageTitle: req.query.s ? `Search: ${req.query.s}` : false,
title: title,
nodes: nodes,
numOfNodes: query.limit
}))
.catch(error => res.render('listing.html', {
error: error
}));
}