-
Notifications
You must be signed in to change notification settings - Fork 349
/
client_wrapper.go
808 lines (674 loc) · 29.1 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
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
package req
import (
"context"
"crypto/tls"
"io"
"net"
"net/http"
"net/url"
"time"
"github.com/imroc/req/v3/http2"
utls "github.com/refraction-networking/utls"
)
// WrapRoundTrip is a global wrapper methods which delegated
// to the default client's Client.WrapRoundTrip.
func WrapRoundTrip(wrappers ...RoundTripWrapper) *Client {
return defaultClient.WrapRoundTrip(wrappers...)
}
// WrapRoundTripFunc is a global wrapper methods which delegated
// to the default client's Client.WrapRoundTripFunc.
func WrapRoundTripFunc(funcs ...RoundTripWrapperFunc) *Client {
return defaultClient.WrapRoundTripFunc(funcs...)
}
// SetCommonError is a global wrapper methods which delegated
// to the default client's Client.SetCommonErrorResult.
//
// Deprecated: Use SetCommonErrorResult instead.
func SetCommonError(err interface{}) *Client {
return defaultClient.SetCommonErrorResult(err)
}
// SetCommonErrorResult is a global wrapper methods which delegated
// to the default client's Client.SetCommonError.
func SetCommonErrorResult(err interface{}) *Client {
return defaultClient.SetCommonErrorResult(err)
}
// SetResultStateCheckFunc is a global wrapper methods which delegated
// to the default client's Client.SetCommonResultStateCheckFunc.
func SetResultStateCheckFunc(fn func(resp *Response) ResultState) *Client {
return defaultClient.SetResultStateCheckFunc(fn)
}
// SetCommonFormDataFromValues is a global wrapper methods which delegated
// to the default client's Client.SetCommonFormDataFromValues.
func SetCommonFormDataFromValues(data url.Values) *Client {
return defaultClient.SetCommonFormDataFromValues(data)
}
// SetCommonFormData is a global wrapper methods which delegated
// to the default client's Client.SetCommonFormData.
func SetCommonFormData(data map[string]string) *Client {
return defaultClient.SetCommonFormData(data)
}
// SetMultipartBoundaryFunc is a global wrapper methods which delegated
// to the default client's Client.SetMultipartBoundaryFunc.
func SetMultipartBoundaryFunc(fn func() string) *Client {
return defaultClient.SetMultipartBoundaryFunc(fn)
}
// SetBaseURL is a global wrapper methods which delegated
// to the default client's Client.SetBaseURL.
func SetBaseURL(u string) *Client {
return defaultClient.SetBaseURL(u)
}
// SetOutputDirectory is a global wrapper methods which delegated
// to the default client's Client.SetOutputDirectory.
func SetOutputDirectory(dir string) *Client {
return defaultClient.SetOutputDirectory(dir)
}
// SetCertFromFile is a global wrapper methods which delegated
// to the default client's Client.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 Client.SetCerts.
func SetCerts(certs ...tls.Certificate) *Client {
return defaultClient.SetCerts(certs...)
}
// SetRootCertFromString is a global wrapper methods which delegated
// to the default client's Client.SetRootCertFromString.
func SetRootCertFromString(pemContent string) *Client {
return defaultClient.SetRootCertFromString(pemContent)
}
// SetRootCertsFromFile is a global wrapper methods which delegated
// to the default client's Client.SetRootCertsFromFile.
func SetRootCertsFromFile(pemFiles ...string) *Client {
return defaultClient.SetRootCertsFromFile(pemFiles...)
}
// GetTLSClientConfig is a global wrapper methods which delegated
// to the default client's Client.GetTLSClientConfig.
func GetTLSClientConfig() *tls.Config {
return defaultClient.GetTLSClientConfig()
}
// SetRedirectPolicy is a global wrapper methods which delegated
// to the default client's Client.SetRedirectPolicy.
func SetRedirectPolicy(policies ...RedirectPolicy) *Client {
return defaultClient.SetRedirectPolicy(policies...)
}
// DisableKeepAlives is a global wrapper methods which delegated
// to the default client's Client.DisableKeepAlives.
func DisableKeepAlives() *Client {
return defaultClient.DisableKeepAlives()
}
// EnableKeepAlives is a global wrapper methods which delegated
// to the default client's Client.EnableKeepAlives.
func EnableKeepAlives() *Client {
return defaultClient.EnableKeepAlives()
}
// DisableCompression is a global wrapper methods which delegated
// to the default client's Client.DisableCompression.
func DisableCompression() *Client {
return defaultClient.DisableCompression()
}
// EnableCompression is a global wrapper methods which delegated
// to the default client's Client.EnableCompression.
func EnableCompression() *Client {
return defaultClient.EnableCompression()
}
// SetTLSClientConfig is a global wrapper methods which delegated
// to the default client's Client.SetTLSClientConfig.
func SetTLSClientConfig(conf *tls.Config) *Client {
return defaultClient.SetTLSClientConfig(conf)
}
// EnableInsecureSkipVerify is a global wrapper methods which delegated
// to the default client's Client.EnableInsecureSkipVerify.
func EnableInsecureSkipVerify() *Client {
return defaultClient.EnableInsecureSkipVerify()
}
// DisableInsecureSkipVerify is a global wrapper methods which delegated
// to the default client's Client.DisableInsecureSkipVerify.
func DisableInsecureSkipVerify() *Client {
return defaultClient.DisableInsecureSkipVerify()
}
// SetCommonQueryParams is a global wrapper methods which delegated
// to the default client's Client.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 Client.AddCommonQueryParam.
func AddCommonQueryParam(key, value string) *Client {
return defaultClient.AddCommonQueryParam(key, value)
}
// AddCommonQueryParams is a global wrapper methods which delegated
// to the default client's Client.AddCommonQueryParams.
func AddCommonQueryParams(key string, values ...string) *Client {
return defaultClient.AddCommonQueryParams(key, values...)
}
// SetCommonPathParam is a global wrapper methods which delegated
// to the default client's Client.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 Client.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 Client.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 Client.SetCommonQueryString.
func SetCommonQueryString(query string) *Client {
return defaultClient.SetCommonQueryString(query)
}
// SetCommonCookies is a global wrapper methods which delegated
// to the default client's Client.SetCommonCookies.
func SetCommonCookies(cookies ...*http.Cookie) *Client {
return defaultClient.SetCommonCookies(cookies...)
}
// DisableDebugLog is a global wrapper methods which delegated
// to the default client's Client.DisableDebugLog.
func DisableDebugLog() *Client {
return defaultClient.DisableDebugLog()
}
// EnableDebugLog is a global wrapper methods which delegated
// to the default client's Client.EnableDebugLog.
func EnableDebugLog() *Client {
return defaultClient.EnableDebugLog()
}
// DevMode is a global wrapper methods which delegated
// to the default client's Client.DevMode.
func DevMode() *Client {
return defaultClient.DevMode()
}
// SetScheme is a global wrapper methods which delegated
// to the default client's Client.SetScheme.
func SetScheme(scheme string) *Client {
return defaultClient.SetScheme(scheme)
}
// SetLogger is a global wrapper methods which delegated
// to the default client's Client.SetLogger.
func SetLogger(log Logger) *Client {
return defaultClient.SetLogger(log)
}
// SetTimeout is a global wrapper methods which delegated
// to the default client's Client.SetTimeout.
func SetTimeout(d time.Duration) *Client {
return defaultClient.SetTimeout(d)
}
// EnableDumpAll is a global wrapper methods which delegated
// to the default client's Client.EnableDumpAll.
func EnableDumpAll() *Client {
return defaultClient.EnableDumpAll()
}
// EnableDumpAllToFile is a global wrapper methods which delegated
// to the default client's Client.EnableDumpAllToFile.
func EnableDumpAllToFile(filename string) *Client {
return defaultClient.EnableDumpAllToFile(filename)
}
// EnableDumpAllTo is a global wrapper methods which delegated
// to the default client's Client.EnableDumpAllTo.
func EnableDumpAllTo(output io.Writer) *Client {
return defaultClient.EnableDumpAllTo(output)
}
// EnableDumpAllAsync is a global wrapper methods which delegated
// to the default client's Client.EnableDumpAllAsync.
func EnableDumpAllAsync() *Client {
return defaultClient.EnableDumpAllAsync()
}
// EnableDumpAllWithoutRequestBody is a global wrapper methods which delegated
// to the default client's Client.EnableDumpAllWithoutRequestBody.
func EnableDumpAllWithoutRequestBody() *Client {
return defaultClient.EnableDumpAllWithoutRequestBody()
}
// EnableDumpAllWithoutResponseBody is a global wrapper methods which delegated
// to the default client's Client.EnableDumpAllWithoutResponseBody.
func EnableDumpAllWithoutResponseBody() *Client {
return defaultClient.EnableDumpAllWithoutResponseBody()
}
// EnableDumpAllWithoutResponse is a global wrapper methods which delegated
// to the default client's Client.EnableDumpAllWithoutResponse.
func EnableDumpAllWithoutResponse() *Client {
return defaultClient.EnableDumpAllWithoutResponse()
}
// EnableDumpAllWithoutRequest is a global wrapper methods which delegated
// to the default client's Client.EnableDumpAllWithoutRequest.
func EnableDumpAllWithoutRequest() *Client {
return defaultClient.EnableDumpAllWithoutRequest()
}
// EnableDumpAllWithoutHeader is a global wrapper methods which delegated
// to the default client's Client.EnableDumpAllWithoutHeader.
func EnableDumpAllWithoutHeader() *Client {
return defaultClient.EnableDumpAllWithoutHeader()
}
// EnableDumpAllWithoutBody is a global wrapper methods which delegated
// to the default client's Client.EnableDumpAllWithoutBody.
func EnableDumpAllWithoutBody() *Client {
return defaultClient.EnableDumpAllWithoutBody()
}
// EnableDumpEachRequest is a global wrapper methods which delegated
// to the default client's Client.EnableDumpEachRequest.
func EnableDumpEachRequest() *Client {
return defaultClient.EnableDumpEachRequest()
}
// EnableDumpEachRequestWithoutBody is a global wrapper methods which delegated
// to the default client's Client.EnableDumpEachRequestWithoutBody.
func EnableDumpEachRequestWithoutBody() *Client {
return defaultClient.EnableDumpEachRequestWithoutBody()
}
// EnableDumpEachRequestWithoutHeader is a global wrapper methods which delegated
// to the default client's Client.EnableDumpEachRequestWithoutHeader.
func EnableDumpEachRequestWithoutHeader() *Client {
return defaultClient.EnableDumpEachRequestWithoutHeader()
}
// EnableDumpEachRequestWithoutResponse is a global wrapper methods which delegated
// to the default client's Client.EnableDumpEachRequestWithoutResponse.
func EnableDumpEachRequestWithoutResponse() *Client {
return defaultClient.EnableDumpEachRequestWithoutResponse()
}
// EnableDumpEachRequestWithoutRequest is a global wrapper methods which delegated
// to the default client's Client.EnableDumpEachRequestWithoutRequest.
func EnableDumpEachRequestWithoutRequest() *Client {
return defaultClient.EnableDumpEachRequestWithoutRequest()
}
// EnableDumpEachRequestWithoutResponseBody is a global wrapper methods which delegated
// to the default client's Client.EnableDumpEachRequestWithoutResponseBody.
func EnableDumpEachRequestWithoutResponseBody() *Client {
return defaultClient.EnableDumpEachRequestWithoutResponseBody()
}
// EnableDumpEachRequestWithoutRequestBody is a global wrapper methods which delegated
// to the default client's Client.EnableDumpEachRequestWithoutRequestBody.
func EnableDumpEachRequestWithoutRequestBody() *Client {
return defaultClient.EnableDumpEachRequestWithoutRequestBody()
}
// DisableAutoReadResponse is a global wrapper methods which delegated
// to the default client's Client.DisableAutoReadResponse.
func DisableAutoReadResponse() *Client {
return defaultClient.DisableAutoReadResponse()
}
// EnableAutoReadResponse is a global wrapper methods which delegated
// to the default client's Client.EnableAutoReadResponse.
func EnableAutoReadResponse() *Client {
return defaultClient.EnableAutoReadResponse()
}
// SetAutoDecodeContentType is a global wrapper methods which delegated
// to the default client's Client.SetAutoDecodeContentType.
func SetAutoDecodeContentType(contentTypes ...string) *Client {
return defaultClient.SetAutoDecodeContentType(contentTypes...)
}
// SetAutoDecodeContentTypeFunc is a global wrapper methods which delegated
// to the default client's Client.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 Client.SetAutoDecodeAllContentType.
func SetAutoDecodeAllContentType() *Client {
return defaultClient.SetAutoDecodeAllContentType()
}
// DisableAutoDecode is a global wrapper methods which delegated
// to the default client's Client.DisableAutoDecode.
func DisableAutoDecode() *Client {
return defaultClient.DisableAutoDecode()
}
// EnableAutoDecode is a global wrapper methods which delegated
// to the default client's Client.EnableAutoDecode.
func EnableAutoDecode() *Client {
return defaultClient.EnableAutoDecode()
}
// SetUserAgent is a global wrapper methods which delegated
// to the default client's Client.SetUserAgent.
func SetUserAgent(userAgent string) *Client {
return defaultClient.SetUserAgent(userAgent)
}
// SetCommonBearerAuthToken is a global wrapper methods which delegated
// to the default client's Client.SetCommonBearerAuthToken.
func SetCommonBearerAuthToken(token string) *Client {
return defaultClient.SetCommonBearerAuthToken(token)
}
// SetCommonBasicAuth is a global wrapper methods which delegated
// to the default client's Client.SetCommonBasicAuth.
func SetCommonBasicAuth(username, password string) *Client {
return defaultClient.SetCommonBasicAuth(username, password)
}
// SetCommonDigestAuth is a global wrapper methods which delegated
// to the default client's Client.SetCommonDigestAuth.
func SetCommonDigestAuth(username, password string) *Client {
return defaultClient.SetCommonDigestAuth(username, password)
}
// SetCommonHeaders is a global wrapper methods which delegated
// to the default client's Client.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 Client.SetCommonHeader.
func SetCommonHeader(key, value string) *Client {
return defaultClient.SetCommonHeader(key, value)
}
// SetCommonHeaderOrder is a global wrapper methods which delegated
// to the default client's Client.SetCommonHeaderOrder.
func SetCommonHeaderOrder(keys ...string) *Client {
return defaultClient.SetCommonHeaderOrder(keys...)
}
// SetCommonPseudoHeaderOder is a global wrapper methods which delegated
// to the default client's Client.SetCommonPseudoHeaderOder.
func SetCommonPseudoHeaderOder(keys ...string) *Client {
return defaultClient.SetCommonPseudoHeaderOder(keys...)
}
// SetHTTP2SettingsFrame is a global wrapper methods which delegated
// to the default client's Client.SetHTTP2SettingsFrame.
func SetHTTP2SettingsFrame(settings ...http2.Setting) *Client {
return defaultClient.SetHTTP2SettingsFrame(settings...)
}
// SetHTTP2ConnectionFlow is a global wrapper methods which delegated
// to the default client's Client.SetHTTP2ConnectionFlow.
func SetHTTP2ConnectionFlow(flow uint32) *Client {
return defaultClient.SetHTTP2ConnectionFlow(flow)
}
// SetHTTP2HeaderPriority is a global wrapper methods which delegated
// to the default client's Client.SetHTTP2HeaderPriority.
func SetHTTP2HeaderPriority(priority http2.PriorityParam) *Client {
return defaultClient.SetHTTP2HeaderPriority(priority)
}
// SetHTTP2PriorityFrames is a global wrapper methods which delegated
// to the default client's Client.SetHTTP2PriorityFrames.
func SetHTTP2PriorityFrames(frames ...http2.PriorityFrame) *Client {
return defaultClient.SetHTTP2PriorityFrames(frames...)
}
// SetHTTP2MaxHeaderListSize is a global wrapper methods which delegated
// to the default client's Client.SetHTTP2MaxHeaderListSize.
func SetHTTP2MaxHeaderListSize(max uint32) *Client {
return defaultClient.SetHTTP2MaxHeaderListSize(max)
}
// SetHTTP2StrictMaxConcurrentStreams is a global wrapper methods which delegated
// to the default client's Client.SetHTTP2StrictMaxConcurrentStreams.
func SetHTTP2StrictMaxConcurrentStreams(strict bool) *Client {
return defaultClient.SetHTTP2StrictMaxConcurrentStreams(strict)
}
// SetHTTP2ReadIdleTimeout is a global wrapper methods which delegated
// to the default client's Client.SetHTTP2ReadIdleTimeout.
func SetHTTP2ReadIdleTimeout(timeout time.Duration) *Client {
return defaultClient.SetHTTP2ReadIdleTimeout(timeout)
}
// SetHTTP2PingTimeout is a global wrapper methods which delegated
// to the default client's Client.SetHTTP2PingTimeout.
func SetHTTP2PingTimeout(timeout time.Duration) *Client {
return defaultClient.SetHTTP2PingTimeout(timeout)
}
// SetHTTP2WriteByteTimeout is a global wrapper methods which delegated
// to the default client's Client.SetHTTP2WriteByteTimeout.
func SetHTTP2WriteByteTimeout(timeout time.Duration) *Client {
return defaultClient.SetHTTP2WriteByteTimeout(timeout)
}
// ImpersonateChrome is a global wrapper methods which delegated
// to the default client's Client.ImpersonateChrome.
func ImpersonateChrome() *Client {
return defaultClient.ImpersonateChrome()
}
// ImpersonateChrome is a global wrapper methods which delegated
// to the default client's Client.ImpersonateChrome.
func ImpersonateFirefox() *Client {
return defaultClient.ImpersonateFirefox()
}
// ImpersonateChrome is a global wrapper methods which delegated
// to the default client's Client.ImpersonateChrome.
func ImpersonateSafari() *Client {
return defaultClient.ImpersonateFirefox()
}
// SetCommonContentType is a global wrapper methods which delegated
// to the default client's Client.SetCommonContentType.
func SetCommonContentType(ct string) *Client {
return defaultClient.SetCommonContentType(ct)
}
// DisableDumpAll is a global wrapper methods which delegated
// to the default client's Client.DisableDumpAll.
func DisableDumpAll() *Client {
return defaultClient.DisableDumpAll()
}
// SetCommonDumpOptions is a global wrapper methods which delegated
// to the default client's Client.SetCommonDumpOptions.
func SetCommonDumpOptions(opt *DumpOptions) *Client {
return defaultClient.SetCommonDumpOptions(opt)
}
// SetProxy is a global wrapper methods which delegated
// to the default client's Client.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 Client.OnBeforeRequest.
func OnBeforeRequest(m RequestMiddleware) *Client {
return defaultClient.OnBeforeRequest(m)
}
// OnAfterResponse is a global wrapper methods which delegated
// to the default client's Client.OnAfterResponse.
func OnAfterResponse(m ResponseMiddleware) *Client {
return defaultClient.OnAfterResponse(m)
}
// SetProxyURL is a global wrapper methods which delegated
// to the default client's Client.SetProxyURL.
func SetProxyURL(proxyUrl string) *Client {
return defaultClient.SetProxyURL(proxyUrl)
}
// DisableTraceAll is a global wrapper methods which delegated
// to the default client's Client.DisableTraceAll.
func DisableTraceAll() *Client {
return defaultClient.DisableTraceAll()
}
// EnableTraceAll is a global wrapper methods which delegated
// to the default client's Client.EnableTraceAll.
func EnableTraceAll() *Client {
return defaultClient.EnableTraceAll()
}
// SetCookieJar is a global wrapper methods which delegated
// to the default client's Client.SetCookieJar.
func SetCookieJar(jar http.CookieJar) *Client {
return defaultClient.SetCookieJar(jar)
}
// GetCookies is a global wrapper methods which delegated
// to the default client's Client.GetCookies.
func GetCookies(url string) ([]*http.Cookie, error) {
return defaultClient.GetCookies(url)
}
// ClearCookies is a global wrapper methods which delegated
// to the default client's Client.ClearCookies.
func ClearCookies() *Client {
return defaultClient.ClearCookies()
}
// SetJsonMarshal is a global wrapper methods which delegated
// to the default client's Client.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 Client.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 Client.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 Client.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 Client.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 Client.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 Client.SetTLSHandshakeTimeout.
func SetTLSHandshakeTimeout(timeout time.Duration) *Client {
return defaultClient.SetTLSHandshakeTimeout(timeout)
}
// EnableForceHTTP1 is a global wrapper methods which delegated
// to the default client's Client.EnableForceHTTP1.
func EnableForceHTTP1() *Client {
return defaultClient.EnableForceHTTP1()
}
// EnableForceHTTP2 is a global wrapper methods which delegated
// to the default client's Client.EnableForceHTTP2.
func EnableForceHTTP2() *Client {
return defaultClient.EnableForceHTTP2()
}
// EnableForceHTTP3 is a global wrapper methods which delegated
// to the default client's Client.EnableForceHTTP3.
func EnableForceHTTP3() *Client {
return defaultClient.EnableForceHTTP3()
}
// EnableHTTP3 is a global wrapper methods which delegated
// to the default client's Client.EnableHTTP3.
func EnableHTTP3() *Client {
return defaultClient.EnableHTTP3()
}
// DisableForceHttpVersion is a global wrapper methods which delegated
// to the default client's Client.DisableForceHttpVersion.
func DisableForceHttpVersion() *Client {
return defaultClient.DisableForceHttpVersion()
}
// EnableH2C is a global wrapper methods which delegated
// to the default client's Client.EnableH2C.
func EnableH2C() *Client {
return defaultClient.EnableH2C()
}
// DisableH2C is a global wrapper methods which delegated
// to the default client's Client.DisableH2C.
func DisableH2C() *Client {
return defaultClient.DisableH2C()
}
// DisableAllowGetMethodPayload is a global wrapper methods which delegated
// to the default client's Client.DisableAllowGetMethodPayload.
func DisableAllowGetMethodPayload() *Client {
return defaultClient.DisableAllowGetMethodPayload()
}
// EnableAllowGetMethodPayload is a global wrapper methods which delegated
// to the default client's Client.EnableAllowGetMethodPayload.
func EnableAllowGetMethodPayload() *Client {
return defaultClient.EnableAllowGetMethodPayload()
}
// SetCommonRetryCount is a global wrapper methods which delegated
// to the default client's Client.SetCommonRetryCount.
func SetCommonRetryCount(count int) *Client {
return defaultClient.SetCommonRetryCount(count)
}
// SetCommonRetryInterval is a global wrapper methods which delegated
// to the default client's Client.SetCommonRetryInterval.
func SetCommonRetryInterval(getRetryIntervalFunc GetRetryIntervalFunc) *Client {
return defaultClient.SetCommonRetryInterval(getRetryIntervalFunc)
}
// SetCommonRetryFixedInterval is a global wrapper methods which delegated
// to the default client's Client.SetCommonRetryFixedInterval.
func SetCommonRetryFixedInterval(interval time.Duration) *Client {
return defaultClient.SetCommonRetryFixedInterval(interval)
}
// SetCommonRetryBackoffInterval is a global wrapper methods which delegated
// to the default client's Client.SetCommonRetryBackoffInterval.
func SetCommonRetryBackoffInterval(min, max time.Duration) *Client {
return defaultClient.SetCommonRetryBackoffInterval(min, max)
}
// SetCommonRetryHook is a global wrapper methods which delegated
// to the default client's Client.SetCommonRetryHook.
func SetCommonRetryHook(hook RetryHookFunc) *Client {
return defaultClient.SetCommonRetryHook(hook)
}
// AddCommonRetryHook is a global wrapper methods which delegated
// to the default client's Client.AddCommonRetryHook.
func AddCommonRetryHook(hook RetryHookFunc) *Client {
return defaultClient.AddCommonRetryHook(hook)
}
// SetCommonRetryCondition is a global wrapper methods which delegated
// to the default client's Client.SetCommonRetryCondition.
func SetCommonRetryCondition(condition RetryConditionFunc) *Client {
return defaultClient.SetCommonRetryCondition(condition)
}
// AddCommonRetryCondition is a global wrapper methods which delegated
// to the default client's Client.AddCommonRetryCondition.
func AddCommonRetryCondition(condition RetryConditionFunc) *Client {
return defaultClient.AddCommonRetryCondition(condition)
}
// SetResponseBodyTransformer is a global wrapper methods which delegated
// to the default client's Client.SetResponseBodyTransformer.
func SetResponseBodyTransformer(fn func(rawBody []byte, req *Request, resp *Response) (transformedBody []byte, err error)) *Client {
return defaultClient.SetResponseBodyTransformer(fn)
}
// SetUnixSocket is a global wrapper methods which delegated
// to the default client's Client.SetUnixSocket.
func SetUnixSocket(file string) *Client {
return defaultClient.SetUnixSocket(file)
}
// SetTLSFingerprint is a global wrapper methods which delegated
// to the default client's Client.SetTLSFingerprint.
func SetTLSFingerprint(clientHelloID utls.ClientHelloID) *Client {
return defaultClient.SetTLSFingerprint(clientHelloID)
}
// SetTLSFingerprintRandomized is a global wrapper methods which delegated
// to the default client's Client.SetTLSFingerprintRandomized.
func SetTLSFingerprintRandomized() *Client {
return defaultClient.SetTLSFingerprintRandomized()
}
// SetTLSFingerprintChrome is a global wrapper methods which delegated
// to the default client's Client.SetTLSFingerprintChrome.
func SetTLSFingerprintChrome() *Client {
return defaultClient.SetTLSFingerprintChrome()
}
// SetTLSFingerprintAndroid is a global wrapper methods which delegated
// to the default client's Client.SetTLSFingerprintAndroid.
func SetTLSFingerprintAndroid() *Client {
return defaultClient.SetTLSFingerprintAndroid()
}
// SetTLSFingerprint360 is a global wrapper methods which delegated
// to the default client's Client.SetTLSFingerprint360.
func SetTLSFingerprint360() *Client {
return defaultClient.SetTLSFingerprint360()
}
// SetTLSFingerprintEdge is a global wrapper methods which delegated
// to the default client's Client.SetTLSFingerprintEdge.
func SetTLSFingerprintEdge() *Client {
return defaultClient.SetTLSFingerprintEdge()
}
// SetTLSFingerprintFirefox is a global wrapper methods which delegated
// to the default client's Client.SetTLSFingerprintFirefox.
func SetTLSFingerprintFirefox() *Client {
return defaultClient.SetTLSFingerprintFirefox()
}
// SetTLSFingerprintQQ is a global wrapper methods which delegated
// to the default client's Client.SetTLSFingerprintQQ.
func SetTLSFingerprintQQ() *Client {
return defaultClient.SetTLSFingerprintQQ()
}
// SetTLSFingerprintIOS is a global wrapper methods which delegated
// to the default client's Client.SetTLSFingerprintIOS.
func SetTLSFingerprintIOS() *Client {
return defaultClient.SetTLSFingerprintIOS()
}
// SetTLSFingerprintSafari is a global wrapper methods which delegated
// to the default client's Client.SetTLSFingerprintSafari.
func SetTLSFingerprintSafari() *Client {
return defaultClient.SetTLSFingerprintSafari()
}
// GetClient is a global wrapper methods which delegated
// to the default client's Client.GetClient.
func GetClient() *http.Client {
return defaultClient.GetClient()
}
// NewRequest is a global wrapper methods which delegated
// to the default client's Client.NewRequest.
func NewRequest() *Request {
return defaultClient.R()
}
// R is a global wrapper methods which delegated
// to the default client's Client.R().
func R() *Request {
return defaultClient.R()
}