@@ -17,13 +17,26 @@ import (
17
17
"golang.org/x/crypto/pkcs12"
18
18
)
19
19
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
+
20
30
// HTTPGet get 请求
21
31
func HTTPGet (uri string ) ([]byte , error ) {
22
32
return HTTPGetContext (context .Background (), uri )
23
33
}
24
34
25
35
// HTTPGetContext get 请求
26
36
func HTTPGetContext (ctx context.Context , uri string ) ([]byte , error ) {
37
+ if uriModifier != nil {
38
+ uri = uriModifier (uri )
39
+ }
27
40
request , err := http .NewRequestWithContext (ctx , http .MethodGet , uri , nil )
28
41
if err != nil {
29
42
return nil , err
@@ -47,6 +60,9 @@ func HTTPPost(uri string, data string) ([]byte, error) {
47
60
48
61
// HTTPPostContext post 请求
49
62
func HTTPPostContext (ctx context.Context , uri string , data []byte , header map [string ]string ) ([]byte , error ) {
63
+ if uriModifier != nil {
64
+ uri = uriModifier (uri )
65
+ }
50
66
body := bytes .NewBuffer (data )
51
67
request , err := http .NewRequestWithContext (ctx , http .MethodPost , uri , body )
52
68
if err != nil {
@@ -71,6 +87,9 @@ func HTTPPostContext(ctx context.Context, uri string, data []byte, header map[st
71
87
72
88
// PostJSONContext post json 数据请求
73
89
func PostJSONContext (ctx context.Context , uri string , obj interface {}) ([]byte , error ) {
90
+ if uriModifier != nil {
91
+ uri = uriModifier (uri )
92
+ }
74
93
jsonBuf := new (bytes.Buffer )
75
94
enc := json .NewEncoder (jsonBuf )
76
95
enc .SetEscapeHTML (false )
@@ -146,6 +165,9 @@ type MultipartFormField struct {
146
165
147
166
// PostMultipartForm 上传文件或其他多个字段
148
167
func PostMultipartForm (fields []MultipartFormField , uri string ) (respBody []byte , err error ) {
168
+ if uriModifier != nil {
169
+ uri = uriModifier (uri )
170
+ }
149
171
bodyBuf := & bytes.Buffer {}
150
172
bodyWriter := multipart .NewWriter (bodyBuf )
151
173
@@ -198,6 +220,9 @@ func PostMultipartForm(fields []MultipartFormField, uri string) (respBody []byte
198
220
199
221
// PostXML perform a HTTP/POST request with XML body
200
222
func PostXML (uri string , obj interface {}) ([]byte , error ) {
223
+ if uriModifier != nil {
224
+ uri = uriModifier (uri )
225
+ }
201
226
xmlData , err := xml .Marshal (obj )
202
227
if err != nil {
203
228
return nil , err
@@ -259,6 +284,9 @@ func pkcs12ToPem(p12 []byte, password string) tls.Certificate {
259
284
260
285
// PostXMLWithTLS perform a HTTP/POST request with XML body and TLS
261
286
func PostXMLWithTLS (uri string , obj interface {}, ca , key string ) ([]byte , error ) {
287
+ if uriModifier != nil {
288
+ uri = uriModifier (uri )
289
+ }
262
290
xmlData , err := xml .Marshal (obj )
263
291
if err != nil {
264
292
return nil , err
0 commit comments