2018-02-07 07:48:37 +00:00
|
|
|
'use strict'
|
|
|
|
|
2018-10-19 16:28:28 +02:00
|
|
|
const errCode = require('err-code')
|
2019-12-01 22:54:59 +01:00
|
|
|
const pAny = require('p-any')
|
2018-10-19 16:28:28 +02:00
|
|
|
|
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.
|
|
|
|
*
|
2020-10-06 14:59:43 +02:00
|
|
|
* @param {string} id - The id of the peer to find
|
2019-12-01 22:54:59 +01:00
|
|
|
* @param {object} [options]
|
2020-10-06 14:59:43 +02:00
|
|
|
* @param {number} [options.timeout] - How long the query should run
|
2020-04-14 14:05:30 +02:00
|
|
|
* @returns {Promise<{ id: PeerId, multiaddrs: Multiaddr[] }>}
|
2018-10-19 16:28:28 +02:00
|
|
|
*/
|
2019-12-01 22:54:59 +01:00
|
|
|
findPeer: async (id, options) => { // eslint-disable-line require-await
|
2018-11-05 13:56:45 +01:00
|
|
|
if (!routers.length) {
|
2019-12-01 22:54:59 +01:00
|
|
|
throw errCode(new Error('No peer routers available'), 'NO_ROUTERS_AVAILABLE')
|
2018-11-05 13:56:45 +01:00
|
|
|
}
|
|
|
|
|
2019-12-01 22:54:59 +01:00
|
|
|
return pAny(routers.map(async (router) => {
|
|
|
|
const result = await router.findPeer(id, options)
|
2018-10-19 16:28:28 +02:00
|
|
|
|
2019-12-01 22:54:59 +01:00
|
|
|
// If we don't have a result, we need to provide an error to keep trying
|
|
|
|
if (!result || Object.keys(result).length === 0) {
|
|
|
|
throw errCode(new Error('not found'), 'NOT_FOUND')
|
2018-10-19 16:28:28 +02:00
|
|
|
}
|
2019-12-01 22:54:59 +01:00
|
|
|
|
|
|
|
return result
|
|
|
|
}))
|
|
|
|
}
|
2018-02-07 07:48:37 +00:00
|
|
|
}
|
|
|
|
}
|