-
Notifications
You must be signed in to change notification settings - Fork 53
/
request.go
330 lines (278 loc) · 9.18 KB
/
request.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
package gentleman
import (
"errors"
"io"
"net"
"net/http"
"time"
"gopkg.in/h2non/gentleman.v2/context"
"gopkg.in/h2non/gentleman.v2/middleware"
"gopkg.in/h2non/gentleman.v2/mux"
"gopkg.in/h2non/gentleman.v2/plugin"
"gopkg.in/h2non/gentleman.v2/plugins/body"
"gopkg.in/h2non/gentleman.v2/plugins/bodytype"
"gopkg.in/h2non/gentleman.v2/plugins/cookies"
"gopkg.in/h2non/gentleman.v2/plugins/headers"
"gopkg.in/h2non/gentleman.v2/plugins/multipart"
"gopkg.in/h2non/gentleman.v2/plugins/query"
"gopkg.in/h2non/gentleman.v2/plugins/url"
)
const (
// UserAgent represents the static user agent name and version.
UserAgent = "gentleman/" + Version
)
var (
// DialTimeout represents the maximum amount of time the network dialer can take.
DialTimeout = 30 * time.Second
// DialKeepAlive represents the maximum amount of time too keep alive the socket.
DialKeepAlive = 30 * time.Second
// TLSHandshakeTimeout represents the maximum amount of time that
// TLS handshake can take defined in the default http.Transport.
TLSHandshakeTimeout = 10 * time.Second
// RequestTimeout represents the maximum about of time that
// a request can take, including dial / request / redirect processes.
RequestTimeout = 60 * time.Second
// DefaultDialer defines the default network dialer.
DefaultDialer = &net.Dialer{
Timeout: DialTimeout,
KeepAlive: DialKeepAlive,
}
// DefaultTransport stores the default HTTP transport to be used.
DefaultTransport = NewDefaultTransport(DefaultDialer)
)
// Request HTTP entity for gentleman.
// Provides middleware capabilities, built-in context
// and convenient methods to easily setup request params.
type Request struct {
// Stores if the request was already dispatched
dispatched bool
// Optional reference to the gentleman.Client instance
Client *Client
// Request scope Context instance
Context *context.Context
// Request scope Middleware instance
Middleware middleware.Middleware
}
// NewRequest creates a new Request entity.
func NewRequest() *Request {
ctx := context.New()
ctx.Client.Transport = DefaultTransport
ctx.Request.Header.Set("User-Agent", UserAgent)
return &Request{
Context: ctx,
Middleware: middleware.New(),
}
}
// SetClient Attach a client to the current Request
// This is mostly done internally.
func (r *Request) SetClient(cli *Client) *Request {
r.Client = cli
r.Context.UseParent(cli.Context)
r.Middleware.UseParent(cli.Middleware)
return r
}
// Mux is a middleware multiplexer for easy plugin composition.
func (r *Request) Mux() *mux.Mux {
mx := mux.New()
r.Use(mx)
return mx
}
// Method defines the HTTP verb to be used.
func (r *Request) Method(method string) *Request {
r.Middleware.UseRequest(func(ctx *context.Context, h context.Handler) {
ctx.Request.Method = method
h.Next(ctx)
})
return r
}
// URL parses and defines the URL to be used in the outgoing request.
func (r *Request) URL(uri string) *Request {
r.Use(url.URL(uri))
return r
}
// BaseURL parses the given URL and uses the URL schema and host in the outgoing request.
func (r *Request) BaseURL(uri string) *Request {
r.Use(url.BaseURL(uri))
return r
}
// Path defines the request URL path to be used in the outgoing request.
func (r *Request) Path(path string) *Request {
r.Use(url.Path(path))
return r
}
// AddPath concatenates a path slice to the existent path in at request level.
func (r *Request) AddPath(path string) *Request {
r.Use(url.AddPath(path))
return r
}
// Param replaces a path param based on the given param name and value.
func (r *Request) Param(name, value string) *Request {
r.Use(url.Param(name, value))
return r
}
// Params replaces path params based on the given params key-value map.
func (r *Request) Params(params map[string]string) *Request {
r.Use(url.Params(params))
return r
}
// SetQuery sets a new URL query param field.
// If another query param exists with the same key, it will be overwritten.
func (r *Request) SetQuery(name, value string) *Request {
r.Use(query.Set(name, value))
return r
}
// AddQuery adds a new URL query param field
// without overwriting any existent query field.
func (r *Request) AddQuery(name, value string) *Request {
r.Use(query.Add(name, value))
return r
}
// SetQueryParams sets URL query params based on the given map.
func (r *Request) SetQueryParams(params map[string]string) *Request {
r.Use(query.SetMap(params))
return r
}
// SetHeader sets a new header field by name and value.
// If another header exists with the same key, it will be overwritten.
func (r *Request) SetHeader(name, value string) *Request {
r.Use(headers.Set(name, value))
return r
}
// AddHeader adds a new header field by name and value
// without overwriting any existent header.
func (r *Request) AddHeader(name, value string) *Request {
r.Use(headers.Add(name, value))
return r
}
// SetHeaders adds new header fields based on the given map.
func (r *Request) SetHeaders(fields map[string]string) *Request {
r.Use(headers.SetMap(fields))
return r
}
// DelHeader deletes a header field by its name
func (r *Request) DelHeader(name string) *Request {
r.Use(headers.Del(name))
return r
}
// AddCookie sets a new cookie field bsaed on the given http.Cookie struct
// without overwriting any existent cookie.
func (r *Request) AddCookie(cookie *http.Cookie) *Request {
r.Use(cookies.Add(cookie))
return r
}
// AddCookies sets a new cookie field based on a list of http.Cookie
// without overwriting any existent cookie.
func (r *Request) AddCookies(data []*http.Cookie) *Request {
r.Use(cookies.AddMultiple(data))
return r
}
// CookieJar creates a cookie jar to store HTTP cookies when they are sent down.
func (r *Request) CookieJar() *Request {
r.Use(cookies.Jar())
return r
}
// Type defines the Content-Type header field based on the given type name alias or value.
// You can use the following content type aliases: json, xml, form, html, text and urlencoded.
func (r *Request) Type(name string) *Request {
r.Use(bodytype.Set(name))
return r
}
// Body defines the request body based on a io.Reader stream.
func (r *Request) Body(reader io.Reader) *Request {
r.Use(body.Reader(reader))
return r
}
// BodyString defines the request body based on the given string.
// If using this method, you should define the proper Content-Type header
// representing the real content MIME type.
func (r *Request) BodyString(data string) *Request {
r.Use(body.String(data))
return r
}
// JSON serializes and defines as request body based on the given input.
// The proper Content-Type header will be transparently added for you.
func (r *Request) JSON(data interface{}) *Request {
r.Use(body.JSON(data))
return r
}
// XML serializes and defines the request body based on the given input.
// The proper Content-Type header will be transparently added for you.
func (r *Request) XML(data interface{}) *Request {
r.Use(body.XML(data))
return r
}
// Form serializes and defines the request body as multipart/form-data
// based on the given form data.
func (r *Request) Form(data multipart.FormData) *Request {
r.Use(multipart.Data(data))
return r
}
// File serializes and defines the request body as multipart/form-data
// containing one file field.
func (r *Request) File(name string, reader io.Reader) *Request {
r.Use(multipart.File(name, reader))
return r
}
// Files serializes and defines the request body as multipart/form-data
// containing the given file fields.
func (r *Request) Files(files []multipart.FormFile) *Request {
r.Use(multipart.Files(files))
return r
}
// Send is an alias to Do(), which executes the current request
// and returns the response.
func (r *Request) Send() (*Response, error) {
return r.Do()
}
// Do performs the HTTP request and returns the HTTP response.
func (r *Request) Do() (*Response, error) {
if r.dispatched {
return nil, errors.New("gentleman: Request was already dispatched")
}
r.dispatched = true
ctx := NewDispatcher(r).Dispatch()
return buildResponse(ctx)
}
// Use uses a new plugin in the middleware stack.
func (r *Request) Use(p plugin.Plugin) *Request {
r.Middleware.Use(p)
return r
}
// UseRequest uses a request middleware handler.
func (r *Request) UseRequest(fn context.HandlerFunc) *Request {
r.Middleware.UseRequest(fn)
return r
}
// UseResponse uses a response middleware handler.
func (r *Request) UseResponse(fn context.HandlerFunc) *Request {
r.Middleware.UseResponse(fn)
return r
}
// UseError uses an error middleware handler.
func (r *Request) UseError(fn context.HandlerFunc) *Request {
r.Middleware.UseError(fn)
return r
}
// UseHandler uses an new middleware handler for the given phase.
func (r *Request) UseHandler(phase string, fn context.HandlerFunc) *Request {
r.Middleware.UseHandler(phase, fn)
return r
}
// Clone creates a new side-effects free Request based on the current one.
func (r *Request) Clone() *Request {
req := NewRequest()
req.Client = r.Client
req.Context = r.Context.Clone()
req.Middleware = r.Middleware.Clone()
return req
}
// NewDefaultTransport returns a new http.Transport with default values
// based on the given net.Dialer.
func NewDefaultTransport(dialer *net.Dialer) *http.Transport {
transport := &http.Transport{
Proxy: http.ProxyFromEnvironment,
Dial: dialer.Dial,
TLSHandshakeTimeout: TLSHandshakeTimeout,
}
return transport
}