-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathweb-request.go
74 lines (71 loc) · 1.63 KB
/
web-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
package peepingJim
import (
"bytes"
"crypto/tls"
"io/ioutil"
"log"
"net/http"
"net/http/httputil"
"net/url"
"strings"
"time"
)
const (
redirectLimit = 3
)
//getHeader returns the header and body of a page, while following any redirect
func getHeader(u *url.URL, srcpath string, timeout int, c chan string) {
var headers []string
redirects := 0
targetURL := u.String()
for {
client := http.Client{
Timeout: time.Duration(timeout) * time.Second,
CheckRedirect: func(req *http.Request, via []*http.Request) error {
return http.ErrUseLastResponse
},
Transport: &http.Transport{
TLSClientConfig: &tls.Config{InsecureSkipVerify: true},
},
}
req, err := http.NewRequest("GET", targetURL, nil)
if err != nil {
log.Fatal(err)
}
req.Header.Set("User-Agent", UserAgent)
resp, err := client.Do(req)
if err != nil {
log.Println(err)
break
}
defer resp.Body.Close()
if (resp.StatusCode == 302 || resp.StatusCode == 301) && (redirects < redirectLimit) {
header, err := httputil.DumpResponse(resp, false)
if err != nil {
log.Println(err)
break
}
headers = append(headers, string(header))
var tmpURL string
tmpURL = resp.Header.Get("Location")
targetURL = strings.TrimSuffix(tmpURL, "/")
redirects++
} else {
header, err := httputil.DumpResponse(resp, false)
if err != nil {
log.Println(err)
break
}
headers = append(headers, string(header))
var body bytes.Buffer
body.ReadFrom(resp.Body)
err = ioutil.WriteFile(srcpath, body.Bytes(), 0755)
if err != nil {
log.Println(err)
break
}
break
}
}
c <- strings.Join(headers, "\n")
}