publish.go 3.54 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
	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"
Etienne Laurin's avatar
Etienne Laurin committed
15
	path "github.com/ipfs/go-ipfs/path"
16
	u "github.com/ipfs/go-ipfs/util"
17 18 19 20 21
)

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

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

Examples:

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

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

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

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

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

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

68 69
		args := req.Arguments()

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

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

		switch len(args) {
		case 2:
			// name = args[0]
Etienne Laurin's avatar
Etienne Laurin committed
80
			pstr = args[1]
81
			res.SetError(errors.New("keychains not yet implemented"), cmds.ErrNormal)
82 83
		case 1:
			// name = n.Identity.ID.String()
Etienne Laurin's avatar
Etienne Laurin committed
84 85 86 87 88 89 90 91 92 93 94 95 96
			pstr = args[0]
		}

		node, err := n.Resolver.ResolvePath(path.FromString(pstr))
		if err != nil {
			res.SetError(fmt.Errorf("failed to resolve path: %v", err), cmds.ErrNormal)
			return
		}

		key, err := node.Key()
		if err != nil {
			res.SetError(err, cmds.ErrNormal)
			return
97 98 99
		}

		// TODO n.Keychain.Get(name).PrivKey
Etienne Laurin's avatar
Etienne Laurin committed
100
		output, err := publish(n, n.PrivateKey, key.Pretty())
101 102 103 104 105
		if err != nil {
			res.SetError(err, cmds.ErrNormal)
			return
		}
		res.SetOutput(output)
106
	},
107
	Marshalers: cmds.MarshalerMap{
108
		cmds.Text: func(res cmds.Response) (io.Reader, error) {
109 110
			v := res.Output().(*IpnsEntry)
			s := fmt.Sprintf("Published name %s to %s\n", v.Name, v.Value)
111
			return strings.NewReader(s), nil
112 113
		},
	},
114
	Type: IpnsEntry{},
115 116 117 118
}

func publish(n *core.IpfsNode, k crypto.PrivKey, ref string) (*IpnsEntry, error) {
	pub := nsys.NewRoutingPublisher(n.Routing)
119 120
	val := b58.Decode(ref)
	err := pub.Publish(n.Context(), k, u.Key(val))
121 122 123 124 125 126 127 128 129 130 131 132 133 134
	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
}