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

import (
	"errors"
	"fmt"

	cmds "github.com/jbenet/go-ipfs/commands"
	core "github.com/jbenet/go-ipfs/core"
	nsys "github.com/jbenet/go-ipfs/namesys"
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
10
	crypto "github.com/jbenet/go-ipfs/p2p/crypto"
11 12 13 14 15 16
	u "github.com/jbenet/go-ipfs/util"
)

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

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

Examples:

Publish a <ref> to your identity name:

  > ipfs name publish QmatmE9msSfkKxoffpHwNLNKgwZG8eT9Bud6YoPab52vpy
  published name QmbCMUZw6JFeZ7Wp9jkzbye3Fzp2GGcPgC3nmeUjfVF87n to QmatmE9msSfkKxoffpHwNLNKgwZG8eT9Bud6YoPab52vpy

Publish a <ref> to another public key:

  > ipfs name publish QmbCMUZw6JFeZ7Wp9jkzbye3Fzp2GGcPgC3nmeUjfVF87n QmatmE9msSfkKxoffpHwNLNKgwZG8eT9Bud6YoPab52vpy
  published name QmbCMUZw6JFeZ7Wp9jkzbye3Fzp2GGcPgC3nmeUjfVF87n to QmatmE9msSfkKxoffpHwNLNKgwZG8eT9Bud6YoPab52vpy
`,
41
	},
42

43
	Arguments: []cmds.Argument{
44 45
		cmds.StringArg("name", false, false, "The IPNS name to publish to. Defaults to your node's peerID"),
		cmds.StringArg("ipfs-path", true, false, "IPFS path of the obejct to be published at <name>"),
46
	},
47
	Run: func(req cmds.Request) (interface{}, error) {
48
		log.Debug("Begin Publish")
49 50 51 52
		n, err := req.Context().GetNode()
		if err != nil {
			return nil, err
		}
53

54 55 56
		args := req.Arguments()

		if n.Network == nil {
57
			return nil, errNotOnline
58 59
		}

60
		if n.Identity == "" {
61
			return nil, errors.New("Identity not loaded!")
62 63 64 65 66 67 68 69
		}

		// name := ""
		ref := ""

		switch len(args) {
		case 2:
			// name = args[0]
70
			ref = args[1]
71
			return nil, errors.New("keychains not yet implemented")
72 73
		case 1:
			// name = n.Identity.ID.String()
74
			ref = args[0]
75 76 77
		}

		// TODO n.Keychain.Get(name).PrivKey
78
		return publish(n, n.PrivateKey, ref)
79
	},
80
	Marshalers: cmds.MarshalerMap{
81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106
		cmds.Text: func(res cmds.Response) ([]byte, error) {
			v := res.Output().(*IpnsEntry)
			s := fmt.Sprintf("Published name %s to %s\n", v.Name, v.Value)
			return []byte(s), nil
		},
	},
	Type: &IpnsEntry{},
}

func publish(n *core.IpfsNode, k crypto.PrivKey, ref string) (*IpnsEntry, error) {
	pub := nsys.NewRoutingPublisher(n.Routing)
	err := pub.Publish(k, ref)
	if err != nil {
		return nil, err
	}

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

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