webdav: add DELETE support to server

This commit is contained in:
Simon Ser
2020-01-21 21:46:01 +01:00
parent 69f88b075a
commit 41b68829e8
5 changed files with 51 additions and 17 deletions

View File

@@ -24,6 +24,7 @@ type FileSystem interface {
Stat(name string) (os.FileInfo, error)
Readdir(name string) ([]os.FileInfo, error)
Create(name string) (io.WriteCloser, error)
RemoveAll(name string) error
}
// Handler handles WebDAV HTTP requests. It can be used to create a WebDAV
@@ -57,13 +58,14 @@ func (b *backend) Options(r *http.Request) ([]string, error) {
}
if fi.IsDir() {
return []string{http.MethodOptions, "PROPFIND"}, nil
return []string{http.MethodOptions, http.MethodDelete, "PROPFIND"}, nil
} else {
return []string{
http.MethodOptions,
http.MethodHead,
http.MethodGet,
http.MethodPut,
http.MethodDelete,
"PROPFIND",
}, nil
}
@@ -90,20 +92,6 @@ func (b *backend) HeadGet(w http.ResponseWriter, r *http.Request) error {
return nil
}
func (b *backend) Put(r *http.Request) error {
wc, err := b.FileSystem.Create(r.URL.Path)
if err != nil {
return err
}
defer wc.Close()
if _, err := io.Copy(wc, r.Body); err != nil {
return err
}
return wc.Close()
}
func (b *backend) Propfind(r *http.Request, propfind *internal.Propfind, depth internal.Depth) (*internal.Multistatus, error) {
fi, err := b.FileSystem.Stat(r.URL.Path)
if os.IsNotExist(err) {
@@ -182,3 +170,30 @@ func (b *backend) propfindFile(propfind *internal.Propfind, name string, fi os.F
u := url.URL{Path: name}
return internal.NewPropfindResponse(u.String(), propfind, props)
}
func (b *backend) Put(r *http.Request) error {
wc, err := b.FileSystem.Create(r.URL.Path)
if err != nil {
return err
}
defer wc.Close()
if _, err := io.Copy(wc, r.Body); err != nil {
return err
}
return wc.Close()
}
func (b *backend) Delete(r *http.Request) error {
// WebDAV semantics are that it should return a "404 Not Found" error in
// case the resource doesn't exist. We need to Stat before RemoveAll.
_, err := b.FileSystem.Stat(r.URL.Path)
if os.IsNotExist(err) {
return &internal.HTTPError{Code: http.StatusNotFound, Err: err}
} else if err != nil {
return err
}
return b.FileSystem.RemoveAll(r.URL.Path)
}