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-12-30 22:02:46 +08:00
|
|
|
|
|
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"
|
2018-01-11 16:06:42 +08:00
|
|
|
|
"mime/multipart"
|
|
|
|
|
"os"
|
|
|
|
|
"io"
|
2018-09-26 18:44:30 +08:00
|
|
|
|
"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 {
|
2018-07-23 11:16:21 +08:00
|
|
|
|
http.Client // 底层http client对象
|
2018-07-23 19:17:17 +08:00
|
|
|
|
header map[string]string // HEADER信息Map
|
2018-12-31 00:50:55 +08:00
|
|
|
|
prefix string // 设置请求的URL前缀
|
2018-07-23 11:16:21 +08:00
|
|
|
|
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{
|
2018-07-23 11:16:21 +08:00
|
|
|
|
Client : http.Client {
|
2018-05-28 17:02:53 +08:00
|
|
|
|
Transport: &http.Transport {
|
|
|
|
|
DisableKeepAlives: true,
|
|
|
|
|
},
|
|
|
|
|
},
|
2018-07-23 11:16:21 +08:00
|
|
|
|
header : make(map[string]string),
|
2018-05-28 17:02:53 +08:00
|
|
|
|
}
|
2017-11-23 10:21:28 +08:00
|
|
|
|
}
|
|
|
|
|
|
2018-12-30 22:02:46 +08:00
|
|
|
|
// 设置HTTP Header
|
2018-06-07 09:30:21 +08:00
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-12-31 00:50:55 +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
|
|
|
|
|
}
|
|
|
|
|
|
2018-07-23 11:16:21 +08:00
|
|
|
|
// 设置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) {
|
2018-01-02 15:52:32 +08:00
|
|
|
|
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) {
|
2018-01-02 15:52:32 +08:00
|
|
|
|
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) {
|
2018-12-31 00:50:55 +08:00
|
|
|
|
if len(c.prefix) > 0 {
|
|
|
|
|
url = c.prefix + url
|
|
|
|
|
}
|
|
|
|
|
req := (*http.Request)(nil)
|
2018-06-07 09:30:21 +08:00
|
|
|
|
if strings.Contains(data, "@file:") {
|
2018-01-11 16:06:42 +08:00
|
|
|
|
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 {
|
2018-09-26 18:44:30 +08:00
|
|
|
|
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 {
|
2018-01-11 16:06:42 +08:00
|
|
|
|
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 {
|
2018-01-11 16:06:42 +08:00
|
|
|
|
writer.WriteField(array[0], array[1])
|
2018-01-10 18:20:32 +08:00
|
|
|
|
}
|
2018-01-11 16:06:42 +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 {
|
2018-01-11 16:06:42 +08:00
|
|
|
|
req = r
|
|
|
|
|
req.Header.Set("Content-Type", writer.FormDataContentType())
|
2018-01-10 18:20:32 +08:00
|
|
|
|
}
|
|
|
|
|
} else {
|
2018-01-11 16:06:42 +08:00
|
|
|
|
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
|
|
|
|
}
|
2018-06-07 09:30:21 +08:00
|
|
|
|
// 自定义header
|
|
|
|
|
if len(c.header) > 0 {
|
|
|
|
|
for k, v := range c.header {
|
|
|
|
|
req.Header.Set(k, v)
|
|
|
|
|
}
|
|
|
|
|
}
|
2018-07-23 11:16:21 +08:00
|
|
|
|
// 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) {
|
2018-01-02 15:52:32 +08:00
|
|
|
|
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) {
|
2018-01-02 15:52:32 +08:00
|
|
|
|
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) {
|
2018-01-02 15:52:32 +08:00
|
|
|
|
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) {
|
2018-01-02 15:52:32 +08:00
|
|
|
|
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) {
|
2018-01-02 15:52:32 +08:00
|
|
|
|
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) {
|
2018-01-02 15:52:32 +08:00
|
|
|
|
return c.DoRequest("TRACE", url, []byte(data))
|
2017-11-23 10:21:28 +08:00
|
|
|
|
}
|
|
|
|
|
|
2018-12-30 22:02:46 +08:00
|
|
|
|
// GET请求并返回服务端结果(内部会自动读取服务端返回结果并关闭缓冲区指针)
|
2018-12-31 00:50:55 +08:00
|
|
|
|
func (c *Client) GetContent(url string, data...string) string {
|
|
|
|
|
return c.DoRequestContent("GET", url, data...)
|
2018-12-30 22:02:46 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// PUT请求并返回服务端结果(内部会自动读取服务端返回结果并关闭缓冲区指针)
|
2018-12-31 00:50:55 +08:00
|
|
|
|
func (c *Client) PutContent(url string, data...string) string {
|
|
|
|
|
return c.DoRequestContent("PUT", url, data...)
|
2018-12-30 22:02:46 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// POST请求并返回服务端结果(内部会自动读取服务端返回结果并关闭缓冲区指针)
|
2018-12-31 00:50:55 +08:00
|
|
|
|
func (c *Client) PostContent(url string, data...string) string {
|
|
|
|
|
return c.DoRequestContent("POST", url, data...)
|
2018-12-30 22:02:46 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// DELETE请求并返回服务端结果(内部会自动读取服务端返回结果并关闭缓冲区指针)
|
2018-12-31 00:50:55 +08:00
|
|
|
|
func (c *Client) DeleteContent(url string, data...string) string {
|
|
|
|
|
return c.DoRequestContent("DELETE", url, data...)
|
2018-12-30 22:02:46 +08:00
|
|
|
|
}
|
|
|
|
|
|
2018-12-31 00:50:55 +08:00
|
|
|
|
func (c *Client) HeadContent(url string, data...string) string {
|
|
|
|
|
return c.DoRequestContent("HEAD", url, data...)
|
2018-12-30 22:02:46 +08:00
|
|
|
|
}
|
|
|
|
|
|
2018-12-31 00:50:55 +08:00
|
|
|
|
func (c *Client) PatchContent(url string, data...string) string {
|
|
|
|
|
return c.DoRequestContent("PATCH", url, data...)
|
2018-12-30 22:02:46 +08:00
|
|
|
|
}
|
|
|
|
|
|
2018-12-31 00:50:55 +08:00
|
|
|
|
func (c *Client) ConnectContent(url string, data...string) string {
|
|
|
|
|
return c.DoRequestContent("CONNECT", url, data...)
|
2018-12-30 22:02:46 +08:00
|
|
|
|
}
|
|
|
|
|
|
2018-12-31 00:50:55 +08:00
|
|
|
|
func (c *Client) OptionsContent(url string, data...string) string {
|
|
|
|
|
return c.DoRequestContent("OPTIONS", url, data...)
|
2018-12-30 22:02:46 +08:00
|
|
|
|
}
|
|
|
|
|
|
2018-12-31 00:50:55 +08:00
|
|
|
|
func (c *Client) TraceContent(url string, data...string) string {
|
|
|
|
|
return c.DoRequestContent("TRACE", url, data...)
|
2018-12-30 22:02:46 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 请求并返回服务端结果(内部会自动读取服务端返回结果并关闭缓冲区指针)
|
2018-12-31 00:50:55 +08:00
|
|
|
|
func (c *Client) DoRequestContent(method string, url string, data...string) string {
|
2018-12-30 22:02:46 +08:00
|
|
|
|
content := ""
|
|
|
|
|
if len(data) > 0 {
|
|
|
|
|
content = data[0]
|
|
|
|
|
}
|
2018-12-31 00:50:55 +08:00
|
|
|
|
response, err := c.DoRequest(method, url, []byte(content))
|
2018-12-30 22:02:46 +08:00
|
|
|
|
if err != nil {
|
|
|
|
|
return ""
|
|
|
|
|
}
|
|
|
|
|
defer response.Close()
|
|
|
|
|
return string(response.ReadAll())
|
|
|
|
|
}
|
|
|
|
|
|
2018-12-31 00:50:55 +08:00
|
|
|
|
// 请求并返回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
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|