-
Notifications
You must be signed in to change notification settings - Fork 104
/
error_http.go
135 lines (117 loc) · 3.67 KB
/
error_http.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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
package gocb
import (
"encoding/json"
"errors"
"github.com/couchbase/gocbcore/v10"
"io"
)
// HTTPError is the error type of management HTTP errors.
// UNCOMMITTED: This API may change in the future.
type HTTPError struct {
InnerError error `json:"-"`
UniqueID string `json:"unique_id,omitempty"`
Endpoint string `json:"endpoint,omitempty"`
RetryReasons []RetryReason `json:"retry_reasons,omitempty"`
RetryAttempts uint32 `json:"retry_attempts,omitempty"`
ErrorText string `json:"error_text,omitempty"`
StatusCode uint32 `json:"status_code,omitempty"`
}
// MarshalJSON implements the Marshaler interface.
func (e HTTPError) MarshalJSON() ([]byte, error) {
var innerError string
if e.InnerError != nil {
innerError = e.InnerError.Error()
}
return json.Marshal(struct {
InnerError string `json:"msg,omitempty"`
UniqueID string `json:"unique_id,omitempty"`
Endpoint string `json:"endpoint,omitempty"`
RetryReasons []RetryReason `json:"retry_reasons,omitempty"`
RetryAttempts uint32 `json:"retry_attempts,omitempty"`
ErrorText string `json:"error_text,omitempty"`
StatusCode uint32 `json:"status_code,omitempty"`
}{
InnerError: innerError,
UniqueID: e.UniqueID,
Endpoint: e.Endpoint,
RetryReasons: e.RetryReasons,
RetryAttempts: e.RetryAttempts,
ErrorText: e.ErrorText,
StatusCode: e.StatusCode,
})
}
// Error returns the string representation of this error.
func (e HTTPError) Error() string {
errBytes, serErr := json.Marshal(struct {
InnerError error `json:"-"`
UniqueID string `json:"unique_id,omitempty"`
Endpoint string `json:"endpoint,omitempty"`
RetryReasons []RetryReason `json:"retry_reasons,omitempty"`
RetryAttempts uint32 `json:"retry_attempts,omitempty"`
ErrorText string `json:"error_text,omitempty"`
StatusCode uint32 `json:"status_code,omitempty"`
}{
InnerError: e.InnerError,
UniqueID: e.UniqueID,
Endpoint: e.Endpoint,
RetryReasons: e.RetryReasons,
RetryAttempts: e.RetryAttempts,
ErrorText: e.ErrorText,
StatusCode: e.StatusCode,
})
if serErr != nil {
logErrorf("failed to serialize error to json: %s", serErr.Error())
}
return e.InnerError.Error() + " | " + string(errBytes)
}
// Unwrap returns the underlying cause for this error.
func (e HTTPError) Unwrap() error {
return e.InnerError
}
func makeGenericHTTPError(baseErr error, req *gocbcore.HTTPRequest, resp *gocbcore.HTTPResponse) error {
if baseErr == nil {
logErrorf("makeGenericHTTPError got an empty error")
baseErr = errors.New("unknown error")
}
err := &HTTPError{
InnerError: baseErr,
}
if req != nil {
err.UniqueID = req.UniqueID
}
if resp != nil {
err.Endpoint = resp.Endpoint
err.StatusCode = uint32(resp.StatusCode)
}
return err
}
func makeGenericMgmtError(baseErr error, req *mgmtRequest, resp *mgmtResponse, errText string) error {
if baseErr == nil {
logErrorf("makeGenericMgmtError got an empty error")
baseErr = errors.New("unknown error")
}
err := &HTTPError{
InnerError: baseErr,
ErrorText: errText,
}
if req != nil {
err.UniqueID = req.UniqueID
}
if resp != nil {
err.Endpoint = resp.Endpoint
err.StatusCode = resp.StatusCode
}
return err
}
func makeMgmtBadStatusError(message string, req *mgmtRequest, resp *mgmtResponse) error {
var errText string
if resp != nil {
b, err := io.ReadAll(resp.Body)
if err != nil {
logDebugf("failed to read http body: %s", err)
return nil
}
errText = string(b)
}
return makeGenericMgmtError(errors.New(message), req, resp, errText)
}