mirror of
https://github.com/ipfs/kubo.git
synced 2025-09-13 08:53:15 +08:00
39 lines
730 B
Go
39 lines
730 B
Go
package commands
|
|
|
|
import (
|
|
"errors"
|
|
"fmt"
|
|
"io"
|
|
|
|
"github.com/jbenet/go-ipfs/core"
|
|
u "github.com/jbenet/go-ipfs/util"
|
|
"github.com/op/go-logging"
|
|
|
|
nsys "github.com/jbenet/go-ipfs/namesys"
|
|
)
|
|
|
|
var log = logging.MustGetLogger("commands")
|
|
|
|
func Publish(n *core.IpfsNode, args []string, opts map[string]interface{}, out io.Writer) error {
|
|
log.Debug("Begin Publish")
|
|
if n.Identity == nil {
|
|
return errors.New("Identity not loaded!")
|
|
}
|
|
|
|
k := n.Identity.PrivKey
|
|
|
|
pub := nsys.NewPublisher(n.DAG, n.Routing)
|
|
err := pub.Publish(k, args[0])
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
hash, err := k.GetPublic().Hash()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
fmt.Fprintf(out, "Published %s to %s\n", args[0], u.Key(hash).Pretty())
|
|
|
|
return nil
|
|
}
|