-
Notifications
You must be signed in to change notification settings - Fork 70
/
Copy patherrors.go
105 lines (91 loc) · 2.97 KB
/
errors.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
package cloudwrapper
import (
"encoding/json"
"errors"
"fmt"
"io/ioutil"
"net/http"
"github.com/akamai/AkamaiOPEN-edgegrid-golang/v9/pkg/errs"
)
type (
// Error is a cloudwrapper error implementation
// For details on possible error types, refer to: https://techdocs.akamai.com/cloud-wrapper/reference/errors
Error struct {
Type string `json:"type,omitempty"`
Title string `json:"title,omitempty"`
Instance string `json:"instance"`
Status int `json:"status"`
Detail string `json:"detail"`
Errors []ErrorItem `json:"errors"`
Method string `json:"method"`
ServerIP string `json:"serverIp"`
ClientIP string `json:"clientIp"`
RequestID string `json:"requestId"`
RequestTime string `json:"requestTime"`
}
// ErrorItem is a cloud wrapper error's item
ErrorItem struct {
Type string `json:"type"`
Title string `json:"title"`
Detail string `json:"detail"`
IllegalValue any `json:"illegalValue"`
IllegalParameter string `json:"illegalParameter"`
}
)
const (
configurationNotFoundType = "/cloud-wrapper/error-types/not-found"
deletionNotAllowedType = "/cloud-wrapper/error-types/forbidden"
)
var (
// ErrConfigurationNotFound is returned when configuration was not found
ErrConfigurationNotFound = errors.New("configuration not found")
// ErrDeletionNotAllowed is returned when user has insufficient permissions to delete configuration
ErrDeletionNotAllowed = errors.New("deletion not allowed")
)
// Error parses an error from the response
func (c *cloudwrapper) Error(r *http.Response) error {
var result Error
var body []byte
body, err := ioutil.ReadAll(r.Body)
if err != nil {
c.Log(r.Request.Context()).Errorf("reading error response body: %s", err)
result.Status = r.StatusCode
result.Title = "Failed to read error body"
result.Detail = err.Error()
return &result
}
if err = json.Unmarshal(body, &result); err != nil {
c.Log(r.Request.Context()).Errorf("could not unmarshal API error: %s", err)
result.Title = "Failed to unmarshal error body. Cloud Wrapper API failed. Check details for more information."
result.Detail = errs.UnescapeContent(string(body))
result.Status = r.StatusCode
}
return &result
}
func (e *Error) Error() string {
msg, err := json.MarshalIndent(e, "", "\t")
if err != nil {
return fmt.Sprintf("error marshaling API error: %s", err)
}
return fmt.Sprintf("API error: \n%s", msg)
}
// Is handles error comparisons
func (e *Error) Is(target error) bool {
if errors.Is(target, ErrConfigurationNotFound) {
return e.Status == http.StatusNotFound && e.Type == configurationNotFoundType
}
if errors.Is(target, ErrDeletionNotAllowed) {
return e.Status == http.StatusForbidden && e.Type == deletionNotAllowedType
}
var t *Error
if !errors.As(target, &t) {
return false
}
if e == t {
return true
}
if e.Status != t.Status {
return false
}
return e.Error() == t.Error()
}