HTTP客户端

ghttp.Client

gf提供了强大易用的HTTP客户端,由ghttp提供支持(ghttp包统一封装了HTTP客户端及服务端功能),我们先来看一下HTTP客户端的方法有哪些:

  1. func NewClient() *Client
  2. func (c *Client) Connect(url, data string) (*ClientResponse, error)
  3. func (c *Client) Delete(url, data string) (*ClientResponse, error)
  4. func (c *Client) DoRequest(method, url string, data []byte) (*ClientResponse, error)
  5. func (c *Client) Get(url string) (*ClientResponse, error)
  6. func (c *Client) Head(url, data string) (*ClientResponse, error)
  7. func (c *Client) Options(url, data string) (*ClientResponse, error)
  8. func (c *Client) Patch(url, data string) (*ClientResponse, error)
  9. func (c *Client) Post(url, data string) (*ClientResponse, error)
  10. func (c *Client) Put(url, data string) (*ClientResponse, error)
  11. func (c *Client) SetBasicAuth(user, pass string)
  12. func (c *Client) SetHeader(key, value string)
  13. func (c *Client) SetTimeOut(t time.Duration)
  14. func (c *Client) Trace(url, data string) (*ClientResponse, error)

我们可以使用ghttp.NewClient创建一个HTTP客户端对象,随后可以使用该对象执行请求。ghttp.Client对象中封装了一系列基于HTTP Method来命名的方法,调用这些方法将会发起对应的HTTP Method请求。常用的方法当然是GetPost方法,此外DoRequest是核心的请求方法,用户可以调用该方法实现自定义的HTTP Method发送请求。

ghttp模块也提供了独立的包函数来实现HTTP请求,函数列表如下:

  1. func Connect(url, data string) (*ClientResponse, error)
  2. func Delete(url, data string) (*ClientResponse, error)
  3. func DoRequest(method, url string, data []byte) (*ClientResponse, error)
  4. func Get(url string) (*ClientResponse, error)
  5. func Head(url, data string) (*ClientResponse, error)
  6. func Options(url, data string) (*ClientResponse, error)
  7. func Patch(url, data string) (*ClientResponse, error)
  8. func Post(url, data string) (*ClientResponse, error)
  9. func Put(url, data string) (*ClientResponse, error)
  10. func Trace(url, data string) (*ClientResponse, error)

函数说明与Client对象的方法说明一致,因此比较常见的情况是直接使用ghttp对应的HTTP包方法来实现HTTP客户端请求,而不用创建一个Client对象来处理。不过,当需要自定义请求的一些细节(例如超时时间、Cookie、Header等)时,就得依靠自定义的Client对象来处理了(需要New一个ghttp.Client对象来控制)。

ghttp.ClientResponse

ghttp.Client对应的是ghttp.ClientResponse,表示HTTP对应请求的返回结果对象,该对象继承于http.Response,可以使用http.Response的所有方法。在此基础之上增加了以下两个方法:

  1. func (r *ClientResponse) Close()
  2. func (r *ClientResponse) ReadAll() []byte

这两个方法也是最常用的两个方法,一个是关闭请求返回结果对象,一个是获取所有的返回内容。

这里也要提醒的是,ghttp.ClientResponse是需要手动调用Close方法关闭的,也就是说,不管你使用不使用返回的ghttp.ClientResponse对象,你都需要将该返回对象赋值给一个变量,并且(在不使用的时候)手动调用其Close方法进行关闭。需要手动关闭返回对象这一点,与标准库的HTTP客户端请求对象操作相同。

基本示例

我们来看几个HTTP客户端请求的例子:

  1. 发送GET请求,并打印出返回值
    1. if r, e := ghttp.Get("http://johng.cn"); e != nil {
    2. fmt.Println(e)
    3. } else {
    4. fmt.Println(string(r.ReadAll()))
    5. r.Close()
    6. }
  2. 发送POST请求,并打印出返回值

    1. if r, e := ghttp.Post("http://127.0.0.1:8199/form", "name=john&age=18"); e != nil {
    2. fmt.Println(e)
    3. } else {
    4. fmt.Println(string(r.ReadAll()))
    5. r.Close()
    6. }
  3. 发送POST请求,编码请求参数,并打印出返回值

    1. params := ghttp.BuildParams(map[string]string{
    2. "submit" : "1",
    3. "callback" : "http://127.0.0.1/callback?url=http://baidu.com",
    4. })
    5. if r, e := ghttp.Post("http://127.0.0.1:8199/form", params); e != nil {
    6. fmt.Println(e)
    7. } else {
    8. fmt.Println(string(r.ReadAll()))
    9. r.Close()
    10. }

    对于复杂参数的请求处理来讲,这是一个非常典型的例子。gf的HTTP客户端设计得非常简洁,请求参数类型被设计为最常用的string类型,因此在传递多参数的时候用户可以使用”&”符号进行连接,但当参数中带有特殊字符时,需要使用ghttp.BuildParams方法进行编码处理,并生成用于请求的参数字符串。
    当然,您也可以使用gurl.Encode方法来自行对参数进行编码处理。

  4. 发送DELETE请求,并打印出返回值

    1. if r, e := ghttp.Delete("http://127.0.0.1:8199/user", "10000"); e != nil {
    2. fmt.Println(e)
    3. } else {
    4. fmt.Println(string(r.ReadAll()))
    5. r.Close()
    6. }

