-
Notifications
You must be signed in to change notification settings - Fork 0
/
error.go
191 lines (146 loc) · 5.54 KB
/
error.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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
package raptor
import (
"fmt"
"net/http"
)
type Error struct {
Code int `json:"code"`
Message string `json:"message"`
Description string `json:"description,omitempty"`
}
func (e *Error) Error() string {
return fmt.Sprintf("(%d) %s", e.Code, e.Message)
}
func NewError(code int, descriptions ...string) *Error {
var description string
if len(descriptions) > 0 {
description = descriptions[0]
}
return &Error{
Code: code,
Message: http.StatusText(code),
Description: description,
}
}
// 4xx
func NewErrorBadRequest(descriptions ...string) *Error {
return NewError(http.StatusBadRequest, descriptions...)
}
func NewErrorUnauthorized(descriptions ...string) *Error {
return NewError(http.StatusUnauthorized, descriptions...)
}
func NewErrorPaymentRequired(descriptions ...string) *Error {
return NewError(http.StatusPaymentRequired, descriptions...)
}
func NewErrorForbidden(descriptions ...string) *Error {
return NewError(http.StatusForbidden, descriptions...)
}
func NewErrorNotFound(descriptions ...string) *Error {
return NewError(http.StatusNotFound, descriptions...)
}
func NewErrorMethodNotAllowed(descriptions ...string) *Error {
return NewError(http.StatusMethodNotAllowed, descriptions...)
}
func NewErrorNotAcceptable(descriptions ...string) *Error {
return NewError(http.StatusNotAcceptable, descriptions...)
}
func NewErrorProxyAuthRequired(descriptions ...string) *Error {
return NewError(http.StatusProxyAuthRequired, descriptions...)
}
func NewErrorRequestTimeout(descriptions ...string) *Error {
return NewError(http.StatusRequestTimeout, descriptions...)
}
func NewErrorConflict(descriptions ...string) *Error {
return NewError(http.StatusConflict, descriptions...)
}
func NewErrorGone(descriptions ...string) *Error {
return NewError(http.StatusGone, descriptions...)
}
func NewErrorLengthRequired(descriptions ...string) *Error {
return NewError(http.StatusLengthRequired, descriptions...)
}
func NewErrorPreconditionFailed(descriptions ...string) *Error {
return NewError(http.StatusPreconditionFailed, descriptions...)
}
func NewErrorRequestEntityTooLarge(descriptions ...string) *Error {
return NewError(http.StatusRequestEntityTooLarge, descriptions...)
}
func NewErrorRequestURITooLong(descriptions ...string) *Error {
return NewError(http.StatusRequestURITooLong, descriptions...)
}
func NewErrorUnsupportedMediaType(descriptions ...string) *Error {
return NewError(http.StatusUnsupportedMediaType, descriptions...)
}
func NewErrorRequestedRangeNotSatisfiable(descriptions ...string) *Error {
return NewError(http.StatusRequestedRangeNotSatisfiable, descriptions...)
}
func NewErrorExpectationFailed(descriptions ...string) *Error {
return NewError(http.StatusExpectationFailed, descriptions...)
}
func NewErrorTeapot(descriptions ...string) *Error {
return NewError(http.StatusTeapot, descriptions...)
}
func NewErrorMisdirectedRequest(descriptions ...string) *Error {
return NewError(http.StatusMisdirectedRequest, descriptions...)
}
func NewErrorUnprocessableEntity(descriptions ...string) *Error {
return NewError(http.StatusUnprocessableEntity, descriptions...)
}
func NewErrorLocked(descriptions ...string) *Error {
return NewError(http.StatusLocked, descriptions...)
}
func NewErrorFailedDependency(descriptions ...string) *Error {
return NewError(http.StatusFailedDependency, descriptions...)
}
func NewErrorTooEarly(descriptions ...string) *Error {
return NewError(http.StatusTooEarly, descriptions...)
}
func NewErrorUpgradeRequired(descriptions ...string) *Error {
return NewError(http.StatusUpgradeRequired, descriptions...)
}
func NewErrorPreconditionRequired(descriptions ...string) *Error {
return NewError(http.StatusPreconditionRequired, descriptions...)
}
func NewErrorTooManyRequests(descriptions ...string) *Error {
return NewError(http.StatusTooManyRequests, descriptions...)
}
func NewErrorRequestHeaderFieldsTooLarge(descriptions ...string) *Error {
return NewError(http.StatusRequestHeaderFieldsTooLarge, descriptions...)
}
func NewErrorUnavailableForLegalReasons(descriptions ...string) *Error {
return NewError(http.StatusUnavailableForLegalReasons, descriptions...)
}
// 5xx
func NewErrorInternal(descriptions ...string) *Error {
return NewError(http.StatusInternalServerError, descriptions...)
}
func NewErrorNotImplemented(descriptions ...string) *Error {
return NewError(http.StatusNotImplemented, descriptions...)
}
func NewErrorBadGateway(descriptions ...string) *Error {
return NewError(http.StatusBadGateway, descriptions...)
}
func NewErrorServiceUnavailable(descriptions ...string) *Error {
return NewError(http.StatusServiceUnavailable, descriptions...)
}
func NewErrorGatewayTimeout(descriptions ...string) *Error {
return NewError(http.StatusGatewayTimeout, descriptions...)
}
func NewErrorHTTPVersionNotSupported(descriptions ...string) *Error {
return NewError(http.StatusHTTPVersionNotSupported, descriptions...)
}
func NewErrorVariantAlsoNegotiates(descriptions ...string) *Error {
return NewError(http.StatusVariantAlsoNegotiates, descriptions...)
}
func NewErrorInsufficientStorage(descriptions ...string) *Error {
return NewError(http.StatusInsufficientStorage, descriptions...)
}
func NewErrorLoopDetected(descriptions ...string) *Error {
return NewError(http.StatusLoopDetected, descriptions...)
}
func NewErrorNotExtended(descriptions ...string) *Error {
return NewError(http.StatusNotExtended, descriptions...)
}
func NewErrorNetworkAuthenticationRequired(descriptions ...string) *Error {
return NewError(http.StatusNetworkAuthenticationRequired, descriptions...)
}