resolve.go 1.81 KB
Newer Older
1 2 3 4 5 6 7 8 9
package commands

import (
	"errors"

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

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


Examples:

Resolve the value of your identity:

  > ipfs name resolve
  QmatmE9msSfkKxoffpHwNLNKgwZG8eT9Bud6YoPab52vpy

Resolve te value of another name:

  > ipfs name resolve QmbCMUZw6JFeZ7Wp9jkzbye3Fzp2GGcPgC3nmeUjfVF87n
  QmatmE9msSfkKxoffpHwNLNKgwZG8eT9Bud6YoPab52vpy

`,
36
	},
37 38

	Arguments: []cmds.Argument{
39
		cmds.StringArg("name", false, false, "The IPNS name to resolve. Defaults to your node's peerID."),
40
	},
41
	Run: func(req cmds.Request) (interface{}, error) {
42

43 44 45 46 47
		n, err := req.Context().GetNode()
		if err != nil {
			return nil, err
		}

48
		var name string
49 50

		if n.Network == nil {
51
			return nil, errNotOnline
52 53 54 55
		}

		if len(req.Arguments()) == 0 {
			if n.Identity == nil {
56
				return nil, errors.New("Identity not loaded!")
57
			}
58 59
			name = n.Identity.ID().String()

60
		} else {
61
			name = req.Arguments()[0]
62 63
		}

64
		output, err := n.Namesys.Resolve(name)
65
		if err != nil {
66
			return nil, err
67 68
		}

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

71
		return output, nil
72
	},
73
	Marshalers: cmds.MarshalerMap{
74 75 76 77
		cmds.Text: func(res cmds.Response) ([]byte, error) {
			output := res.Output().(string)
			return []byte(output), nil
		},
78 79
	},
}