mirror of
https://github.com/ipfs/kubo.git
synced 2025-05-21 17:08:13 +08:00

- some fixes for cmds1.0 - reinsert plugin loading code, pretty print wrapper TODO: if plugin loading fails it only calls log.Warning. returning an error would be better but that would have to happen after PreRun, which is not possible atm. License: MIT Signed-off-by: keks <keks@cryptoscope.co>
1122 lines
25 KiB
Go
1122 lines
25 KiB
Go
package commands
|
|
|
|
import (
|
|
"bytes"
|
|
"context"
|
|
"errors"
|
|
"fmt"
|
|
"io"
|
|
"os"
|
|
gopath "path"
|
|
"strings"
|
|
|
|
cmds "github.com/ipfs/go-ipfs/commands"
|
|
core "github.com/ipfs/go-ipfs/core"
|
|
e "github.com/ipfs/go-ipfs/core/commands/e"
|
|
dag "github.com/ipfs/go-ipfs/merkledag"
|
|
mfs "github.com/ipfs/go-ipfs/mfs"
|
|
path "github.com/ipfs/go-ipfs/path"
|
|
ft "github.com/ipfs/go-ipfs/unixfs"
|
|
uio "github.com/ipfs/go-ipfs/unixfs/io"
|
|
|
|
node "gx/ipfs/QmNwUEK7QbwSqyKBu3mMtToo8SUc6wQJ7gdZq4gGGJqfnf/go-ipld-format"
|
|
logging "gx/ipfs/QmSpJByNKFX1sCsHBEp3R73FL4NF6FnQTEGyNAXHm2GS52/go-log"
|
|
cmdkit "gx/ipfs/QmVD1W3MC8Hk1WZgFQPWWmBECJ3X72BgUYf9eCQ4PGzPps/go-ipfs-cmdkit"
|
|
mh "gx/ipfs/QmYeKnKpubCMRiq3PGZcTREErthbb5Q9cXsCoSkD9bjEBd/go-multihash"
|
|
cid "gx/ipfs/QmeSrf6pzut73u6zLQkRFQ3ygt3k6XFT2kjdYP8Tnkwwyg/go-cid"
|
|
)
|
|
|
|
var log = logging.Logger("cmds/files")
|
|
|
|
var FilesCmd = &cmds.Command{
|
|
Helptext: cmdkit.HelpText{
|
|
Tagline: "Interact with unixfs files.",
|
|
ShortDescription: `
|
|
Files is an API for manipulating IPFS objects as if they were a unix
|
|
filesystem.
|
|
|
|
NOTE:
|
|
Most of the subcommands of 'ipfs files' accept the '--flush' flag. It defaults
|
|
to true. Use caution when setting this flag to false. It will improve
|
|
performance for large numbers of file operations, but it does so at the cost
|
|
of consistency guarantees. If the daemon is unexpectedly killed before running
|
|
'ipfs files flush' on the files in question, then data may be lost. This also
|
|
applies to running 'ipfs repo gc' concurrently with '--flush=false'
|
|
operations.
|
|
`,
|
|
},
|
|
Options: []cmdkit.Option{
|
|
cmdkit.BoolOption("f", "flush", "Flush target and ancestors after write.").WithDefault(true),
|
|
},
|
|
Subcommands: map[string]*cmds.Command{
|
|
"read": FilesReadCmd,
|
|
"write": FilesWriteCmd,
|
|
"mv": FilesMvCmd,
|
|
"cp": FilesCpCmd,
|
|
"ls": FilesLsCmd,
|
|
"mkdir": FilesMkdirCmd,
|
|
"stat": FilesStatCmd,
|
|
"rm": FilesRmCmd,
|
|
"flush": FilesFlushCmd,
|
|
"chcid": FilesChcidCmd,
|
|
},
|
|
}
|
|
|
|
var cidVersionOption = cmdkit.IntOption("cid-version", "cid-ver", "Cid version to use. (experimental)")
|
|
var hashOption = cmdkit.StringOption("hash", "Hash function to use. Will set Cid version to 1 if used. (experimental)")
|
|
|
|
var formatError = errors.New("Format was set by multiple options. Only one format option is allowed")
|
|
|
|
const defaultStatFormat = `<hash>
|
|
Size: <size>
|
|
CumulativeSize: <cumulsize>
|
|
ChildBlocks: <childs>
|
|
Type: <type>`
|
|
|
|
var FilesStatCmd = &cmds.Command{
|
|
Helptext: cmdkit.HelpText{
|
|
Tagline: "Display file status.",
|
|
},
|
|
|
|
Arguments: []cmdkit.Argument{
|
|
cmdkit.StringArg("path", true, false, "Path to node to stat."),
|
|
},
|
|
Options: []cmdkit.Option{
|
|
cmdkit.StringOption("format", "Print statistics in given format. Allowed tokens: "+
|
|
"<hash> <size> <cumulsize> <type> <childs>. Conflicts with other format options.").WithDefault(defaultStatFormat),
|
|
cmdkit.BoolOption("hash", "Print only hash. Implies '--format=<hash>'. Conflicts with other format options."),
|
|
cmdkit.BoolOption("size", "Print only size. Implies '--format=<cumulsize>'. Conflicts with other format options."),
|
|
},
|
|
Run: func(req cmds.Request, res cmds.Response) {
|
|
|
|
_, err := statGetFormatOptions(req)
|
|
if err != nil {
|
|
res.SetError(err, cmdkit.ErrClient)
|
|
}
|
|
|
|
node, err := req.InvocContext().GetNode()
|
|
if err != nil {
|
|
res.SetError(err, cmdkit.ErrNormal)
|
|
return
|
|
}
|
|
|
|
path, err := checkPath(req.Arguments()[0])
|
|
if err != nil {
|
|
res.SetError(err, cmdkit.ErrNormal)
|
|
return
|
|
}
|
|
|
|
fsn, err := mfs.Lookup(node.FilesRoot, path)
|
|
if err != nil {
|
|
res.SetError(err, cmdkit.ErrNormal)
|
|
return
|
|
}
|
|
|
|
o, err := statNode(node.DAG, fsn)
|
|
if err != nil {
|
|
res.SetError(err, cmdkit.ErrNormal)
|
|
return
|
|
}
|
|
|
|
res.SetOutput(o)
|
|
},
|
|
Marshalers: cmds.MarshalerMap{
|
|
cmds.Text: func(res cmds.Response) (io.Reader, error) {
|
|
v, err := unwrapOutput(res.Output())
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
out, ok := v.(*Object)
|
|
if !ok {
|
|
return nil, e.TypeErr(out, v)
|
|
}
|
|
buf := new(bytes.Buffer)
|
|
|
|
s, _ := statGetFormatOptions(res.Request())
|
|
s = strings.Replace(s, "<hash>", out.Hash, -1)
|
|
s = strings.Replace(s, "<size>", fmt.Sprintf("%d", out.Size), -1)
|
|
s = strings.Replace(s, "<cumulsize>", fmt.Sprintf("%d", out.CumulativeSize), -1)
|
|
s = strings.Replace(s, "<childs>", fmt.Sprintf("%d", out.Blocks), -1)
|
|
s = strings.Replace(s, "<type>", out.Type, -1)
|
|
|
|
fmt.Fprintln(buf, s)
|
|
return buf, nil
|
|
},
|
|
},
|
|
Type: Object{},
|
|
}
|
|
|
|
func moreThanOne(a, b, c bool) bool {
|
|
return a && b || b && c || a && c
|
|
}
|
|
|
|
func statGetFormatOptions(req cmds.Request) (string, error) {
|
|
|
|
hash, _, _ := req.Option("hash").Bool()
|
|
size, _, _ := req.Option("size").Bool()
|
|
format, _, _ := req.Option("format").String()
|
|
|
|
if moreThanOne(hash, size, format != defaultStatFormat) {
|
|
return "", formatError
|
|
}
|
|
|
|
if hash {
|
|
return "<hash>", nil
|
|
} else if size {
|
|
return "<cumulsize>", nil
|
|
} else {
|
|
return format, nil
|
|
}
|
|
}
|
|
|
|
func statNode(ds dag.DAGService, fsn mfs.FSNode) (*Object, error) {
|
|
nd, err := fsn.GetNode()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
c := nd.Cid()
|
|
|
|
cumulsize, err := nd.Size()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
switch n := nd.(type) {
|
|
case *dag.ProtoNode:
|
|
d, err := ft.FromBytes(n.Data())
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
var ndtype string
|
|
switch fsn.Type() {
|
|
case mfs.TDir:
|
|
ndtype = "directory"
|
|
case mfs.TFile:
|
|
ndtype = "file"
|
|
default:
|
|
return nil, fmt.Errorf("unrecognized node type: %s", fsn.Type())
|
|
}
|
|
|
|
return &Object{
|
|
Hash: c.String(),
|
|
Blocks: len(nd.Links()),
|
|
Size: d.GetFilesize(),
|
|
CumulativeSize: cumulsize,
|
|
Type: ndtype,
|
|
}, nil
|
|
case *dag.RawNode:
|
|
return &Object{
|
|
Hash: c.String(),
|
|
Blocks: 0,
|
|
Size: cumulsize,
|
|
CumulativeSize: cumulsize,
|
|
Type: "file",
|
|
}, nil
|
|
default:
|
|
return nil, fmt.Errorf("not unixfs node (proto or raw)")
|
|
}
|
|
}
|
|
|
|
var FilesCpCmd = &cmds.Command{
|
|
Helptext: cmdkit.HelpText{
|
|
Tagline: "Copy files into mfs.",
|
|
},
|
|
Arguments: []cmdkit.Argument{
|
|
cmdkit.StringArg("source", true, false, "Source object to copy."),
|
|
cmdkit.StringArg("dest", true, false, "Destination to copy object to."),
|
|
},
|
|
Run: func(req cmds.Request, res cmds.Response) {
|
|
node, err := req.InvocContext().GetNode()
|
|
if err != nil {
|
|
res.SetError(err, cmdkit.ErrNormal)
|
|
return
|
|
}
|
|
|
|
flush, _, _ := req.Option("flush").Bool()
|
|
fmt.Println("flush:", flush)
|
|
|
|
src, err := checkPath(req.Arguments()[0])
|
|
if err != nil {
|
|
res.SetError(err, cmdkit.ErrNormal)
|
|
return
|
|
}
|
|
src = strings.TrimRight(src, "/")
|
|
|
|
dst, err := checkPath(req.Arguments()[1])
|
|
if err != nil {
|
|
res.SetError(err, cmdkit.ErrNormal)
|
|
return
|
|
}
|
|
|
|
if dst[len(dst)-1] == '/' {
|
|
dst += gopath.Base(src)
|
|
}
|
|
|
|
nd, err := getNodeFromPath(req.Context(), node, src)
|
|
if err != nil {
|
|
res.SetError(err, cmdkit.ErrNormal)
|
|
return
|
|
}
|
|
|
|
err = mfs.PutNode(node.FilesRoot, dst, nd)
|
|
if err != nil {
|
|
res.SetError(err, cmdkit.ErrNormal)
|
|
return
|
|
}
|
|
|
|
if flush {
|
|
err := mfs.FlushPath(node.FilesRoot, dst)
|
|
if err != nil {
|
|
res.SetError(err, cmdkit.ErrNormal)
|
|
return
|
|
}
|
|
}
|
|
|
|
res.SetOutput(nil)
|
|
},
|
|
}
|
|
|
|
func getNodeFromPath(ctx context.Context, node *core.IpfsNode, p string) (node.Node, error) {
|
|
switch {
|
|
case strings.HasPrefix(p, "/ipfs/"):
|
|
np, err := path.ParsePath(p)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
resolver := &path.Resolver{
|
|
DAG: node.DAG,
|
|
ResolveOnce: uio.ResolveUnixfsOnce,
|
|
}
|
|
|
|
return core.Resolve(ctx, node.Namesys, resolver, np)
|
|
default:
|
|
fsn, err := mfs.Lookup(node.FilesRoot, p)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return fsn.GetNode()
|
|
}
|
|
}
|
|
|
|
type Object struct {
|
|
Hash string
|
|
Size uint64
|
|
CumulativeSize uint64
|
|
Blocks int
|
|
Type string
|
|
}
|
|
|
|
type FilesLsOutput struct {
|
|
Entries []mfs.NodeListing
|
|
}
|
|
|
|
var FilesLsCmd = &cmds.Command{
|
|
Helptext: cmdkit.HelpText{
|
|
Tagline: "List directories in the local mutable namespace.",
|
|
ShortDescription: `
|
|
List directories in the local mutable namespace.
|
|
|
|
Examples:
|
|
|
|
$ ipfs files ls /welcome/docs/
|
|
about
|
|
contact
|
|
help
|
|
quick-start
|
|
readme
|
|
security-notes
|
|
|
|
$ ipfs files ls /myfiles/a/b/c/d
|
|
foo
|
|
bar
|
|
`,
|
|
},
|
|
Arguments: []cmdkit.Argument{
|
|
cmdkit.StringArg("path", false, false, "Path to show listing for. Defaults to '/'."),
|
|
},
|
|
Options: []cmdkit.Option{
|
|
cmdkit.BoolOption("l", "Use long listing format."),
|
|
},
|
|
Run: func(req cmds.Request, res cmds.Response) {
|
|
var arg string
|
|
|
|
if len(req.Arguments()) == 0 {
|
|
arg = "/"
|
|
} else {
|
|
arg = req.Arguments()[0]
|
|
}
|
|
|
|
path, err := checkPath(arg)
|
|
if err != nil {
|
|
res.SetError(err, cmdkit.ErrNormal)
|
|
return
|
|
}
|
|
|
|
nd, err := req.InvocContext().GetNode()
|
|
if err != nil {
|
|
res.SetError(err, cmdkit.ErrNormal)
|
|
return
|
|
}
|
|
|
|
fsn, err := mfs.Lookup(nd.FilesRoot, path)
|
|
if err != nil {
|
|
res.SetError(err, cmdkit.ErrNormal)
|
|
return
|
|
}
|
|
|
|
long, _, _ := req.Option("l").Bool()
|
|
|
|
switch fsn := fsn.(type) {
|
|
case *mfs.Directory:
|
|
if !long {
|
|
var output []mfs.NodeListing
|
|
names, err := fsn.ListNames(req.Context())
|
|
if err != nil {
|
|
res.SetError(err, cmdkit.ErrNormal)
|
|
return
|
|
}
|
|
|
|
for _, name := range names {
|
|
output = append(output, mfs.NodeListing{
|
|
Name: name,
|
|
})
|
|
}
|
|
res.SetOutput(&FilesLsOutput{output})
|
|
} else {
|
|
listing, err := fsn.List(req.Context())
|
|
if err != nil {
|
|
res.SetError(err, cmdkit.ErrNormal)
|
|
return
|
|
}
|
|
res.SetOutput(&FilesLsOutput{listing})
|
|
}
|
|
return
|
|
case *mfs.File:
|
|
_, name := gopath.Split(path)
|
|
out := &FilesLsOutput{[]mfs.NodeListing{mfs.NodeListing{Name: name, Type: 1}}}
|
|
res.SetOutput(out)
|
|
return
|
|
default:
|
|
res.SetError(errors.New("unrecognized type"), cmdkit.ErrNormal)
|
|
}
|
|
},
|
|
Marshalers: cmds.MarshalerMap{
|
|
cmds.Text: func(res cmds.Response) (io.Reader, error) {
|
|
v, err := unwrapOutput(res.Output())
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
out, ok := v.(*FilesLsOutput)
|
|
if !ok {
|
|
return nil, e.TypeErr(out, v)
|
|
}
|
|
|
|
buf := new(bytes.Buffer)
|
|
long, _, _ := res.Request().Option("l").Bool()
|
|
|
|
for _, o := range out.Entries {
|
|
if long {
|
|
fmt.Fprintf(buf, "%s\t%s\t%d\n", o.Name, o.Hash, o.Size)
|
|
} else {
|
|
fmt.Fprintf(buf, "%s\n", o.Name)
|
|
}
|
|
}
|
|
return buf, nil
|
|
},
|
|
},
|
|
Type: FilesLsOutput{},
|
|
}
|
|
|
|
var FilesReadCmd = &cmds.Command{
|
|
Helptext: cmdkit.HelpText{
|
|
Tagline: "Read a file in a given mfs.",
|
|
ShortDescription: `
|
|
Read a specified number of bytes from a file at a given offset. By default,
|
|
will read the entire file similar to unix cat.
|
|
|
|
Examples:
|
|
|
|
$ ipfs files read /test/hello
|
|
hello
|
|
`,
|
|
},
|
|
|
|
Arguments: []cmdkit.Argument{
|
|
cmdkit.StringArg("path", true, false, "Path to file to be read."),
|
|
},
|
|
Options: []cmdkit.Option{
|
|
cmdkit.IntOption("offset", "o", "Byte offset to begin reading from."),
|
|
cmdkit.IntOption("count", "n", "Maximum number of bytes to read."),
|
|
},
|
|
Run: func(req cmds.Request, res cmds.Response) {
|
|
n, err := req.InvocContext().GetNode()
|
|
if err != nil {
|
|
res.SetError(err, cmdkit.ErrNormal)
|
|
return
|
|
}
|
|
|
|
path, err := checkPath(req.Arguments()[0])
|
|
if err != nil {
|
|
res.SetError(err, cmdkit.ErrNormal)
|
|
return
|
|
}
|
|
|
|
fsn, err := mfs.Lookup(n.FilesRoot, path)
|
|
if err != nil {
|
|
res.SetError(err, cmdkit.ErrNormal)
|
|
return
|
|
}
|
|
|
|
fi, ok := fsn.(*mfs.File)
|
|
if !ok {
|
|
res.SetError(fmt.Errorf("%s was not a file.", path), cmdkit.ErrNormal)
|
|
return
|
|
}
|
|
|
|
rfd, err := fi.Open(mfs.OpenReadOnly, false)
|
|
if err != nil {
|
|
res.SetError(err, cmdkit.ErrNormal)
|
|
return
|
|
}
|
|
|
|
defer rfd.Close()
|
|
|
|
offset, _, err := req.Option("offset").Int()
|
|
if err != nil {
|
|
res.SetError(err, cmdkit.ErrNormal)
|
|
return
|
|
}
|
|
if offset < 0 {
|
|
res.SetError(fmt.Errorf("Cannot specify negative offset."), cmdkit.ErrNormal)
|
|
return
|
|
}
|
|
|
|
filen, err := rfd.Size()
|
|
if err != nil {
|
|
res.SetError(err, cmdkit.ErrNormal)
|
|
return
|
|
}
|
|
|
|
if int64(offset) > filen {
|
|
res.SetError(fmt.Errorf("Offset was past end of file (%d > %d).", offset, filen), cmdkit.ErrNormal)
|
|
return
|
|
}
|
|
|
|
_, err = rfd.Seek(int64(offset), io.SeekStart)
|
|
if err != nil {
|
|
res.SetError(err, cmdkit.ErrNormal)
|
|
return
|
|
}
|
|
|
|
var r io.Reader = &contextReaderWrapper{R: rfd, ctx: req.Context()}
|
|
count, found, err := req.Option("count").Int()
|
|
if err != nil {
|
|
res.SetError(err, cmdkit.ErrNormal)
|
|
return
|
|
}
|
|
if found {
|
|
if count < 0 {
|
|
res.SetError(fmt.Errorf("Cannot specify negative 'count'."), cmdkit.ErrNormal)
|
|
return
|
|
}
|
|
r = io.LimitReader(r, int64(count))
|
|
}
|
|
|
|
res.SetOutput(r)
|
|
},
|
|
}
|
|
|
|
type contextReader interface {
|
|
CtxReadFull(context.Context, []byte) (int, error)
|
|
}
|
|
|
|
type contextReaderWrapper struct {
|
|
R contextReader
|
|
ctx context.Context
|
|
}
|
|
|
|
func (crw *contextReaderWrapper) Read(b []byte) (int, error) {
|
|
return crw.R.CtxReadFull(crw.ctx, b)
|
|
}
|
|
|
|
var FilesMvCmd = &cmds.Command{
|
|
Helptext: cmdkit.HelpText{
|
|
Tagline: "Move files.",
|
|
ShortDescription: `
|
|
Move files around. Just like traditional unix mv.
|
|
|
|
Example:
|
|
|
|
$ ipfs files mv /myfs/a/b/c /myfs/foo/newc
|
|
|
|
`,
|
|
},
|
|
|
|
Arguments: []cmdkit.Argument{
|
|
cmdkit.StringArg("source", true, false, "Source file to move."),
|
|
cmdkit.StringArg("dest", true, false, "Destination path for file to be moved to."),
|
|
},
|
|
Run: func(req cmds.Request, res cmds.Response) {
|
|
n, err := req.InvocContext().GetNode()
|
|
if err != nil {
|
|
res.SetError(err, cmdkit.ErrNormal)
|
|
return
|
|
}
|
|
|
|
src, err := checkPath(req.Arguments()[0])
|
|
if err != nil {
|
|
res.SetError(err, cmdkit.ErrNormal)
|
|
return
|
|
}
|
|
dst, err := checkPath(req.Arguments()[1])
|
|
if err != nil {
|
|
res.SetError(err, cmdkit.ErrNormal)
|
|
return
|
|
}
|
|
|
|
err = mfs.Mv(n.FilesRoot, src, dst)
|
|
if err != nil {
|
|
res.SetError(err, cmdkit.ErrNormal)
|
|
return
|
|
}
|
|
|
|
res.SetOutput(nil)
|
|
},
|
|
}
|
|
|
|
var FilesWriteCmd = &cmds.Command{
|
|
Helptext: cmdkit.HelpText{
|
|
Tagline: "Write to a mutable file in a given filesystem.",
|
|
ShortDescription: `
|
|
Write data to a file in a given filesystem. This command allows you to specify
|
|
a beginning offset to write to. The entire length of the input will be
|
|
written.
|
|
|
|
If the '--create' option is specified, the file will be created if it does not
|
|
exist. Nonexistant intermediate directories will not be created.
|
|
|
|
Newly created files will have the same CID version and hash function of the
|
|
parent directory unless the --cid-version and --hash options are used.
|
|
|
|
Newly created leaves will be in the legacy format (Protobuf) if the
|
|
CID version is 0, or raw is the CID version is non-zero. Use of the
|
|
--raw-leaves option will override this behavior.
|
|
|
|
If the '--flush' option is set to false, changes will not be propogated to the
|
|
merkledag root. This can make operations much faster when doing a large number
|
|
of writes to a deeper directory structure.
|
|
|
|
EXAMPLE:
|
|
|
|
echo "hello world" | ipfs files write --create /myfs/a/b/file
|
|
echo "hello world" | ipfs files write --truncate /myfs/a/b/file
|
|
|
|
WARNING:
|
|
|
|
Usage of the '--flush=false' option does not guarantee data durability until
|
|
the tree has been flushed. This can be accomplished by running 'ipfs files
|
|
stat' on the file or any of its ancestors.
|
|
`,
|
|
},
|
|
Arguments: []cmdkit.Argument{
|
|
cmdkit.StringArg("path", true, false, "Path to write to."),
|
|
cmdkit.FileArg("data", true, false, "Data to write.").EnableStdin(),
|
|
},
|
|
Options: []cmdkit.Option{
|
|
cmdkit.IntOption("offset", "o", "Byte offset to begin writing at."),
|
|
cmdkit.BoolOption("create", "e", "Create the file if it does not exist."),
|
|
cmdkit.BoolOption("truncate", "t", "Truncate the file to size zero before writing."),
|
|
cmdkit.IntOption("count", "n", "Maximum number of bytes to read."),
|
|
cmdkit.BoolOption("raw-leaves", "Use raw blocks for newly created leaf nodes. (experimental)"),
|
|
cidVersionOption,
|
|
hashOption,
|
|
},
|
|
Run: func(req cmds.Request, res cmds.Response) {
|
|
path, err := checkPath(req.StringArguments()[0])
|
|
if err != nil {
|
|
res.SetError(err, cmdkit.ErrNormal)
|
|
return
|
|
}
|
|
|
|
create, _, _ := req.Option("create").Bool()
|
|
trunc, _, _ := req.Option("truncate").Bool()
|
|
flush, _, _ := req.Option("flush").Bool()
|
|
rawLeaves, rawLeavesDef, _ := req.Option("raw-leaves").Bool()
|
|
|
|
prefix, err := getPrefix(req)
|
|
if err != nil {
|
|
res.SetError(err, cmdkit.ErrNormal)
|
|
return
|
|
}
|
|
|
|
nd, err := req.InvocContext().GetNode()
|
|
if err != nil {
|
|
res.SetError(err, cmdkit.ErrNormal)
|
|
return
|
|
}
|
|
|
|
offset, _, err := req.Option("offset").Int()
|
|
if err != nil {
|
|
res.SetError(err, cmdkit.ErrNormal)
|
|
return
|
|
}
|
|
if offset < 0 {
|
|
res.SetError(fmt.Errorf("cannot have negative write offset"), cmdkit.ErrNormal)
|
|
return
|
|
}
|
|
|
|
fi, err := getFileHandle(nd.FilesRoot, path, create, prefix)
|
|
if err != nil {
|
|
res.SetError(err, cmdkit.ErrNormal)
|
|
return
|
|
}
|
|
if rawLeavesDef {
|
|
fi.RawLeaves = rawLeaves
|
|
}
|
|
|
|
wfd, err := fi.Open(mfs.OpenWriteOnly, flush)
|
|
if err != nil {
|
|
res.SetError(err, cmdkit.ErrNormal)
|
|
return
|
|
}
|
|
|
|
defer func() {
|
|
err := wfd.Close()
|
|
if err != nil {
|
|
res.SetError(err, cmdkit.ErrNormal)
|
|
}
|
|
}()
|
|
|
|
if trunc {
|
|
if err := wfd.Truncate(0); err != nil {
|
|
res.SetError(err, cmdkit.ErrNormal)
|
|
return
|
|
}
|
|
}
|
|
|
|
count, countfound, err := req.Option("count").Int()
|
|
if err != nil {
|
|
res.SetError(err, cmdkit.ErrNormal)
|
|
return
|
|
}
|
|
if countfound && count < 0 {
|
|
res.SetError(fmt.Errorf("cannot have negative byte count"), cmdkit.ErrNormal)
|
|
return
|
|
}
|
|
|
|
_, err = wfd.Seek(int64(offset), io.SeekStart)
|
|
if err != nil {
|
|
log.Error("seekfail: ", err)
|
|
res.SetError(err, cmdkit.ErrNormal)
|
|
return
|
|
}
|
|
|
|
input, err := req.Files().NextFile()
|
|
if err != nil {
|
|
res.SetError(err, cmdkit.ErrNormal)
|
|
return
|
|
}
|
|
|
|
var r io.Reader = input
|
|
if countfound {
|
|
r = io.LimitReader(r, int64(count))
|
|
}
|
|
|
|
_, err = io.Copy(wfd, r)
|
|
if err != nil {
|
|
res.SetError(err, cmdkit.ErrNormal)
|
|
return
|
|
}
|
|
|
|
res.SetOutput(nil)
|
|
},
|
|
}
|
|
|
|
var FilesMkdirCmd = &cmds.Command{
|
|
Helptext: cmdkit.HelpText{
|
|
Tagline: "Make directories.",
|
|
ShortDescription: `
|
|
Create the directory if it does not already exist.
|
|
|
|
The directory will have the same CID version and hash function of the
|
|
parent directory unless the --cid-version and --hash options are used.
|
|
|
|
NOTE: All paths must be absolute.
|
|
|
|
Examples:
|
|
|
|
$ ipfs files mkdir /test/newdir
|
|
$ ipfs files mkdir -p /test/does/not/exist/yet
|
|
`,
|
|
},
|
|
|
|
Arguments: []cmdkit.Argument{
|
|
cmdkit.StringArg("path", true, false, "Path to dir to make."),
|
|
},
|
|
Options: []cmdkit.Option{
|
|
cmdkit.BoolOption("parents", "p", "No error if existing, make parent directories as needed."),
|
|
cidVersionOption,
|
|
hashOption,
|
|
},
|
|
Run: func(req cmds.Request, res cmds.Response) {
|
|
n, err := req.InvocContext().GetNode()
|
|
if err != nil {
|
|
res.SetError(err, cmdkit.ErrNormal)
|
|
return
|
|
}
|
|
|
|
dashp, _, _ := req.Option("parents").Bool()
|
|
dirtomake, err := checkPath(req.Arguments()[0])
|
|
if err != nil {
|
|
res.SetError(err, cmdkit.ErrNormal)
|
|
return
|
|
}
|
|
|
|
flush, _, _ := req.Option("flush").Bool()
|
|
|
|
prefix, err := getPrefix(req)
|
|
if err != nil {
|
|
res.SetError(err, cmdkit.ErrNormal)
|
|
return
|
|
}
|
|
root := n.FilesRoot
|
|
|
|
err = mfs.Mkdir(root, dirtomake, mfs.MkdirOpts{
|
|
Mkparents: dashp,
|
|
Flush: flush,
|
|
Prefix: prefix,
|
|
})
|
|
if err != nil {
|
|
res.SetError(err, cmdkit.ErrNormal)
|
|
return
|
|
}
|
|
|
|
res.SetOutput(nil)
|
|
},
|
|
}
|
|
|
|
var FilesFlushCmd = &cmds.Command{
|
|
Helptext: cmdkit.HelpText{
|
|
Tagline: "Flush a given path's data to disk.",
|
|
ShortDescription: `
|
|
Flush a given path to disk. This is only useful when other commands
|
|
are run with the '--flush=false'.
|
|
`,
|
|
},
|
|
Arguments: []cmdkit.Argument{
|
|
cmdkit.StringArg("path", false, false, "Path to flush. Default: '/'."),
|
|
},
|
|
Run: func(req cmds.Request, res cmds.Response) {
|
|
nd, err := req.InvocContext().GetNode()
|
|
if err != nil {
|
|
res.SetError(err, cmdkit.ErrNormal)
|
|
return
|
|
}
|
|
|
|
path := "/"
|
|
if len(req.Arguments()) > 0 {
|
|
path = req.Arguments()[0]
|
|
}
|
|
|
|
err = mfs.FlushPath(nd.FilesRoot, path)
|
|
if err != nil {
|
|
res.SetError(err, cmdkit.ErrNormal)
|
|
return
|
|
}
|
|
|
|
res.SetOutput(nil)
|
|
},
|
|
}
|
|
|
|
var FilesChcidCmd = &cmds.Command{
|
|
Helptext: cmdkit.HelpText{
|
|
Tagline: "Change the cid version or hash function of the root node of a given path.",
|
|
ShortDescription: `
|
|
Change the cid version or hash function of the root node of a given path.
|
|
`,
|
|
},
|
|
Arguments: []cmdkit.Argument{
|
|
cmdkit.StringArg("path", false, false, "Path to change. Default: '/'."),
|
|
},
|
|
Options: []cmdkit.Option{
|
|
cidVersionOption,
|
|
hashOption,
|
|
},
|
|
Run: func(req cmds.Request, res cmds.Response) {
|
|
nd, err := req.InvocContext().GetNode()
|
|
if err != nil {
|
|
res.SetError(err, cmdkit.ErrNormal)
|
|
return
|
|
}
|
|
|
|
path := "/"
|
|
if len(req.Arguments()) > 0 {
|
|
path = req.Arguments()[0]
|
|
}
|
|
|
|
flush, _, _ := req.Option("flush").Bool()
|
|
|
|
prefix, err := getPrefix(req)
|
|
if err != nil {
|
|
res.SetError(err, cmdkit.ErrNormal)
|
|
return
|
|
}
|
|
|
|
err = updatePath(nd.FilesRoot, path, prefix, flush)
|
|
if err != nil {
|
|
res.SetError(err, cmdkit.ErrNormal)
|
|
return
|
|
}
|
|
|
|
res.SetOutput(nil)
|
|
},
|
|
}
|
|
|
|
func updatePath(rt *mfs.Root, pth string, prefix *cid.Prefix, flush bool) error {
|
|
if prefix == nil {
|
|
return nil
|
|
}
|
|
|
|
nd, err := mfs.Lookup(rt, pth)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
switch n := nd.(type) {
|
|
case *mfs.Directory:
|
|
n.SetPrefix(prefix)
|
|
default:
|
|
return fmt.Errorf("can only update directories")
|
|
}
|
|
|
|
if flush {
|
|
nd.Flush()
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
var FilesRmCmd = &cmds.Command{
|
|
Helptext: cmdkit.HelpText{
|
|
Tagline: "Remove a file.",
|
|
ShortDescription: `
|
|
Remove files or directories.
|
|
|
|
$ ipfs files rm /foo
|
|
$ ipfs files ls /bar
|
|
cat
|
|
dog
|
|
fish
|
|
$ ipfs files rm -r /bar
|
|
`,
|
|
},
|
|
|
|
Arguments: []cmdkit.Argument{
|
|
cmdkit.StringArg("path", true, true, "File to remove."),
|
|
},
|
|
Options: []cmdkit.Option{
|
|
cmdkit.BoolOption("recursive", "r", "Recursively remove directories."),
|
|
},
|
|
Run: func(req cmds.Request, res cmds.Response) {
|
|
defer res.SetOutput(nil)
|
|
|
|
nd, err := req.InvocContext().GetNode()
|
|
if err != nil {
|
|
res.SetError(err, cmdkit.ErrNormal)
|
|
return
|
|
}
|
|
|
|
path, err := checkPath(req.Arguments()[0])
|
|
if err != nil {
|
|
res.SetError(err, cmdkit.ErrNormal)
|
|
return
|
|
}
|
|
|
|
if path == "/" {
|
|
res.SetError(fmt.Errorf("cannot delete root"), cmdkit.ErrNormal)
|
|
return
|
|
}
|
|
|
|
// 'rm a/b/c/' will fail unless we trim the slash at the end
|
|
if path[len(path)-1] == '/' {
|
|
path = path[:len(path)-1]
|
|
}
|
|
|
|
dir, name := gopath.Split(path)
|
|
parent, err := mfs.Lookup(nd.FilesRoot, dir)
|
|
if err != nil {
|
|
res.SetError(fmt.Errorf("parent lookup: %s", err), cmdkit.ErrNormal)
|
|
return
|
|
}
|
|
|
|
pdir, ok := parent.(*mfs.Directory)
|
|
if !ok {
|
|
res.SetError(fmt.Errorf("No such file or directory: %s", path), cmdkit.ErrNormal)
|
|
return
|
|
}
|
|
|
|
dashr, _, _ := req.Option("r").Bool()
|
|
|
|
var success bool
|
|
defer func() {
|
|
if success {
|
|
err := pdir.Flush()
|
|
if err != nil {
|
|
res.SetError(err, cmdkit.ErrNormal)
|
|
return
|
|
}
|
|
}
|
|
}()
|
|
|
|
// if '-r' specified, don't check file type (in bad scenarios, the block may not exist)
|
|
if dashr {
|
|
err := pdir.Unlink(name)
|
|
if err != nil {
|
|
res.SetError(err, cmdkit.ErrNormal)
|
|
return
|
|
}
|
|
|
|
success = true
|
|
return
|
|
}
|
|
|
|
childi, err := pdir.Child(name)
|
|
if err != nil {
|
|
res.SetError(err, cmdkit.ErrNormal)
|
|
return
|
|
}
|
|
|
|
switch childi.(type) {
|
|
case *mfs.Directory:
|
|
res.SetError(fmt.Errorf("%s is a directory, use -r to remove directories", path), cmdkit.ErrNormal)
|
|
return
|
|
default:
|
|
err := pdir.Unlink(name)
|
|
if err != nil {
|
|
res.SetError(err, cmdkit.ErrNormal)
|
|
return
|
|
}
|
|
|
|
success = true
|
|
}
|
|
},
|
|
}
|
|
|
|
func getPrefix(req cmds.Request) (*cid.Prefix, error) {
|
|
cidVer, cidVerSet, _ := req.Option("cid-version").Int()
|
|
hashFunStr, hashFunSet, _ := req.Option("hash").String()
|
|
|
|
if !cidVerSet && !hashFunSet {
|
|
return nil, nil
|
|
}
|
|
|
|
if hashFunSet && cidVer == 0 {
|
|
cidVer = 1
|
|
}
|
|
|
|
prefix, err := dag.PrefixForCidVersion(cidVer)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
if hashFunSet {
|
|
hashFunCode, ok := mh.Names[strings.ToLower(hashFunStr)]
|
|
if !ok {
|
|
return nil, fmt.Errorf("unrecognized hash function: %s", strings.ToLower(hashFunStr))
|
|
}
|
|
prefix.MhType = hashFunCode
|
|
prefix.MhLength = -1
|
|
}
|
|
|
|
return &prefix, nil
|
|
}
|
|
|
|
func getFileHandle(r *mfs.Root, path string, create bool, prefix *cid.Prefix) (*mfs.File, error) {
|
|
target, err := mfs.Lookup(r, path)
|
|
switch err {
|
|
case nil:
|
|
fi, ok := target.(*mfs.File)
|
|
if !ok {
|
|
return nil, fmt.Errorf("%s was not a file", path)
|
|
}
|
|
return fi, nil
|
|
|
|
case os.ErrNotExist:
|
|
if !create {
|
|
return nil, err
|
|
}
|
|
|
|
// if create is specified and the file doesnt exist, we create the file
|
|
dirname, fname := gopath.Split(path)
|
|
pdiri, err := mfs.Lookup(r, dirname)
|
|
if err != nil {
|
|
log.Error("lookupfail ", dirname)
|
|
return nil, err
|
|
}
|
|
pdir, ok := pdiri.(*mfs.Directory)
|
|
if !ok {
|
|
return nil, fmt.Errorf("%s was not a directory", dirname)
|
|
}
|
|
if prefix == nil {
|
|
prefix = pdir.GetPrefix()
|
|
}
|
|
|
|
nd := dag.NodeWithData(ft.FilePBData(nil, 0))
|
|
nd.SetPrefix(prefix)
|
|
err = pdir.AddChild(fname, nd)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
fsn, err := pdir.Child(fname)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
fi, ok := fsn.(*mfs.File)
|
|
if !ok {
|
|
return nil, errors.New("Expected *mfs.File, didnt get it. This is likely a race condition.")
|
|
}
|
|
return fi, nil
|
|
|
|
default:
|
|
return nil, err
|
|
}
|
|
}
|
|
|
|
func checkPath(p string) (string, error) {
|
|
if len(p) == 0 {
|
|
return "", fmt.Errorf("Paths must not be empty.")
|
|
}
|
|
|
|
if p[0] != '/' {
|
|
return "", fmt.Errorf("Paths must start with a leading slash.")
|
|
}
|
|
|
|
cleaned := gopath.Clean(p)
|
|
if p[len(p)-1] == '/' && p != "/" {
|
|
cleaned += "/"
|
|
}
|
|
return cleaned, nil
|
|
}
|
|
|
|
// copy+pasted from ../commands.go
|
|
func unwrapOutput(i interface{}) (interface{}, error) {
|
|
var (
|
|
ch <-chan interface{}
|
|
ok bool
|
|
)
|
|
|
|
if ch, ok = i.(<-chan interface{}); !ok {
|
|
return nil, e.TypeErr(ch, i)
|
|
}
|
|
|
|
return <-ch, nil
|
|
}
|