2018-06-28 10:06:25 +02:00
|
|
|
'use strict'
|
|
|
|
|
2019-02-21 16:07:35 +00:00
|
|
|
const { struct, superstruct } = require('superstruct')
|
|
|
|
const { optional, list } = struct
|
2018-06-28 10:06:25 +02:00
|
|
|
|
2019-02-21 16:07:35 +00:00
|
|
|
// Define custom types
|
2019-02-25 12:19:37 +01:00
|
|
|
const s = superstruct()
|
|
|
|
const transport = s.union([
|
|
|
|
s.interface({
|
|
|
|
createListener: 'function',
|
|
|
|
dial: 'function'
|
|
|
|
}),
|
|
|
|
'function'
|
|
|
|
])
|
2018-06-28 10:06:25 +02:00
|
|
|
|
2019-02-21 16:07:35 +00:00
|
|
|
const optionsSchema = s(
|
|
|
|
{
|
|
|
|
connectionManager: 'object?',
|
|
|
|
datastore: 'object?',
|
|
|
|
peerInfo: 'object',
|
|
|
|
peerBook: 'object?',
|
|
|
|
modules: s({
|
|
|
|
connEncryption: optional(list([s('object|function')])),
|
|
|
|
// this is hacky to simulate optional because interface doesnt work correctly with it
|
|
|
|
// change to optional when fixed upstream
|
|
|
|
connProtector: s.union(['undefined', s.interface({ protect: 'function' })]),
|
|
|
|
contentRouting: optional(list(['object'])),
|
|
|
|
dht: optional(s('null|function|object')),
|
|
|
|
peerDiscovery: optional(list([s('object|function')])),
|
|
|
|
peerRouting: optional(list(['object'])),
|
|
|
|
streamMuxer: optional(list([s('object|function')])),
|
2019-03-20 09:12:02 +01:00
|
|
|
transport: s.intersection([[transport], s.interface({
|
|
|
|
length (v) {
|
|
|
|
return v > 0 ? true : 'ERROR_EMPTY'
|
|
|
|
}
|
|
|
|
})])
|
2019-02-21 16:07:35 +00:00
|
|
|
}),
|
|
|
|
config: s({
|
|
|
|
peerDiscovery: 'object?',
|
|
|
|
relay: s({
|
|
|
|
enabled: 'boolean',
|
|
|
|
hop: optional(s({
|
|
|
|
enabled: 'boolean',
|
|
|
|
active: 'boolean'
|
|
|
|
},
|
|
|
|
{ enabled: false, active: false }))
|
|
|
|
}, { enabled: true, hop: {} }),
|
|
|
|
dht: s({
|
|
|
|
kBucketSize: 'number',
|
|
|
|
enabled: 'boolean?',
|
|
|
|
randomWalk: optional(s({
|
2019-03-06 10:21:43 +00:00
|
|
|
enabled: 'boolean?', // disabled waiting for https://github.com/libp2p/js-libp2p-kad-dht/issues/86
|
2019-02-21 16:07:35 +00:00
|
|
|
queriesPerPeriod: 'number?',
|
|
|
|
interval: 'number?',
|
|
|
|
timeout: 'number?'
|
2019-03-06 10:21:43 +00:00
|
|
|
}, { enabled: false, queriesPerPeriod: 1, interval: 30000, timeout: 10000 })),
|
2019-02-21 16:07:35 +00:00
|
|
|
validators: 'object?',
|
|
|
|
selectors: 'object?'
|
2019-03-20 09:12:02 +01:00
|
|
|
}, { enabled: false, kBucketSize: 20, enabledDiscovery: false }),
|
2019-02-21 16:07:35 +00:00
|
|
|
EXPERIMENTAL: s({
|
|
|
|
pubsub: 'boolean'
|
|
|
|
}, { pubsub: false })
|
|
|
|
}, { relay: {}, dht: {}, EXPERIMENTAL: {} })
|
|
|
|
},
|
|
|
|
{ config: {}, modules: {} }
|
|
|
|
)
|
|
|
|
|
|
|
|
module.exports.validate = (opts) => {
|
|
|
|
const [error, options] = optionsSchema.validate(opts)
|
2018-06-28 10:06:25 +02:00
|
|
|
|
2019-02-21 16:07:35 +00:00
|
|
|
// Improve errors throwed, reduce stack by throwing here and add reason to the message
|
|
|
|
if (error) {
|
|
|
|
throw new Error(`${error.message}${error.reason ? ' - ' + error.reason : ''}`)
|
|
|
|
} else {
|
|
|
|
// Throw when dht is enabled but no dht module provided
|
|
|
|
if (options.config.dht.enabled) {
|
|
|
|
s('function|object')(options.modules.dht)
|
|
|
|
}
|
2018-06-28 10:06:25 +02:00
|
|
|
}
|
|
|
|
|
2018-06-28 16:06:42 +01:00
|
|
|
return options
|
2018-06-28 10:06:25 +02:00
|
|
|
}
|