mirror of
https://github.com/ipfs/kubo.git
synced 2026-03-07 01:08:08 +08:00
- Modified Godeps/Godeps.json by hand - [TEST] Updated welcome docs hash to sharness - [TEST] Updated contact doc - [TEST] disabled breaking test (t0080-repo refs local)
38 lines
765 B
Go
38 lines
765 B
Go
package ipns
|
|
|
|
import (
|
|
"github.com/ipfs/go-ipfs/core"
|
|
mdag "github.com/ipfs/go-ipfs/merkledag"
|
|
nsys "github.com/ipfs/go-ipfs/namesys"
|
|
ci "github.com/ipfs/go-ipfs/p2p/crypto"
|
|
ft "github.com/ipfs/go-ipfs/unixfs"
|
|
)
|
|
|
|
// InitializeKeyspace sets the ipns record for the given key to
|
|
// point to an empty directory.
|
|
func InitializeKeyspace(n *core.IpfsNode, key ci.PrivKey) error {
|
|
emptyDir := &mdag.Node{Data: ft.FolderPBData()}
|
|
nodek, err := n.DAG.Add(emptyDir)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
err = n.Pinning.Pin(emptyDir, false)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
err = n.Pinning.Flush()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
pub := nsys.NewRoutingPublisher(n.Routing)
|
|
err = pub.Publish(n.Context(), key, nodek)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|