publish.go 3.54 KB
Newer Older
1 2 3 4 5
package commands

import (
	"errors"
	"fmt"
6 7
	"io"
	"strings"
8

9 10
	context "github.com/ipfs/go-ipfs/Godeps/_workspace/src/golang.org/x/net/context"

11 12 13
	cmds "github.com/ipfs/go-ipfs/commands"
	core "github.com/ipfs/go-ipfs/core"
	crypto "github.com/ipfs/go-ipfs/p2p/crypto"
Etienne Laurin's avatar
Etienne Laurin committed
14
	path "github.com/ipfs/go-ipfs/path"
15
	u "github.com/ipfs/go-ipfs/util"
16 17 18 19 20
)

var errNotOnline = errors.New("This command must be run in online mode. Try running 'ipfs daemon' first.")

var publishCmd = &cmds.Command{
21 22 23 24 25 26 27 28 29
	Helptext: cmds.HelpText{
		Tagline: "Publish an object to IPNS",
		ShortDescription: `
IPNS is a PKI namespace, where names are the hashes of public keys, and
the private key enables publishing new (signed) values. In publish, 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
30 31
the private key enables publishing new (signed) values. In publish, the
default value of <name> is your own identity public key.
32 33 34

Examples:

Etienne Laurin's avatar
Etienne Laurin committed
35
Publish an <ipfs-path> to your identity name:
36

Etienne Laurin's avatar
Etienne Laurin committed
37
  > ipfs name publish /ipfs/QmatmE9msSfkKxoffpHwNLNKgwZG8eT9Bud6YoPab52vpy
38 39
  published name QmbCMUZw6JFeZ7Wp9jkzbye3Fzp2GGcPgC3nmeUjfVF87n to QmatmE9msSfkKxoffpHwNLNKgwZG8eT9Bud6YoPab52vpy

Etienne Laurin's avatar
Etienne Laurin committed
40
Publish an <ipfs-path> to another public key (not implemented):
41 42 43 44

  > ipfs name publish QmbCMUZw6JFeZ7Wp9jkzbye3Fzp2GGcPgC3nmeUjfVF87n QmatmE9msSfkKxoffpHwNLNKgwZG8eT9Bud6YoPab52vpy
  published name QmbCMUZw6JFeZ7Wp9jkzbye3Fzp2GGcPgC3nmeUjfVF87n to QmatmE9msSfkKxoffpHwNLNKgwZG8eT9Bud6YoPab52vpy
`,
45
	},
46

47
	Arguments: []cmds.Argument{
48
		cmds.StringArg("name", false, false, "The IPNS name to publish to. Defaults to your node's peerID"),
49
		cmds.StringArg("ipfs-path", true, false, "IPFS path of the obejct to be published at <name>").EnableStdin(),
50
	},
51
	Run: func(req cmds.Request, res cmds.Response) {
52
		log.Debug("Begin Publish")
53 54
		n, err := req.Context().GetNode()
		if err != nil {
55 56
			res.SetError(err, cmds.ErrNormal)
			return
57
		}
58

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

67 68
		args := req.Arguments()

69
		if n.Identity == "" {
70 71
			res.SetError(errors.New("Identity not loaded!"), cmds.ErrNormal)
			return
72 73
		}

Etienne Laurin's avatar
Etienne Laurin committed
74
		var pstr string
75 76 77 78

		switch len(args) {
		case 2:
			// name = args[0]
Etienne Laurin's avatar
Etienne Laurin committed
79
			pstr = args[1]
80
			res.SetError(errors.New("keychains not yet implemented"), cmds.ErrNormal)
Jeromy's avatar
Jeromy committed
81
			return
82 83
		case 1:
			// name = n.Identity.ID.String()
Etienne Laurin's avatar
Etienne Laurin committed
84 85 86
			pstr = args[0]
		}

87
		p, err := path.ParsePath(pstr)
Etienne Laurin's avatar
Etienne Laurin committed
88
		if err != nil {
89
			res.SetError(fmt.Errorf("failed to validate path: %v", err), cmds.ErrNormal)
Etienne Laurin's avatar
Etienne Laurin committed
90
			return
91 92 93
		}

		// TODO n.Keychain.Get(name).PrivKey
94 95
		// TODO(cryptix): is req.Context().Context a child of n.Context()?
		output, err := publish(req.Context().Context, n, n.PrivateKey, p)
96 97 98 99 100
		if err != nil {
			res.SetError(err, cmds.ErrNormal)
			return
		}
		res.SetOutput(output)
101
	},
102
	Marshalers: cmds.MarshalerMap{
103
		cmds.Text: func(res cmds.Response) (io.Reader, error) {
104 105
			v := res.Output().(*IpnsEntry)
			s := fmt.Sprintf("Published name %s to %s\n", v.Name, v.Value)
106
			return strings.NewReader(s), nil
107 108
		},
	},
109
	Type: IpnsEntry{},
110 111
}

112
func publish(ctx context.Context, n *core.IpfsNode, k crypto.PrivKey, ref path.Path) (*IpnsEntry, error) {
Jeromy's avatar
Jeromy committed
113
	// First, verify the path exists
114
	_, err := core.Resolve(ctx, n, ref)
Jeromy's avatar
Jeromy committed
115 116 117 118
	if err != nil {
		return nil, err
	}

119
	err = n.Namesys.Publish(ctx, k, ref)
120 121 122 123 124 125 126 127 128 129 130
	if err != nil {
		return nil, err
	}

	hash, err := k.GetPublic().Hash()
	if err != nil {
		return nil, err
	}

	return &IpnsEntry{
		Name:  u.Key(hash).String(),
131
		Value: ref.String(),
132 133
	}, nil
}