Skip to content

Commit a5e674b

Browse files
authored
支持在请求前修改各api的地址 (#736)
* 增加URI修改接口,以支持正向代理 * Update http.go * Update http.go
1 parent 0ffe341 commit a5e674b

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

util/http.go

+28
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,26 @@ import (
1717
"golang.org/x/crypto/pkcs12"
1818
)
1919

20+
// URIModifier URI修改器
21+
type URIModifier func(uri string) string
22+
23+
var uriModifier URIModifier
24+
25+
// SetURIModifier 设置URI修改器
26+
func SetURIModifier(fn URIModifier) {
27+
uriModifier = fn
28+
}
29+
2030
// HTTPGet get 请求
2131
func HTTPGet(uri string) ([]byte, error) {
2232
return HTTPGetContext(context.Background(), uri)
2333
}
2434

2535
// HTTPGetContext get 请求
2636
func HTTPGetContext(ctx context.Context, uri string) ([]byte, error) {
37+
if uriModifier != nil {
38+
uri = uriModifier(uri)
39+
}
2740
request, err := http.NewRequestWithContext(ctx, http.MethodGet, uri, nil)
2841
if err != nil {
2942
return nil, err
@@ -47,6 +60,9 @@ func HTTPPost(uri string, data string) ([]byte, error) {
4760

4861
// HTTPPostContext post 请求
4962
func HTTPPostContext(ctx context.Context, uri string, data []byte, header map[string]string) ([]byte, error) {
63+
if uriModifier != nil {
64+
uri = uriModifier(uri)
65+
}
5066
body := bytes.NewBuffer(data)
5167
request, err := http.NewRequestWithContext(ctx, http.MethodPost, uri, body)
5268
if err != nil {
@@ -71,6 +87,9 @@ func HTTPPostContext(ctx context.Context, uri string, data []byte, header map[st
7187

7288
// PostJSONContext post json 数据请求
7389
func PostJSONContext(ctx context.Context, uri string, obj interface{}) ([]byte, error) {
90+
if uriModifier != nil {
91+
uri = uriModifier(uri)
92+
}
7493
jsonBuf := new(bytes.Buffer)
7594
enc := json.NewEncoder(jsonBuf)
7695
enc.SetEscapeHTML(false)
@@ -146,6 +165,9 @@ type MultipartFormField struct {
146165

147166
// PostMultipartForm 上传文件或其他多个字段
148167
func PostMultipartForm(fields []MultipartFormField, uri string) (respBody []byte, err error) {
168+
if uriModifier != nil {
169+
uri = uriModifier(uri)
170+
}
149171
bodyBuf := &bytes.Buffer{}
150172
bodyWriter := multipart.NewWriter(bodyBuf)
151173

@@ -198,6 +220,9 @@ func PostMultipartForm(fields []MultipartFormField, uri string) (respBody []byte
198220

199221
// PostXML perform a HTTP/POST request with XML body
200222
func PostXML(uri string, obj interface{}) ([]byte, error) {
223+
if uriModifier != nil {
224+
uri = uriModifier(uri)
225+
}
201226
xmlData, err := xml.Marshal(obj)
202227
if err != nil {
203228
return nil, err
@@ -259,6 +284,9 @@ func pkcs12ToPem(p12 []byte, password string) tls.Certificate {
259284

260285
// PostXMLWithTLS perform a HTTP/POST request with XML body and TLS
261286
func PostXMLWithTLS(uri string, obj interface{}, ca, key string) ([]byte, error) {
287+
if uriModifier != nil {
288+
uri = uriModifier(uri)
289+
}
262290
xmlData, err := xml.Marshal(obj)
263291
if err != nil {
264292
return nil, err

0 commit comments

Comments
 (0)