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

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

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

12 13 14 15
type ResolvedKey struct {
	Key u.Key
}

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


Examples:

Resolve the value of your identity:

  > ipfs name resolve
  QmatmE9msSfkKxoffpHwNLNKgwZG8eT9Bud6YoPab52vpy

Resolve te value of another name:

  > ipfs name resolve QmbCMUZw6JFeZ7Wp9jkzbye3Fzp2GGcPgC3nmeUjfVF87n
  QmatmE9msSfkKxoffpHwNLNKgwZG8eT9Bud6YoPab52vpy

`,
43
	},
44 45

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

50 51
		n, err := req.Context().GetNode()
		if err != nil {
52 53
			res.SetError(err, cmds.ErrNormal)
			return
54 55
		}

56 57 58 59 60 61
		if !n.OnlineMode() {
			err := n.SetupOfflineRouting()
			if err != nil {
				res.SetError(err, cmds.ErrNormal)
				return
			}
62 63
		}

64 65
		var name string

66
		if len(req.Arguments()) == 0 {
67
			if n.Identity == "" {
68 69
				res.SetError(errors.New("Identity not loaded!"), cmds.ErrNormal)
				return
70
			}
71
			name = n.Identity.Pretty()
72

73
		} else {
74
			name = req.Arguments()[0]
75 76
		}

77
		output, err := n.Namesys.Resolve(n.Context(), name)
78
		if err != nil {
79 80
			res.SetError(err, cmds.ErrNormal)
			return
81 82
		}

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

85
		res.SetOutput(&ResolvedKey{output})
86
	},
87
	Marshalers: cmds.MarshalerMap{
88
		cmds.Text: func(res cmds.Response) (io.Reader, error) {
89 90 91 92 93
			output, ok := res.Output().(*ResolvedKey)
			if !ok {
				return nil, u.ErrCast()
			}
			return strings.NewReader(output.Key.B58String()), nil
94
		},
95
	},
96
	Type: ResolvedKey{},
97
}