-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrequest.go
More file actions
265 lines (236 loc) · 6.75 KB
/
request.go
File metadata and controls
265 lines (236 loc) · 6.75 KB
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
package requests
import (
"bytes"
"errors"
"io"
"mime/multipart"
"net/http"
"net/url"
"strings"
)
type Request interface {
SetHeader(string, ...string) Request
Headers() map[string][]string
SetQueryParam(string, ...string) Request
QueryParams() map[string][]string
UrlPath() string
SetJSON(string) Request
SetRawBody([]byte) Request
SetFormParam(string, ...string) Request
FormParams() map[string][]string
AddFile(string, string, []byte) Request
Send() (Response, error)
}
type formFile struct {
filename string
data []byte
}
type request struct {
*session
method string
URL string
headers map[string][]string
isJSON bool
body []byte
formParams map[string][]string
queryParams map[string][]string
files map[string]*formFile
}
// Validate URLPath
func parseURL(urlPath string) (URL *url.URL, err error) {
// First pass
URL, err = url.Parse(urlPath)
if err != nil {
return nil, err
}
// To check the Scheme after the first pass, if it is neither http or https, then make it default to be http and validate again
if URL.Scheme != "http" && URL.Scheme != "https" {
urlPath = "http://" + urlPath
URL, err = url.Parse(urlPath)
if err != nil {
return nil, err
}
// Accepts only http and https scheme
if URL.Scheme != "http" && URL.Scheme != "https" {
return nil, errors.New("[package requests] only HTTP and HTTPS are accepted")
}
}
return
}
// Create a request
func newRequest(method string, urlPath string, s *session) (Request, error) {
// Validate URLPath
URL, err := parseURL(urlPath)
if err != nil {
return nil, err
}
// Extract the url params from the urlpath
queryParams := make(map[string][]string)
for key, values := range URL.Query() {
queryParams[key] = values
}
urlPath = URL.Scheme + "://" + URL.Host + URL.Path
r := &request{session: s, method: method, URL: urlPath}
r.headers = make(map[string][]string)
r.formParams = make(map[string][]string)
r.queryParams = queryParams
r.files = make(map[string]*formFile)
return r, nil
}
// Set a request header, could be multiple values. If no values are provided, then delete the key if any.
func (this *request) SetHeader(key string, values ...string) Request {
if len(values) > 0 {
this.headers[key] = values[:]
} else {
delete(this.headers, key)
}
return this
}
// Get a copy of request headers, any modification made to this map WILL NOT reflect back to the actually request headers
func (this *request) Headers() map[string][]string {
headers := make(map[string][]string)
for key, values := range this.headers {
headers[key] = values[:]
}
return headers
}
// Set a url param, could be multiple values. If no values are provided, then delete the key if any.
func (this *request) SetQueryParam(key string, values ...string) Request {
if len(values) > 0 {
this.queryParams[key] = values[:]
} else {
delete(this.queryParams, key)
}
return this
}
// Get a copy of url params, any modification made to this map WILL NOT reflect back to the actually url params
func (this *request) QueryParams() map[string][]string {
params := make(map[string][]string)
for key, values := range this.queryParams {
params[key] = values[:]
}
return params
}
// Get the full url path
func (this *request) UrlPath() string {
if len(this.queryParams) > 0 {
return this.URL + "?" + parseParams(this.queryParams).Encode()
} else {
return this.URL
}
}
// Set a JSON message(Content-Type header will be "application/json")
func (this *request) SetJSON(json string) Request {
this.isJSON = true
this.body = []byte(json)
return this
}
// Set raw message body
// NOTICE: it is the users' responsability to set the correct Content-Type header
func (this *request) SetRawBody(body []byte) Request {
this.isJSON = false
this.body = body
return this
}
// Set a body param, could be multiple values. If no values are provided, then delete the key if any.
func (this *request) SetFormParam(key string, values ...string) Request {
if len(values) > 0 {
this.formParams[key] = values[:]
} else {
delete(this.formParams, key)
}
return this
}
// Get a copy of body params, any modification made to this map WILL NOT reflect back to the actually body params
func (this *request) FormParams() map[string][]string {
params := make(map[string][]string)
for key, values := range this.queryParams {
params[key] = values[:]
}
return params
}
// Add a file
func (this *request) AddFile(fieldname string, filename string, data []byte) Request {
if fieldname != "" && filename != "" && data != nil {
this.files[fieldname] = &formFile{filename: filename, data: data}
}
return this
}
func (this *request) parseBody() (req *http.Request, err error) {
// GET and TRACE request should not have a message body
if this.method == "GET" || this.method == "TRACE" {
req, err = http.NewRequest(this.method, this.UrlPath(), nil)
}
// Process message body
if len(this.body) > 0 {
if this.isJSON {
this.headers["Content-Type"] = []string{"application/json"}
req, err = http.NewRequest(this.method, this.UrlPath(),
strings.NewReader(string(this.body)))
} else {
var body *bytes.Buffer
body = bytes.NewBuffer(this.body)
req, err = http.NewRequest(this.method, this.UrlPath(), body)
}
} else if len(this.files) > 0 {
// multipart
body := new(bytes.Buffer)
writer := multipart.NewWriter(body)
for fieldname, values := range this.formParams {
err = writer.WriteField(fieldname, values[0])
if err != nil {
return
}
}
var part io.Writer
for fieldname, file := range this.files {
part, err = writer.CreateFormFile(fieldname, file.filename)
if err != nil {
return
}
_, err = part.Write(file.data)
if err != nil {
return
}
}
err = writer.Close()
if err != nil {
return
}
this.headers["Content-Type"] = []string{writer.FormDataContentType()}
req, err = http.NewRequest(this.method, this.UrlPath(), body)
} else {
this.headers["Content-Type"] = []string{"application/x-www-form-urlencoded"}
req, err = http.NewRequest(this.method, this.UrlPath(),
strings.NewReader(parseParams(this.formParams).Encode()))
}
return
}
func (this *request) Send() (res Response, err error) {
req, err := this.parseBody()
if err != nil {
return
}
this.session.setCookies(req.URL)
req.Header = parseHeaders(this.headers)
httpResponse, err := this.session.Do(req)
if err != nil {
return
}
res, err = newResponse(httpResponse)
return
}
func (this *request) SendRequestWithoutParseBody(httpRequest *http.Request) (res Response, err error) {
req, err := http.NewRequest(this.method, this.UrlPath(), httpRequest.Body)
if err != nil {
return
}
this.session.setCookies(req.URL)
req.Header = parseHeaders(this.headers)
httpResponse, err := this.session.Do(req)
if err != nil {
return
}
res, err = newResponse(httpResponse)
return
}