gowebdav/client.go

372 lines
7.7 KiB
Go
Raw Normal View History

2014-10-23 10:39:55 +02:00
package gowebdav
import (
2014-10-27 14:32:16 +01:00
"bytes"
2014-10-23 10:39:55 +02:00
"encoding/xml"
2014-10-27 15:17:54 +01:00
"io"
2014-10-23 10:39:55 +02:00
"net/http"
"net/url"
"os"
pathpkg "path"
2014-10-23 10:39:55 +02:00
"strings"
"time"
2014-10-23 10:39:55 +02:00
)
// Client defines our structure
2014-10-23 10:39:55 +02:00
type Client struct {
root string
headers http.Header
c *http.Client
auth Authenticator
2014-10-23 10:39:55 +02:00
}
// Authenticator stub
type Authenticator interface {
Type() string
User() string
Pass() string
Authorize(*Client, string, string)
}
2014-10-23 10:39:55 +02:00
// NoAuth structure holds our credentials
type NoAuth struct {
user string
pw string
}
// Type identifies the authenticator
func (n *NoAuth) Type() string {
return "NoAuth"
}
2014-10-23 10:39:55 +02:00
// User returns the current user
func (n *NoAuth) User() string {
return n.user
}
// Pass returns the current password
func (n *NoAuth) Pass() string {
return n.pw
}
2014-10-23 10:39:55 +02:00
// Authorize the current request
func (n *NoAuth) Authorize(c *Client, method string, path string) {
}
// NewClient creates a new instance of client
func NewClient(uri, user, pw string) *Client {
return &Client{FixSlash(uri), make(http.Header), &http.Client{}, &NoAuth{user, pw}}
2014-10-23 10:39:55 +02:00
}
2018-05-16 12:35:57 +02:00
// SetHeader lets us set arbitrary headers for a given client
2016-07-27 14:36:21 +02:00
func (c *Client) SetHeader(key, value string) {
c.headers.Add(key, value)
}
// SetTimeout exposes the ability to set a time limit for requests
2018-05-15 11:51:53 +02:00
func (c *Client) SetTimeout(timeout time.Duration) {
c.c.Timeout = timeout
}
// SetTransport exposes the ability to define custom transports
2017-08-07 12:13:13 +02:00
func (c *Client) SetTransport(transport http.RoundTripper) {
c.c.Transport = transport
}
// Connect connects to our dav server
2014-10-23 10:39:55 +02:00
func (c *Client) Connect() error {
rs, err := c.options("/")
if err != nil {
return err
}
2014-10-23 10:39:55 +02:00
err = rs.Body.Close()
if err != nil {
return err
}
if rs.StatusCode != 200 {
return newPathError("Connect", c.root, rs.StatusCode)
}
2014-10-23 10:39:55 +02:00
return nil
2014-10-23 10:39:55 +02:00
}
type props struct {
2017-11-26 17:23:14 +01:00
Status string `xml:"DAV: status"`
Name string `xml:"DAV: prop>displayname,omitempty"`
Type xml.Name `xml:"DAV: prop>resourcetype>collection,omitempty"`
Size string `xml:"DAV: prop>getcontentlength,omitempty"`
ContentType string `xml:"DAV: prop>getcontenttype,omitempty"`
ETag string `xml:"DAV: prop>getetag,omitempty"`
Modified string `xml:"DAV: prop>getlastmodified,omitempty"`
2014-10-23 10:39:55 +02:00
}
2016-10-21 10:34:34 +02:00
2014-10-23 10:39:55 +02:00
type response struct {
Href string `xml:"DAV: href"`
Props []props `xml:"DAV: propstat"`
}
2014-10-23 11:28:46 +02:00
func getProps(r *response, status string) *props {
2014-10-23 10:39:55 +02:00
for _, prop := range r.Props {
if strings.Contains(prop.Status, status) {
2014-10-23 10:39:55 +02:00
return &prop
}
}
return nil
}
// ReadDir reads the contents of a remote directory
func (c *Client) ReadDir(path string) ([]os.FileInfo, error) {
2014-10-23 14:26:08 +02:00
path = FixSlashes(path)
files := make([]os.FileInfo, 0)
2014-10-23 13:38:49 +02:00
skipSelf := true
2014-10-24 12:39:35 +02:00
parse := func(resp interface{}) error {
2014-10-23 10:39:55 +02:00
r := resp.(*response)
2014-10-23 13:38:49 +02:00
if skipSelf {
skipSelf = false
2014-10-24 12:39:35 +02:00
if p := getProps(r, "200"); p != nil && p.Type.Local == "collection" {
r.Props = nil
return nil
}
return newPathError("ReadDir", path, 405)
2014-10-23 13:38:49 +02:00
}
2014-10-23 10:39:55 +02:00
if p := getProps(r, "200"); p != nil {
f := new(File)
if ps, err := url.QueryUnescape(r.Href); err == nil {
f.name = pathpkg.Base(ps)
} else {
f.name = p.Name
}
2014-10-23 13:38:16 +02:00
f.path = path + f.name
2015-12-09 10:02:37 +01:00
f.modified = parseModified(&p.Modified)
2017-11-26 17:23:14 +01:00
f.etag = p.ETag
f.contentType = p.ContentType
2014-10-23 10:39:55 +02:00
if p.Type.Local == "collection" {
2014-10-23 13:38:16 +02:00
f.path += "/"
f.size = 0
f.isdir = true
2014-10-23 10:39:55 +02:00
} else {
f.size = parseInt64(&p.Size)
f.isdir = false
2014-10-23 10:39:55 +02:00
}
files = append(files, *f)
2014-10-23 10:39:55 +02:00
}
2014-10-23 13:38:16 +02:00
r.Props = nil
2014-10-24 12:39:35 +02:00
return nil
2014-10-23 10:39:55 +02:00
}
2014-10-23 15:31:34 +02:00
err := c.propfind(path, false,
2014-10-23 10:39:55 +02:00
`<d:propfind xmlns:d='DAV:'>
<d:prop>
<d:displayname/>
<d:resourcetype/>
<d:getcontentlength/>
2017-11-26 17:23:14 +01:00
<d:getcontenttype/>
<d:getetag/>
2014-10-23 10:39:55 +02:00
<d:getlastmodified/>
</d:prop>
</d:propfind>`,
&response{},
parse)
2014-10-24 12:39:35 +02:00
2014-10-24 11:38:11 +02:00
if err != nil {
2014-10-24 12:39:35 +02:00
if _, ok := err.(*os.PathError); !ok {
2018-05-23 14:15:46 +02:00
err = newPathErrorErr("ReadDir", path, err)
2014-10-24 12:39:35 +02:00
}
2014-10-24 11:38:11 +02:00
}
return files, err
2014-10-23 10:39:55 +02:00
}
// Stat returns the file stats for a specified path
2014-10-27 17:02:28 +01:00
func (c *Client) Stat(path string) (os.FileInfo, error) {
var f *File
2014-10-27 17:02:28 +01:00
parse := func(resp interface{}) error {
r := resp.(*response)
if p := getProps(r, "200"); p != nil && f == nil {
f = new(File)
f.name = p.Name
f.path = path
2017-11-26 17:23:14 +01:00
f.etag = p.ETag
f.contentType = p.ContentType
2014-10-27 17:02:28 +01:00
if p.Type.Local == "collection" {
if !strings.HasSuffix(f.path, "/") {
f.path += "/"
}
f.size = 0
f.modified = time.Unix(0, 0)
f.isdir = true
} else {
f.size = parseInt64(&p.Size)
f.modified = parseModified(&p.Modified)
f.isdir = false
}
}
r.Props = nil
return nil
}
err := c.propfind(path, true,
`<d:propfind xmlns:d='DAV:'>
<d:prop>
<d:displayname/>
<d:resourcetype/>
<d:getcontentlength/>
2017-11-26 17:23:14 +01:00
<d:getcontenttype/>
<d:getetag/>
2014-10-27 17:02:28 +01:00
<d:getlastmodified/>
</d:prop>
</d:propfind>`,
&response{},
parse)
if err != nil {
if _, ok := err.(*os.PathError); !ok {
2018-05-23 14:15:46 +02:00
err = newPathErrorErr("ReadDir", path, err)
2014-10-27 17:02:28 +01:00
}
}
return f, err
}
// Remove removes a remote file
2014-10-23 14:10:31 +02:00
func (c *Client) Remove(path string) error {
2014-10-24 12:01:54 +02:00
return c.RemoveAll(path)
}
// RemoveAll removes remote files
2014-10-24 12:01:54 +02:00
func (c *Client) RemoveAll(path string) error {
2014-10-27 16:19:17 +01:00
rs, err := c.req("DELETE", path, nil, nil)
2014-10-23 14:10:31 +02:00
if err != nil {
2014-10-24 11:38:11 +02:00
return newPathError("Remove", path, 400)
2014-10-23 14:10:31 +02:00
}
err = rs.Body.Close()
if err != nil {
return err
}
2014-10-23 14:10:31 +02:00
2018-05-15 11:51:59 +02:00
if rs.StatusCode == 200 || rs.StatusCode == 204 || rs.StatusCode == 404 {
2014-10-23 14:10:31 +02:00
return nil
}
return newPathError("Remove", path, rs.StatusCode)
2014-10-23 14:10:31 +02:00
}
// Mkdir makes a directory
2014-10-24 11:30:08 +02:00
func (c *Client) Mkdir(path string, _ os.FileMode) error {
2014-10-23 15:00:20 +02:00
path = FixSlashes(path)
2014-10-23 15:31:34 +02:00
status := c.mkcol(path)
2014-10-23 15:00:20 +02:00
if status == 201 {
return nil
}
return newPathError("Mkdir", path, status)
2014-10-23 15:00:20 +02:00
}
// MkdirAll like mkdir -p, but for webdav
2014-10-24 11:31:16 +02:00
func (c *Client) MkdirAll(path string, _ os.FileMode) error {
path = FixSlashes(path)
status := c.mkcol(path)
if status == 201 {
return nil
} else if status == 409 {
paths := strings.Split(path, "/")
sub := "/"
for _, e := range paths {
if e == "" {
continue
}
sub += e + "/"
status = c.mkcol(sub)
if status != 201 {
return newPathError("MkdirAll", sub, status)
}
}
return nil
}
return newPathError("MkdirAll", path, status)
}
2014-10-24 11:30:08 +02:00
// Rename moves a file from A to B
2018-05-23 14:15:46 +02:00
func (c *Client) Rename(oldpath, newpath string, overwrite bool) error {
2014-10-24 14:08:42 +02:00
return c.copymove("MOVE", oldpath, newpath, overwrite)
}
// Copy copies a file from A to B
2018-05-23 14:15:46 +02:00
func (c *Client) Copy(oldpath, newpath string, overwrite bool) error {
2014-10-24 14:08:42 +02:00
return c.copymove("COPY", oldpath, newpath, overwrite)
}
// Read reads the contents of a remote file
2014-10-27 14:32:16 +01:00
func (c *Client) Read(path string) ([]byte, error) {
var stream io.ReadCloser
var err error
if stream, err = c.ReadStream(path); err != nil {
2014-10-27 15:17:54 +01:00
return nil, err
}
2018-05-17 01:17:14 +02:00
defer stream.Close()
buf := new(bytes.Buffer)
_, err = buf.ReadFrom(stream)
if err != nil {
return nil, err
}
return buf.Bytes(), nil
2014-10-27 15:17:54 +01:00
}
// ReadStream reads the stream for a given path
2014-10-27 15:17:54 +01:00
func (c *Client) ReadStream(path string) (io.ReadCloser, error) {
2014-10-27 16:19:17 +01:00
rs, err := c.req("GET", path, nil, nil)
2014-10-27 14:32:16 +01:00
if err != nil {
2014-10-27 15:17:54 +01:00
return nil, newPathErrorErr("ReadStream", path, err)
2014-10-27 14:32:16 +01:00
}
2018-05-16 12:35:57 +02:00
if rs.StatusCode == 200 {
return rs.Body, nil
}
2018-05-16 12:35:57 +02:00
rs.Body.Close()
return nil, newPathError("ReadStream", path, rs.StatusCode)
2014-10-27 14:32:16 +01:00
}
// Write writes data to a given path
2014-10-27 14:32:16 +01:00
func (c *Client) Write(path string, data []byte, _ os.FileMode) error {
s := c.put(path, bytes.NewReader(data))
switch s {
2016-10-21 10:34:34 +02:00
case 200, 201, 204:
2014-10-27 14:32:16 +01:00
return nil
case 409:
if err := c.createParentCollection(path); err == nil {
s = c.put(path, bytes.NewReader(data))
if s == 200 || s == 201 || s == 204 {
return nil
2014-10-27 14:32:16 +01:00
}
}
}
2014-10-27 14:32:16 +01:00
return newPathError("Write", path, s)
2014-10-23 10:39:55 +02:00
}
2014-10-27 15:17:54 +01:00
// WriteStream writes a stream
2014-10-27 15:17:54 +01:00
func (c *Client) WriteStream(path string, stream io.Reader, _ os.FileMode) error {
c.createParentCollection(path)
2014-10-27 15:17:54 +01:00
s := c.put(path, stream)
switch s {
2016-10-21 10:34:34 +02:00
case 200, 201, 204:
2014-10-27 15:17:54 +01:00
return nil
default:
return newPathError("WriteStream", path, s)
}
}