-
Notifications
You must be signed in to change notification settings - Fork 70
/
Copy patherrors.go
78 lines (65 loc) · 1.73 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
package botman
import (
"encoding/json"
"errors"
"fmt"
"io"
"net/http"
"strings"
"github.com/akamai/AkamaiOPEN-edgegrid-golang/v10/pkg/errs"
)
type (
// Error is a botman error interface.
Error struct {
Type string `json:"type"`
Title string `json:"title"`
Detail string `json:"detail"`
Errors []Error `json:"errors,omitempty"`
StatusCode int `json:"status,omitempty"`
}
)
func (b *botman) Error(r *http.Response) error {
var e Error
var body []byte
body, err := io.ReadAll(r.Body)
if err != nil {
b.Log(r.Request.Context()).Errorf("reading error response body: %s", err)
e.StatusCode = r.StatusCode
e.Title = "Failed to read error body"
e.Detail = err.Error()
return &e
}
if err := json.Unmarshal(body, &e); err != nil {
b.Log(r.Request.Context()).Errorf("could not unmarshal API error: %s", err)
e.Title = "Failed to unmarshal error body. Bot Manager API failed. Check details for more information."
e.Detail = errs.UnescapeContent(string(body))
}
e.StatusCode = r.StatusCode
return &e
}
// Error returns a string formatted using a given title, type, and detail information.
func (e *Error) Error() string {
detail := e.Detail
if len(e.Errors) > 0 {
var childErrorDetails []string
for _, err := range e.Errors {
childErrorDetails = append(childErrorDetails, err.Detail)
}
detail += ": [" + strings.Join(childErrorDetails, ", ") + " ]"
}
return fmt.Sprintf("Title: %s; Type: %s; Detail: %s", e.Title, e.Type, detail)
}
// Is handles error comparisons.
func (e *Error) Is(target error) bool {
var t *Error
if !errors.As(target, &t) {
return false
}
if e == t {
return true
}
if e.StatusCode != t.StatusCode {
return false
}
return e.Error() == t.Error()
}