namesys.go 2.47 KB
Newer Older
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
1 2 3
package namesys

import (
4
	"strings"
5
	"time"
6

7 8
	context "github.com/ipfs/go-ipfs/Godeps/_workspace/src/golang.org/x/net/context"
	ci "github.com/ipfs/go-ipfs/p2p/crypto"
9
	path "github.com/ipfs/go-ipfs/path"
10
	routing "github.com/ipfs/go-ipfs/routing"
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
11 12
)

13
// mpns (a multi-protocol NameSystem) implements generic IPFS naming.
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
14
//
15
// Uses several Resolvers:
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
16 17 18 19 20 21
// (a) ipfs routing naming: SFS-like PKI names.
// (b) dns domains: resolves using links in DNS TXT records
// (c) proquints: interprets string as the raw byte data.
//
// It can only publish to: (a) ipfs routing naming.
//
22 23 24
type mpns struct {
	resolvers  map[string]resolver
	publishers map[string]Publisher
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
25 26 27 28
}

// NewNameSystem will construct the IPFS naming system based on Routing
func NewNameSystem(r routing.IpfsRouting) NameSystem {
29 30
	return &mpns{
		resolvers: map[string]resolver{
31
			"dns":      newDNSResolver(),
32 33 34 35 36
			"proquint": new(ProquintResolver),
			"dht":      newRoutingResolver(r),
		},
		publishers: map[string]Publisher{
			"/ipns/": NewRoutingPublisher(r),
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
37 38 39 40
		},
	}
}

41 42 43 44 45 46 47 48 49
// Resolve implements Resolver.
func (ns *mpns) Resolve(ctx context.Context, name string) (path.Path, error) {
	return ns.ResolveN(ctx, name, DefaultDepthLimit)
}

// ResolveN implements Resolver.
func (ns *mpns) ResolveN(ctx context.Context, name string, depth int) (path.Path, error) {
	if strings.HasPrefix(name, "/ipfs/") {
		return path.ParsePath(name)
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
50
	}
51 52 53 54 55 56

	if !strings.HasPrefix(name, "/") {
		return path.ParsePath("/ipfs/" + name)
	}

	return resolve(ctx, ns, name, depth, "/ipns/")
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
57 58
}

59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
// resolveOnce implements resolver.
func (ns *mpns) resolveOnce(ctx context.Context, name string) (path.Path, error) {
	if !strings.HasPrefix(name, "/ipns/") {
		name = "/ipns/" + name
	}
	segments := strings.SplitN(name, "/", 3)
	if len(segments) < 3 || segments[0] != "" {
		log.Warningf("Invalid name syntax for %s", name)
		return "", ErrResolveFailed
	}

	for protocol, resolver := range ns.resolvers {
		log.Debugf("Attempting to resolve %s with %s", name, protocol)
		p, err := resolver.resolveOnce(ctx, segments[2])
		if err == nil {
			return p, err
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
75 76
		}
	}
77 78
	log.Warningf("No resolver found for %s", name)
	return "", ErrResolveFailed
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
79 80 81
}

// Publish implements Publisher
82 83
func (ns *mpns) Publish(ctx context.Context, name ci.PrivKey, value path.Path) error {
	return ns.publishers["/ipns/"].Publish(ctx, name, value)
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
84
}
85 86 87 88

func (ns *mpns) PublishWithEOL(ctx context.Context, name ci.PrivKey, val path.Path, eol time.Time) error {
	return ns.publishers["/ipns/"].PublishWithEOL(ctx, name, val, eol)
}