forked from gookit/goutil
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclient.go
298 lines (249 loc) · 7.28 KB
/
client.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
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
package httpreq
import (
"context"
"io"
"net/http"
"strings"
"time"
"github.com/gookit/goutil/netutil/httpctype"
"github.com/gookit/goutil/strutil"
)
// Client a simple http request client.
type Client struct {
client Doer
// default config for request
method string
baseURL string
timeout int // unit: ms
// custom set headers
headerMap map[string]string
// beforeSend callback
beforeSend func(req *http.Request)
afterSend AfterSendFn
}
// New instance with base URL and use http.Client as default http client
func New(baseURL ...string) *Client {
h := NewWithDoer(&http.Client{Timeout: defaultTimeout})
if len(baseURL) > 0 && baseURL[0] != "" {
h.baseURL = baseURL[0]
}
return h
}
// NewWithTimeout new instance use http.Client and with custom timeout(ms)
func NewWithTimeout(ms int) *Client {
return NewWithDoer(&http.Client{Timeout: time.Duration(ms) * time.Millisecond})
}
// NewWithDoer instance with custom http client
func NewWithDoer(d Doer) *Client {
return &Client{
client: d,
method: http.MethodGet,
// init map
headerMap: make(map[string]string),
}
}
// Doer get the http client
func (h *Client) Doer() Doer {
return h.client
}
// SetClient custom set http client doer
func (h *Client) SetClient(c Doer) *Client {
h.client = c
return h
}
// SetTimeout set default timeout for http client doer
func (h *Client) SetTimeout(ms int) *Client {
h.timeout = ms
if hc, ok := h.client.(*http.Client); ok {
hc.Timeout = time.Duration(ms) * time.Millisecond
}
return h
}
// BaseURL set request base URL
func (h *Client) BaseURL(baseURL string) *Client {
h.baseURL = baseURL
return h
}
// DefaultMethod set default request method
func (h *Client) DefaultMethod(method string) *Client {
if method != "" {
h.method = method
}
return h
}
// ContentType set default content-Type header.
func (h *Client) ContentType(cType string) *Client {
return h.DefaultHeader(httpctype.Key, cType)
}
// DefaultHeader set default header for all requests
func (h *Client) DefaultHeader(key, val string) *Client {
h.headerMap[key] = val
return h
}
// DefaultHeaderMap set default headers for all requests
func (h *Client) DefaultHeaderMap(kvMap map[string]string) *Client {
for k, v := range kvMap {
h.headerMap[k] = v
}
return h
}
// OnBeforeSend add callback before send.
func (h *Client) OnBeforeSend(fn func(req *http.Request)) *Client {
h.beforeSend = fn
return h
}
// OnAfterSend add callback after send.
func (h *Client) OnAfterSend(fn AfterSendFn) *Client {
h.afterSend = fn
return h
}
//
// build request options
//
// WithOption with custom request options
func (h *Client) WithOption(optFns ...OptionFn) *Option {
return NewOption(optFns).WithClient(h)
}
func optWithClient(cli *Client) *Option {
return &Option{cli: cli}
}
// WithData with custom request data
func (h *Client) WithData(data any) *Option {
return optWithClient(h).WithData(data)
}
// WithBody with custom body
func (h *Client) WithBody(r io.Reader) *Option {
return optWithClient(h).WithBody(r)
}
// BytesBody with custom bytes body
func (h *Client) BytesBody(bs []byte) *Option {
return optWithClient(h).BytesBody(bs)
}
// StringBody with custom string body
func (h *Client) StringBody(s string) *Option {
return optWithClient(h).StringBody(s)
}
// FormBody with custom form data body
func (h *Client) FormBody(data any) *Option {
return optWithClient(h).FormBody(data)
}
// JSONBody with custom JSON data body
func (h *Client) JSONBody(data any) *Option {
return optWithClient(h).WithJSON(data)
}
// JSONBytesBody with custom bytes body, and set JSON content type
func (h *Client) JSONBytesBody(bs []byte) *Option {
return optWithClient(h).JSONBytesBody(bs)
}
// AnyBody with custom body.
//
// Allow type:
// - string, []byte, map[string][]string/url.Values, io.Reader(eg: bytes.Buffer, strings.Reader)
func (h *Client) AnyBody(data any) *Option {
return optWithClient(h).AnyBody(data)
}
//
// ------------ send request with options ------------
//
// Get send GET request with options, return http response
func (h *Client) Get(url string, optFns ...OptionFn) (*http.Response, error) {
return h.Send(http.MethodGet, url, optFns...)
}
// Post send POST request with options, return http response
func (h *Client) Post(url string, data any, optFns ...OptionFn) (*http.Response, error) {
opt := NewOption(optFns).WithMethod(http.MethodPost).AnyBody(data)
return h.SendWithOpt(url, opt)
}
// PostJSON send JSON POST request with options, return http response
func (h *Client) PostJSON(url string, data any, optFns ...OptionFn) (*http.Response, error) {
opt := NewOption(optFns).WithMethod(http.MethodPost).WithJSON(data)
return h.SendWithOpt(url, opt)
}
// Put send PUT request with options, return http response
func (h *Client) Put(url string, data any, optFns ...OptionFn) (*http.Response, error) {
opt := NewOption(optFns).WithMethod(http.MethodPut).AnyBody(data)
return h.SendWithOpt(url, opt)
}
// Delete send DELETE request with options, return http response
func (h *Client) Delete(url string, optFns ...OptionFn) (*http.Response, error) {
return h.Send(http.MethodDelete, url, optFns...)
}
// Send request with option func, return http response
func (h *Client) Send(method, url string, optFns ...OptionFn) (*http.Response, error) {
return h.SendWithOpt(url, NewOption(optFns).WithMethod(method))
}
// MustSend request, will panic on error
func (h *Client) MustSend(method, url string, optFns ...OptionFn) *http.Response {
resp, err := h.SendWithOpt(url, NewOption(optFns).WithMethod(method))
if err != nil {
panic(err)
}
return resp
}
// SendWithOpt request and return http response
func (h *Client) SendWithOpt(url string, opt *Option) (*http.Response, error) {
cli := h
if len(cli.baseURL) > 0 {
if !strings.HasPrefix(url, "http") {
url = cli.baseURL + url
} else if len(url) == 0 {
url = cli.baseURL
}
}
opt = OptOrNew(opt)
ctx := opt.Context
if ctx == nil {
ctx = context.Background()
}
// create request
method := strings.ToUpper(strutil.OrElse(opt.Method, cli.method))
if opt.Data != nil {
if IsNoBodyMethod(method) {
url = AppendQueryToURLString(url, MakeQuery(opt.Data))
opt.Body = nil
} else if opt.Body == nil {
cType := strutil.OrElse(h.headerMap[httpctype.Key], opt.ContentType)
opt.Body = MakeBody(opt.Data, cType)
}
}
req, err := http.NewRequestWithContext(ctx, method, url, opt.Body)
if err != nil {
return nil, err
}
return h.sendRequest(req, opt)
}
// SendRequest send request and return http response
func (h *Client) SendRequest(req *http.Request, opt *Option) (*http.Response, error) {
return h.sendRequest(req, opt)
}
// send request and return http response
func (h *Client) sendRequest(req *http.Request, opt *Option) (*http.Response, error) {
// apply default headers
if len(h.headerMap) > 0 {
for k, v := range h.headerMap {
req.Header.Set(k, v)
}
}
// apply options
if opt.ContentType != "" {
req.Header.Set(httpctype.Key, opt.ContentType)
}
// - apply header map
if len(opt.HeaderMap) > 0 {
for k, v := range opt.HeaderMap {
req.Header.Set(k, v)
}
}
cli := h // if timeout changed, create new client
if opt.Timeout > 0 && opt.Timeout != cli.timeout {
cli = NewClient(opt.Timeout)
}
if h.beforeSend != nil {
h.beforeSend(req)
}
resp, err := cli.client.Do(req)
if h.afterSend != nil {
h.afterSend(resp, err)
}
return resp, err
}