2018-06-28 10:06:25 +02:00
|
|
|
'use strict'
|
|
|
|
|
2019-08-21 16:44:30 +02:00
|
|
|
const mergeOptions = require('merge-options')
|
2021-04-15 09:40:02 +02:00
|
|
|
// @ts-ignore no types in multiaddr path
|
2020-11-04 13:54:50 +01:00
|
|
|
const { dnsaddrResolver } = require('multiaddr/src/resolvers')
|
|
|
|
|
2019-12-16 16:49:29 +01:00
|
|
|
const Constants = require('./constants')
|
2020-11-20 15:14:01 +01:00
|
|
|
const { AGENT_VERSION } = require('./identify/consts')
|
2020-09-11 19:02:56 +02:00
|
|
|
const RelayConstants = require('./circuit/constants')
|
2018-06-28 10:06:25 +02:00
|
|
|
|
2020-11-20 15:16:40 +01:00
|
|
|
const { publicAddressesFirst } = require('libp2p-utils/src/address-sort')
|
2020-05-25 16:49:04 +02:00
|
|
|
const { FaultTolerance } = require('./transport-manager')
|
|
|
|
|
2021-04-15 09:40:02 +02:00
|
|
|
/**
|
|
|
|
* @typedef {import('multiaddr').Multiaddr} Multiaddr
|
|
|
|
* @typedef {import('.').Libp2pOptions} Libp2pOptions
|
|
|
|
* @typedef {import('.').constructorOptions} constructorOptions
|
|
|
|
*/
|
|
|
|
|
2019-08-21 16:44:30 +02:00
|
|
|
const DefaultConfig = {
|
2020-04-14 14:05:30 +02:00
|
|
|
addresses: {
|
2020-04-18 23:26:46 +02:00
|
|
|
listen: [],
|
|
|
|
announce: [],
|
2021-04-15 09:40:02 +02:00
|
|
|
noAnnounce: [],
|
|
|
|
announceFilter: (/** @type {Multiaddr[]} */ multiaddrs) => multiaddrs
|
2020-04-14 14:05:30 +02:00
|
|
|
},
|
2019-08-21 16:44:30 +02:00
|
|
|
connectionManager: {
|
2020-07-14 16:05:26 +02:00
|
|
|
minConnections: 25
|
2019-08-21 16:44:30 +02:00
|
|
|
},
|
2020-05-25 16:49:04 +02:00
|
|
|
transportManager: {
|
|
|
|
faultTolerance: FaultTolerance.FATAL_ALL
|
|
|
|
},
|
2019-12-16 16:49:29 +01:00
|
|
|
dialer: {
|
|
|
|
maxParallelDials: Constants.MAX_PARALLEL_DIALS,
|
|
|
|
maxDialsPerPeer: Constants.MAX_PER_PEER_DIALS,
|
2020-11-04 13:54:50 +01:00
|
|
|
dialTimeout: Constants.DIAL_TIMEOUT,
|
|
|
|
resolvers: {
|
|
|
|
dnsaddr: dnsaddrResolver
|
2020-11-20 15:16:40 +01:00
|
|
|
},
|
|
|
|
addressSorter: publicAddressesFirst
|
2019-12-16 16:49:29 +01:00
|
|
|
},
|
2020-11-20 15:14:01 +01:00
|
|
|
host: {
|
|
|
|
agentVersion: AGENT_VERSION
|
|
|
|
},
|
2019-12-11 16:05:59 +01:00
|
|
|
metrics: {
|
|
|
|
enabled: false
|
|
|
|
},
|
2020-04-23 14:08:34 +02:00
|
|
|
peerStore: {
|
2020-05-01 15:52:06 +02:00
|
|
|
persistence: false,
|
|
|
|
threshold: 5
|
2020-04-23 14:08:34 +02:00
|
|
|
},
|
2020-11-25 18:50:23 +01:00
|
|
|
peerRouting: {
|
|
|
|
refreshManager: {
|
|
|
|
enabled: true,
|
|
|
|
interval: 6e5,
|
|
|
|
bootDelay: 10e3
|
|
|
|
}
|
|
|
|
},
|
2019-08-21 16:44:30 +02:00
|
|
|
config: {
|
2021-08-13 10:21:50 -04:00
|
|
|
protocolPrefix: 'ipfs',
|
2019-08-21 16:44:30 +02:00
|
|
|
dht: {
|
|
|
|
enabled: false,
|
2021-12-08 08:38:17 +00:00
|
|
|
kBucketSize: 20
|
2019-08-21 16:44:30 +02:00
|
|
|
},
|
2021-01-27 13:55:26 +00:00
|
|
|
nat: {
|
|
|
|
enabled: true,
|
|
|
|
ttl: 7200,
|
|
|
|
keepAlive: true,
|
|
|
|
gateway: null,
|
|
|
|
externalIp: null,
|
|
|
|
pmp: {
|
|
|
|
enabled: false
|
|
|
|
}
|
|
|
|
},
|
2019-08-21 16:44:30 +02:00
|
|
|
peerDiscovery: {
|
|
|
|
autoDial: true
|
|
|
|
},
|
|
|
|
pubsub: {
|
2020-11-13 15:14:21 +01:00
|
|
|
enabled: true
|
2019-08-21 16:44:30 +02:00
|
|
|
},
|
|
|
|
relay: {
|
|
|
|
enabled: true,
|
2020-09-11 19:02:56 +02:00
|
|
|
advertise: {
|
|
|
|
bootDelay: RelayConstants.ADVERTISE_BOOT_DELAY,
|
2020-10-05 16:49:43 +02:00
|
|
|
enabled: false,
|
2020-09-11 19:02:56 +02:00
|
|
|
ttl: RelayConstants.ADVERTISE_TTL
|
|
|
|
},
|
2019-08-21 16:44:30 +02:00
|
|
|
hop: {
|
|
|
|
enabled: false,
|
|
|
|
active: false
|
2020-09-16 16:43:09 +02:00
|
|
|
},
|
|
|
|
autoRelay: {
|
|
|
|
enabled: false,
|
|
|
|
maxListeners: 2
|
2019-08-21 16:44:30 +02:00
|
|
|
}
|
2019-12-20 08:32:46 -08:00
|
|
|
},
|
|
|
|
transport: {}
|
2019-08-21 16:44:30 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-15 09:40:02 +02:00
|
|
|
/**
|
|
|
|
* @param {Libp2pOptions} opts
|
|
|
|
* @returns {DefaultConfig & Libp2pOptions & constructorOptions}
|
|
|
|
*/
|
2019-02-21 16:07:35 +00:00
|
|
|
module.exports.validate = (opts) => {
|
2021-04-15 09:40:02 +02:00
|
|
|
/** @type {DefaultConfig & Libp2pOptions & constructorOptions} */
|
|
|
|
const resultingOptions = mergeOptions(DefaultConfig, opts)
|
2018-06-28 10:06:25 +02:00
|
|
|
|
2021-04-15 09:40:02 +02:00
|
|
|
if (resultingOptions.modules.transport.length < 1) throw new Error("'options.modules.transport' must contain at least 1 transport")
|
2018-06-28 10:06:25 +02:00
|
|
|
|
2021-04-15 09:40:02 +02:00
|
|
|
return resultingOptions
|
2018-06-28 10:06:25 +02:00
|
|
|
}
|