mirror of
https://gitlab.bertha.cloud/partitio/Nextcloud-Partitio/gonextcloud
synced 2024-11-14 06:06:24 +00:00
59 lines
1.2 KiB
Go
59 lines
1.2 KiB
Go
package types
|
|
|
|
import (
|
|
"fmt"
|
|
"strings"
|
|
)
|
|
|
|
//APIError contains the returned error code and message from the Nextcloud's API
|
|
type APIError struct {
|
|
Code int
|
|
Message string
|
|
}
|
|
|
|
//ErrorFromMeta return a types.APIError from the Response's types.Meta
|
|
func ErrorFromMeta(meta Meta) *APIError {
|
|
return &APIError{
|
|
meta.Statuscode,
|
|
meta.Message,
|
|
}
|
|
}
|
|
|
|
//Error return the types.APIError string
|
|
func (e *APIError) Error() string {
|
|
return fmt.Sprintf("%d : %s", e.Code, e.Message)
|
|
}
|
|
|
|
//UpdateError contains the user's field and corresponding error
|
|
type UpdateError struct {
|
|
Field string
|
|
Error error
|
|
}
|
|
|
|
//UpdateError contains the errors resulting from a UserUpdate or a UserCreateFull call
|
|
type UserUpdateError struct {
|
|
Errors map[string]error
|
|
}
|
|
|
|
func (e *UserUpdateError) Error() string {
|
|
var errors []string
|
|
for k, e := range e.Errors {
|
|
errors = append(errors, fmt.Sprintf("%s: %v", k, e))
|
|
}
|
|
return strings.Join(errors, ", ")
|
|
}
|
|
|
|
//NewUpdateError returns an UpdateError based on an UpdateError channel
|
|
func NewUpdateError(errors chan *UpdateError) *UserUpdateError {
|
|
ue := UserUpdateError{map[string]error{}}
|
|
for e := range errors {
|
|
if e != nil {
|
|
ue.Errors[e.Field] = e.Error
|
|
}
|
|
}
|
|
if len(ue.Errors) > 0 {
|
|
return &ue
|
|
}
|
|
return nil
|
|
}
|