wings/remote/errors.go

65 lines
1.4 KiB
Go
Raw Normal View History

2021-01-10 19:52:54 +00:00
package remote
import (
"fmt"
"net/http"
"emperror.dev/errors"
)
type RequestErrors struct {
Errors []RequestError `json:"errors"`
}
type RequestError struct {
response *http.Response
Code string `json:"code"`
Status string `json:"status"`
Detail string `json:"detail"`
}
// IsRequestError checks if the given error is of the RequestError type.
func IsRequestError(err error) bool {
var rerr *RequestError
if err == nil {
return false
}
return errors.As(err, &rerr)
}
// AsRequestError transforms the error into a RequestError if it is currently
// one, checking the wrap status from the other error handlers. If the error
// is not a RequestError nil is returned.
func AsRequestError(err error) *RequestError {
if err == nil {
return nil
}
var rerr *RequestError
if errors.As(err, &rerr) {
return rerr
}
return nil
}
// Error returns the error response in a string form that can be more easily
// consumed.
func (re *RequestError) Error() string {
c := 0
if re.response != nil {
c = re.response.StatusCode
}
return fmt.Sprintf("Error response from Panel: %s: %s (HTTP/%d)", re.Code, re.Detail, c)
}
// StatusCode returns the status code of the response.
func (re *RequestError) StatusCode() int {
return re.response.StatusCode
}
2021-11-15 17:37:56 +00:00
type SftpInvalidCredentialsError struct{}
2021-02-02 04:59:17 +00:00
func (ice SftpInvalidCredentialsError) Error() string {
return "the credentials provided were invalid"
}