-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathhttp-util.go
107 lines (92 loc) · 2.85 KB
/
http-util.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
package handler
import (
"bytes"
"encoding/json"
"fmt"
"io"
"log"
"net/http"
"net/http/httputil"
"net/url"
"strings"
)
type CommonRequest struct {
PathParams map[string]string `json:"pathParams"`
QueryParams map[string]string `json:"queryParams"`
Request interface{} `json:"request"`
}
type WebStatus struct {
StatusCode int `json:"code"`
Message string `json:"message"`
}
func CommonHttpCaller(callMethod string, targetFwUrl string, endPoint string, commonRequest *CommonRequest, auth string) ([]byte, error) {
pathParamsUrl := mappingUrlPathParams(endPoint, commonRequest)
queryParamsUrl := mappingQueryParams(pathParamsUrl, commonRequest)
requestUrl := targetFwUrl + queryParamsUrl
response, err := CommonHttp(requestUrl, commonRequest.Request, callMethod, auth)
return response, err
}
func CommonHttpCallerWithoutToken(callMethod string, targetFwUrl string, endPoint string, commonRequest *CommonRequest) ([]byte, error) {
pathParamsUrl := mappingUrlPathParams(endPoint, commonRequest)
queryParamsUrl := mappingQueryParams(pathParamsUrl, commonRequest)
requestUrl := targetFwUrl + queryParamsUrl
response, err := CommonHttp(requestUrl, commonRequest.Request, callMethod, "")
return response, err
}
func mappingUrlPathParams(endPoint string, commonRequest *CommonRequest) string {
u := endPoint
for k, r := range commonRequest.PathParams {
u = strings.Replace(u, "{"+k+"}", r, -1)
}
return u
}
func mappingQueryParams(targeturl string, commonRequest *CommonRequest) string {
u, err := url.Parse(targeturl)
if err != nil {
return ""
}
q := u.Query()
for k, v := range commonRequest.QueryParams {
q.Set(string(k), v)
}
u.RawQuery = q.Encode()
return u.String()
}
func CommonHttp(url string, s interface{}, httpMethod string, auth string) ([]byte, error) {
log.Println("CommonHttp - METHOD:" + httpMethod + " => url:" + url)
log.Println("isauth:", auth)
jsonData, err := json.Marshal(s)
if err != nil {
log.Println("commonPostERR : json.Marshal : ", err.Error())
return nil, err
}
req, err := http.NewRequest(httpMethod, url, bytes.NewBuffer(jsonData))
if err != nil {
log.Println("Error CommonHttp creating request:", err)
return nil, err
}
req.Header.Set("Content-Type", "application/json")
if auth != "" {
req.Header.Add("Authorization", auth)
}
requestDump, err := httputil.DumpRequest(req, true)
if err != nil {
log.Println("Error CommonHttp creating httputil.DumpRequest:", err)
}
log.Println("\n", string(requestDump))
client := &http.Client{}
resp, err := client.Do(req)
if err != nil {
log.Println("Error CommonHttp request:", err)
return nil, err
}
defer resp.Body.Close()
respBody, ioerr := io.ReadAll(resp.Body)
if ioerr != nil {
log.Println("Error CommonHttp reading response:", ioerr)
}
if resp.StatusCode != 200 {
return respBody, fmt.Errorf(resp.Status)
}
return respBody, nil
}