-
Notifications
You must be signed in to change notification settings - Fork 723
/
Copy pathresty.go
209 lines (172 loc) · 6.02 KB
/
resty.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
// Copyright (c) 2015-present Jeevanandam M ([email protected]), All rights reserved.
// resty source code and usage is governed by a MIT style
// license that can be found in the LICENSE file.
// SPDX-License-Identifier: MIT
// Package resty provides Simple HTTP, REST, and SSE client library for Go.
package resty // import "resty.dev/v3"
import (
"math"
"net"
"net/http"
"net/http/cookiejar"
"net/url"
"runtime"
"sync"
"time"
"golang.org/x/net/publicsuffix"
)
// Version # of resty
const Version = "3.0.0-beta.1"
// New method creates a new Resty client.
func New() *Client {
return NewWithTransportSettings(nil)
}
// NewWithTransportSettings method creates a new Resty client with provided
// timeout values.
func NewWithTransportSettings(transportSettings *TransportSettings) *Client {
return NewWithDialerAndTransportSettings(nil, transportSettings)
}
// NewWithClient method creates a new Resty client with given [http.Client].
func NewWithClient(hc *http.Client) *Client {
return createClient(hc)
}
// NewWithDialer method creates a new Resty client with given Local Address
// to dial from.
func NewWithDialer(dialer *net.Dialer) *Client {
return NewWithDialerAndTransportSettings(dialer, nil)
}
// NewWithLocalAddr method creates a new Resty client with the given Local Address.
func NewWithLocalAddr(localAddr net.Addr) *Client {
return NewWithDialerAndTransportSettings(
&net.Dialer{LocalAddr: localAddr},
nil,
)
}
// NewWithDialerAndTransportSettings method creates a new Resty client with given Local Address
// to dial from.
func NewWithDialerAndTransportSettings(dialer *net.Dialer, transportSettings *TransportSettings) *Client {
return createClient(&http.Client{
Jar: createCookieJar(),
Transport: createTransport(dialer, transportSettings),
})
}
//‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
// Unexported methods
//_______________________________________________________________________
func createTransport(dialer *net.Dialer, transportSettings *TransportSettings) *http.Transport {
if transportSettings == nil {
transportSettings = &TransportSettings{}
}
// Dialer
if dialer == nil {
dialer = &net.Dialer{}
}
if transportSettings.DialerTimeout > 0 {
dialer.Timeout = transportSettings.DialerTimeout
} else {
dialer.Timeout = 30 * time.Second
}
if transportSettings.DialerKeepAlive > 0 {
dialer.KeepAlive = transportSettings.DialerKeepAlive
} else {
dialer.KeepAlive = 30 * time.Second
}
// Transport
t := &http.Transport{
Proxy: http.ProxyFromEnvironment,
DialContext: transportDialContext(dialer),
DisableKeepAlives: transportSettings.DisableKeepAlives,
DisableCompression: true, // Resty handles it, see [Client.AddContentDecoder]
ForceAttemptHTTP2: true,
}
if transportSettings.IdleConnTimeout > 0 {
t.IdleConnTimeout = transportSettings.IdleConnTimeout
} else {
t.IdleConnTimeout = 90 * time.Second
}
if transportSettings.TLSHandshakeTimeout > 0 {
t.TLSHandshakeTimeout = transportSettings.TLSHandshakeTimeout
} else {
t.TLSHandshakeTimeout = 10 * time.Second
}
if transportSettings.ExpectContinueTimeout > 0 {
t.ExpectContinueTimeout = transportSettings.ExpectContinueTimeout
} else {
t.ExpectContinueTimeout = 1 * time.Second
}
if transportSettings.MaxIdleConns > 0 {
t.MaxIdleConns = transportSettings.MaxIdleConns
} else {
t.MaxIdleConns = 100
}
if transportSettings.MaxIdleConnsPerHost > 0 {
t.MaxIdleConnsPerHost = transportSettings.MaxIdleConnsPerHost
} else {
t.MaxIdleConnsPerHost = runtime.GOMAXPROCS(0) + 1
}
//
// No default value in Resty for following settings, added to
// provide ability to set value otherwise the Go HTTP client
// default value applies.
//
if transportSettings.ResponseHeaderTimeout > 0 {
t.ResponseHeaderTimeout = transportSettings.ResponseHeaderTimeout
}
if transportSettings.MaxResponseHeaderBytes > 0 {
t.MaxResponseHeaderBytes = transportSettings.MaxResponseHeaderBytes
}
if transportSettings.WriteBufferSize > 0 {
t.WriteBufferSize = transportSettings.WriteBufferSize
}
if transportSettings.ReadBufferSize > 0 {
t.ReadBufferSize = transportSettings.ReadBufferSize
}
return t
}
func createCookieJar() *cookiejar.Jar {
cookieJar, _ := cookiejar.New(&cookiejar.Options{PublicSuffixList: publicsuffix.List})
return cookieJar
}
func createClient(hc *http.Client) *Client {
c := &Client{ // not setting language default values
lock: &sync.RWMutex{},
queryParams: url.Values{},
formData: url.Values{},
header: http.Header{},
authScheme: defaultAuthScheme,
cookies: make([]*http.Cookie, 0),
retryWaitTime: defaultWaitTime,
retryMaxWaitTime: defaultMaxWaitTime,
isRetryDefaultConditions: true,
pathParams: make(map[string]string),
headerAuthorizationKey: hdrAuthorizationKey,
jsonEscapeHTML: true,
httpClient: hc,
debugBodyLimit: math.MaxInt32,
contentTypeEncoders: make(map[string]ContentTypeEncoder),
contentTypeDecoders: make(map[string]ContentTypeDecoder),
contentDecompresserKeys: make([]string, 0),
contentDecompressers: make(map[string]ContentDecompresser),
certWatcherStopChan: make(chan bool),
}
// Logger
c.SetLogger(createLogger())
c.SetDebugLogFormatter(DebugLogFormatter)
c.AddContentTypeEncoder(jsonKey, encodeJSON)
c.AddContentTypeEncoder(xmlKey, encodeXML)
c.AddContentTypeDecoder(jsonKey, decodeJSON)
c.AddContentTypeDecoder(xmlKey, decodeXML)
// Order matter, giving priority to gzip
c.AddContentDecompresser("deflate", decompressDeflate)
c.AddContentDecompresser("gzip", decompressGzip)
// request middlewares
c.SetRequestMiddlewares(
PrepareRequestMiddleware,
)
// response middlewares
c.SetResponseMiddlewares(
AutoParseResponseMiddleware,
SaveToFileResponseMiddleware,
)
return c
}