-
Notifications
You must be signed in to change notification settings - Fork 2
/
response.go
67 lines (57 loc) · 1.61 KB
/
response.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
package errors
import "fmt"
// ResponseError 定义响应错误
type ResponseError struct {
Code int // 错误码
Message string // 错误消息
Status int // 响应状态码
ERR error // 响应错误
}
func (r *ResponseError) Error() string {
if r.ERR != nil {
return r.ERR.Error()
}
return r.Message
}
// UnWrapResponse 解包响应错误
func UnWrapResponse(err error) *ResponseError {
if v, ok := err.(*ResponseError); ok {
return v
}
return nil
}
// WrapResponse 包装响应错误
func WrapResponse(err error, code, status int, msg string, args ...interface{}) error {
res := &ResponseError{
Code: code,
Message: fmt.Sprintf(msg, args...),
ERR: err,
Status: status,
}
return res
}
// Wrap400Response 包装错误码为400的响应错误
func Wrap400Response(err error, msg string, args ...interface{}) error {
return WrapResponse(err, 0, 400, msg, args...)
}
// Wrap500Response 包装错误码为500的响应错误
func Wrap500Response(err error, msg string, args ...interface{}) error {
return WrapResponse(err, 0, 500, msg, args...)
}
// NewResponse 创建响应错误
func NewResponse(code, status int, msg string, args ...interface{}) error {
res := &ResponseError{
Code: code,
Message: fmt.Sprintf(msg, args...),
Status: status,
}
return res
}
// New400Response 创建错误码为400的响应错误
func New400Response(msg string, args ...interface{}) error {
return NewResponse(0, 400, msg, args...)
}
// New500Response 创建错误码为500的响应错误
func New500Response(msg string, args ...interface{}) error {
return NewResponse(0, 500, msg, args...)
}