-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclient.go
193 lines (156 loc) · 5.01 KB
/
client.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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
// Copyright 2020 colynn.liu
//
// Licensed under the Apache License, Version 2.0 (the "License"): you may
// not use this file except in compliance with the License. You may obtain
// a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
// License for the specific language governing permissions and limitations
// under the License.
package httpclient
import (
"bytes"
"io"
"io/ioutil"
"net/http"
"time"
"github.com/gojektech/valkyrie"
"github.com/pkg/errors"
)
// Client Is a generic HTTP client interface
type Client interface {
Get(url string, headers http.Header) (*http.Response, error)
Post(url string, body io.Reader, headers http.Header) (*http.Response, error)
Put(url string, body io.Reader, headers http.Header) (*http.Response, error)
Patch(url string, body io.Reader, headers http.Header) (*http.Response, error)
Delete(url string, headers http.Header) (*http.Response, error)
Do(req *http.Request) (*http.Response, error)
}
// Doer ..
type Doer interface {
Do(*http.Request) (*http.Response, error)
}
// HClient http client
type HClient struct {
client Doer
timeout time.Duration
retryCount int
retrier Retriable
}
const (
defaultRetryCount = 0
defaultHTTPTimeout = 30 * time.Second
)
var _ Client = (*HClient)(nil)
// NewHClient returns a new instance of http Client
func NewHClient(opts ...Option) *HClient {
client := HClient{
timeout: defaultHTTPTimeout,
retryCount: defaultRetryCount,
retrier: NewNoRetrier(),
}
for _, opt := range opts {
opt(&client)
}
if client.client == nil {
client.client = &http.Client{
Timeout: client.timeout,
}
}
return &client
}
// Get makes a HTTP GET request to provided URL
func (c *HClient) Get(url string, headers http.Header) (*http.Response, error) {
var response *http.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 *HClient) Post(url string, body io.Reader, headers http.Header) (*http.Response, error) {
var response *http.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 *HClient) Put(url string, body io.Reader, headers http.Header) (*http.Response, error) {
var response *http.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 *HClient) Patch(url string, body io.Reader, headers http.Header) (*http.Response, error) {
var response *http.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 *HClient) Delete(url string, headers http.Header) (*http.Response, error) {
var response *http.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)
}
// Do makes an HTTP request with the native `http.Do` interface
func (c *HClient) Do(request *http.Request) (*http.Response, error) {
request.Close = true
var bodyReader *bytes.Reader
if request.Body != nil {
reqData, err := ioutil.ReadAll(request.Body)
if err != nil {
return nil, err
}
bodyReader = bytes.NewReader(reqData)
request.Body = ioutil.NopCloser(bodyReader) // prevents closing the body between retries
}
multiErr := &valkyrie.MultiError{}
var response *http.Response
for i := 0; i <= c.retryCount; i++ {
if response != nil {
response.Body.Close()
}
var err error
response, err = c.client.Do(request)
if bodyReader != nil {
// Reset the body reader after the request since at this point it's already read
// Note that it's safe to ignore the error here since the 0,0 position is always valid
_, _ = bodyReader.Seek(0, 0)
}
if err != nil {
multiErr.Push(err.Error())
backoffTime := c.retrier.NextInterval(i)
time.Sleep(backoffTime)
continue
}
if response.StatusCode >= http.StatusInternalServerError {
backoffTime := c.retrier.NextInterval(i)
time.Sleep(backoffTime)
continue
}
multiErr = &valkyrie.MultiError{} // Clear errors if any iteration succeeds
break
}
return response, multiErr.HasError()
}