go-webdav/client.go

42 lines
792 B
Go
Raw Normal View History

2020-01-14 17:51:17 +00:00
package webdav
import (
"encoding/xml"
2020-01-14 17:51:17 +00:00
"net/http"
"github.com/emersion/go-webdav/internal"
)
type Client struct {
c *internal.Client
}
func NewClient(c *http.Client, endpoint string) (*Client, error) {
ic, err := internal.NewClient(c, endpoint)
if err != nil {
return nil, err
}
return &Client{ic}, nil
}
2020-01-15 22:45:37 +00:00
func (c *Client) SetBasicAuth(username, password string) {
c.c.SetBasicAuth(username, password)
}
2020-01-14 17:51:17 +00:00
func (c *Client) FindCurrentUserPrincipal() (string, error) {
name := xml.Name{"DAV:", "current-user-principal"}
propfind := internal.NewPropNamePropfind(name)
2020-01-14 20:43:09 +00:00
resp, err := c.c.PropfindFlat("/", propfind)
if err != nil {
return "", err
2020-01-14 17:51:17 +00:00
}
2020-01-14 21:19:54 +00:00
var prop currentUserPrincipal
if err := resp.DecodeProp(&prop); err != nil {
2020-01-14 17:51:17 +00:00
return "", err
}
return prop.Href, nil
}