mirror of
https://github.com/1f349/go-webdav.git
synced 2024-12-22 16:24:14 +00:00
internal: allow Response.DecodeProp to decode multiple values
This commit is contained in:
parent
3e41eefd12
commit
63cdea07be
@ -131,26 +131,30 @@ func IsMissingProp(err error) bool {
|
||||
return ok
|
||||
}
|
||||
|
||||
func (resp *Response) DecodeProp(v interface{}) error {
|
||||
// TODO wrap errors with more context (XML name)
|
||||
name, err := valueXMLName(v)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
if err := resp.Status.Err(); err != nil {
|
||||
return err
|
||||
}
|
||||
for _, propstat := range resp.Propstats {
|
||||
raw := propstat.Prop.Get(name)
|
||||
if raw == nil {
|
||||
continue
|
||||
}
|
||||
if err := propstat.Status.Err(); err != nil {
|
||||
func (resp *Response) DecodeProp(values ...interface{}) error {
|
||||
for _, v := range values {
|
||||
// TODO wrap errors with more context (XML name)
|
||||
name, err := valueXMLName(v)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
return raw.Decode(v)
|
||||
if err := resp.Status.Err(); err != nil {
|
||||
return err
|
||||
}
|
||||
for _, propstat := range resp.Propstats {
|
||||
raw := propstat.Prop.Get(name)
|
||||
if raw == nil {
|
||||
continue
|
||||
}
|
||||
if err := propstat.Status.Err(); err != nil {
|
||||
return err
|
||||
}
|
||||
return raw.Decode(v)
|
||||
}
|
||||
return &missingPropError{name}
|
||||
}
|
||||
return &missingPropError{name}
|
||||
|
||||
return nil
|
||||
}
|
||||
|
||||
func (resp *Response) EncodeProp(code int, v interface{}) error {
|
||||
|
Loading…
Reference in New Issue
Block a user