-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patherrs.go
More file actions
376 lines (326 loc) · 7.35 KB
/
errs.go
File metadata and controls
376 lines (326 loc) · 7.35 KB
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
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
package errs
import (
"errors"
"fmt"
"net/http"
)
// Errors wrapper structure
type ErrorWrapper struct {
Action string `json:"action"` // Human readable action that origin the error.
Message string `json:"message"` // Human readable message for clients.
Payload map[string]string `json:"payload"` // Extra information for logs purposes.
Code int `json:"-"` // HTTP Status code. `-` is used to skip json marshaling.
Err error `json:"-"` // The original error. Same reason as above.
}
// Returns Message if Err is nil.
func (err ErrorWrapper) Error() string {
// guard against panics
if err.Err != nil {
return err.Err.Error()
}
return err.Message
}
// Implements the errors.Unwrap interface
func (err ErrorWrapper) Unwrap() error {
return err.Err // Returns inner error
}
// Returns the inner most ErrorWrapper
func (err ErrorWrapper) Dig() ErrorWrapper {
var ew ErrorWrapper
if errors.As(err.Err, &ew) {
// Recursively digs until wrapper error is not in which case it will stop
return ew.Dig()
}
return err
}
// Add a value to payload - if the key already exists the value will be overrite
func (err *ErrorWrapper) AddPayloadValue(key string, value string) {
if err.Payload == nil {
err.Payload = map[string]string{key: value}
} else {
err.Payload[key] = value
}
}
// Adds values to payload - if a key already exists the value will be overrite
func (err *ErrorWrapper) AddPayloadValues(values map[string]string) {
if err.Payload == nil {
err.Payload = values
} else {
for k, v := range values {
err.Payload[k] = v
}
}
}
// Returns the values of action and message as json
func (err ErrorWrapper) AsJSONResponse() map[string]string {
return map[string]string{
"action": err.Action,
"message": err.Message,
}
}
// Returns the inner ErrorWrapper or a generic one
func DecodeError(err error) ErrorWrapper {
var ew ErrorWrapper
if errors.As(err, &ew) {
return ew
}
return ErrorWrapper{
Action: "generic",
Message: "Internal Server Error",
Code: http.StatusInternalServerError,
Err: err,
Payload: nil,
}
}
// Returns a generic wrapped error
func NewErrorWrapper(
action string,
message string,
code int,
err error,
payload map[string]string,
) error {
ew := ErrorWrapper{
Action: action,
Message: message,
Code: code,
Err: err,
Payload: payload,
}
ew.AddPayloadValues(map[string]string{
"code": fmt.Sprint(code),
"human_message": message,
})
return ew
}
// Returns a wrapped error of type Bad Request - Http code 400
func NewBadRequestError(
action string,
message string,
err error,
payload map[string]string,
) error {
code := http.StatusBadRequest
ew := ErrorWrapper{
Action: action,
Message: message,
Code: code,
Err: err,
Payload: payload,
}
ew.AddPayloadValues(map[string]string{
"code": fmt.Sprint(code),
"human_message": message,
})
return ew
}
// Returns a wrapped error of type Unauthorized - Http code 401
func NewUnauthorizedError(
action string,
message string,
err error,
payload map[string]string,
) error {
code := http.StatusUnauthorized
ew := ErrorWrapper{
Action: action,
Message: message,
Code: code,
Err: err,
Payload: payload,
}
ew.AddPayloadValues(map[string]string{
"code": fmt.Sprint(code),
"human_message": message,
})
return ew
}
// Returns a wrapped error of type Payment Required - Http code 402
func NewPaymentRequiredError(
action string,
message string,
err error,
payload map[string]string,
) error {
code := http.StatusPaymentRequired
ew := ErrorWrapper{
Action: action,
Message: message,
Code: code,
Err: err,
Payload: payload,
}
ew.AddPayloadValues(map[string]string{
"code": fmt.Sprint(code),
"human_message": message,
})
return ew
}
// Returns a wrapped error of type Forbidden - Http code 403
func NewForbiddenError(
action string,
message string,
err error,
payload map[string]string,
) error {
code := http.StatusForbidden
ew := ErrorWrapper{
Action: action,
Message: message,
Code: code,
Err: err,
Payload: payload,
}
ew.AddPayloadValues(map[string]string{
"code": fmt.Sprint(code),
"human_message": message,
})
return ew
}
// Returns a wrapped error of type Not Found - Http code 404
func NewNotFoundError(
action string,
message string,
err error,
payload map[string]string,
) error {
code := http.StatusNotFound
ew := ErrorWrapper{
Action: action,
Message: message,
Code: code,
Err: err,
Payload: payload,
}
ew.AddPayloadValues(map[string]string{
"code": fmt.Sprint(code),
"human_message": message,
})
return ew
}
// Returns a wrapped error of type Unprocessable Entity - Http code 422
func NewUnprocessableEntityError(
action string,
message string,
err error,
payload map[string]string,
) error {
code := http.StatusUnprocessableEntity
ew := ErrorWrapper{
Action: action,
Message: message,
Code: code,
Err: err,
Payload: payload,
}
ew.AddPayloadValues(map[string]string{
"code": fmt.Sprint(code),
"human_message": message,
})
return ew
}
// Returns a wrapped error of type Internal Server Error - Http code 500
func NewInternalServerError(
action string,
message string,
err error,
payload map[string]string,
) error {
code := http.StatusInternalServerError
ew := ErrorWrapper{
Action: action,
Message: message,
Code: code,
Err: err,
Payload: payload,
}
ew.AddPayloadValues(map[string]string{
"code": fmt.Sprint(code),
"human_message": message,
})
return ew
}
// Returns a wrapped error of type Not Implemented - Http code 501
func NewNotImplementedError(
action string,
message string,
err error,
payload map[string]string,
) error {
code := http.StatusNotImplemented
ew := ErrorWrapper{
Action: action,
Message: message,
Code: code,
Err: err,
Payload: payload,
}
ew.AddPayloadValues(map[string]string{
"code": fmt.Sprint(code),
"human_message": message,
})
return ew
}
// Returns a wrapped error of type Bad Gateway - Http code 502
func NewBadGatewayError(
action string,
message string,
err error,
payload map[string]string,
) error {
code := http.StatusBadGateway
ew := ErrorWrapper{
Action: action,
Message: message,
Code: code,
Err: err,
Payload: payload,
}
ew.AddPayloadValues(map[string]string{
"code": fmt.Sprint(code),
"human_message": message,
})
return ew
}
// Returns a wrapped error of type Service Unavailable - Http code 503
func NewServiceUnavailableError(
action string,
message string,
err error,
payload map[string]string,
) error {
code := http.StatusServiceUnavailable
ew := ErrorWrapper{
Action: action,
Message: message,
Code: code,
Err: err,
Payload: payload,
}
ew.AddPayloadValues(map[string]string{
"code": fmt.Sprint(code),
"human_message": message,
})
return ew
}
// Returns a wrapped error of type Gateway Timeout - Http code 504
func NewGatewayTimeoutError(
action string,
message string,
err error,
payload map[string]string,
) error {
code := http.StatusGatewayTimeout
ew := ErrorWrapper{
Action: action,
Message: message,
Code: code,
Err: err,
Payload: payload,
}
ew.AddPayloadValues(map[string]string{
"code": fmt.Sprint(code),
"human_message": message,
})
return ew
}