2018-02-07 07:48:37 +00:00
|
|
|
'use strict'
|
|
|
|
|
2020-11-25 18:50:23 +01:00
|
|
|
const debug = require('debug')
|
2020-12-10 14:48:14 +01:00
|
|
|
const log = Object.assign(debug('libp2p:peer-routing'), {
|
|
|
|
error: debug('libp2p:peer-routing:err')
|
|
|
|
})
|
|
|
|
const errCode = require('err-code')
|
2020-11-25 18:50:23 +01:00
|
|
|
|
|
|
|
const all = require('it-all')
|
2019-12-01 22:54:59 +01:00
|
|
|
const pAny = require('p-any')
|
2020-11-25 18:50:23 +01:00
|
|
|
const {
|
|
|
|
setDelayedInterval,
|
|
|
|
clearDelayedInterval
|
|
|
|
} = require('set-delayed-interval')
|
|
|
|
|
|
|
|
/**
|
2020-12-10 14:48:14 +01:00
|
|
|
* @typedef {import('peer-id')} PeerId
|
|
|
|
* @typedef {import('multiaddr')} Multiaddr
|
2020-11-25 18:50:23 +01:00
|
|
|
*/
|
|
|
|
class PeerRouting {
|
|
|
|
/**
|
|
|
|
* @class
|
2020-12-10 14:48:14 +01:00
|
|
|
* @param {import('./')} libp2p
|
2020-11-25 18:50:23 +01:00
|
|
|
*/
|
|
|
|
constructor (libp2p) {
|
|
|
|
this._peerId = libp2p.peerId
|
|
|
|
this._peerStore = libp2p.peerStore
|
|
|
|
this._routers = libp2p._modules.peerRouting || []
|
|
|
|
|
|
|
|
// If we have the dht, make it first
|
|
|
|
if (libp2p._dht) {
|
|
|
|
this._routers.unshift(libp2p._dht)
|
|
|
|
}
|
|
|
|
|
|
|
|
this._refreshManagerOptions = libp2p._options.peerRouting.refreshManager
|
|
|
|
|
|
|
|
this._findClosestPeersTask = this._findClosestPeersTask.bind(this)
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Start peer routing service.
|
|
|
|
*/
|
|
|
|
start () {
|
|
|
|
if (!this._routers.length || this._timeoutId || !this._refreshManagerOptions.enabled) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
this._timeoutId = setDelayedInterval(
|
|
|
|
this._findClosestPeersTask, this._refreshManagerOptions.interval, this._refreshManagerOptions.bootDelay
|
|
|
|
)
|
|
|
|
}
|
2018-10-19 16:28:28 +02:00
|
|
|
|
2020-11-25 18:50:23 +01:00
|
|
|
/**
|
|
|
|
* Recurrent task to find closest peers and add their addresses to the Address Book.
|
|
|
|
*/
|
|
|
|
async _findClosestPeersTask () {
|
|
|
|
try {
|
|
|
|
for await (const { id, multiaddrs } of this.getClosestPeers(this._peerId.id)) {
|
|
|
|
this._peerStore.addressBook.add(id, multiaddrs)
|
|
|
|
}
|
|
|
|
} catch (err) {
|
|
|
|
log.error(err)
|
|
|
|
}
|
|
|
|
}
|
2018-10-19 16:28:28 +02:00
|
|
|
|
2020-11-25 18:50:23 +01:00
|
|
|
/**
|
|
|
|
* Stop peer routing service.
|
|
|
|
*/
|
|
|
|
stop () {
|
|
|
|
clearDelayedInterval(this._timeoutId)
|
2018-10-19 16:28:28 +02:00
|
|
|
}
|
|
|
|
|
2020-11-25 18:50:23 +01: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.timeout] - How long the query should run
|
|
|
|
* @returns {Promise<{ id: PeerId, multiaddrs: Multiaddr[] }>}
|
|
|
|
*/
|
|
|
|
async findPeer (id, options) { // eslint-disable-line require-await
|
|
|
|
if (!this._routers.length) {
|
|
|
|
throw errCode(new Error('No peer routers available'), 'NO_ROUTERS_AVAILABLE')
|
|
|
|
}
|
|
|
|
|
|
|
|
return pAny(this._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')
|
2018-11-05 13:56:45 +01:00
|
|
|
}
|
|
|
|
|
2020-11-25 18:50:23 +01:00
|
|
|
return result
|
|
|
|
}))
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Attempt to find the closest peers on the network to the given key.
|
|
|
|
*
|
|
|
|
* @param {Uint8Array} key - A CID like key
|
|
|
|
* @param {Object} [options]
|
|
|
|
* @param {number} [options.timeout=30e3] - How long the query can take.
|
|
|
|
* @returns {AsyncIterable<{ id: PeerId, multiaddrs: Multiaddr[] }>}
|
|
|
|
*/
|
|
|
|
async * getClosestPeers (key, options = { timeout: 30e3 }) {
|
|
|
|
if (!this._routers.length) {
|
|
|
|
throw errCode(new Error('No peer routers available'), 'NO_ROUTERS_AVAILABLE')
|
|
|
|
}
|
2018-10-19 16:28:28 +02:00
|
|
|
|
2020-11-25 18:50:23 +01:00
|
|
|
const result = await pAny(
|
|
|
|
this._routers.map(async (router) => {
|
|
|
|
const peers = await all(router.getClosestPeers(key, options))
|
|
|
|
|
|
|
|
if (!peers || !peers.length) {
|
2019-12-01 22:54:59 +01:00
|
|
|
throw errCode(new Error('not found'), 'NOT_FOUND')
|
2018-10-19 16:28:28 +02:00
|
|
|
}
|
2020-11-25 18:50:23 +01:00
|
|
|
return peers
|
|
|
|
})
|
|
|
|
)
|
2019-12-01 22:54:59 +01:00
|
|
|
|
2020-11-25 18:50:23 +01:00
|
|
|
for (const peer of result) {
|
|
|
|
yield peer
|
2019-12-01 22:54:59 +01:00
|
|
|
}
|
2018-02-07 07:48:37 +00:00
|
|
|
}
|
|
|
|
}
|
2020-11-25 18:50:23 +01:00
|
|
|
|
|
|
|
module.exports = PeerRouting
|