-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathhttp_client.go
More file actions
159 lines (120 loc) · 3.66 KB
/
http_client.go
File metadata and controls
159 lines (120 loc) · 3.66 KB
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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
package heimdall
import (
"io"
"io/ioutil"
"net/http"
"time"
"fmt"
"github.com/gojek-engineering/go-multierror"
"github.com/pkg/errors"
)
const defaultRetryCount int = 0
type httpClient struct {
client *http.Client
retryCount int
retrier Retriable
}
// NewHTTPClient returns a new instance of HTTPClient
func NewHTTPClient(timeoutInMilliseconds int) Client {
httpTimeout := time.Duration(timeoutInMilliseconds) * time.Millisecond
return &httpClient{
client: &http.Client{
Timeout: httpTimeout,
},
retryCount: defaultRetryCount,
retrier: NewNoRetrier(),
}
}
// SetRetryCount sets the retry count for the httpClient
func (c *httpClient) SetRetryCount(count int) {
c.retryCount = count
}
// SetRetrier sets the strategy for retrying
func (c *httpClient) SetRetrier(retrier Retriable) {
c.retrier = retrier
}
// Get makes a HTTP GET request to provided URL
func (c *httpClient) Get(url string, headers http.Header) (Response, error) {
response := Response{}
request, err := http.NewRequest(http.MethodGet, url, nil)
if err != nil {
return response, errors.Wrap(err, "GET - request creation failed")
}
request.Header = headers
return c.do(request)
}
// Post makes a HTTP POST request to provided URL and requestBody
func (c *httpClient) Post(url string, body io.Reader, headers http.Header) (Response, error) {
response := Response{}
request, err := http.NewRequest(http.MethodPost, url, body)
if err != nil {
return response, errors.Wrap(err, "POST - request creation failed")
}
request.Header = headers
return c.do(request)
}
// Put makes a HTTP PUT request to provided URL and requestBody
func (c *httpClient) Put(url string, body io.Reader, headers http.Header) (Response, error) {
response := Response{}
request, err := http.NewRequest(http.MethodPut, url, body)
if err != nil {
return response, errors.Wrap(err, "PUT - request creation failed")
}
request.Header = headers
return c.do(request)
}
// Patch makes a HTTP PATCH request to provided URL and requestBody
func (c *httpClient) Patch(url string, body io.Reader, headers http.Header) (Response, error) {
response := Response{}
request, err := http.NewRequest(http.MethodPatch, url, body)
if err != nil {
return response, errors.Wrap(err, "PATCH - request creation failed")
}
request.Header = headers
return c.do(request)
}
// Delete makes a HTTP DELETE request with provided URL
func (c *httpClient) Delete(url string, headers http.Header) (Response, error) {
response := Response{}
request, err := http.NewRequest(http.MethodDelete, url, nil)
if err != nil {
return response, errors.Wrap(err, "DELETE - request creation failed")
}
request.Header = headers
return c.do(request)
}
func (c *httpClient) do(request *http.Request) (Response, error) {
hr := Response{}
request.Close = true
multiErr := multierror.NewMultiError()
for i := 0; i <= c.retryCount; i++ {
var err error
response, err := c.client.Do(request)
if err != nil {
multiErr.Push(err.Error())
backoffTime := c.retrier.NextInterval(i)
time.Sleep(backoffTime)
continue
}
if response.Body != nil {
hr.body, err = ioutil.ReadAll(response.Body)
if err != nil {
multiErr.Push(err.Error())
backoffTime := c.retrier.NextInterval(i)
time.Sleep(backoffTime)
continue
}
}
response.Body.Close()
hr.statusCode = response.StatusCode
if response.StatusCode >= http.StatusInternalServerError {
multiErr.Push(fmt.Sprintf("server error: %d", response.StatusCode))
backoffTime := c.retrier.NextInterval(i)
time.Sleep(backoffTime)
continue
}
multiErr = multierror.NewMultiError() // Clear errors if any iteration succeeds
break
}
return hr, multiErr.HasError()
}