mirror of
https://github.com/ipfs/kubo.git
synced 2026-02-22 02:47:48 +08:00
Commits: namesys: pubsub Publisher and Resolver namesys/pubsub: pacify code climate. namesys/pubsub: timeout for rendezvous namesys/pubsub: filter self in bootstrap connections namesys/pubsub: Publish to the correct topic License: MIT Signed-off-by: vyzo <vyzo@hackzen.org> namesys/pubsub: unit test Commits: namesys/pubsub: test namesys/pubsub_test: pacify code climate namesys/pubsub: update test to use extant mock routing License: MIT Signed-off-by: vyzo <vyzo@hackzen.org> namesys/pubsub: integrate namesys pubsub namesys: integrate pubsub resolvers namesys/pubsub_test: tweak delays - trying to make travis happy. namesys/pubsub: fix duplicate bootstraps - subscription key is topic, not ipnskey. namesys/pubsub: no warning needed on cancellation namesys/pubsub: warning for receive errors - and more informative error messages at that. namesys/pubsub_test: smaller test - make it work with seemingly low fdlimits in travis/macosx. also, more informative test failures. namesys/pubsub: add delay to let pubsub perform handshake namesys/pubsub: update gx imports namesys/pubsub_test: preconnect publisher, reduce delays - preconnects the publisher to the receivers in order to avoid bootstrap flakiness with connectivity problems in travis. reduces sleeps to 1s for flood propagation (3s seems excessive with 5 hosts). namesys/pubsub: drop named return values in resolveOnce - per review comment. namesys/pubsub: check errors namesys/pubsub: store bytes in resolver datastore namesys/pubsub: resolver Cancel - for canceling subscriptions, pre whyrusleeping's request. namesys/pubsub: fix resolution without /ipns prefix - also improve the logging a bit. namesys/pubsub: don't resolve own keys through pubsub namesys/pubsub: signal ErrResolveFailed on resolution failure namesys/pubsub: use sync datastore, resolver lock only for subs namesys/pubsub_test: coverage for Cancel License: MIT Signed-off-by: vyzo <vyzo@hackzen.org> namesys/pubsub: parallelize dht and pubsub publishing Commits: namesys/pubsub: code cosmetics namesys: parallelize publishing with dht and pubsub namesys/pubsub: periodically reprovide topic rendezvous namesys/pubsub: cancelation for rendezvous goroutine namesys/pubsub: log ipns record seqno on publish License: MIT Signed-off-by: vyzo <vyzo@hackzen.org> namesys/pubsub: error checking License: MIT Signed-off-by: vyzo <vyzo@hackzen.org> namesys/pubsub: --enable-namesys-pubsub option and management Commits: package.json: update go-libp2p-blankhost namesys: fix stale package imports update go-testutil namesys/pubsub: reduce bootstrap provide period to 8hr namesys/pubsub: try to extract the key from id first option to enable ipns pubsub: --enable-namesys-pubsub ipfs name pubsub management subcommands corehttp/gateway_test: mockNamesys needs to implement GetResolver pacify code climate License: MIT Signed-off-by: vyzo <vyzo@hackzen.org> namesys/pubsub: pubsub sharness test test/sharness: test for ipns pubsub namesys/pubsub: return boolean indicator on Cancel package.json: remove duplicate entry for go-testutil update gx deps, testutil to 1.1.12 fix jenkins failure: use tabs in t0183-namesys-pubsub t0183: use 4 spaces for tabification License: MIT Signed-off-by: vyzo <vyzo@hackzen.org> namesys/pubsub: update for new command interface License: MIT Signed-off-by: vyzo <vyzo@hackzen.org> namesys/pubsub: fix sharness test for broken MacOS echo echo -n "" should print -n, but hey it's a mac. License: MIT Signed-off-by: vyzo <vyzo@hackzen.org>
123 lines
4.0 KiB
Go
123 lines
4.0 KiB
Go
/*
|
|
Package namesys implements resolvers and publishers for the IPFS
|
|
naming system (IPNS).
|
|
|
|
The core of IPFS is an immutable, content-addressable Merkle graph.
|
|
That works well for many use cases, but doesn't allow you to answer
|
|
questions like "what is Alice's current homepage?". The mutable name
|
|
system allows Alice to publish information like:
|
|
|
|
The current homepage for alice.example.com is
|
|
/ipfs/Qmcqtw8FfrVSBaRmbWwHxt3AuySBhJLcvmFYi3Lbc4xnwj
|
|
|
|
or:
|
|
|
|
The current homepage for node
|
|
QmatmE9msSfkKxoffpHwNLNKgwZG8eT9Bud6YoPab52vpy
|
|
is
|
|
/ipfs/Qmcqtw8FfrVSBaRmbWwHxt3AuySBhJLcvmFYi3Lbc4xnwj
|
|
|
|
The mutable name system also allows users to resolve those references
|
|
to find the immutable IPFS object currently referenced by a given
|
|
mutable name.
|
|
|
|
For command-line bindings to this functionality, see:
|
|
|
|
ipfs name
|
|
ipfs dns
|
|
ipfs resolve
|
|
*/
|
|
package namesys
|
|
|
|
import (
|
|
"errors"
|
|
"time"
|
|
|
|
context "context"
|
|
|
|
path "github.com/ipfs/go-ipfs/path"
|
|
ci "gx/ipfs/QmaPbCnUMBohSGo3KnxEa2bHqyJVVeEEcwtqJAYxerieBo/go-libp2p-crypto"
|
|
)
|
|
|
|
const (
|
|
// DefaultDepthLimit is the default depth limit used by Resolve.
|
|
DefaultDepthLimit = 32
|
|
|
|
// UnlimitedDepth allows infinite recursion in ResolveN. You
|
|
// probably don't want to use this, but it's here if you absolutely
|
|
// trust resolution to eventually complete and can't put an upper
|
|
// limit on how many steps it will take.
|
|
UnlimitedDepth = 0
|
|
)
|
|
|
|
// ErrResolveFailed signals an error when attempting to resolve.
|
|
var ErrResolveFailed = errors.New("Could not resolve name.")
|
|
|
|
// ErrResolveRecursion signals a recursion-depth limit.
|
|
var ErrResolveRecursion = errors.New(
|
|
"Could not resolve name (recursion limit exceeded).")
|
|
|
|
// ErrPublishFailed signals an error when attempting to publish.
|
|
var ErrPublishFailed = errors.New("Could not publish name.")
|
|
|
|
// Namesys represents a cohesive name publishing and resolving system.
|
|
//
|
|
// Publishing a name is the process of establishing a mapping, a key-value
|
|
// pair, according to naming rules and databases.
|
|
//
|
|
// Resolving a name is the process of looking up the value associated with the
|
|
// key (name).
|
|
type NameSystem interface {
|
|
Resolver
|
|
Publisher
|
|
ResolverLookup
|
|
}
|
|
|
|
// Resolver is an object capable of resolving names.
|
|
type Resolver interface {
|
|
|
|
// Resolve performs a recursive lookup, returning the dereferenced
|
|
// path. For example, if ipfs.io has a DNS TXT record pointing to
|
|
// /ipns/QmatmE9msSfkKxoffpHwNLNKgwZG8eT9Bud6YoPab52vpy
|
|
// and there is a DHT IPNS entry for
|
|
// QmatmE9msSfkKxoffpHwNLNKgwZG8eT9Bud6YoPab52vpy
|
|
// -> /ipfs/Qmcqtw8FfrVSBaRmbWwHxt3AuySBhJLcvmFYi3Lbc4xnwj
|
|
// then
|
|
// Resolve(ctx, "/ipns/ipfs.io")
|
|
// will resolve both names, returning
|
|
// /ipfs/Qmcqtw8FfrVSBaRmbWwHxt3AuySBhJLcvmFYi3Lbc4xnwj
|
|
//
|
|
// There is a default depth-limit to avoid infinite recursion. Most
|
|
// users will be fine with this default limit, but if you need to
|
|
// adjust the limit you can use ResolveN.
|
|
Resolve(ctx context.Context, name string) (value path.Path, err error)
|
|
|
|
// ResolveN performs a recursive lookup, returning the dereferenced
|
|
// path. The only difference from Resolve is that the depth limit
|
|
// is configurable. You can use DefaultDepthLimit, UnlimitedDepth,
|
|
// or a depth limit of your own choosing.
|
|
//
|
|
// Most users should use Resolve, since the default limit works well
|
|
// in most real-world situations.
|
|
ResolveN(ctx context.Context, name string, depth int) (value path.Path, err error)
|
|
}
|
|
|
|
// Publisher is an object capable of publishing particular names.
|
|
type Publisher interface {
|
|
|
|
// Publish establishes a name-value mapping.
|
|
// TODO make this not PrivKey specific.
|
|
Publish(ctx context.Context, name ci.PrivKey, value path.Path) error
|
|
|
|
// TODO: to be replaced by a more generic 'PublishWithValidity' type
|
|
// call once the records spec is implemented
|
|
PublishWithEOL(ctx context.Context, name ci.PrivKey, value path.Path, eol time.Time) error
|
|
}
|
|
|
|
// ResolverLookup is an object capable of finding resolvers for a subsystem
|
|
type ResolverLookup interface {
|
|
|
|
// GetResolver retrieves a resolver associated with a subsystem
|
|
GetResolver(subs string) (Resolver, bool)
|
|
}
|