name.go 3.58 KB
Newer Older
Łukasz Magiera's avatar
Łukasz Magiera committed
1 2 3 4 5 6 7 8 9 10 11
package coreapi

import (
	"context"
	"errors"
	"fmt"
	"strings"
	"time"

	core "github.com/ipfs/go-ipfs/core"
	coreiface "github.com/ipfs/go-ipfs/core/coreapi/interface"
12
	caopts "github.com/ipfs/go-ipfs/core/coreapi/interface/options"
Łukasz Magiera's avatar
Łukasz Magiera committed
13 14
	keystore "github.com/ipfs/go-ipfs/keystore"
	namesys "github.com/ipfs/go-ipfs/namesys"
Dirk McCormick's avatar
Dirk McCormick committed
15
	nsopts "github.com/ipfs/go-ipfs/namesys/opts"
Łukasz Magiera's avatar
Łukasz Magiera committed
16 17
	ipath "github.com/ipfs/go-ipfs/path"

18 19
	peer "gx/ipfs/QmVf8hTAsLLFtn4WPCRNdnaF2Eag2qTBS6uR8AiHPZARXy/go-libp2p-peer"
	offline "gx/ipfs/Qmb1N7zdjG2FexpzWNj8T289u9QnQLEiSsTRadDGQxX32D/go-ipfs-routing/offline"
Steven Allen's avatar
Steven Allen committed
20
	crypto "gx/ipfs/Qme1knMqwt1hKZbc1BmQFmnm9f36nyQGwXxPGVpVJ9rMK5/go-libp2p-crypto"
Łukasz Magiera's avatar
Łukasz Magiera committed
21 22
)

23
type NameAPI CoreAPI
Łukasz Magiera's avatar
Łukasz Magiera committed
24

25 26 27 28 29
type ipnsEntry struct {
	name  string
	value coreiface.Path
}

30
// Name returns the ipnsEntry name.
31 32 33 34
func (e *ipnsEntry) Name() string {
	return e.name
}

35
// Value returns the ipnsEntry value.
36 37 38 39
func (e *ipnsEntry) Value() coreiface.Path {
	return e.value
}

40
// Publish announces new IPNS name and returns the new IPNS entry.
41
func (api *NameAPI) Publish(ctx context.Context, p coreiface.Path, opts ...caopts.NamePublishOption) (coreiface.IpnsEntry, error) {
42 43 44 45
	options, err := caopts.NamePublishOptions(opts...)
	if err != nil {
		return nil, err
	}
Łukasz Magiera's avatar
Łukasz Magiera committed
46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
	n := api.node

	if !n.OnlineMode() {
		err := n.SetupOfflineRouting()
		if err != nil {
			return nil, err
		}
	}

	if n.Mounts.Ipns != nil && n.Mounts.Ipns.IsActive() {
		return nil, errors.New("cannot manually publish while IPNS is mounted")
	}

	pth, err := ipath.ParsePath(p.String())
	if err != nil {
		return nil, err
	}

64
	k, err := keylookup(n, options.Key)
Łukasz Magiera's avatar
Łukasz Magiera committed
65 66 67 68
	if err != nil {
		return nil, err
	}

69
	eol := time.Now().Add(options.ValidTime)
Łukasz Magiera's avatar
Łukasz Magiera committed
70 71 72 73 74 75 76 77 78 79
	err = n.Namesys.PublishWithEOL(ctx, k, pth, eol)
	if err != nil {
		return nil, err
	}

	pid, err := peer.IDFromPrivateKey(k)
	if err != nil {
		return nil, err
	}

80 81 82
	return &ipnsEntry{
		name:  pid.Pretty(),
		value: p,
Łukasz Magiera's avatar
Łukasz Magiera committed
83 84 85
	}, nil
}

86 87
// Resolve attempts to resolve the newest version of the specified name and
// returns its path.
88 89 90 91 92 93
func (api *NameAPI) Resolve(ctx context.Context, name string, opts ...caopts.NameResolveOption) (coreiface.Path, error) {
	options, err := caopts.NameResolveOptions(opts...)
	if err != nil {
		return nil, err
	}

Łukasz Magiera's avatar
Łukasz Magiera committed
94 95 96 97 98 99 100 101 102 103 104
	n := api.node

	if !n.OnlineMode() {
		err := n.SetupOfflineRouting()
		if err != nil {
			return nil, err
		}
	}

	var resolver namesys.Resolver = n.Namesys

105
	if options.Local && !options.Cache {
Łukasz Magiera's avatar
Łukasz Magiera committed
106 107 108
		return nil, errors.New("cannot specify both local and nocache")
	}

109
	if options.Local {
Łukasz Magiera's avatar
Łukasz Magiera committed
110
		offroute := offline.NewOfflineRouter(n.Repo.Datastore(), n.PrivateKey)
Steven Allen's avatar
Steven Allen committed
111
		resolver = namesys.NewIpnsResolver(offroute)
Łukasz Magiera's avatar
Łukasz Magiera committed
112 113
	}

114
	if !options.Cache {
Łukasz Magiera's avatar
Łukasz Magiera committed
115 116 117 118 119 120 121
		resolver = namesys.NewNameSystem(n.Routing, n.Repo.Datastore(), 0)
	}

	if !strings.HasPrefix(name, "/ipns/") {
		name = "/ipns/" + name
	}

Dirk McCormick's avatar
Dirk McCormick committed
122
	var ropts []nsopts.ResolveOpt
Dirk McCormick's avatar
Dirk McCormick committed
123 124 125 126 127
	if !options.Recursive {
		ropts = append(ropts, nsopts.Depth(1))
	}

	output, err := resolver.Resolve(ctx, name, ropts...)
Łukasz Magiera's avatar
Łukasz Magiera committed
128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169
	if err != nil {
		return nil, err
	}

	return &path{path: output}, nil
}

func keylookup(n *core.IpfsNode, k string) (crypto.PrivKey, error) {
	res, err := n.GetKey(k)
	if res != nil {
		return res, nil
	}

	if err != nil && err != keystore.ErrNoSuchKey {
		return nil, err
	}

	keys, err := n.Repo.Keystore().List()
	if err != nil {
		return nil, err
	}

	for _, key := range keys {
		privKey, err := n.Repo.Keystore().Get(key)
		if err != nil {
			return nil, err
		}

		pubKey := privKey.GetPublic()

		pid, err := peer.IDFromPublicKey(pubKey)
		if err != nil {
			return nil, err
		}

		if pid.Pretty() == k {
			return privKey, nil
		}
	}

	return nil, fmt.Errorf("no key by the given name or PeerID was found")
}