文件上传

gf的HTTP客户端封装并极大简化了文件上传功能,直接上例子:

  1. 客户端
    gitee.com/johng/gf/blob/master/geg/net/ghttp/client/upload/client.go

    1. package main
    2. import (
    3. "fmt"
    4. "gitee.com/johng/gf/g/os/glog"
    5. "gitee.com/johng/gf/g/net/ghttp"
    6. )
    7. func main() {
    8. path := "/home/john/Workspace/Go/gitee.com/johng/gf/version.go"
    9. r, e := ghttp.Post("http://127.0.0.1:8199/upload", "name=john&age=18&upload-file=@file:" + path)
    10. if e != nil {
    11. glog.Error(e)
    12. } else {
    13. fmt.Println(string(r.ReadAll()))
    14. r.Close()
    15. }
    16. }

    可以看到,文件上传参数格式使用 参数名=@file:文件路径 ,HTTP客户端将会自动解析文件路径对应的文件内容并读取提交给服务端。原本复杂的文件上传操作被gf进行了封装处理,用户只需要使用 @file:+文件路径 来构成参数值即可。

  2. 服务端
    gitee.com/johng/gf/blob/master/geg/net/ghttp/client/upload/server.go

    1. package main
    2. import (
    3. "gitee.com/johng/gf/g"
    4. "gitee.com/johng/gf/g/os/gfile"
    5. "gitee.com/johng/gf/g/net/ghttp"
    6. )
    7. // 执行文件上传处理,上传到系统临时目录 /tmp
    8. func Upload(r *ghttp.Request) {
    9. if f, h, e := r.FormFile("upload-file"); e == nil {
    10. defer f.Close()
    11. name := gfile.Basename(h.Filename)
    12. buffer := make([]byte, h.Size)
    13. f.Read(buffer)
    14. gfile.PutBinContents("/tmp/" + name, buffer)
    15. r.Response.Write(name + " uploaded successly")
    16. } else {
    17. r.Response.Write(e.Error())
    18. }
    19. }
    20. // 展示文件上传页面
    21. func UploadShow(r *ghttp.Request) {
    22. r.Response.Write(`
    23. <html>
    24. <head>
    25. <title>上传文件</title>
    26. </head>
    27. <body>
    28. <form enctype="multipart/form-data" action="/upload" method="post">
    29. <input type="file" name="upload-file" />
    30. <input type="submit" value="upload" />
    31. </form>
    32. </body>
    33. </html>
    34. `)
    35. }
    36. func main() {
    37. s := g.Server()
    38. s.BindHandler("/upload", Upload)
    39. s.BindHandler("/upload/show", UploadShow)
    40. s.SetPort(8199)
    41. s.Run()
    42. }

    访问 http://127.0.0.1:8199/upload/show 选择需要上传的文件,提交之后可以看到文件上传成功到服务器上。

    文件上传比较简单,但是需要注意的是,服务端在上传处理中需要使用f.Close() 关闭掉临时上传文件指针

自定义Header

http客户端发起请求时可以自定义发送给服务端的Header内容,该特性使用SetHeader(key, value string)方法实现。我们来看一个客户端自定义Cookie的例子。

  1. 客户端

    gitee.com/johng/gf/blob/master/geg/net/ghttp/client/cookie/client.go

    1. package main
    2. import (
    3. "fmt"
    4. "gitee.com/johng/gf/g/os/glog"
    5. "gitee.com/johng/gf/g/net/ghttp"
    6. )
    7. func main() {
    8. c := ghttp.NewClient()
    9. c.SetHeader("Cookie", "name=john; score=100")
    10. if r, e := c.Get("http://127.0.0.1:8199/"); e != nil {
    11. glog.Error(e)
    12. } else {
    13. fmt.Println(string(r.ReadAll()))
    14. }
    15. }

    通过ghttp.NewClient()创建一个自定义的http请求客户端对象,并通过c.SetHeader("Cookie", "name=john; score=100")设置自定义的Cookie,这里我们设置了两个示例用的Cookie参数,一个name,一个score,注意多个Cookie参数使用;符号分隔。

  2. 服务端

    gitee.com/johng/gf/blob/master/geg/net/ghttp/client/cookie/server.go

    1. package main
    2. import (
    3. "gitee.com/johng/gf/g"
    4. "gitee.com/johng/gf/g/net/ghttp"
    5. )
    6. func main() {
    7. s := g.Server()
    8. s.BindHandler("/", func(r *ghttp.Request){
    9. r.Response.Writeln(r.Cookie.Map())
    10. })
    11. s.SetPort(8199)
    12. s.Run()
    13. }

    服务端的逻辑很简单,直接将接收到的Cookie参数全部打印出来。

  3. 执行结果

    客户端代码执行后,终端将会打印出服务端的返回结果,如下:

    1. map[name:john score:100 gfsessionid:1ADDSEU5QN425798]

    可以看到,服务端已经接收到了客户端自定义的Cookie参数。其中gfsessionid是每个http请求都会有的sessionid,是gf框架自带的Cookie参数。