-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathresponse.go
100 lines (84 loc) · 1.65 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
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
package http
import (
"encoding/json"
"net/http"
"strings"
)
// NewResponse 新建回应对象
func NewResponse() *Response {
return &Response{}
}
// ResponseError 响应错误对象
type ResponseError []error
// Error 实现 error 接口
func (e ResponseError) Error() string {
errs := []error(e)
s := []string{}
for _, e := range errs {
s = append(s, e.Error())
}
return strings.Join(s, "\n")
}
// HasErr 是否有错误
func (e ResponseError) HasErr() bool {
if len(e) == 0 {
return false
}
return true
}
// Add 增加错误
func (e ResponseError) Add(err error) ResponseError {
e = append(e, err)
return e
}
// Response 回应对象
type Response struct {
Request *Request
Raw *http.Response
Body []byte
Errs ResponseError
}
// Err 获取响应错误
func (r *Response) Err() error {
if r.Errs.HasErr() {
return r.Errs
}
return nil
}
// JSON 根据json绑定结构体
func (r *Response) JSON(v interface{}) error {
return json.Unmarshal(r.Body, v)
}
// String 获取响应字符串
func (r *Response) String() string {
return string(r.Body)
}
// Byte 获取响应字节
func (r *Response) Byte() []byte {
return r.Body
}
// Status 获取响应状态码
func (r *Response) Status() int {
if r.Raw != nil {
return r.Raw.StatusCode
}
return 0
}
// Header 获取响应header
func (r *Response) Header() http.Header {
if r.Raw != nil {
return r.Raw.Header
}
return nil
}
// Cookies 获取响应 cookie
func (r *Response) Cookies() []*http.Cookie {
if r.Raw != nil {
return r.Raw.Cookies()
}
return nil
}
// IsError 是否响应错误
func (r *Response) IsError() bool {
return r.Raw.StatusCode >= 400 && r.Err() != nil
}