-
Notifications
You must be signed in to change notification settings - Fork 104
/
error_http.go
111 lines (94 loc) · 2.91 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
package gocb
import (
"encoding/json"
gocbcore "github.com/couchbase/gocbcore/v10"
"github.com/pkg/errors"
)
// 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"`
}
// 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"`
}{
InnerError: innerError,
UniqueID: e.UniqueID,
Endpoint: e.Endpoint,
RetryReasons: e.RetryReasons,
RetryAttempts: e.RetryAttempts,
})
}
// 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"`
}{
InnerError: e.InnerError,
UniqueID: e.UniqueID,
Endpoint: e.Endpoint,
RetryReasons: e.RetryReasons,
RetryAttempts: e.RetryAttempts,
})
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
}
return err
}
func makeGenericMgmtError(baseErr error, req *mgmtRequest, resp *mgmtResponse) error {
if baseErr == nil {
logErrorf("makeGenericMgmtError 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
}
return err
}
func makeMgmtBadStatusError(message string, req *mgmtRequest, resp *mgmtResponse) error {
return makeGenericMgmtError(errors.New(message), req, resp)
}