name.go 3.7 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"
Steven Allen's avatar
Steven Allen committed
16
	ipath "gx/ipfs/QmX7uSbkNz76yNwBhuwYwRbhihLnJqM73VTCjS3UMJud9A/go-path"
Łukasz Magiera's avatar
Łukasz Magiera committed
17

Steven Allen's avatar
Steven Allen committed
18
	crypto "gx/ipfs/QmPvyPwuCgJ7pDmrKDxRtsScJgBaM5h4EpRL2qQJsmXf4n/go-libp2p-crypto"
19
	peer "gx/ipfs/QmQsErDt8Qgw1XrsXf2BpEzDgGWtB1YLsTAARBup5b6B9W/go-libp2p-peer"
Steven Allen's avatar
Steven Allen committed
20
	offline "gx/ipfs/QmSNe4MWVxZWk6UxxW2z2EKofFo4GdFzud1vfn1iVby3mj/go-ipfs-routing/offline"
Ł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 {
110
		offroute := offline.NewOfflineRouter(n.Repo.Datastore(), n.RecordValidator)
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
	}

Łukasz Magiera's avatar
Łukasz Magiera committed
122 123 124 125
	ropts := []nsopts.ResolveOpt{
		nsopts.Depth(uint(options.Depth)),
		nsopts.DhtRecordCount(uint(options.DhtRecordCount)),
		nsopts.DhtTimeout(options.DhtTimeout),
Dirk McCormick's avatar
Dirk McCormick committed
126 127 128
	}

	output, err := resolver.Resolve(ctx, name, ropts...)
Łukasz Magiera's avatar
Łukasz Magiera committed
129 130 131 132
	if err != nil {
		return nil, err
	}

133
	return coreiface.ParsePath(output.String())
Łukasz Magiera's avatar
Łukasz Magiera committed
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 170
}

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