gf/g/net/ghttp/ghttp_client_request_client.go

266 lines
7.8 KiB
Go
Raw Normal View History

2017-12-29 16:03:30 +08:00
// Copyright 2017 gf Author(https://gitee.com/johng/gf). All Rights Reserved.
//
// This Source Code Form is subject to the terms of the MIT License.
// If a copy of the MIT was not distributed with this file,
// You can obtain one at https://gitee.com/johng/gf.
2018-04-13 15:19:31 +08:00
// HTTP客户端请求.
2017-12-31 18:19:58 +08:00
2017-11-23 10:21:28 +08:00
package ghttp
import (
2019-02-01 20:45:11 +08:00
"gitee.com/johng/gf/g/text/gregex"
2017-11-23 10:21:28 +08:00
"time"
2017-12-07 14:57:16 +08:00
"bytes"
2018-01-10 18:20:32 +08:00
"strings"
"net/http"
"mime/multipart"
"os"
"io"
"gitee.com/johng/gf/g/os/gfile"
"errors"
"fmt"
2017-11-23 10:21:28 +08:00
)
2017-12-07 14:57:16 +08:00
// http客户端
type Client struct {
http.Client // 底层http client对象
2018-07-23 19:17:17 +08:00
header map[string]string // HEADER信息Map
prefix string // 设置请求的URL前缀
authUser string // HTTP基本权限设置名称
authPass string // HTTP基本权限设置密码
2017-12-07 14:57:16 +08:00
}
2017-11-23 10:21:28 +08:00
// http客户端对象指针
func NewClient() (*Client) {
2018-05-28 17:02:53 +08:00
return &Client{
Client : http.Client {
2018-05-28 17:02:53 +08:00
Transport: &http.Transport {
DisableKeepAlives: true,
},
},
header : make(map[string]string),
2018-05-28 17:02:53 +08:00
}
2017-11-23 10:21:28 +08:00
}
// 设置HTTP Header
func (c *Client) SetHeader(key, value string) {
c.header[key] = value
}
2019-01-18 22:02:17 +08:00
// 通过字符串设置HTTP Header
func (c *Client) SetHeaderRaw(header string) {
for _, line := range strings.Split(strings.TrimSpace(header), "\n") {
array, _ := gregex.MatchString(`^([\w\-]+):\s*(.+)`, line)
2019-01-23 15:01:21 +08:00
if len(array) >= 3 {
c.header[array[1]] = array[2]
}
2019-01-18 22:02:17 +08:00
}
}
// 设置请求的URL前缀
func (c *Client) SetPrefix(prefix string) {
c.prefix = prefix
}
2017-11-23 10:21:28 +08:00
// 设置请求过期时间
func (c *Client) SetTimeOut(t time.Duration) {
c.Timeout = t
}
// 设置HTTP访问账号密码
func (c *Client) SetBasicAuth(user, pass string) {
c.authUser = user
c.authPass = pass
}
2017-11-23 10:21:28 +08:00
// GET请求
2017-12-07 14:57:16 +08:00
func (c *Client) Get(url string) (*ClientResponse, error) {
return c.DoRequest("GET", url, []byte(""))
2017-11-23 10:21:28 +08:00
}
// PUT请求
2017-12-07 14:57:16 +08:00
func (c *Client) Put(url, data string) (*ClientResponse, error) {
return c.DoRequest("PUT", url, []byte(data))
2017-11-23 10:21:28 +08:00
}
2018-07-23 19:17:17 +08:00
// POST请求提交数据默认使用表单方式提交数据(绝大部分场景下也是如此)。
// 如果服务端对Content-Type有要求可使用Client对象进行请求单独设置相关属性。
2018-01-10 18:20:32 +08:00
// 支持文件上传需要字段格式为FieldName=@file:
2017-12-07 14:57:16 +08:00
func (c *Client) Post(url, data string) (*ClientResponse, error) {
if len(c.prefix) > 0 {
url = c.prefix + url
}
req := (*http.Request)(nil)
if strings.Contains(data, "@file:") {
buffer := new(bytes.Buffer)
writer := multipart.NewWriter(buffer)
for _, item := range strings.Split(data, "&") {
array := strings.Split(item, "=")
if len(array[1]) > 6 && strings.Compare(array[1][0:6], "@file:") == 0 {
path := array[1][6:]
if !gfile.Exists(path) {
return nil, errors.New(fmt.Sprintf(`"%s" does not exist`, path))
}
if file, err := writer.CreateFormFile(array[0], path); err == nil {
if f, err := os.Open(path); err == nil {
defer f.Close()
if _, err = io.Copy(file, f); err != nil {
return nil, err
}
} else {
2018-01-10 18:20:32 +08:00
return nil, err
}
} else {
return nil, err
}
} else {
writer.WriteField(array[0], array[1])
2018-01-10 18:20:32 +08:00
}
}
writer.Close()
if r, err := http.NewRequest("POST", url, buffer); err != nil {
return nil, err
2018-01-10 18:20:32 +08:00
} else {
req = r
req.Header.Set("Content-Type", writer.FormDataContentType())
2018-01-10 18:20:32 +08:00
}
} else {
if r, err := http.NewRequest("POST", url, bytes.NewReader([]byte(data))); err != nil {
return nil, err
} else {
req = r
req.Header.Set("Content-Type", "application/x-www-form-urlencoded")
}
2018-01-10 18:20:32 +08:00
}
// 自定义header
if len(c.header) > 0 {
for k, v := range c.header {
req.Header.Set(k, v)
}
}
// HTTP账号密码
if len(c.authUser) > 0 {
req.SetBasicAuth(c.authUser, c.authPass)
}
2018-01-10 18:20:32 +08:00
// 执行请求
resp, err := c.Do(req)
2017-11-23 10:21:28 +08:00
if err != nil {
2017-12-07 14:57:16 +08:00
return nil, err
2017-11-23 10:21:28 +08:00
}
r := &ClientResponse{}
r.Response = *resp
2017-12-07 14:57:16 +08:00
return r, nil
2017-11-23 10:21:28 +08:00
}
// DELETE请求
2017-12-07 14:57:16 +08:00
func (c *Client) Delete(url, data string) (*ClientResponse, error) {
return c.DoRequest("DELETE", url, []byte(data))
2017-11-23 10:21:28 +08:00
}
2017-12-07 14:57:16 +08:00
func (c *Client) Head(url, data string) (*ClientResponse, error) {
return c.DoRequest("HEAD", url, []byte(data))
2017-11-23 10:21:28 +08:00
}
2017-12-07 14:57:16 +08:00
func (c *Client) Patch(url, data string) (*ClientResponse, error) {
return c.DoRequest("PATCH", url, []byte(data))
2017-11-23 10:21:28 +08:00
}
2017-12-07 14:57:16 +08:00
func (c *Client) Connect(url, data string) (*ClientResponse, error) {
return c.DoRequest("CONNECT", url, []byte(data))
2017-11-23 10:21:28 +08:00
}
2017-12-07 14:57:16 +08:00
func (c *Client) Options(url, data string) (*ClientResponse, error) {
return c.DoRequest("OPTIONS", url, []byte(data))
2017-11-23 10:21:28 +08:00
}
2017-12-07 14:57:16 +08:00
func (c *Client) Trace(url, data string) (*ClientResponse, error) {
return c.DoRequest("TRACE", url, []byte(data))
2017-11-23 10:21:28 +08:00
}
// GET请求并返回服务端结果(内部会自动读取服务端返回结果并关闭缓冲区指针)
func (c *Client) GetContent(url string, data...string) string {
return c.DoRequestContent("GET", url, data...)
}
// PUT请求并返回服务端结果(内部会自动读取服务端返回结果并关闭缓冲区指针)
func (c *Client) PutContent(url string, data...string) string {
return c.DoRequestContent("PUT", url, data...)
}
// POST请求并返回服务端结果(内部会自动读取服务端返回结果并关闭缓冲区指针)
func (c *Client) PostContent(url string, data...string) string {
return c.DoRequestContent("POST", url, data...)
}
// DELETE请求并返回服务端结果(内部会自动读取服务端返回结果并关闭缓冲区指针)
func (c *Client) DeleteContent(url string, data...string) string {
return c.DoRequestContent("DELETE", url, data...)
}
func (c *Client) HeadContent(url string, data...string) string {
return c.DoRequestContent("HEAD", url, data...)
}
func (c *Client) PatchContent(url string, data...string) string {
return c.DoRequestContent("PATCH", url, data...)
}
func (c *Client) ConnectContent(url string, data...string) string {
return c.DoRequestContent("CONNECT", url, data...)
}
func (c *Client) OptionsContent(url string, data...string) string {
return c.DoRequestContent("OPTIONS", url, data...)
}
func (c *Client) TraceContent(url string, data...string) string {
return c.DoRequestContent("TRACE", url, data...)
}
// 请求并返回服务端结果(内部会自动读取服务端返回结果并关闭缓冲区指针)
func (c *Client) DoRequestContent(method string, url string, data...string) string {
content := ""
if len(data) > 0 {
content = data[0]
}
response, err := c.DoRequest(method, url, []byte(content))
if err != nil {
return ""
}
defer response.Close()
return string(response.ReadAll())
}
// 请求并返回response对象该方法支持二进制提交数据
func (c *Client) DoRequest(method, url string, data []byte) (*ClientResponse, error) {
if strings.EqualFold("POST", method) {
return c.Post(url, string(data))
}
if len(c.prefix) > 0 {
url = c.prefix + url
}
req, err := http.NewRequest(strings.ToUpper(method), url, bytes.NewReader(data))
if err != nil {
return nil, err
}
// 自定义header
if len(c.header) > 0 {
for k, v := range c.header {
req.Header.Set(k, v)
}
}
// 执行请求
resp, err := c.Do(req)
if err != nil {
return nil, err
}
r := &ClientResponse{}
r.Response = *resp
return r, nil
}