mirror of
https://hubproxy.babadafafafafa.cn/https://github.com/1Panel-dev/1Panel.git
synced 2026-09-21 00:24:12 +08:00
* fix: apply timeout to snapshot uploads * fix: honor snapshot upload timeouts for sftp and upyun
109 lines
2.8 KiB
Go
109 lines
2.8 KiB
Go
package webdav
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"io"
|
|
"net/http"
|
|
"strings"
|
|
)
|
|
|
|
func (c *Client) req(method, path string, body io.Reader, intercept func(*http.Request)) (rs *http.Response, err error) {
|
|
return c.reqWithContext(context.Background(), method, path, body, intercept)
|
|
}
|
|
|
|
func (c *Client) reqWithContext(ctx context.Context, method, path string, body io.Reader, intercept func(*http.Request)) (rs *http.Response, err error) {
|
|
var redo bool
|
|
var r *http.Request
|
|
var uri = PathEscape(Join(c.root, path))
|
|
auth, body := c.auth.NewAuthenticator(body)
|
|
defer auth.Close()
|
|
|
|
for {
|
|
if r, err = http.NewRequestWithContext(ctx, method, uri, body); err != nil {
|
|
err = fmt.Errorf("handle request with uri: %s, method: %s failed, err: %v", uri, method, err)
|
|
return
|
|
}
|
|
|
|
for k, vals := range c.headers {
|
|
for _, v := range vals {
|
|
r.Header.Add(k, v)
|
|
}
|
|
}
|
|
|
|
if err = auth.Authorize(c.c, r, path); err != nil {
|
|
return
|
|
}
|
|
|
|
if intercept != nil {
|
|
intercept(r)
|
|
}
|
|
|
|
if rs, err = c.c.Do(r); err != nil {
|
|
err = fmt.Errorf("do request for resp with uri: %s, method: %s failed, err: %v", uri, method, err)
|
|
return
|
|
}
|
|
|
|
if redo, err = auth.Verify(c.c, rs, path); err != nil {
|
|
rs.Body.Close()
|
|
return nil, err
|
|
}
|
|
if redo {
|
|
rs.Body.Close()
|
|
if body, err = r.GetBody(); err != nil {
|
|
return nil, err
|
|
}
|
|
continue
|
|
}
|
|
break
|
|
}
|
|
|
|
return rs, err
|
|
}
|
|
|
|
func (c *Client) propfind(path string, self bool, body string, resp interface{}, parse func(resp interface{}) error) error {
|
|
return c.propfindWithContext(context.Background(), path, self, body, resp, parse)
|
|
}
|
|
|
|
func (c *Client) propfindWithContext(ctx context.Context, path string, self bool, body string, resp interface{}, parse func(resp interface{}) error) error {
|
|
rs, err := c.reqWithContext(ctx, "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 NewPathError("PROPFIND", path, rs.StatusCode)
|
|
}
|
|
|
|
return parseXML(rs.Body, resp, parse)
|
|
}
|
|
|
|
func (c *Client) put(path string, stream io.Reader, contentLength int64) (status int, err error) {
|
|
return c.putWithContext(context.Background(), path, stream, contentLength)
|
|
}
|
|
|
|
func (c *Client) putWithContext(ctx context.Context, path string, stream io.Reader, contentLength int64) (status int, err error) {
|
|
rs, err := c.reqWithContext(ctx, "PUT", path, stream, func(r *http.Request) {
|
|
r.ContentLength = contentLength
|
|
})
|
|
if err != nil {
|
|
return
|
|
}
|
|
defer rs.Body.Close()
|
|
|
|
status = rs.StatusCode
|
|
return
|
|
}
|