mirror of
https://github.com/ipfs/kubo.git
synced 2026-02-21 10:27:46 +08:00
New multi-router configuration system based on https://hackmd.io/G1KRDEX5T3qyfoBMkIrBew#Methods - Added a new routing type: "custom" - Added specific struct types for different Routers (instead of map[string]interface{}) - Added `Duration` config type, to make easier time string parsing - Added config documentation. - Use the latest go-delegated-routing library version with GET support. - Added changelog notes for this feature. It: - closes #9157 - closes #9079 - closes #9186
98 lines
2.5 KiB
Go
98 lines
2.5 KiB
Go
package libp2p
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/ipfs/go-datastore"
|
|
"github.com/ipfs/kubo/config"
|
|
irouting "github.com/ipfs/kubo/routing"
|
|
dht "github.com/libp2p/go-libp2p-kad-dht"
|
|
dual "github.com/libp2p/go-libp2p-kad-dht/dual"
|
|
record "github.com/libp2p/go-libp2p-record"
|
|
routinghelpers "github.com/libp2p/go-libp2p-routing-helpers"
|
|
host "github.com/libp2p/go-libp2p/core/host"
|
|
"github.com/libp2p/go-libp2p/core/peer"
|
|
routing "github.com/libp2p/go-libp2p/core/routing"
|
|
)
|
|
|
|
type RoutingOption func(
|
|
context.Context,
|
|
host.Host,
|
|
datastore.Batching,
|
|
record.Validator,
|
|
...peer.AddrInfo,
|
|
) (routing.Routing, error)
|
|
|
|
func constructDHTRouting(mode dht.ModeOpt) func(
|
|
ctx context.Context,
|
|
host host.Host,
|
|
dstore datastore.Batching,
|
|
validator record.Validator,
|
|
bootstrapPeers ...peer.AddrInfo,
|
|
) (routing.Routing, error) {
|
|
return func(
|
|
ctx context.Context,
|
|
host host.Host,
|
|
dstore datastore.Batching,
|
|
validator record.Validator,
|
|
bootstrapPeers ...peer.AddrInfo,
|
|
) (routing.Routing, error) {
|
|
return dual.New(
|
|
ctx, host,
|
|
dual.DHTOption(
|
|
dht.Concurrency(10),
|
|
dht.Mode(mode),
|
|
dht.Datastore(dstore),
|
|
dht.Validator(validator)),
|
|
dual.WanDHTOption(dht.BootstrapPeers(bootstrapPeers...)),
|
|
)
|
|
}
|
|
}
|
|
|
|
func ConstructDelegatedRouting(routers config.Routers, methods config.Methods, peerID string, addrs []string, privKey string) func(
|
|
ctx context.Context,
|
|
host host.Host,
|
|
dstore datastore.Batching,
|
|
validator record.Validator,
|
|
bootstrapPeers ...peer.AddrInfo,
|
|
) (routing.Routing, error) {
|
|
return func(
|
|
ctx context.Context,
|
|
host host.Host,
|
|
dstore datastore.Batching,
|
|
validator record.Validator,
|
|
bootstrapPeers ...peer.AddrInfo,
|
|
) (routing.Routing, error) {
|
|
return irouting.Parse(routers, methods,
|
|
&irouting.ExtraDHTParams{
|
|
BootstrapPeers: bootstrapPeers,
|
|
Host: host,
|
|
Validator: validator,
|
|
Datastore: dstore,
|
|
Context: ctx,
|
|
},
|
|
&irouting.ExtraReframeParams{
|
|
PeerID: peerID,
|
|
Addrs: addrs,
|
|
PrivKeyB64: privKey,
|
|
})
|
|
}
|
|
}
|
|
|
|
func constructNilRouting(
|
|
ctx context.Context,
|
|
host host.Host,
|
|
dstore datastore.Batching,
|
|
validator record.Validator,
|
|
bootstrapPeers ...peer.AddrInfo,
|
|
) (routing.Routing, error) {
|
|
return routinghelpers.Null{}, nil
|
|
}
|
|
|
|
var (
|
|
DHTOption RoutingOption = constructDHTRouting(dht.ModeAuto)
|
|
DHTClientOption = constructDHTRouting(dht.ModeClient)
|
|
DHTServerOption = constructDHTRouting(dht.ModeServer)
|
|
NilRouterOption = constructNilRouting
|
|
)
|