2019-05-02 21:22:10 +00:00
|
|
|
package command
|
|
|
|
|
|
|
|
import (
|
2020-03-06 08:49:47 +00:00
|
|
|
"context"
|
2019-05-02 21:22:10 +00:00
|
|
|
"fmt"
|
|
|
|
"net/http"
|
2020-04-12 04:12:41 +00:00
|
|
|
"os"
|
2019-05-03 07:24:35 +00:00
|
|
|
"os/user"
|
|
|
|
"strconv"
|
2019-05-02 21:22:10 +00:00
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/chrislusf/seaweedfs/weed/glog"
|
2020-03-04 08:39:47 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/pb"
|
2020-03-06 08:49:47 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/pb/filer_pb"
|
2019-05-02 21:22:10 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/security"
|
|
|
|
"github.com/chrislusf/seaweedfs/weed/server"
|
|
|
|
"github.com/chrislusf/seaweedfs/weed/util"
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
webDavStandaloneOptions WebDavOption
|
|
|
|
)
|
|
|
|
|
|
|
|
type WebDavOption struct {
|
|
|
|
filer *string
|
|
|
|
port *int
|
2019-05-03 07:24:35 +00:00
|
|
|
collection *string
|
2021-02-18 20:15:09 +00:00
|
|
|
replication *string
|
2021-02-18 23:45:12 +00:00
|
|
|
disk *string
|
2019-05-02 21:22:10 +00:00
|
|
|
tlsPrivateKey *string
|
|
|
|
tlsCertificate *string
|
2020-04-12 04:12:41 +00:00
|
|
|
cacheDir *string
|
|
|
|
cacheSizeMB *int64
|
2019-05-02 21:22:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
cmdWebDav.Run = runWebDav // break init cycle
|
|
|
|
webDavStandaloneOptions.filer = cmdWebDav.Flag.String("filer", "localhost:8888", "filer server address")
|
|
|
|
webDavStandaloneOptions.port = cmdWebDav.Flag.Int("port", 7333, "webdav server http listen port")
|
2019-05-03 07:24:35 +00:00
|
|
|
webDavStandaloneOptions.collection = cmdWebDav.Flag.String("collection", "", "collection to create the files")
|
2021-02-18 20:15:09 +00:00
|
|
|
webDavStandaloneOptions.replication = cmdWebDav.Flag.String("replication", "", "replication to create the files")
|
2021-02-22 10:03:12 +00:00
|
|
|
webDavStandaloneOptions.disk = cmdWebDav.Flag.String("disk", "", "[hdd|ssd|<tag>] hard drive or solid state drive or any tag")
|
2019-05-02 21:22:10 +00:00
|
|
|
webDavStandaloneOptions.tlsPrivateKey = cmdWebDav.Flag.String("key.file", "", "path to the TLS private key file")
|
|
|
|
webDavStandaloneOptions.tlsCertificate = cmdWebDav.Flag.String("cert.file", "", "path to the TLS certificate file")
|
2020-04-12 04:12:41 +00:00
|
|
|
webDavStandaloneOptions.cacheDir = cmdWebDav.Flag.String("cacheDir", os.TempDir(), "local cache directory for file chunks")
|
|
|
|
webDavStandaloneOptions.cacheSizeMB = cmdWebDav.Flag.Int64("cacheCapacityMB", 1000, "local cache capacity in MB")
|
2019-05-02 21:22:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
var cmdWebDav = &Command{
|
|
|
|
UsageLine: "webdav -port=7333 -filer=<ip:port>",
|
2020-02-19 03:38:59 +00:00
|
|
|
Short: "start a webdav server that is backed by a filer",
|
2019-05-02 21:22:10 +00:00
|
|
|
Long: `start a webdav server that is backed by a filer.
|
|
|
|
|
|
|
|
`,
|
|
|
|
}
|
|
|
|
|
|
|
|
func runWebDav(cmd *Command, args []string) bool {
|
|
|
|
|
2019-06-05 08:30:24 +00:00
|
|
|
util.LoadConfiguration("security", false)
|
2019-05-02 21:22:10 +00:00
|
|
|
|
2020-06-02 07:10:35 +00:00
|
|
|
glog.V(0).Infof("Starting Seaweed WebDav Server %s at https port %d", util.Version(), *webDavStandaloneOptions.port)
|
2019-05-02 21:22:10 +00:00
|
|
|
|
|
|
|
return webDavStandaloneOptions.startWebDav()
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
func (wo *WebDavOption) startWebDav() bool {
|
|
|
|
|
2019-05-03 07:24:35 +00:00
|
|
|
// detect current user
|
|
|
|
uid, gid := uint32(0), uint32(0)
|
|
|
|
if u, err := user.Current(); err == nil {
|
|
|
|
if parsedId, pe := strconv.ParseUint(u.Uid, 10, 32); pe == nil {
|
|
|
|
uid = uint32(parsedId)
|
|
|
|
}
|
|
|
|
if parsedId, pe := strconv.ParseUint(u.Gid, 10, 32); pe == nil {
|
|
|
|
gid = uint32(parsedId)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-06 08:49:47 +00:00
|
|
|
// parse filer grpc address
|
2021-03-03 04:59:39 +00:00
|
|
|
filerGrpcAddress, err := pb.ParseServerToGrpcAddress(*wo.filer)
|
2020-03-06 08:49:47 +00:00
|
|
|
if err != nil {
|
|
|
|
glog.Fatal(err)
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
grpcDialOption := security.LoadClientTLS(util.GetViper(), "grpc.client")
|
|
|
|
|
|
|
|
var cipher bool
|
|
|
|
// connect to filer
|
|
|
|
for {
|
|
|
|
err = pb.WithGrpcFilerClient(filerGrpcAddress, grpcDialOption, func(client filer_pb.SeaweedFilerClient) error {
|
|
|
|
resp, err := client.GetFilerConfiguration(context.Background(), &filer_pb.GetFilerConfigurationRequest{})
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("get filer %s configuration: %v", filerGrpcAddress, err)
|
|
|
|
}
|
|
|
|
cipher = resp.Cipher
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
glog.V(0).Infof("wait to connect to filer %s grpc address %s", *wo.filer, filerGrpcAddress)
|
|
|
|
time.Sleep(time.Second)
|
|
|
|
} else {
|
|
|
|
glog.V(0).Infof("connected to filer %s grpc address %s", *wo.filer, filerGrpcAddress)
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-02 21:22:10 +00:00
|
|
|
ws, webdavServer_err := weed_server.NewWebDavServer(&weed_server.WebDavOption{
|
|
|
|
Filer: *wo.filer,
|
|
|
|
FilerGrpcAddress: filerGrpcAddress,
|
2020-03-06 08:49:47 +00:00
|
|
|
GrpcDialOption: grpcDialOption,
|
2019-05-03 07:24:35 +00:00
|
|
|
Collection: *wo.collection,
|
2021-02-18 20:15:09 +00:00
|
|
|
Replication: *wo.replication,
|
2021-02-18 23:45:12 +00:00
|
|
|
DiskType: *wo.disk,
|
2019-05-03 07:24:35 +00:00
|
|
|
Uid: uid,
|
|
|
|
Gid: gid,
|
2020-03-06 08:49:47 +00:00
|
|
|
Cipher: cipher,
|
2020-07-17 05:50:14 +00:00
|
|
|
CacheDir: util.ResolvePath(*wo.cacheDir),
|
2020-04-12 04:12:41 +00:00
|
|
|
CacheSizeMB: *wo.cacheSizeMB,
|
2019-05-02 21:22:10 +00:00
|
|
|
})
|
|
|
|
if webdavServer_err != nil {
|
|
|
|
glog.Fatalf("WebDav Server startup error: %v", webdavServer_err)
|
|
|
|
}
|
|
|
|
|
|
|
|
httpS := &http.Server{Handler: ws.Handler}
|
|
|
|
|
|
|
|
listenAddress := fmt.Sprintf(":%d", *wo.port)
|
|
|
|
webDavListener, err := util.NewListener(listenAddress, time.Duration(10)*time.Second)
|
|
|
|
if err != nil {
|
|
|
|
glog.Fatalf("WebDav Server listener on %s error: %v", listenAddress, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if *wo.tlsPrivateKey != "" {
|
2020-06-02 07:10:35 +00:00
|
|
|
glog.V(0).Infof("Start Seaweed WebDav Server %s at https port %d", util.Version(), *wo.port)
|
2019-05-02 21:22:10 +00:00
|
|
|
if err = httpS.ServeTLS(webDavListener, *wo.tlsCertificate, *wo.tlsPrivateKey); err != nil {
|
|
|
|
glog.Fatalf("WebDav Server Fail to serve: %v", err)
|
|
|
|
}
|
|
|
|
} else {
|
2020-06-02 07:10:35 +00:00
|
|
|
glog.V(0).Infof("Start Seaweed WebDav Server %s at http port %d", util.Version(), *wo.port)
|
2019-05-02 21:22:10 +00:00
|
|
|
if err = httpS.Serve(webDavListener); err != nil {
|
|
|
|
glog.Fatalf("WebDav Server Fail to serve: %v", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true
|
|
|
|
|
|
|
|
}
|