-
Notifications
You must be signed in to change notification settings - Fork 0
/
client_core.go
137 lines (107 loc) · 2.74 KB
/
client_core.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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
package gohttp
import (
"bytes"
"encoding/json"
"encoding/xml"
"errors"
"io/ioutil"
"net"
"net/http"
"strings"
"time"
"github.com/Yapcheekian/httpclient-go/core"
gohttpmock "github.com/Yapcheekian/httpclient-go/gohttp_mock"
"github.com/Yapcheekian/httpclient-go/gomime"
)
const (
defaultMaxIdleConnections = 2
defaultResponseTimeout = 2 * time.Second
defaultConnectionTimeout = 2 * time.Second
)
func (c *httpClient) getRequestBody(contentType string, body interface{}) ([]byte, error) {
if body == nil {
return nil, nil
}
switch strings.ToLower(contentType) {
case gomime.ContentTypeJson:
return json.Marshal(body)
case gomime.ContentTypeXml:
return xml.Marshal(body)
default:
return json.Marshal(body)
}
}
func (c *httpClient) do(method string, url string, headers http.Header, body interface{}) (*core.Response, error) {
fullHeaders := c.getRequestHeaders(headers)
requestBody, err := c.getRequestBody(fullHeaders.Get("content-type"), body)
if err != nil {
return nil, err
}
request, err := http.NewRequest(method, url, bytes.NewBuffer(requestBody))
if err != nil {
return nil, errors.New("unable to create a request")
}
request.Header = fullHeaders
response, err := c.getHttpClient().Do(request)
if err != nil {
return nil, err
}
defer response.Body.Close()
responseBody, err := ioutil.ReadAll(response.Body)
if err != nil {
return nil, err
}
finalResponse := core.Response{
Status: response.Status,
StatusCode: response.StatusCode,
Headers: response.Header,
Body: responseBody,
}
return &finalResponse, nil
}
func (c *httpClient) getHttpClient() core.HttpClient {
if gohttpmock.IsMockServerEnabled() {
return gohttpmock.GetMockedClient()
}
c.clientOnce.Do(func() {
if c.builder.client != nil {
c.client = c.builder.client
return
}
c.client = &http.Client{
Timeout: c.getConnectionTimeout() + c.getResponseTimeout(),
Transport: &http.Transport{
MaxIdleConnsPerHost: c.getMaxIdleConnections(),
ResponseHeaderTimeout: c.getResponseTimeout(),
DialContext: (&net.Dialer{
Timeout: c.getConnectionTimeout(),
}).DialContext,
},
}
})
return c.client
}
func (c *httpClient) getMaxIdleConnections() int {
if c.builder.maxIdleConnections > 0 {
return c.builder.maxIdleConnections
}
return defaultMaxIdleConnections
}
func (c *httpClient) getResponseTimeout() time.Duration {
if c.builder.requestTimeout > 0 {
return c.builder.requestTimeout
}
if c.builder.disableTimeouts {
return 0
}
return defaultResponseTimeout
}
func (c *httpClient) getConnectionTimeout() time.Duration {
if c.builder.connectionTimeout > 0 {
return c.builder.connectionTimeout
}
if c.builder.disableTimeouts {
return 0
}
return defaultConnectionTimeout
}