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

import (
	"errors"
5 6
	"io"
	"strings"
7 8 9 10 11

	cmds "github.com/jbenet/go-ipfs/commands"
)

var resolveCmd = &cmds.Command{
12 13 14 15 16 17 18 19 20
	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
21 22
the private key enables publishing new (signed) values. In resolve, the
default value of <name> is your own identity public key.
23 24 25 26 27 28 29 30 31 32 33 34 35 36 37


Examples:

Resolve the value of your identity:

  > ipfs name resolve
  QmatmE9msSfkKxoffpHwNLNKgwZG8eT9Bud6YoPab52vpy

Resolve te value of another name:

  > ipfs name resolve QmbCMUZw6JFeZ7Wp9jkzbye3Fzp2GGcPgC3nmeUjfVF87n
  QmatmE9msSfkKxoffpHwNLNKgwZG8eT9Bud6YoPab52vpy

`,
38
	},
39 40

	Arguments: []cmds.Argument{
41
		cmds.StringArg("name", false, false, "The IPNS name to resolve. Defaults to your node's peerID.").EnableStdin(),
42
	},
43
	Run: func(req cmds.Request, res cmds.Response) {
44

45 46
		n, err := req.Context().GetNode()
		if err != nil {
47 48
			res.SetError(err, cmds.ErrNormal)
			return
49 50
		}

51
		var name string
52

Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
53
		if n.PeerHost == nil {
54 55
			res.SetError(errNotOnline, cmds.ErrClient)
			return
56 57 58
		}

		if len(req.Arguments()) == 0 {
59
			if n.Identity == "" {
60 61
				res.SetError(errors.New("Identity not loaded!"), cmds.ErrNormal)
				return
62
			}
63
			name = n.Identity.Pretty()
64

65
		} else {
66
			name = req.Arguments()[0]
67 68
		}

69
		output, err := n.Namesys.Resolve(name)
70
		if err != nil {
71 72
			res.SetError(err, cmds.ErrNormal)
			return
73 74
		}

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

77
		res.SetOutput(output)
78
	},
79
	Marshalers: cmds.MarshalerMap{
80
		cmds.Text: func(res cmds.Response) (io.Reader, error) {
81
			output := res.Output().(string)
82
			return strings.NewReader(output), nil
83
		},
84 85
	},
}