mirror of
https://github.com/ipfs/kubo.git
synced 2025-07-25 11:58:12 +08:00
assets: remove seed logic from init
License: MIT Signed-off-by: Henry <cryptix@riseup.net>
This commit is contained in:
@ -2,11 +2,61 @@
|
|||||||
|
|
||||||
package assets
|
package assets
|
||||||
|
|
||||||
var InitDir = map[string][]byte{
|
import (
|
||||||
"about": MustAsset("init-doc/about"),
|
"bytes"
|
||||||
"readme": MustAsset("init-doc/readme"),
|
"fmt"
|
||||||
"help": MustAsset("init-doc/help"),
|
"path/filepath"
|
||||||
"contact": MustAsset("init-doc/contact"),
|
|
||||||
"security-notes": MustAsset("init-doc/security-notes"),
|
"github.com/ipfs/go-ipfs/blocks/key"
|
||||||
"quick-start": MustAsset("init-doc/quick-start"),
|
"github.com/ipfs/go-ipfs/core"
|
||||||
|
"github.com/ipfs/go-ipfs/core/coreunix"
|
||||||
|
uio "github.com/ipfs/go-ipfs/unixfs/io"
|
||||||
|
)
|
||||||
|
|
||||||
|
// initDocPaths lists the paths for the docs we want to seed during --init
|
||||||
|
var initDocPaths = []string{
|
||||||
|
"init-doc/about",
|
||||||
|
"init-doc/readme",
|
||||||
|
"init-doc/help",
|
||||||
|
"init-doc/contact",
|
||||||
|
"init-doc/security-notes",
|
||||||
|
"init-doc/quick-start",
|
||||||
|
}
|
||||||
|
|
||||||
|
func SeedInitDocs(nd *core.IpfsNode) (*key.Key, error) {
|
||||||
|
dirb := uio.NewDirectory(nd.DAG)
|
||||||
|
|
||||||
|
for _, p := range initDocPaths {
|
||||||
|
d, err := Asset(p)
|
||||||
|
if err != nil {
|
||||||
|
return nil, fmt.Errorf("assets.AddDocuDir: could load Asset '%s': %s", p, err)
|
||||||
|
}
|
||||||
|
|
||||||
|
s, err := coreunix.Add(nd, bytes.NewBuffer(d))
|
||||||
|
if err != nil {
|
||||||
|
return nil, fmt.Errorf("assets.AddDocuDir: could not Add '%s': %s", p, err)
|
||||||
|
}
|
||||||
|
|
||||||
|
fname := filepath.Base(p)
|
||||||
|
k := key.B58KeyDecode(s)
|
||||||
|
if err := dirb.AddChild(fname, k); err != nil {
|
||||||
|
return nil, fmt.Errorf("assets.AddDocuDir: could not add '%s' as a child: %s", fname, err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
dir := dirb.GetNode()
|
||||||
|
dkey, err := nd.DAG.Add(dir)
|
||||||
|
if err != nil {
|
||||||
|
return nil, fmt.Errorf("assets.AddDocuDir: DAG.Add(dir) failed: %s", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
if err := nd.Pinning.Pin(nd.Context(), dir, true); err != nil {
|
||||||
|
return nil, fmt.Errorf("assets.AddDocuDir: Pinning on init-docu failed: %s", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
if err := nd.Pinning.Flush(); err != nil {
|
||||||
|
return nil, fmt.Errorf("assets.AddDocuDir: Pinnig flush failed: %s", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
return &dkey, nil
|
||||||
}
|
}
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
package main
|
package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"bytes"
|
|
||||||
"errors"
|
"errors"
|
||||||
"fmt"
|
"fmt"
|
||||||
"io"
|
"io"
|
||||||
@ -10,14 +9,11 @@ import (
|
|||||||
|
|
||||||
context "github.com/ipfs/go-ipfs/Godeps/_workspace/src/golang.org/x/net/context"
|
context "github.com/ipfs/go-ipfs/Godeps/_workspace/src/golang.org/x/net/context"
|
||||||
assets "github.com/ipfs/go-ipfs/assets"
|
assets "github.com/ipfs/go-ipfs/assets"
|
||||||
key "github.com/ipfs/go-ipfs/blocks/key"
|
|
||||||
cmds "github.com/ipfs/go-ipfs/commands"
|
cmds "github.com/ipfs/go-ipfs/commands"
|
||||||
core "github.com/ipfs/go-ipfs/core"
|
core "github.com/ipfs/go-ipfs/core"
|
||||||
coreunix "github.com/ipfs/go-ipfs/core/coreunix"
|
|
||||||
namesys "github.com/ipfs/go-ipfs/namesys"
|
namesys "github.com/ipfs/go-ipfs/namesys"
|
||||||
config "github.com/ipfs/go-ipfs/repo/config"
|
config "github.com/ipfs/go-ipfs/repo/config"
|
||||||
fsrepo "github.com/ipfs/go-ipfs/repo/fsrepo"
|
fsrepo "github.com/ipfs/go-ipfs/repo/fsrepo"
|
||||||
uio "github.com/ipfs/go-ipfs/unixfs/io"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
const nBitsForKeypairDefault = 2048
|
const nBitsForKeypairDefault = 2048
|
||||||
@ -167,34 +163,9 @@ func addDefaultAssets(out io.Writer, repoRoot string) error {
|
|||||||
}
|
}
|
||||||
defer nd.Close()
|
defer nd.Close()
|
||||||
|
|
||||||
dirb := uio.NewDirectory(nd.DAG)
|
dkey, err := assets.SeedInitDocs(nd)
|
||||||
|
|
||||||
// add every file in the assets pkg
|
|
||||||
for fname, file := range assets.InitDir {
|
|
||||||
buf := bytes.NewBuffer(file)
|
|
||||||
s, err := coreunix.Add(nd, buf)
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
|
|
||||||
k := key.B58KeyDecode(s)
|
|
||||||
if err := dirb.AddChild(fname, k); err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
dir := dirb.GetNode()
|
|
||||||
dkey, err := nd.DAG.Add(dir)
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return fmt.Errorf("init: seeding init docs failed: %s", err)
|
||||||
}
|
|
||||||
|
|
||||||
if err := nd.Pinning.Pin(ctx, dir, true); err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
|
|
||||||
if err := nd.Pinning.Flush(); err != nil {
|
|
||||||
return err
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if _, err = fmt.Fprintf(out, "to get started, enter:\n"); err != nil {
|
if _, err = fmt.Fprintf(out, "to get started, enter:\n"); err != nil {
|
||||||
|
Reference in New Issue
Block a user