1
0
mirror of https://github.com/fluencelabs/js-libp2p synced 2025-04-06 09:41:03 +00:00
js-libp2p/src/peer-routing.js

41 lines
1.1 KiB
JavaScript
Raw Normal View History

2018-02-07 07:48:37 +00:00
'use strict'
const errCode = require('err-code')
const pAny = require('p-any')
2018-02-07 07:48:37 +00:00
module.exports = (node) => {
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 {
/**
* 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.timeout] - How long the query should run
* @returns {Promise<{ id: PeerId, multiaddrs: Multiaddr[] }>}
*/
findPeer: async (id, options) => { // eslint-disable-line require-await
if (!routers.length) {
throw errCode(new Error('No peer routers available'), 'NO_ROUTERS_AVAILABLE')
}
return pAny(routers.map(async (router) => {
const result = await router.findPeer(id, options)
// 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')
}
return result
}))
}
2018-02-07 07:48:37 +00:00
}
}