617404b525
Fixes #36
181 lines
4.2 KiB
Go
181 lines
4.2 KiB
Go
package gowebdav
|
|
|
|
import (
|
|
"bytes"
|
|
"fmt"
|
|
"io"
|
|
"net/http"
|
|
"path"
|
|
"strings"
|
|
)
|
|
|
|
func (c *Client) req(method, path string, body io.Reader, intercept func(*http.Request)) (req *http.Response, err error) {
|
|
// Tee the body, because if authorization fails we will need to read from it again.
|
|
var r *http.Request
|
|
var ba bytes.Buffer
|
|
bb := io.TeeReader(body, &ba)
|
|
|
|
if body == nil {
|
|
r, err = http.NewRequest(method, PathEscape(Join(c.root, path)), nil)
|
|
} else {
|
|
r, err = http.NewRequest(method, PathEscape(Join(c.root, path)), bb)
|
|
}
|
|
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
for k, vals := range c.headers {
|
|
for _, v := range vals {
|
|
r.Header.Add(k, v)
|
|
}
|
|
}
|
|
|
|
// make sure we read 'c.auth' only once since it will be substituted below
|
|
// and that is unsafe to do when multiple goroutines are running at the same time.
|
|
c.authMutex.Lock()
|
|
auth := c.auth
|
|
c.authMutex.Unlock()
|
|
|
|
auth.Authorize(r, method, path)
|
|
|
|
if intercept != nil {
|
|
intercept(r)
|
|
}
|
|
|
|
rs, err := c.c.Do(r)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
if rs.StatusCode == 401 && auth.Type() == "NoAuth" {
|
|
wwwAuthenticateHeader := strings.ToLower(rs.Header.Get("Www-Authenticate"))
|
|
|
|
if strings.Index(wwwAuthenticateHeader, "digest") > -1 {
|
|
c.authMutex.Lock()
|
|
c.auth = &DigestAuth{auth.User(), auth.Pass(), digestParts(rs)}
|
|
c.authMutex.Unlock()
|
|
} else if strings.Index(wwwAuthenticateHeader, "basic") > -1 {
|
|
c.authMutex.Lock()
|
|
c.auth = &BasicAuth{auth.User(), auth.Pass()}
|
|
c.authMutex.Unlock()
|
|
} else {
|
|
return rs, newPathError("Authorize", c.root, rs.StatusCode)
|
|
}
|
|
|
|
if body == nil {
|
|
return c.req(method, path, nil, intercept)
|
|
} else {
|
|
return c.req(method, path, &ba, intercept)
|
|
}
|
|
|
|
} else if rs.StatusCode == 401 {
|
|
return rs, newPathError("Authorize", c.root, rs.StatusCode)
|
|
}
|
|
|
|
return rs, err
|
|
}
|
|
|
|
func (c *Client) mkcol(path string) int {
|
|
rs, err := c.req("MKCOL", path, nil, nil)
|
|
if err != nil {
|
|
return 400
|
|
}
|
|
defer rs.Body.Close()
|
|
|
|
if rs.StatusCode == 201 || rs.StatusCode == 405 {
|
|
return 201
|
|
}
|
|
|
|
return rs.StatusCode
|
|
}
|
|
|
|
func (c *Client) options(path string) (*http.Response, error) {
|
|
return c.req("OPTIONS", path, nil, func(rq *http.Request) {
|
|
rq.Header.Add("Depth", "0")
|
|
})
|
|
}
|
|
|
|
func (c *Client) propfind(path string, self bool, body string, resp interface{}, parse func(resp interface{}) error) error {
|
|
rs, err := c.req("PROPFIND", path, strings.NewReader(body), func(rq *http.Request) {
|
|
if self {
|
|
rq.Header.Add("Depth", "0")
|
|
} else {
|
|
rq.Header.Add("Depth", "1")
|
|
}
|
|
rq.Header.Add("Content-Type", "application/xml;charset=UTF-8")
|
|
rq.Header.Add("Accept", "application/xml,text/xml")
|
|
rq.Header.Add("Accept-Charset", "utf-8")
|
|
// TODO add support for 'gzip,deflate;q=0.8,q=0.7'
|
|
rq.Header.Add("Accept-Encoding", "")
|
|
})
|
|
if err != nil {
|
|
return err
|
|
}
|
|
defer rs.Body.Close()
|
|
|
|
if rs.StatusCode != 207 {
|
|
return fmt.Errorf("%s - %s %s", rs.Status, "PROPFIND", path)
|
|
}
|
|
|
|
return parseXML(rs.Body, resp, parse)
|
|
}
|
|
|
|
func (c *Client) doCopyMove(method string, oldpath string, newpath string, overwrite bool) (int, io.ReadCloser) {
|
|
rs, err := c.req(method, oldpath, nil, func(rq *http.Request) {
|
|
rq.Header.Add("Destination", Join(c.root, newpath))
|
|
if overwrite {
|
|
rq.Header.Add("Overwrite", "T")
|
|
} else {
|
|
rq.Header.Add("Overwrite", "F")
|
|
}
|
|
})
|
|
if err != nil {
|
|
return 400, nil
|
|
}
|
|
return rs.StatusCode, rs.Body
|
|
}
|
|
|
|
func (c *Client) copymove(method string, oldpath string, newpath string, overwrite bool) error {
|
|
s, data := c.doCopyMove(method, oldpath, newpath, overwrite)
|
|
defer data.Close()
|
|
|
|
switch s {
|
|
case 201, 204:
|
|
return nil
|
|
|
|
case 207:
|
|
// TODO handle multistat errors, worst case ...
|
|
log(fmt.Sprintf(" TODO handle %s - %s multistatus result %s", method, oldpath, String(data)))
|
|
|
|
case 409:
|
|
err := c.createParentCollection(newpath)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
return c.copymove(method, oldpath, newpath, overwrite)
|
|
}
|
|
|
|
return newPathError(method, oldpath, s)
|
|
}
|
|
|
|
func (c *Client) put(path string, stream io.Reader) int {
|
|
rs, err := c.req("PUT", path, stream, nil)
|
|
if err != nil {
|
|
return 400
|
|
}
|
|
defer rs.Body.Close()
|
|
|
|
return rs.StatusCode
|
|
}
|
|
|
|
func (c *Client) createParentCollection(itemPath string) (err error) {
|
|
parentPath := path.Dir(itemPath)
|
|
if parentPath == "." || parentPath == "/" {
|
|
return nil
|
|
}
|
|
|
|
return c.MkdirAll(parentPath, 0755)
|
|
}
|