mirror of
https://github.com/ipfs/kubo.git
synced 2026-02-25 04:17:44 +08:00
53 lines
1.9 KiB
Go
53 lines
1.9 KiB
Go
package corerouting
|
|
|
|
import (
|
|
"errors"
|
|
|
|
context "context"
|
|
core "github.com/ipfs/go-ipfs/core"
|
|
repo "github.com/ipfs/go-ipfs/repo"
|
|
supernode "github.com/ipfs/go-ipfs/routing/supernode"
|
|
gcproxy "github.com/ipfs/go-ipfs/routing/supernode/proxy"
|
|
pstore "gx/ipfs/QmPgDWmTmuzvP7QE5zwo1TmjbJme9pmZHNujB2453jkCTr/go-libp2p-peerstore"
|
|
routing "gx/ipfs/QmPjTrrSfE6TzLv6ya6VWhGcCgPrUAdcgrDcQyRDX2VyW1/go-libp2p-routing"
|
|
ds "gx/ipfs/QmVSase1JP7cq9QkPT46oNwdp9pT6kBkG3oqS14y3QcZjG/go-datastore"
|
|
"gx/ipfs/QmW8Rgju5JrSMHP7RDNdiwwXyenRqAbtSaPfdQKQC7ZdH6/go-libp2p-host"
|
|
)
|
|
|
|
// NB: DHT option is included in the core to avoid 1) because it's a sane
|
|
// default and 2) to avoid a circular dependency (it needs to be referenced in
|
|
// the core if it's going to be the default)
|
|
|
|
var errServersMissing = errors.New("supernode routing client requires at least 1 server peer")
|
|
|
|
// SupernodeServer returns a configuration for a routing server that stores
|
|
// routing records to the provided datastore. Only routing records are store in
|
|
// the datastore.
|
|
func SupernodeServer(recordSource ds.Datastore) core.RoutingOption {
|
|
return func(ctx context.Context, ph host.Host, dstore repo.Datastore) (routing.IpfsRouting, error) {
|
|
server, err := supernode.NewServer(recordSource, ph.Peerstore(), ph.ID())
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
proxy := &gcproxy.Loopback{
|
|
Handler: server,
|
|
Local: ph.ID(),
|
|
}
|
|
ph.SetStreamHandler(gcproxy.ProtocolSNR, proxy.HandleStream)
|
|
return supernode.NewClient(proxy, ph, ph.Peerstore(), ph.ID())
|
|
}
|
|
}
|
|
|
|
// TODO doc
|
|
func SupernodeClient(remotes ...pstore.PeerInfo) core.RoutingOption {
|
|
return func(ctx context.Context, ph host.Host, dstore repo.Datastore) (routing.IpfsRouting, error) {
|
|
if len(remotes) < 1 {
|
|
return nil, errServersMissing
|
|
}
|
|
|
|
proxy := gcproxy.Standard(ph, remotes)
|
|
ph.SetStreamHandler(gcproxy.ProtocolSNR, proxy.HandleStream)
|
|
return supernode.NewClient(proxy, ph, ph.Peerstore(), ph.ID())
|
|
}
|
|
}
|