2019-03-16 20:43:16 +00:00
|
|
|
package shell
|
|
|
|
|
|
|
|
import (
|
2019-04-05 02:27:51 +00:00
|
|
|
"context"
|
2019-04-03 07:20:00 +00:00
|
|
|
"fmt"
|
2019-03-16 20:43:16 +00:00
|
|
|
"io"
|
2019-04-03 07:20:00 +00:00
|
|
|
"net/url"
|
|
|
|
"path/filepath"
|
|
|
|
"strconv"
|
|
|
|
"strings"
|
2019-06-05 08:30:24 +00:00
|
|
|
|
2019-12-13 08:22:37 +00:00
|
|
|
"google.golang.org/grpc"
|
|
|
|
|
2019-06-05 08:30:24 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/filer2"
|
|
|
|
"github.com/chrislusf/seaweedfs/weed/pb/filer_pb"
|
|
|
|
"github.com/chrislusf/seaweedfs/weed/wdclient"
|
2019-03-16 20:43:16 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type ShellOptions struct {
|
2019-10-25 14:45:12 +00:00
|
|
|
Masters *string
|
|
|
|
GrpcDialOption grpc.DialOption
|
2019-04-03 07:20:00 +00:00
|
|
|
// shell transient context
|
|
|
|
FilerHost string
|
|
|
|
FilerPort int64
|
|
|
|
Directory string
|
2019-03-16 20:43:16 +00:00
|
|
|
}
|
|
|
|
|
2019-06-05 08:30:24 +00:00
|
|
|
type CommandEnv struct {
|
2019-03-16 20:43:16 +00:00
|
|
|
env map[string]string
|
2019-06-05 08:30:24 +00:00
|
|
|
MasterClient *wdclient.MasterClient
|
2019-03-20 04:58:00 +00:00
|
|
|
option ShellOptions
|
2019-03-16 20:43:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type command interface {
|
|
|
|
Name() string
|
|
|
|
Help() string
|
2019-06-05 08:30:24 +00:00
|
|
|
Do([]string, *CommandEnv, io.Writer) error
|
2019-03-16 20:43:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
var (
|
2019-06-05 08:30:24 +00:00
|
|
|
Commands = []command{}
|
2019-03-16 20:43:16 +00:00
|
|
|
)
|
2019-04-03 07:20:00 +00:00
|
|
|
|
2019-06-05 08:30:24 +00:00
|
|
|
func NewCommandEnv(options ShellOptions) *CommandEnv {
|
|
|
|
return &CommandEnv{
|
|
|
|
env: make(map[string]string),
|
|
|
|
MasterClient: wdclient.NewMasterClient(context.Background(),
|
|
|
|
options.GrpcDialOption, "shell", strings.Split(*options.Masters, ",")),
|
|
|
|
option: options,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (ce *CommandEnv) parseUrl(input string) (filerServer string, filerPort int64, path string, err error) {
|
2019-04-03 07:20:00 +00:00
|
|
|
if strings.HasPrefix(input, "http") {
|
|
|
|
return parseFilerUrl(input)
|
|
|
|
}
|
|
|
|
if !strings.HasPrefix(input, "/") {
|
|
|
|
input = filepath.ToSlash(filepath.Join(ce.option.Directory, input))
|
|
|
|
}
|
|
|
|
return ce.option.FilerHost, ce.option.FilerPort, input, err
|
|
|
|
}
|
|
|
|
|
2019-06-05 08:30:24 +00:00
|
|
|
func (ce *CommandEnv) isDirectory(ctx context.Context, filerServer string, filerPort int64, path string) bool {
|
2019-04-05 02:27:51 +00:00
|
|
|
|
2019-04-18 07:19:18 +00:00
|
|
|
return ce.checkDirectory(ctx, filerServer, filerPort, path) == nil
|
2019-04-05 02:27:51 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2019-06-05 08:30:24 +00:00
|
|
|
func (ce *CommandEnv) checkDirectory(ctx context.Context, filerServer string, filerPort int64, path string) error {
|
2019-04-05 02:27:51 +00:00
|
|
|
|
|
|
|
dir, name := filer2.FullPath(path).DirAndName()
|
|
|
|
|
2020-01-26 22:42:11 +00:00
|
|
|
return ce.withFilerClient(ctx, filerServer, filerPort, func(ctx context.Context, client filer_pb.SeaweedFilerClient) error {
|
2019-04-05 02:27:51 +00:00
|
|
|
|
2019-12-13 08:22:37 +00:00
|
|
|
resp, lookupErr := client.LookupDirectoryEntry(ctx, &filer_pb.LookupDirectoryEntryRequest{
|
|
|
|
Directory: dir,
|
|
|
|
Name: name,
|
2019-04-05 02:27:51 +00:00
|
|
|
})
|
2019-12-13 08:22:37 +00:00
|
|
|
if lookupErr != nil {
|
|
|
|
return lookupErr
|
2019-04-05 02:27:51 +00:00
|
|
|
}
|
|
|
|
|
2019-12-13 08:22:37 +00:00
|
|
|
if resp.Entry == nil {
|
2019-04-05 02:27:51 +00:00
|
|
|
return fmt.Errorf("entry not found")
|
|
|
|
}
|
|
|
|
|
2019-12-13 08:22:37 +00:00
|
|
|
if !resp.Entry.IsDirectory {
|
2019-04-05 02:27:51 +00:00
|
|
|
return fmt.Errorf("not a directory")
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2019-04-03 07:20:00 +00:00
|
|
|
func parseFilerUrl(entryPath string) (filerServer string, filerPort int64, path string, err error) {
|
|
|
|
if strings.HasPrefix(entryPath, "http") {
|
|
|
|
var u *url.URL
|
|
|
|
u, err = url.Parse(entryPath)
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
filerServer = u.Hostname()
|
|
|
|
portString := u.Port()
|
|
|
|
if portString != "" {
|
|
|
|
filerPort, err = strconv.ParseInt(portString, 10, 32)
|
|
|
|
}
|
|
|
|
path = u.Path
|
|
|
|
} else {
|
|
|
|
err = fmt.Errorf("path should have full url http://<filer_server>:<port>/path/to/dirOrFile : %s", entryPath)
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
2019-04-05 02:27:51 +00:00
|
|
|
|
|
|
|
func findInputDirectory(args []string) (input string) {
|
|
|
|
input = "."
|
|
|
|
if len(args) > 0 {
|
|
|
|
input = args[len(args)-1]
|
|
|
|
if strings.HasPrefix(input, "-") {
|
|
|
|
input = "."
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return input
|
|
|
|
}
|