2021-01-06 12:21:34 +00:00
|
|
|
package command
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"fmt"
|
2022-07-29 07:17:28 +00:00
|
|
|
"github.com/seaweedfs/seaweedfs/weed/filer"
|
|
|
|
"github.com/seaweedfs/seaweedfs/weed/pb"
|
|
|
|
"github.com/seaweedfs/seaweedfs/weed/pb/filer_pb"
|
|
|
|
"github.com/seaweedfs/seaweedfs/weed/wdclient"
|
2021-01-06 12:21:34 +00:00
|
|
|
"google.golang.org/grpc"
|
|
|
|
"net/url"
|
|
|
|
"os"
|
|
|
|
"strings"
|
|
|
|
|
2022-07-29 07:17:28 +00:00
|
|
|
"github.com/seaweedfs/seaweedfs/weed/security"
|
|
|
|
"github.com/seaweedfs/seaweedfs/weed/util"
|
2021-01-06 12:21:34 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
filerCat FilerCatOptions
|
|
|
|
)
|
|
|
|
|
|
|
|
type FilerCatOptions struct {
|
|
|
|
grpcDialOption grpc.DialOption
|
2021-09-13 05:47:52 +00:00
|
|
|
filerAddress pb.ServerAddress
|
2021-01-06 12:21:34 +00:00
|
|
|
filerClient filer_pb.SeaweedFilerClient
|
|
|
|
output *string
|
|
|
|
}
|
|
|
|
|
|
|
|
func (fco *FilerCatOptions) GetLookupFileIdFunction() wdclient.LookupFileIdFunctionType {
|
|
|
|
return func(fileId string) (targetUrls []string, err error) {
|
|
|
|
vid := filer.VolumeId(fileId)
|
|
|
|
resp, err := fco.filerClient.LookupVolume(context.Background(), &filer_pb.LookupVolumeRequest{
|
|
|
|
VolumeIds: []string{vid},
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
locations := resp.LocationsMap[vid]
|
|
|
|
for _, loc := range locations.Locations {
|
|
|
|
targetUrls = append(targetUrls, fmt.Sprintf("http://%s/%s", loc.Url, fileId))
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
cmdFilerCat.Run = runFilerCat // break init cycle
|
|
|
|
filerCat.output = cmdFilerCat.Flag.String("o", "", "write to file instead of stdout")
|
|
|
|
}
|
|
|
|
|
|
|
|
var cmdFilerCat = &Command{
|
|
|
|
UsageLine: "filer.cat [-o <file>] http://localhost:8888/path/to/file",
|
|
|
|
Short: "copy one file to local",
|
|
|
|
Long: `read one file to stdout or write to a file
|
|
|
|
|
|
|
|
`,
|
|
|
|
}
|
|
|
|
|
|
|
|
func runFilerCat(cmd *Command, args []string) bool {
|
|
|
|
|
|
|
|
util.LoadConfiguration("security", false)
|
|
|
|
|
|
|
|
if len(args) == 0 {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
filerSource := args[len(args)-1]
|
|
|
|
|
|
|
|
filerUrl, err := url.Parse(filerSource)
|
|
|
|
if err != nil {
|
|
|
|
fmt.Printf("The last argument should be a URL on filer: %v\n", err)
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
urlPath := filerUrl.Path
|
|
|
|
if strings.HasSuffix(urlPath, "/") {
|
|
|
|
fmt.Printf("The last argument should be a file: %v\n", err)
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2021-09-13 05:47:52 +00:00
|
|
|
filerCat.filerAddress = pb.ServerAddress(filerUrl.Host)
|
2021-01-06 12:21:34 +00:00
|
|
|
filerCat.grpcDialOption = security.LoadClientTLS(util.GetViper(), "grpc.client")
|
|
|
|
|
|
|
|
dir, name := util.FullPath(urlPath).DirAndName()
|
|
|
|
|
|
|
|
writer := os.Stdout
|
|
|
|
if *filerCat.output != "" {
|
|
|
|
|
|
|
|
fmt.Printf("saving %s to %s\n", filerSource, *filerCat.output)
|
|
|
|
|
|
|
|
f, err := os.OpenFile(*filerCat.output, os.O_WRONLY|os.O_CREATE|os.O_TRUNC, 0755)
|
|
|
|
if err != nil {
|
|
|
|
fmt.Printf("open file %s: %v\n", *filerCat.output, err)
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
defer f.Close()
|
|
|
|
writer = f
|
|
|
|
}
|
|
|
|
|
2021-12-26 08:15:03 +00:00
|
|
|
pb.WithFilerClient(false, filerCat.filerAddress, filerCat.grpcDialOption, func(client filer_pb.SeaweedFilerClient) error {
|
2021-01-06 12:21:34 +00:00
|
|
|
|
|
|
|
request := &filer_pb.LookupDirectoryEntryRequest{
|
|
|
|
Name: name,
|
|
|
|
Directory: dir,
|
|
|
|
}
|
|
|
|
respLookupEntry, err := filer_pb.LookupEntry(client, request)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2021-08-24 09:38:32 +00:00
|
|
|
if len(respLookupEntry.Entry.Content) > 0 {
|
|
|
|
_, err = writer.Write(respLookupEntry.Entry.Content)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2021-01-06 12:21:34 +00:00
|
|
|
filerCat.filerClient = client
|
|
|
|
|
2022-02-08 07:08:54 +00:00
|
|
|
return filer.StreamContent(&filerCat, writer, respLookupEntry.Entry.Chunks, 0, int64(filer.FileSize(respLookupEntry.Entry)))
|
2021-01-06 12:21:34 +00:00
|
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
return true
|
|
|
|
}
|