-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclient_wrapper.go
527 lines (440 loc) · 18.2 KB
/
client_wrapper.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
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
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
package req
import (
"context"
"crypto/tls"
"io"
"net"
"net/http"
"net/url"
"time"
)
// SetCommonFormDataFromValues is a global wrapper methods which delegated
// to the default client's SetCommonFormDataFromValues.
func SetCommonFormDataFromValues(data url.Values) *Client {
return defaultClient.SetCommonFormDataFromValues(data)
}
// SetCommonFormData is a global wrapper methods which delegated
// to the default client's SetCommonFormData.
func SetCommonFormData(data map[string]string) *Client {
return defaultClient.SetCommonFormData(data)
}
// SetBaseURL is a global wrapper methods which delegated
// to the default client's SetBaseURL.
func SetBaseURL(u string) *Client {
return defaultClient.SetBaseURL(u)
}
// SetOutputDirectory is a global wrapper methods which delegated
// to the default client's SetOutputDirectory.
func SetOutputDirectory(dir string) *Client {
return defaultClient.SetOutputDirectory(dir)
}
// SetCertFromFile is a global wrapper methods which delegated
// to the default client's SetCertFromFile.
func SetCertFromFile(certFile, keyFile string) *Client {
return defaultClient.SetCertFromFile(certFile, keyFile)
}
// SetCerts is a global wrapper methods which delegated
// to the default client's SetCerts.
func SetCerts(certs ...tls.Certificate) *Client {
return defaultClient.SetCerts(certs...)
}
// SetRootCertFromString is a global wrapper methods which delegated
// to the default client's SetRootCertFromString.
func SetRootCertFromString(pemContent string) *Client {
return defaultClient.SetRootCertFromString(pemContent)
}
// SetRootCertsFromFile is a global wrapper methods which delegated
// to the default client's SetRootCertsFromFile.
func SetRootCertsFromFile(pemFiles ...string) *Client {
return defaultClient.SetRootCertsFromFile(pemFiles...)
}
// GetTLSClientConfig is a global wrapper methods which delegated
// to the default client's GetTLSClientConfig.
func GetTLSClientConfig() *tls.Config {
return defaultClient.GetTLSClientConfig()
}
// SetRedirectPolicy is a global wrapper methods which delegated
// to the default client's SetRedirectPolicy.
func SetRedirectPolicy(policies ...RedirectPolicy) *Client {
return defaultClient.SetRedirectPolicy(policies...)
}
// DisableKeepAlives is a global wrapper methods which delegated
// to the default client's DisableKeepAlives.
func DisableKeepAlives() *Client {
return defaultClient.DisableKeepAlives()
}
// EnableKeepAlives is a global wrapper methods which delegated
// to the default client's EnableKeepAlives.
func EnableKeepAlives() *Client {
return defaultClient.EnableKeepAlives()
}
// DisableCompression is a global wrapper methods which delegated
// to the default client's DisableCompression.
func DisableCompression() *Client {
return defaultClient.DisableCompression()
}
// EnableCompression is a global wrapper methods which delegated
// to the default client's EnableCompression.
func EnableCompression() *Client {
return defaultClient.EnableCompression()
}
// SetTLSClientConfig is a global wrapper methods which delegated
// to the default client's SetTLSClientConfig.
func SetTLSClientConfig(conf *tls.Config) *Client {
return defaultClient.SetTLSClientConfig(conf)
}
// EnableInsecureSkipVerify is a global wrapper methods which delegated
// to the default client's EnableInsecureSkipVerify.
func EnableInsecureSkipVerify() *Client {
return defaultClient.EnableInsecureSkipVerify()
}
// DisableInsecureSkipVerify is a global wrapper methods which delegated
// to the default client's DisableInsecureSkipVerify.
func DisableInsecureSkipVerify() *Client {
return defaultClient.DisableInsecureSkipVerify()
}
// SetCommonQueryParams is a global wrapper methods which delegated
// to the default client's SetCommonQueryParams.
func SetCommonQueryParams(params map[string]string) *Client {
return defaultClient.SetCommonQueryParams(params)
}
// AddCommonQueryParam is a global wrapper methods which delegated
// to the default client's AddCommonQueryParam.
func AddCommonQueryParam(key, value string) *Client {
return defaultClient.AddCommonQueryParam(key, value)
}
// SetCommonPathParam is a global wrapper methods which delegated
// to the default client's SetCommonPathParam.
func SetCommonPathParam(key, value string) *Client {
return defaultClient.SetCommonPathParam(key, value)
}
// SetCommonPathParams is a global wrapper methods which delegated
// to the default client's SetCommonPathParams.
func SetCommonPathParams(pathParams map[string]string) *Client {
return defaultClient.SetCommonPathParams(pathParams)
}
// SetCommonQueryParam is a global wrapper methods which delegated
// to the default client's SetCommonQueryParam.
func SetCommonQueryParam(key, value string) *Client {
return defaultClient.SetCommonQueryParam(key, value)
}
// SetCommonQueryString is a global wrapper methods which delegated
// to the default client's SetCommonQueryString.
func SetCommonQueryString(query string) *Client {
return defaultClient.SetCommonQueryString(query)
}
// SetCommonCookies is a global wrapper methods which delegated
// to the default client's SetCommonCookies.
func SetCommonCookies(cookies ...*http.Cookie) *Client {
return defaultClient.SetCommonCookies(cookies...)
}
// DisableDebugLog is a global wrapper methods which delegated
// to the default client's DisableDebugLog.
func DisableDebugLog() *Client {
return defaultClient.DisableDebugLog()
}
// EnableDebugLog is a global wrapper methods which delegated
// to the default client's EnableDebugLog.
func EnableDebugLog() *Client {
return defaultClient.EnableDebugLog()
}
// DevMode is a global wrapper methods which delegated
// to the default client's DevMode.
func DevMode() *Client {
return defaultClient.DevMode()
}
// SetScheme is a global wrapper methods which delegated
// to the default client's SetScheme.
func SetScheme(scheme string) *Client {
return defaultClient.SetScheme(scheme)
}
// SetLogger is a global wrapper methods which delegated
// to the default client's SetLogger.
func SetLogger(log Logger) *Client {
return defaultClient.SetLogger(log)
}
// SetTimeout is a global wrapper methods which delegated
// to the default client's SetTimeout.
func SetTimeout(d time.Duration) *Client {
return defaultClient.SetTimeout(d)
}
// EnableDumpAll is a global wrapper methods which delegated
// to the default client's EnableDumpAll.
func EnableDumpAll() *Client {
return defaultClient.EnableDumpAll()
}
// EnableDumpAllToFile is a global wrapper methods which delegated
// to the default client's EnableDumpAllToFile.
func EnableDumpAllToFile(filename string) *Client {
return defaultClient.EnableDumpAllToFile(filename)
}
// EnableDumpAllTo is a global wrapper methods which delegated
// to the default client's EnableDumpAllTo.
func EnableDumpAllTo(output io.Writer) *Client {
return defaultClient.EnableDumpAllTo(output)
}
// EnableDumpAllAsync is a global wrapper methods which delegated
// to the default client's EnableDumpAllAsync.
func EnableDumpAllAsync() *Client {
return defaultClient.EnableDumpAllAsync()
}
// EnableDumpAllWithoutRequestBody is a global wrapper methods which delegated
// to the default client's EnableDumpAllWithoutRequestBody.
func EnableDumpAllWithoutRequestBody() *Client {
return defaultClient.EnableDumpAllWithoutRequestBody()
}
// EnableDumpAllWithoutResponseBody is a global wrapper methods which delegated
// to the default client's EnableDumpAllWithoutResponseBody.
func EnableDumpAllWithoutResponseBody() *Client {
return defaultClient.EnableDumpAllWithoutResponseBody()
}
// EnableDumpAllWithoutResponse is a global wrapper methods which delegated
// to the default client's EnableDumpAllWithoutResponse.
func EnableDumpAllWithoutResponse() *Client {
return defaultClient.EnableDumpAllWithoutResponse()
}
// EnableDumpAllWithoutRequest is a global wrapper methods which delegated
// to the default client's EnableDumpAllWithoutRequest.
func EnableDumpAllWithoutRequest() *Client {
return defaultClient.EnableDumpAllWithoutRequest()
}
// EnableDumpAllWithoutHeader is a global wrapper methods which delegated
// to the default client's EnableDumpAllWithoutHeader.
func EnableDumpAllWithoutHeader() *Client {
return defaultClient.EnableDumpAllWithoutHeader()
}
// EnableDumpAllWithoutBody is a global wrapper methods which delegated
// to the default client's EnableDumpAllWithoutBody.
func EnableDumpAllWithoutBody() *Client {
return defaultClient.EnableDumpAllWithoutBody()
}
// DisableAutoReadResponse is a global wrapper methods which delegated
// to the default client's DisableAutoReadResponse.
func DisableAutoReadResponse() *Client {
return defaultClient.DisableAutoReadResponse()
}
// EnableAutoReadResponse is a global wrapper methods which delegated
// to the default client's EnableAutoReadResponse.
func EnableAutoReadResponse() *Client {
return defaultClient.EnableAutoReadResponse()
}
// SetAutoDecodeContentType is a global wrapper methods which delegated
// to the default client's SetAutoDecodeContentType.
func SetAutoDecodeContentType(contentTypes ...string) *Client {
return defaultClient.SetAutoDecodeContentType(contentTypes...)
}
// SetAutoDecodeContentTypeFunc is a global wrapper methods which delegated
// to the default client's SetAutoDecodeAllTypeFunc.
func SetAutoDecodeContentTypeFunc(fn func(contentType string) bool) *Client {
return defaultClient.SetAutoDecodeContentTypeFunc(fn)
}
// SetAutoDecodeAllContentType is a global wrapper methods which delegated
// to the default client's SetAutoDecodeAllContentType.
func SetAutoDecodeAllContentType() *Client {
return defaultClient.SetAutoDecodeAllContentType()
}
// DisableAutoDecode is a global wrapper methods which delegated
// to the default client's DisableAutoDecode.
func DisableAutoDecode() *Client {
return defaultClient.DisableAutoDecode()
}
// EnableAutoDecode is a global wrapper methods which delegated
// to the default client's EnableAutoDecode.
func EnableAutoDecode() *Client {
return defaultClient.EnableAutoDecode()
}
// SetUserAgent is a global wrapper methods which delegated
// to the default client's SetUserAgent.
func SetUserAgent(userAgent string) *Client {
return defaultClient.SetUserAgent(userAgent)
}
// SetCommonBearerAuthToken is a global wrapper methods which delegated
// to the default client's SetCommonBearerAuthToken.
func SetCommonBearerAuthToken(token string) *Client {
return defaultClient.SetCommonBearerAuthToken(token)
}
// SetCommonBasicAuth is a global wrapper methods which delegated
// to the default client's SetCommonBasicAuth.
func SetCommonBasicAuth(username, password string) *Client {
return defaultClient.SetCommonBasicAuth(username, password)
}
// SetCommonHeaders is a global wrapper methods which delegated
// to the default client's SetCommonHeaders.
func SetCommonHeaders(hdrs map[string]string) *Client {
return defaultClient.SetCommonHeaders(hdrs)
}
// SetCommonHeader is a global wrapper methods which delegated
// to the default client's SetCommonHeader.
func SetCommonHeader(key, value string) *Client {
return defaultClient.SetCommonHeader(key, value)
}
// SetCommonContentType is a global wrapper methods which delegated
// to the default client's SetCommonContentType.
func SetCommonContentType(ct string) *Client {
return defaultClient.SetCommonContentType(ct)
}
// DisableDumpAll is a global wrapper methods which delegated
// to the default client's DisableDumpAll.
func DisableDumpAll() *Client {
return defaultClient.DisableDumpAll()
}
// SetCommonDumpOptions is a global wrapper methods which delegated
// to the default client's SetCommonDumpOptions.
func SetCommonDumpOptions(opt *DumpOptions) *Client {
return defaultClient.SetCommonDumpOptions(opt)
}
// SetProxy is a global wrapper methods which delegated
// to the default client's SetProxy.
func SetProxy(proxy func(*http.Request) (*url.URL, error)) *Client {
return defaultClient.SetProxy(proxy)
}
// OnBeforeRequest is a global wrapper methods which delegated
// to the default client's OnBeforeRequest.
func OnBeforeRequest(m RequestMiddleware) *Client {
return defaultClient.OnBeforeRequest(m)
}
// OnAfterResponse is a global wrapper methods which delegated
// to the default client's OnAfterResponse.
func OnAfterResponse(m ResponseMiddleware) *Client {
return defaultClient.OnAfterResponse(m)
}
// SetProxyURL is a global wrapper methods which delegated
// to the default client's SetProxyURL.
func SetProxyURL(proxyUrl string) *Client {
return defaultClient.SetProxyURL(proxyUrl)
}
// DisableTraceAll is a global wrapper methods which delegated
// to the default client's DisableTraceAll.
func DisableTraceAll() *Client {
return defaultClient.DisableTraceAll()
}
// EnableTraceAll is a global wrapper methods which delegated
// to the default client's EnableTraceAll.
func EnableTraceAll() *Client {
return defaultClient.EnableTraceAll()
}
// SetCookieJar is a global wrapper methods which delegated
// to the default client's SetCookieJar.
func SetCookieJar(jar http.CookieJar) *Client {
return defaultClient.SetCookieJar(jar)
}
// SetJsonMarshal is a global wrapper methods which delegated
// to the default client's SetJsonMarshal.
func SetJsonMarshal(fn func(v interface{}) ([]byte, error)) *Client {
return defaultClient.SetJsonMarshal(fn)
}
// SetJsonUnmarshal is a global wrapper methods which delegated
// to the default client's SetJsonUnmarshal.
func SetJsonUnmarshal(fn func(data []byte, v interface{}) error) *Client {
return defaultClient.SetJsonUnmarshal(fn)
}
// SetXmlMarshal is a global wrapper methods which delegated
// to the default client's SetXmlMarshal.
func SetXmlMarshal(fn func(v interface{}) ([]byte, error)) *Client {
return defaultClient.SetXmlMarshal(fn)
}
// SetXmlUnmarshal is a global wrapper methods which delegated
// to the default client's SetXmlUnmarshal.
func SetXmlUnmarshal(fn func(data []byte, v interface{}) error) *Client {
return defaultClient.SetXmlUnmarshal(fn)
}
// SetDialTLS is a global wrapper methods which delegated
// to the default client's SetDialTLS.
func SetDialTLS(fn func(ctx context.Context, network, addr string) (net.Conn, error)) *Client {
return defaultClient.SetDialTLS(fn)
}
// SetDial is a global wrapper methods which delegated
// to the default client's SetDial.
func SetDial(fn func(ctx context.Context, network, addr string) (net.Conn, error)) *Client {
return defaultClient.SetDial(fn)
}
// SetTLSHandshakeTimeout is a global wrapper methods which delegated
// to the default client's SetTLSHandshakeTimeout.
func SetTLSHandshakeTimeout(timeout time.Duration) *Client {
return defaultClient.SetTLSHandshakeTimeout(timeout)
}
// EnableForceHTTP1 is a global wrapper methods which delegated
// to the default client's EnableForceHTTP1.
func EnableForceHTTP1() *Client {
return defaultClient.EnableForceHTTP1()
}
// EnableForceHTTP2 is a global wrapper methods which delegated
// to the default client's EnableForceHTTP2.
func EnableForceHTTP2() *Client {
return defaultClient.EnableForceHTTP2()
}
// DisableForceHttpVersion is a global wrapper methods which delegated
// to the default client's DisableForceHttpVersion.
func DisableForceHttpVersion() *Client {
return defaultClient.DisableForceHttpVersion()
}
// DisableAllowGetMethodPayload is a global wrapper methods which delegated
// to the default client's DisableAllowGetMethodPayload.
func DisableAllowGetMethodPayload() *Client {
return defaultClient.DisableAllowGetMethodPayload()
}
// EnableAllowGetMethodPayload is a global wrapper methods which delegated
// to the default client's EnableAllowGetMethodPayload.
func EnableAllowGetMethodPayload() *Client {
return defaultClient.EnableAllowGetMethodPayload()
}
// SetCommonRetryCount is a global wrapper methods which delegated
// to the default client, create a request and SetCommonRetryCount for request.
func SetCommonRetryCount(count int) *Client {
return defaultClient.SetCommonRetryCount(count)
}
// SetCommonRetryInterval is a global wrapper methods which delegated
// to the default client, create a request and SetCommonRetryInterval for request.
func SetCommonRetryInterval(getRetryIntervalFunc GetRetryIntervalFunc) *Client {
return defaultClient.SetCommonRetryInterval(getRetryIntervalFunc)
}
// SetCommonRetryFixedInterval is a global wrapper methods which delegated
// to the default client, create a request and SetCommonRetryFixedInterval for request.
func SetCommonRetryFixedInterval(interval time.Duration) *Client {
return defaultClient.SetCommonRetryFixedInterval(interval)
}
// SetCommonRetryBackoffInterval is a global wrapper methods which delegated
// to the default client, create a request and SetCommonRetryBackoffInterval for request.
func SetCommonRetryBackoffInterval(min, max time.Duration) *Client {
return defaultClient.SetCommonRetryBackoffInterval(min, max)
}
// SetCommonRetryHook is a global wrapper methods which delegated
// to the default client, create a request and SetRetryHook for request.
func SetCommonRetryHook(hook RetryHookFunc) *Client {
return defaultClient.SetCommonRetryHook(hook)
}
// AddCommonRetryHook is a global wrapper methods which delegated
// to the default client, create a request and AddCommonRetryHook for request.
func AddCommonRetryHook(hook RetryHookFunc) *Client {
return defaultClient.AddCommonRetryHook(hook)
}
// SetCommonRetryCondition is a global wrapper methods which delegated
// to the default client, create a request and SetCommonRetryCondition for request.
func SetCommonRetryCondition(condition RetryConditionFunc) *Client {
return defaultClient.SetCommonRetryCondition(condition)
}
// AddCommonRetryCondition is a global wrapper methods which delegated
// to the default client, create a request and AddCommonRetryCondition for request.
func AddCommonRetryCondition(condition RetryConditionFunc) *Client {
return defaultClient.AddCommonRetryCondition(condition)
}
// SetUnixSocket is a global wrapper methods which delegated
// to the default client, create a request and SetUnixSocket for request.
func SetUnixSocket(file string) *Client {
return defaultClient.SetUnixSocket(file)
}
// GetClient is a global wrapper methods which delegated
// to the default client's GetClient.
func GetClient() *http.Client {
return defaultClient.GetClient()
}
// NewRequest is a global wrapper methods which delegated
// to the default client's NewRequest.
func NewRequest() *Request {
return defaultClient.R()
}
// R is a global wrapper methods which delegated
// to the default client's R().
func R() *Request {
return defaultClient.R()
}