2018-02-07 07:48:37 +00:00
|
|
|
'use strict'
|
|
|
|
|
2018-10-19 16:28:28 +02:00
|
|
|
const tryEach = require('async/tryEach')
|
|
|
|
const errCode = require('err-code')
|
|
|
|
|
2018-02-07 07:48:37 +00:00
|
|
|
module.exports = (node) => {
|
2018-10-19 16:28:28 +02:00
|
|
|
const routers = node._modules.peerRouting || []
|
|
|
|
|
|
|
|
// If we have the dht, make it first
|
|
|
|
if (node._dht) {
|
|
|
|
routers.unshift(node._dht)
|
|
|
|
}
|
|
|
|
|
2018-02-07 07:48:37 +00:00
|
|
|
return {
|
2018-10-19 16:28:28 +02:00
|
|
|
/**
|
|
|
|
* Iterates over all peer routers in series to find the given peer.
|
|
|
|
*
|
|
|
|
* @param {String} id The id of the peer to find
|
|
|
|
* @param {object} options
|
|
|
|
* @param {number} options.maxTimeout How long the query should run
|
|
|
|
* @param {function(Error, Result<Array>)} callback
|
|
|
|
* @returns {void}
|
|
|
|
*/
|
|
|
|
findPeer: (id, options, callback) => {
|
|
|
|
if (!routers.length) {
|
|
|
|
callback(errCode(new Error('No peer routers available'), 'NO_ROUTERS_AVAILABLE'))
|
2018-02-07 07:48:37 +00:00
|
|
|
}
|
|
|
|
|
2018-10-19 16:28:28 +02:00
|
|
|
if (typeof options === 'function') {
|
|
|
|
callback = options
|
|
|
|
options = {}
|
|
|
|
}
|
|
|
|
|
|
|
|
const tasks = routers.map((router) => {
|
|
|
|
return (cb) => router.findPeer(id, options, (err, result) => {
|
|
|
|
if (err) {
|
|
|
|
return cb(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// If we don't have a result, we need to provide an error to keep trying
|
|
|
|
if (!result || Object.keys(result).length === 0) {
|
|
|
|
return cb(errCode(new Error('not found'), 'NOT_FOUND'), null)
|
|
|
|
}
|
|
|
|
|
|
|
|
cb(null, result)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
tryEach(tasks, (err, results) => {
|
|
|
|
if (err && err.code !== 'NOT_FOUND') {
|
|
|
|
return callback(err)
|
|
|
|
}
|
|
|
|
results = results || []
|
|
|
|
callback(null, results)
|
|
|
|
})
|
2018-02-07 07:48:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|