forked from QuintGao/requests
-
Notifications
You must be signed in to change notification settings - Fork 0
/
requests.go
470 lines (366 loc) · 8.92 KB
/
requests.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
/* Copyright(2) 2018 by asmcos . All Rights Reserved.
* Licensed under the LGPL.
*/
package requests
import (
"io/ioutil"
"net/http"
"net/http/httputil"
"net/url"
"strings"
"fmt"
"compress/gzip"
"encoding/json"
"os"
"crypto/tls"
"net/http/cookiejar"
"mime/multipart"
"bytes"
"io"
"time"
)
var VERSION string = "0.5"
type request struct {
httpreq *http.Request
Header *http.Header
Client *http.Client
Debug int
Cookies []*http.Cookie
}
type response struct {
R *http.Response
content []byte
text string
req * request
}
type Header map[string]string
type Params map[string]string
type Datas map[string]string // for post form
type Files map[string]string // name ,filename
// {username,password}
type Auth []string
func Requests() *request {
req := new(request)
req.httpreq = &http.Request{
Method: "GET",
Header: make(http.Header),
Proto: "HTTP/1.1",
ProtoMajor: 1,
ProtoMinor: 1,
}
req.Header = &req.httpreq.Header
req.httpreq.Header.Set("User-Agent", "Go-Requests "+VERSION)
req.Client = &http.Client{}
// auto with Cookies
jar, err := cookiejar.New(nil)
if err != nil {
return nil
}
req.Client.Jar = jar
return req
}
// Get ,req.Get
func Get(origurl string, args ...interface{}) (resp *response) {
req := Requests()
// call request Get
resp = req.Get(origurl, args...)
return resp
}
func (req *request) Get(origurl string, args ...interface{}) (resp *response) {
// set params ?a=b&b=c
//set Header
params := []map[string]string{}
//reset Cookies,
//Client.Do can copy cookie from client.Jar to req.Header
delete(req.httpreq.Header,"Cookie")
for _, arg := range args {
switch a := arg.(type) {
// arg is Header , set to request header
case Header:
for k, v := range a {
req.Header.Set(k, v)
}
// arg is "GET" params
// ?title=website&id=1860&from=login
case Params:
params = append(params, a)
case Auth:
// a{username,password}
req.httpreq.SetBasicAuth(a[0],a[1])
}
}
disturl, _ := buildURLParams(origurl, params...)
//prepare to Do
URL, err := url.Parse(disturl)
if err != nil {
return nil
}
req.httpreq.URL = URL
req.ClientSetCookies()
req.RequestDebug()
res, err := req.Client.Do(req.httpreq)
if err != nil {
fmt.Println(err)
return nil
}
resp = &response{}
resp.R = res
resp.req = req
resp.ResponseDebug()
return resp
}
// handle URL params
func buildURLParams(userURL string, params ...map[string]string) (string, error) {
parsedURL, err := url.Parse(userURL)
if err != nil {
return "", err
}
parsedQuery, err := url.ParseQuery(parsedURL.RawQuery)
if err != nil {
return "", nil
}
for _, param := range params {
for key, value := range param {
parsedQuery.Add(key, value)
}
}
return addQueryParams(parsedURL, parsedQuery), nil
}
func addQueryParams(parsedURL *url.URL, parsedQuery url.Values) string {
if len(parsedQuery) > 0 {
return strings.Join([]string{strings.Replace(parsedURL.String(), "?"+parsedURL.RawQuery, "", -1), parsedQuery.Encode()}, "?")
}
return strings.Replace(parsedURL.String(), "?"+parsedURL.RawQuery, "", -1)
}
func (req *request) RequestDebug(){
if req.Debug != 1{
return
}
fmt.Println("===========Go RequestDebug ============")
message, err := httputil.DumpRequestOut(req.httpreq, false)
if err != nil {
return
}
fmt.Println(string(message))
if len(req.Client.Jar.Cookies(req.httpreq.URL)) > 0{
fmt.Println("Cookies:")
for _, cookie := range req.Client.Jar.Cookies(req.httpreq.URL) {
fmt.Println(cookie)
}
}
}
// cookies
// cookies only save to Client.Jar
// req.Cookies is temporary
func (req *request ) SetCookie(cookie *http.Cookie){
req.Cookies = append(req.Cookies,cookie)
}
func (req * request) ClearCookies(){
req.Cookies = req.Cookies[0:0]
}
func (req * request) ClientSetCookies(){
if len(req.Cookies) > 0 {
// 1. Cookies have content, Copy Cookies to Client.jar
// 2. Clear Cookies
req.Client.Jar.SetCookies(req.httpreq.URL, req.Cookies)
req.ClearCookies()
}
}
// set timeout s = second
func (req * request) SetTimeout(n time.Duration){
req.Client.Timeout = time.Duration(n * time.Second)
}
func (req * request) Proxy(proxyurl string){
urli := url.URL{}
urlproxy, err:= urli.Parse(proxyurl)
if err != nil {
fmt.Println("Set proxy failed")
return
}
req.Client.Transport = &http.Transport{
Proxy:http.ProxyURL(urlproxy),
TLSClientConfig: &tls.Config{InsecureSkipVerify: true},
}
}
/**************/
func (resp *response) ResponseDebug(){
if resp.req.Debug != 1 {
return
}
fmt.Println("===========Go ResponseDebug ============")
message, err := httputil.DumpResponse(resp.R, false)
if err != nil {
return
}
fmt.Println(string(message))
}
func (resp *response) Content() []byte {
defer resp.R.Body.Close()
var err error
var Body = resp.R.Body
if resp.R.Header.Get("Content-Encoding") == "gzip" && resp.req.Header.Get("Accept-Encoding") != "" {
// fmt.Println("gzip")
reader, err := gzip.NewReader(Body)
if err != nil {
return nil
}
Body = reader
}
resp.content, err = ioutil.ReadAll(Body)
if err != nil {
return nil
}
return resp.content
}
func (resp *response) Text() string {
if resp.content == nil {
resp.Content()
}
resp.text = string(resp.content)
return resp.text
}
func (resp *response) SaveFile(filename string) error {
if resp.content == nil {
resp.Content()
}
f, err := os.Create(filename)
if err != nil {
return err
}
defer f.Close()
_, err = f.Write(resp.content)
f.Sync()
return err
}
func (resp *response) Json(v interface{}) error {
if resp.content == nil {
resp.Content()
}
return json.Unmarshal(resp.content, v)
}
func (resp * response) Cookies() (cookies []*http.Cookie){
httpreq := resp.req.httpreq
client := resp.req.Client
cookies = client.Jar.Cookies(httpreq.URL)
return cookies
}
/**************post*************************/
// call req.Post ,only for easy
func Post(origurl string, args ...interface{}) (resp *response) {
req := Requests()
// call request Get
resp = req.Post(origurl, args...)
return resp
}
// POST requests
func (req *request) Post(origurl string, args ...interface{}) (resp *response) {
req.httpreq.Method = "POST"
req.Header.Add("Content-Type", "application/x-www-form-urlencoded")
// set params ?a=b&b=c
//set Header
params := []map[string]string{}
datas := []map[string]string{} // POST
files := []map[string]string{} //post file
//reset Cookies,
//Client.Do can copy cookie from client.Jar to req.Header
delete(req.httpreq.Header,"Cookie")
for _, arg := range args {
switch a := arg.(type) {
// arg is Header , set to request header
case Header:
for k, v := range a {
req.Header.Set(k, v)
}
// arg is "GET" params
// ?title=website&id=1860&from=login
case Params:
params = append(params, a)
case Datas: //Post form data,packaged in body.
datas = append(datas,a)
case Files:
files = append(files,a)
case Auth:
// a{username,password}
req.httpreq.SetBasicAuth(a[0],a[1])
}
}
disturl, _ := buildURLParams(origurl, params...)
if len(files) > 0{
req.buildFilesAndForms(files,datas)
} else {
Forms := req.buildForms(datas...)
req.setBodyBytes(Forms) // set forms to body
}
//prepare to Do
URL, err := url.Parse(disturl)
if err != nil {
return nil
}
req.httpreq.URL = URL
req.ClientSetCookies()
req.RequestDebug()
res, err := req.Client.Do(req.httpreq)
if err != nil {
fmt.Println(err)
return nil
}
resp = &response{}
resp.R = res
resp.req = req
resp.ResponseDebug()
return resp
}
// only set forms
func (req * request)setBodyBytes(Forms url.Values) {
// maybe
data := Forms.Encode()
req.httpreq.Body = ioutil.NopCloser(strings.NewReader(data))
req.httpreq.ContentLength = int64(len(data))
}
// upload file and form
// build to body format
func (req * request) buildFilesAndForms(files []map[string]string,datas []map[string]string){
//handle file multipart
var b bytes.Buffer
w := multipart.NewWriter(&b)
for _,file := range files{
for k,v := range file{
part, err := w.CreateFormFile(k, v)
if err != nil {
fmt.Printf("Upload %s failed!",v)
panic(err)
}
file := openFile(v)
_, err = io.Copy(part, file)
}
}
for _,data := range datas{
for k,v := range data{
w.WriteField(k,v)
}
}
w.Close()
// set file header example:
// "Content-Type": "multipart/form-data; boundary=------------------------7d87eceb5520850c",
req.httpreq.Body = ioutil.NopCloser( bytes.NewReader(b.Bytes()) )
req.httpreq.ContentLength = int64(b.Len())
req.Header.Set("Content-Type", w.FormDataContentType())
}
// build post Form data
func (req * request)buildForms(datas ...map[string]string) (Forms url.Values) {
Forms = url.Values{}
for _, data := range datas {
for key, value := range data {
Forms.Add(key, value)
}
}
return Forms
}
// open file for post upload files
func openFile(filename string)*os.File {
r, err := os.Open(filename)
if err != nil {
panic(err)
}
return r
}