name.go 3.69 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
	offline "gx/ipfs/QmZRcGYvxdauCd7hHnMYLYqcZRaDjv24c7eUNyJojAcdBb/go-ipfs-routing/offline"
Steven Allen's avatar
Steven Allen committed
19
	peer "gx/ipfs/QmZoWKhxUmZ2seW4BzX6fJkNR8hh9PsGModr7q171yq2SS/go-libp2p-peer"
Łukasz Magiera's avatar
Łukasz Magiera committed
20 21 22
	crypto "gx/ipfs/QmaPbCnUMBohSGo3KnxEa2bHqyJVVeEEcwtqJAYxerieBo/go-libp2p-crypto"
)

23 24 25 26
type NameAPI struct {
	*CoreAPI
	*caopts.NameOptions
}
Łukasz Magiera's avatar
Łukasz Magiera committed
27

28 29 30 31 32
type ipnsEntry struct {
	name  string
	value coreiface.Path
}

33
// Name returns the ipnsEntry name.
34 35 36 37
func (e *ipnsEntry) Name() string {
	return e.name
}

38
// Value returns the ipnsEntry value.
39 40 41 42
func (e *ipnsEntry) Value() coreiface.Path {
	return e.value
}

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

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

72
	eol := time.Now().Add(options.ValidTime)
Łukasz Magiera's avatar
Łukasz Magiera committed
73 74 75 76 77 78 79 80 81 82
	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
	}

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

89 90
// Resolve attempts to resolve the newest version of the specified name and
// returns its path.
91 92 93 94 95 96
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
97 98 99 100 101 102 103 104 105 106 107
	n := api.node

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

	var resolver namesys.Resolver = n.Namesys

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

112
	if options.Local {
Łukasz Magiera's avatar
Łukasz Magiera committed
113 114 115 116
		offroute := offline.NewOfflineRouter(n.Repo.Datastore(), n.PrivateKey)
		resolver = namesys.NewRoutingResolver(offroute, 0)
	}

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

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

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

	output, err := resolver.Resolve(ctx, name, ropts...)
Łukasz Magiera's avatar
Łukasz Magiera committed
131 132 133 134 135 136 137 138
	if err != nil {
		return nil, err
	}

	return &path{path: output}, nil
}

func (api *NameAPI) core() coreiface.CoreAPI {
139
	return api.CoreAPI
Łukasz Magiera's avatar
Łukasz Magiera committed
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 170 171 172 173 174 175 176
}

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")
}