resolve.go 2.53 KB
Newer Older
1 2 3 4
package commands

import (
	"errors"
5 6
	"io"
	"strings"
7

8
	cmds "github.com/ipfs/go-ipfs/commands"
9
	namesys "github.com/ipfs/go-ipfs/namesys"
10
	path "github.com/ipfs/go-ipfs/path"
11
	u "github.com/ipfs/go-ipfs/util"
12 13
)

14 15
type ResolvedPath struct {
	Path path.Path
16 17
}

18
var resolveCmd = &cmds.Command{
19 20 21 22 23 24 25 26 27
	Helptext: cmds.HelpText{
		Tagline: "Gets the value currently published at an IPNS name",
		ShortDescription: `
IPNS is a PKI namespace, where names are the hashes of public keys, and
the private key enables publishing new (signed) values. In resolve, the
default value of <name> is your own identity public key.
`,
		LongDescription: `
IPNS is a PKI namespace, where names are the hashes of public keys, and
28 29
the private key enables publishing new (signed) values. In resolve, the
default value of <name> is your own identity public key.
30 31 32 33 34 35 36 37 38 39 40 41 42 43 44


Examples:

Resolve the value of your identity:

  > ipfs name resolve
  QmatmE9msSfkKxoffpHwNLNKgwZG8eT9Bud6YoPab52vpy

Resolve te value of another name:

  > ipfs name resolve QmbCMUZw6JFeZ7Wp9jkzbye3Fzp2GGcPgC3nmeUjfVF87n
  QmatmE9msSfkKxoffpHwNLNKgwZG8eT9Bud6YoPab52vpy

`,
45
	},
46 47

	Arguments: []cmds.Argument{
48
		cmds.StringArg("name", false, false, "The IPNS name to resolve. Defaults to your node's peerID.").EnableStdin(),
49
	},
50 51 52
	Options: []cmds.Option{
		cmds.BoolOption("recursive", "r", "Resolve until the result is not an IPNS name"),
	},
53
	Run: func(req cmds.Request, res cmds.Response) {
54

55 56
		n, err := req.Context().GetNode()
		if err != nil {
57 58
			res.SetError(err, cmds.ErrNormal)
			return
59 60
		}

61 62 63 64 65 66
		if !n.OnlineMode() {
			err := n.SetupOfflineRouting()
			if err != nil {
				res.SetError(err, cmds.ErrNormal)
				return
			}
67 68
		}

69 70
		var name string

71
		if len(req.Arguments()) == 0 {
72
			if n.Identity == "" {
73 74
				res.SetError(errors.New("Identity not loaded!"), cmds.ErrNormal)
				return
75
			}
76
			name = n.Identity.Pretty()
77

78
		} else {
79
			name = req.Arguments()[0]
80 81
		}

82 83 84 85 86 87 88
		recursive, _, _ := req.Option("recursive").Bool()
		depth := 1
		if recursive {
			depth = namesys.DefaultDepthLimit
		}

		output, err := n.Namesys.ResolveN(n.Context(), "/ipns/"+name, depth)
89
		if err != nil {
90 91
			res.SetError(err, cmds.ErrNormal)
			return
92 93
		}

Matt Bell's avatar
Matt Bell committed
94 95
		// TODO: better errors (in the case of not finding the name, we get "failed to find any peer in table")

96
		res.SetOutput(&ResolvedPath{output})
97
	},
98
	Marshalers: cmds.MarshalerMap{
99
		cmds.Text: func(res cmds.Response) (io.Reader, error) {
100
			output, ok := res.Output().(*ResolvedPath)
101 102 103
			if !ok {
				return nil, u.ErrCast()
			}
104
			return strings.NewReader(output.Path.String()), nil
105
		},
106
	},
107
	Type: ResolvedPath{},
108
}