Skip to content

Commit d58bd83

Browse files
committed
💩 add util my http
1 parent 76ce5ef commit d58bd83

File tree

3 files changed

+110
-0
lines changed

3 files changed

+110
-0
lines changed

request/request.go

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
/***************************
2+
@File : request.go
3+
@Time : 2022/07/06 17:47:49
4+
@AUTHOR : small_ant
5+
6+
@Desc : req send
7+
****************************/
8+
9+
package request
10+
11+
import (
12+
"bytes"
13+
"io/ioutil"
14+
"net/http"
15+
)
16+
17+
// Do
18+
// A simple http client.
19+
func (c *Cli) Do(r *Req) (body []byte, err error) {
20+
req, err := http.NewRequest(r.Method, r.Url, bytes.NewBuffer(r.Data))
21+
if err != nil {
22+
return nil, err
23+
}
24+
for k, v := range c.Heder {
25+
req.Header.Add(k, v)
26+
}
27+
resp, err := c.Client.Do(req)
28+
if err != nil {
29+
return nil, err
30+
}
31+
defer resp.Body.Close()
32+
if resp.StatusCode != 200 {
33+
return nil, err
34+
}
35+
body, err = ioutil.ReadAll(resp.Body)
36+
if err != nil {
37+
return nil, err
38+
}
39+
return body, nil
40+
}

request/request_test.go

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
/***************************
2+
@File : request_test.go
3+
@Time : 2022/07/06 18:06:56
4+
@AUTHOR : small_ant
5+
6+
@Desc : test request send
7+
****************************/
8+
9+
package request
10+
11+
import "testing"
12+
13+
func TestSend(t *testing.T) {
14+
cli := NewCli()
15+
// cli.SetTimeout(5)
16+
req := NewReq("GET", "http://www.baidu.com", nil)
17+
body, err := cli.Do(req)
18+
if err != nil {
19+
t.Error(err)
20+
}
21+
t.Log(string(body))
22+
}

request/types.go

+48
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
/***************************
2+
@File : types.go
3+
@Time : 2022/07/06 17:35:50
4+
@AUTHOR : small_ant
5+
6+
@Desc : Request send
7+
****************************/
8+
9+
package request
10+
11+
import (
12+
"net/http"
13+
"time"
14+
)
15+
16+
type Cli struct {
17+
Client *http.Client
18+
Timeout int64
19+
Heder map[string]string
20+
}
21+
22+
type Req struct {
23+
Method string
24+
Url string
25+
Data []byte
26+
}
27+
28+
// NewCli returns a new Cli with a default http.Client.
29+
func NewCli() *Cli {
30+
return &Cli{
31+
Client: &http.Client{},
32+
}
33+
}
34+
35+
// Setting the timeout for the http client.
36+
func (c *Cli) SetTimeout(timeout int64) {
37+
c.Timeout = timeout
38+
c.Client = &http.Client{Timeout: time.Duration(timeout)}
39+
}
40+
41+
// NewReq returns a pointer to a Req with the given method, url, and data.
42+
func NewReq(method, url string, data []byte) *Req {
43+
return &Req{
44+
Method: method,
45+
Url: url,
46+
Data: data,
47+
}
48+
}

0 commit comments

Comments
 (0)