mirror of
https://github.com/rclone/rclone.git
synced 2024-11-26 18:34:41 +01:00
serve http: use vfs to cache the directories and support Range header
This commit is contained in:
parent
73dfa21ba3
commit
16e16bc220
@ -3,7 +3,6 @@ package http
|
|||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
"html/template"
|
"html/template"
|
||||||
"io"
|
|
||||||
"log"
|
"log"
|
||||||
"net/http"
|
"net/http"
|
||||||
"path"
|
"path"
|
||||||
@ -12,18 +11,19 @@ import (
|
|||||||
|
|
||||||
"github.com/ncw/rclone/cmd"
|
"github.com/ncw/rclone/cmd"
|
||||||
"github.com/ncw/rclone/fs"
|
"github.com/ncw/rclone/fs"
|
||||||
|
"github.com/ncw/rclone/vfs"
|
||||||
|
"github.com/ncw/rclone/vfs/vfsflags"
|
||||||
"github.com/spf13/cobra"
|
"github.com/spf13/cobra"
|
||||||
)
|
)
|
||||||
|
|
||||||
// Globals
|
// Globals
|
||||||
var (
|
var (
|
||||||
bindAddress = "localhost:8080"
|
bindAddress = "localhost:8080"
|
||||||
readWrite = false
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
Command.Flags().StringVarP(&bindAddress, "addr", "", bindAddress, "IPaddress:Port to bind server to.")
|
Command.Flags().StringVarP(&bindAddress, "addr", "", bindAddress, "IPaddress:Port to bind server to.")
|
||||||
// Command.Flags().BoolVarP(&readWrite, "rw", "", readWrite, "Serve in read/write mode.")
|
vfsflags.AddFlags(Command.Flags())
|
||||||
}
|
}
|
||||||
|
|
||||||
// Command definition for cobra
|
// Command definition for cobra
|
||||||
@ -45,18 +45,12 @@ The server will log errors. Use -v to see access logs.
|
|||||||
|
|
||||||
--bwlimit will be respected for file transfers. Use --stats to
|
--bwlimit will be respected for file transfers. Use --stats to
|
||||||
control the stats printing.
|
control the stats printing.
|
||||||
|
|
||||||
Note the Range header is not supported yet.
|
|
||||||
`,
|
`,
|
||||||
Run: func(command *cobra.Command, args []string) {
|
Run: func(command *cobra.Command, args []string) {
|
||||||
cmd.CheckArgs(1, 1, command, args)
|
cmd.CheckArgs(1, 1, command, args)
|
||||||
f := cmd.NewFsSrc(args)
|
f := cmd.NewFsSrc(args)
|
||||||
cmd.Run(false, true, command, func() error {
|
cmd.Run(false, true, command, func() error {
|
||||||
s := server{
|
s := newServer(f, bindAddress)
|
||||||
f: f,
|
|
||||||
bindAddress: bindAddress,
|
|
||||||
readWrite: readWrite,
|
|
||||||
}
|
|
||||||
s.serve()
|
s.serve()
|
||||||
return nil
|
return nil
|
||||||
})
|
})
|
||||||
@ -67,7 +61,16 @@ Note the Range header is not supported yet.
|
|||||||
type server struct {
|
type server struct {
|
||||||
f fs.Fs
|
f fs.Fs
|
||||||
bindAddress string
|
bindAddress string
|
||||||
readWrite bool
|
vfs *vfs.VFS
|
||||||
|
}
|
||||||
|
|
||||||
|
func newServer(f fs.Fs, bindAddress string) *server {
|
||||||
|
s := &server{
|
||||||
|
f: f,
|
||||||
|
bindAddress: bindAddress,
|
||||||
|
vfs: vfs.New(f, &vfsflags.Opt),
|
||||||
|
}
|
||||||
|
return s
|
||||||
}
|
}
|
||||||
|
|
||||||
// serve creates the http server
|
// serve creates the http server
|
||||||
@ -91,13 +94,7 @@ func (s *server) handler(w http.ResponseWriter, r *http.Request) {
|
|||||||
http.Error(w, "Method not allowed", http.StatusMethodNotAllowed)
|
http.Error(w, "Method not allowed", http.StatusMethodNotAllowed)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
rangeHeader := r.Header.Get("Range")
|
w.Header().Set("Accept-Ranges", "bytes")
|
||||||
if rangeHeader != "" {
|
|
||||||
http.Error(w, "Range not supported yet", http.StatusRequestedRangeNotSatisfiable)
|
|
||||||
return
|
|
||||||
}
|
|
||||||
//r.Header().Set("Accept-Ranges", "bytes")
|
|
||||||
w.Header().Set("Accept-Ranges", "none") // show we don't support Range yet
|
|
||||||
w.Header().Set("Server", "rclone/"+fs.Version)
|
w.Header().Set("Server", "rclone/"+fs.Version)
|
||||||
|
|
||||||
urlPath := r.URL.Path
|
urlPath := r.URL.Path
|
||||||
@ -152,30 +149,33 @@ func internalError(what interface{}, w http.ResponseWriter, text string, err err
|
|||||||
|
|
||||||
// serveDir serves a directory index at dirRemote
|
// serveDir serves a directory index at dirRemote
|
||||||
func (s *server) serveDir(w http.ResponseWriter, r *http.Request, dirRemote string) {
|
func (s *server) serveDir(w http.ResponseWriter, r *http.Request, dirRemote string) {
|
||||||
// Check the directory is included in the filters
|
|
||||||
if !fs.Config.Filter.IncludeDirectory(dirRemote) {
|
|
||||||
fs.Infof(dirRemote, "%s: Directory not found (filtered)", r.RemoteAddr)
|
|
||||||
http.Error(w, "Directory not found", http.StatusNotFound)
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
// List the directory
|
// List the directory
|
||||||
dirEntries, err := fs.ListDirSorted(s.f, false, dirRemote)
|
node, err := s.vfs.Stat(dirRemote)
|
||||||
if err == fs.ErrorDirNotFound {
|
if err == vfs.ENOENT {
|
||||||
fs.Infof(dirRemote, "%s: Directory not found", r.RemoteAddr)
|
|
||||||
http.Error(w, "Directory not found", http.StatusNotFound)
|
http.Error(w, "Directory not found", http.StatusNotFound)
|
||||||
return
|
return
|
||||||
} else if err != nil {
|
} else if err != nil {
|
||||||
internalError(dirRemote, w, "Failed to list directory", err)
|
internalError(dirRemote, w, "Failed to list directory", err)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
if !node.IsDir() {
|
||||||
|
http.Error(w, "Not a directory", http.StatusNotFound)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
dir := node.(*vfs.Dir)
|
||||||
|
dirEntries, err := dir.ReadDirAll()
|
||||||
|
if err != nil {
|
||||||
|
internalError(dirRemote, w, "Failed to list directory", err)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
var out entries
|
var out entries
|
||||||
for _, o := range dirEntries {
|
for _, node := range dirEntries {
|
||||||
remote := strings.Trim(o.Remote(), "/")
|
obj := node.DirEntry()
|
||||||
|
remote := strings.Trim(obj.Remote(), "/")
|
||||||
leaf := path.Base(remote)
|
leaf := path.Base(remote)
|
||||||
urlRemote := leaf
|
urlRemote := leaf
|
||||||
if _, ok := o.(*fs.Dir); ok {
|
if node.IsDir() {
|
||||||
leaf += "/"
|
leaf += "/"
|
||||||
urlRemote += "/"
|
urlRemote += "/"
|
||||||
}
|
}
|
||||||
@ -199,9 +199,8 @@ func (s *server) serveDir(w http.ResponseWriter, r *http.Request, dirRemote stri
|
|||||||
|
|
||||||
// serveFile serves a file object at remote
|
// serveFile serves a file object at remote
|
||||||
func (s *server) serveFile(w http.ResponseWriter, r *http.Request, remote string) {
|
func (s *server) serveFile(w http.ResponseWriter, r *http.Request, remote string) {
|
||||||
// FIXME could cache the directories and objects...
|
node, err := s.vfs.Stat(remote)
|
||||||
obj, err := s.f.NewObject(remote)
|
if err == vfs.ENOENT {
|
||||||
if err == fs.ErrorObjectNotFound {
|
|
||||||
fs.Infof(remote, "%s: File not found", r.RemoteAddr)
|
fs.Infof(remote, "%s: File not found", r.RemoteAddr)
|
||||||
http.Error(w, "File not found", http.StatusNotFound)
|
http.Error(w, "File not found", http.StatusNotFound)
|
||||||
return
|
return
|
||||||
@ -209,16 +208,15 @@ func (s *server) serveFile(w http.ResponseWriter, r *http.Request, remote string
|
|||||||
internalError(remote, w, "Failed to find file", err)
|
internalError(remote, w, "Failed to find file", err)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
if !node.IsFile() {
|
||||||
// Check the object is included in the filters
|
http.Error(w, "Not a file", http.StatusNotFound)
|
||||||
if !fs.Config.Filter.IncludeObject(obj) {
|
|
||||||
fs.Infof(remote, "%s: File not found (filtered)", r.RemoteAddr)
|
|
||||||
http.Error(w, "File not found", http.StatusNotFound)
|
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
obj := node.DirEntry().(fs.Object)
|
||||||
|
file := node.(*vfs.File)
|
||||||
|
|
||||||
// Set content length since we know how long the object is
|
// Set content length since we know how long the object is
|
||||||
w.Header().Set("Content-Length", strconv.FormatInt(obj.Size(), 10))
|
w.Header().Set("Content-Length", strconv.FormatInt(node.Size(), 10))
|
||||||
|
|
||||||
// Set content type
|
// Set content type
|
||||||
mimeType := fs.MimeType(obj)
|
mimeType := fs.MimeType(obj)
|
||||||
@ -234,7 +232,7 @@ func (s *server) serveFile(w http.ResponseWriter, r *http.Request, remote string
|
|||||||
}
|
}
|
||||||
|
|
||||||
// open the object
|
// open the object
|
||||||
in, err := obj.Open()
|
in, err := file.OpenRead()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
internalError(remote, w, "Failed to open file", err)
|
internalError(remote, w, "Failed to open file", err)
|
||||||
return
|
return
|
||||||
@ -249,12 +247,8 @@ func (s *server) serveFile(w http.ResponseWriter, r *http.Request, remote string
|
|||||||
// Account the transfer
|
// Account the transfer
|
||||||
fs.Stats.Transferring(remote)
|
fs.Stats.Transferring(remote)
|
||||||
defer fs.Stats.DoneTransferring(remote, true)
|
defer fs.Stats.DoneTransferring(remote, true)
|
||||||
in = fs.NewAccount(in, obj).WithBuffer() // account the transfer
|
// FIXME in = fs.NewAccount(in, obj).WithBuffer() // account the transfer
|
||||||
|
|
||||||
// Copy the contents of the object to the output
|
// Serve the file
|
||||||
fs.Infof(remote, "%s: Serving file", r.RemoteAddr)
|
http.ServeContent(w, r, remote, node.ModTime(), in)
|
||||||
_, err = io.Copy(w, in)
|
|
||||||
if err != nil {
|
|
||||||
fs.Errorf(remote, "Failed to write file: %v", err)
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -23,12 +23,7 @@ const (
|
|||||||
)
|
)
|
||||||
|
|
||||||
func startServer(t *testing.T, f fs.Fs) {
|
func startServer(t *testing.T, f fs.Fs) {
|
||||||
s := server{
|
s := newServer(f, testBindAddress)
|
||||||
f: f,
|
|
||||||
bindAddress: testBindAddress,
|
|
||||||
readWrite: false,
|
|
||||||
}
|
|
||||||
|
|
||||||
go s.serve()
|
go s.serve()
|
||||||
|
|
||||||
// try to connect to the test server
|
// try to connect to the test server
|
||||||
@ -81,12 +76,13 @@ func checkGolden(t *testing.T, fileName string, got []byte) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestGets(t *testing.T) {
|
func TestGET(t *testing.T) {
|
||||||
for _, test := range []struct {
|
for _, test := range []struct {
|
||||||
URL string
|
URL string
|
||||||
Status int
|
Status int
|
||||||
Golden string
|
Golden string
|
||||||
Method string
|
Method string
|
||||||
|
Range string
|
||||||
}{
|
}{
|
||||||
{
|
{
|
||||||
URL: "",
|
URL: "",
|
||||||
@ -152,6 +148,29 @@ func TestGets(t *testing.T) {
|
|||||||
Status: http.StatusMethodNotAllowed,
|
Status: http.StatusMethodNotAllowed,
|
||||||
Golden: "testdata/golden/onepost.txt",
|
Golden: "testdata/golden/onepost.txt",
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
URL: "two.txt",
|
||||||
|
Status: http.StatusOK,
|
||||||
|
Golden: "testdata/golden/two.txt",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
URL: "two.txt",
|
||||||
|
Status: http.StatusPartialContent,
|
||||||
|
Range: "bytes=2-5",
|
||||||
|
Golden: "testdata/golden/two2-5.txt",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
URL: "two.txt",
|
||||||
|
Status: http.StatusPartialContent,
|
||||||
|
Range: "bytes=0-6",
|
||||||
|
Golden: "testdata/golden/two-6.txt",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
URL: "two.txt",
|
||||||
|
Status: http.StatusPartialContent,
|
||||||
|
Range: "bytes=3-",
|
||||||
|
Golden: "testdata/golden/two3-.txt",
|
||||||
|
},
|
||||||
} {
|
} {
|
||||||
method := test.Method
|
method := test.Method
|
||||||
if method == "" {
|
if method == "" {
|
||||||
@ -159,6 +178,9 @@ func TestGets(t *testing.T) {
|
|||||||
}
|
}
|
||||||
req, err := http.NewRequest(method, testURL+test.URL, nil)
|
req, err := http.NewRequest(method, testURL+test.URL, nil)
|
||||||
require.NoError(t, err)
|
require.NoError(t, err)
|
||||||
|
if test.Range != "" {
|
||||||
|
req.Header.Add("Range", test.Range)
|
||||||
|
}
|
||||||
resp, err := http.DefaultClient.Do(req)
|
resp, err := http.DefaultClient.Do(req)
|
||||||
require.NoError(t, err)
|
require.NoError(t, err)
|
||||||
assert.Equal(t, test.Status, resp.StatusCode, test.Golden)
|
assert.Equal(t, test.Status, resp.StatusCode, test.Golden)
|
||||||
|
2
cmd/serve/http/testdata/files/two.txt
vendored
2
cmd/serve/http/testdata/files/two.txt
vendored
@ -1 +1 @@
|
|||||||
two
|
0123456789
|
||||||
|
1
cmd/serve/http/testdata/golden/two-6.txt
vendored
Normal file
1
cmd/serve/http/testdata/golden/two-6.txt
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
0123456
|
1
cmd/serve/http/testdata/golden/two.txt
vendored
Normal file
1
cmd/serve/http/testdata/golden/two.txt
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
0123456789
|
1
cmd/serve/http/testdata/golden/two2-5.txt
vendored
Normal file
1
cmd/serve/http/testdata/golden/two2-5.txt
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
2345
|
1
cmd/serve/http/testdata/golden/two3-.txt
vendored
Normal file
1
cmd/serve/http/testdata/golden/two3-.txt
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
3456789
|
Loading…
Reference in New Issue
Block a user