kubo/core/commands2/ls.go

79 lines
1.5 KiB
Go

package commands
import (
"fmt"
cmds "github.com/jbenet/go-ipfs/commands"
)
type Link struct {
Name, Hash string
Size uint64
}
type Object struct {
Hash string
Links []Link
}
type LsOutput struct {
Objects []Object
}
var lsCmd = &cmds.Command{
Arguments: []cmds.Argument{
cmds.Argument{"object", cmds.ArgString, false, true},
},
Help: "TODO",
Run: func(res cmds.Response, req cmds.Request) {
node := req.Context().Node
output := make([]Object, len(req.Arguments()))
for i, arg := range req.Arguments() {
path := arg.(string)
dagnode, err := node.Resolver.ResolvePath(path)
if err != nil {
res.SetError(err, cmds.ErrNormal)
return
}
output[i] = Object{
Hash: path,
Links: make([]Link, len(dagnode.Links)),
}
for j, link := range dagnode.Links {
output[i].Links[j] = Link{
Name: link.Name,
Hash: link.Hash.B58String(),
Size: link.Size,
}
}
}
res.SetOutput(&LsOutput{output})
},
Marshallers: map[cmds.EncodingType]cmds.Marshaller{
cmds.Text: func(res cmds.Response) ([]byte, error) {
s := ""
output := res.Output().(*LsOutput).Objects
for _, object := range output {
if len(output) > 1 {
s += fmt.Sprintf("%s:\n", object.Hash)
}
for _, link := range object.Links {
s += fmt.Sprintf("-> %s %s (%v bytes)\n", link.Name, link.Hash, link.Size)
}
if len(output) > 1 {
s += "\n"
}
}
return []byte(s), nil
},
},
Type: &LsOutput{},
}