mirror of
https://github.com/fluencelabs/js-libp2p
synced 2025-04-01 15:21:04 +00:00
Looks like this project stopped running the `test:node` npm script when it was migrated to gh actions. Re-enable it and fix all the related test failures.
167 lines
5.0 KiB
JavaScript
167 lines
5.0 KiB
JavaScript
'use strict'
|
|
|
|
const debug = require('debug')
|
|
const log = Object.assign(debug('libp2p:peer-routing'), {
|
|
error: debug('libp2p:peer-routing:err')
|
|
})
|
|
const errCode = require('err-code')
|
|
const errors = require('./errors')
|
|
const {
|
|
storeAddresses,
|
|
uniquePeers,
|
|
requirePeers
|
|
} = require('./content-routing/utils')
|
|
const { TimeoutController } = require('timeout-abort-controller')
|
|
|
|
const merge = require('it-merge')
|
|
const { pipe } = require('it-pipe')
|
|
const first = require('it-first')
|
|
const drain = require('it-drain')
|
|
const filter = require('it-filter')
|
|
const {
|
|
setDelayedInterval,
|
|
clearDelayedInterval
|
|
// @ts-ignore module with no types
|
|
} = require('set-delayed-interval')
|
|
const { DHTPeerRouting } = require('./dht/dht-peer-routing')
|
|
|
|
/**
|
|
* @typedef {import('peer-id')} PeerId
|
|
* @typedef {import('multiaddr').Multiaddr} Multiaddr
|
|
* @typedef {import('libp2p-interfaces/src/peer-routing/types').PeerRouting} PeerRoutingModule
|
|
*/
|
|
|
|
/**
|
|
* @typedef {Object} RefreshManagerOptions
|
|
* @property {boolean} [enabled = true] - Whether to enable the Refresh manager
|
|
* @property {number} [bootDelay = 6e5] - Boot delay to start the Refresh Manager (in ms)
|
|
* @property {number} [interval = 10e3] - Interval between each Refresh Manager run (in ms)
|
|
* @property {number} [timeout = 10e3] - How long to let each refresh run (in ms)
|
|
*
|
|
* @typedef {Object} PeerRoutingOptions
|
|
* @property {RefreshManagerOptions} [refreshManager]
|
|
*/
|
|
|
|
class PeerRouting {
|
|
/**
|
|
* @class
|
|
* @param {import('./')} libp2p
|
|
*/
|
|
constructor (libp2p) {
|
|
this._peerId = libp2p.peerId
|
|
this._peerStore = libp2p.peerStore
|
|
/** @type {PeerRoutingModule[]} */
|
|
this._routers = libp2p._modules.peerRouting || []
|
|
|
|
// If we have the dht, add it to the available peer routers
|
|
if (libp2p._dht && libp2p._config.dht.enabled) {
|
|
this._routers.push(new DHTPeerRouting(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
|
|
)
|
|
}
|
|
|
|
/**
|
|
* Recurrent task to find closest peers and add their addresses to the Address Book.
|
|
*/
|
|
async _findClosestPeersTask () {
|
|
try {
|
|
// nb getClosestPeers adds the addresses to the address book
|
|
await drain(this.getClosestPeers(this._peerId.id, { timeout: this._refreshManagerOptions.timeout || 10e3 }))
|
|
} catch (/** @type {any} */ err) {
|
|
log.error(err)
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Stop peer routing service.
|
|
*/
|
|
stop () {
|
|
clearDelayedInterval(this._timeoutId)
|
|
}
|
|
|
|
/**
|
|
* Iterates over all peer routers in parallel to find the given peer.
|
|
*
|
|
* @param {PeerId} 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'), errors.codes.ERR_NO_ROUTERS_AVAILABLE)
|
|
}
|
|
|
|
if (id.toB58String() === this._peerId.toB58String()) {
|
|
throw errCode(new Error('Should not try to find self'), errors.codes.ERR_FIND_SELF)
|
|
}
|
|
|
|
const output = await pipe(
|
|
merge(
|
|
...this._routers.map(router => (async function * () {
|
|
try {
|
|
yield await router.findPeer(id, options)
|
|
} catch (err) {
|
|
log.error(err)
|
|
}
|
|
})())
|
|
),
|
|
(source) => filter(source, Boolean),
|
|
(source) => storeAddresses(source, this._peerStore),
|
|
(source) => first(source)
|
|
)
|
|
|
|
if (output) {
|
|
return output
|
|
}
|
|
|
|
throw errCode(new Error(errors.messages.NOT_FOUND), errors.codes.ERR_NOT_FOUND)
|
|
}
|
|
|
|
/**
|
|
* 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
|
|
* @param {AbortSignal} [options.signal] - An AbortSignal to abort the request
|
|
* @returns {AsyncIterable<{ id: PeerId, multiaddrs: Multiaddr[] }>}
|
|
*/
|
|
async * getClosestPeers (key, options = { timeout: 30e3 }) {
|
|
if (!this._routers.length) {
|
|
throw errCode(new Error('No peer routers available'), errors.codes.ERR_NO_ROUTERS_AVAILABLE)
|
|
}
|
|
|
|
if (options.timeout) {
|
|
options.signal = new TimeoutController(options.timeout).signal
|
|
}
|
|
|
|
yield * pipe(
|
|
merge(
|
|
...this._routers.map(router => router.getClosestPeers(key, options))
|
|
),
|
|
(source) => storeAddresses(source, this._peerStore),
|
|
(source) => uniquePeers(source),
|
|
(source) => requirePeers(source)
|
|
)
|
|
}
|
|
}
|
|
|
|
module.exports = PeerRouting
|