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

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

9
	b58 "github.com/ipfs/go-ipfs/Godeps/_workspace/src/github.com/jbenet/go-base58"
10

11 12 13 14 15
	cmds "github.com/ipfs/go-ipfs/commands"
	core "github.com/ipfs/go-ipfs/core"
	nsys "github.com/ipfs/go-ipfs/namesys"
	crypto "github.com/ipfs/go-ipfs/p2p/crypto"
	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 35 36 37 38 39 40 41 42 43 44

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
`,
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 74 75 76 77 78 79
		}

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

		switch len(args) {
		case 2:
			// name = args[0]
80
			ref = args[1]
81
			res.SetError(errors.New("keychains not yet implemented"), cmds.ErrNormal)
82 83
		case 1:
			// name = n.Identity.ID.String()
84
			ref = args[0]
85 86 87
		}

		// TODO n.Keychain.Get(name).PrivKey
88 89 90 91 92 93
		output, err := publish(n, n.PrivateKey, ref)
		if err != nil {
			res.SetError(err, cmds.ErrNormal)
			return
		}
		res.SetOutput(output)
94
	},
95
	Marshalers: cmds.MarshalerMap{
96
		cmds.Text: func(res cmds.Response) (io.Reader, error) {
97 98
			v := res.Output().(*IpnsEntry)
			s := fmt.Sprintf("Published name %s to %s\n", v.Name, v.Value)
99
			return strings.NewReader(s), nil
100 101
		},
	},
102
	Type: IpnsEntry{},
103 104 105 106
}

func publish(n *core.IpfsNode, k crypto.PrivKey, ref string) (*IpnsEntry, error) {
	pub := nsys.NewRoutingPublisher(n.Routing)
107 108
	val := b58.Decode(ref)
	err := pub.Publish(n.Context(), k, u.Key(val))
109 110 111 112 113 114 115 116 117 118 119 120 121 122
	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
}