-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathclient.go
More file actions
438 lines (359 loc) · 12.4 KB
/
client.go
File metadata and controls
438 lines (359 loc) · 12.4 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
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
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
package edgecenterprotection_go
import (
"bytes"
"context"
"encoding/json"
"fmt"
"io"
"net/http"
"net/url"
"path"
"reflect"
"strconv"
"strings"
"time"
"github.com/google/go-querystring/query"
"github.com/hashicorp/go-retryablehttp"
)
const (
libraryVersion = "1.0.0"
defaultBaseURL = "https://api.edgecenter.ru/protection"
userAgent = "edgeprotection/" + libraryVersion
mediaType = "application/json"
internalHeaderRetryAttempts = "X-Edgecloud-Retry-Attempts"
defaultRetryMax = 3
defaultRetryWaitMax = 30
defaultRetryWaitMin = 1
)
// Client manages communication with Edgecenter Protection API
type Client struct {
// HTTP client used to communicate with the Edgecenter Protection API
HTTPClient *http.Client
// User agent for client
BaseURL *url.URL
// User agent for client
UserAgent string
// APIKey token for client
APIKey string
// Structures for specific handlers
Services ServicesService
Resources ResourcesService
Aliases AliasesService
Origins OriginsService
Headers HeadersService
Blacklists BlacklistsService
Whitelists WhitelistsService
// Optional extra HTTP headers to set on every request to the API.
headers map[string]string
// Optional retry values. Setting the RetryConfig.RetryMax value enables automatically retrying requests
// that fail with 429 or 500-level response codes
RetryConfig RetryConfig
}
// RetryConfig sets the values used for enabling retries and backoffs for
// requests that fail with 429 or 500-level response codes using the go-retryablehttp client.
// RetryConfig.RetryMax must be configured to enable this behavior. RetryConfig.RetryWaitMin and
// RetryConfig.RetryWaitMax are optional, with the default values being 1.0 and 30.0, respectively.
//
// Note: Opting to use the go-retryablehttp client will overwrite any custom HTTP client passed into New().
type RetryConfig struct {
RetryMax int
RetryWaitMin *float64 // Minimum time to wait
RetryWaitMax *float64 // Maximum time to wait
Logger interface{} // Customer logger instance. Must implement either go-retryablehttp.Logger or go-retryablehttp.LeveledLogger
}
// CloudConfig used only for import.
type CloudConfig struct {
APIUrl string `yaml:"apiURL"`
APIToken string `yaml:"apiToken"`
AccessToken string `yaml:"accessToken"`
RefreshToken string `yaml:"refreshToken"`
}
// RequestCompletionCallback defines the type of the request callback function.
type RequestCompletionCallback func(*http.Request, *http.Response)
// Response is a EdgecenterCloud response. This wraps the standard http.Response returned from EdgecenterCloud.
type Response struct {
*http.Response
}
// An ResponseError reports the error caused by an API request.
type ResponseError struct {
// HTTP response that caused this error
Response *http.Response
// Error message
Message string `json:"message"`
// Attempts is the number of times the request was attempted when retries are enabled.
Attempts int
}
func addOptions(s string, opt interface{}) (string, error) {
v := reflect.ValueOf(opt)
if v.Kind() == reflect.Ptr && v.IsNil() {
return s, nil
}
origURL, err := url.Parse(s)
if err != nil {
return s, err
}
origValues := origURL.Query()
newValues, err := query.Values(opt)
if err != nil {
return s, err
}
for k, v := range newValues {
origValues[k] = v
}
origURL.RawQuery = origValues.Encode()
return origURL.String(), nil
}
// NewWithRetries returns a new EdgecenterCloud API client with default retries config.
func NewWithRetries(httpClient *http.Client, opts ...ClientOpt) (*Client, error) {
opts = append(opts, WithRetryAndBackoffs(
RetryConfig{
RetryMax: defaultRetryMax,
RetryWaitMin: PtrTo(float64(defaultRetryWaitMin)),
RetryWaitMax: PtrTo(float64(defaultRetryWaitMax)),
},
))
return New(httpClient, opts...)
}
// NewClient returns a new EdgecenterCloud API, using the given
// http.Client to perform all requests.
func NewClient(httpClient *http.Client) *Client {
if httpClient == nil {
httpClient = http.DefaultClient
}
baseURL, _ := url.Parse(defaultBaseURL)
c := &Client{HTTPClient: httpClient, BaseURL: baseURL, UserAgent: userAgent}
c.Services = &ServicesServiceOp{client: c}
c.Resources = &ResourcesServiceOp{client: c}
c.Aliases = &AliasesServiceOp{client: c}
c.Origins = &OriginsServiceOp{client: c}
c.Headers = &HeadersServiceOp{client: c}
c.Blacklists = &BlacklistsServiceOp{client: c}
c.Whitelists = &WhitelistsServiceOp{client: c}
c.headers = make(map[string]string)
return c
}
// ClientOpt are options for New.
type ClientOpt func(*Client) error
// New returns a new EdgecenterCloud API client instance.
func New(httpClient *http.Client, opts ...ClientOpt) (*Client, error) {
c := NewClient(httpClient)
for _, opt := range opts {
if err := opt(c); err != nil {
return nil, err
}
}
// if retryMax is set it will use the retryablehttp client.
if c.RetryConfig.RetryMax > 0 {
retryableClient := retryablehttp.NewClient()
retryableClient.RetryMax = c.RetryConfig.RetryMax
if c.RetryConfig.RetryWaitMin != nil {
retryableClient.RetryWaitMin = time.Duration(*c.RetryConfig.RetryWaitMin * float64(time.Second))
}
if c.RetryConfig.RetryWaitMax != nil {
retryableClient.RetryWaitMax = time.Duration(*c.RetryConfig.RetryWaitMax * float64(time.Second))
}
// By default, this is nil and does not log.
retryableClient.Logger = c.RetryConfig.Logger
// if timeout is set, it is maintained before overwriting client with StandardClient()
retryableClient.HTTPClient.Timeout = c.HTTPClient.Timeout
// This custom ErrorHandler is required to provide errors that are consistent
// with a *edgecloud.ErrorResponse and a non-nil *edgecloud.Response while providing
// insight into retries using an internal header.
retryableClient.ErrorHandler = func(resp *http.Response, err error, numTries int) (*http.Response, error) {
if resp != nil {
resp.Header.Add(internalHeaderRetryAttempts, strconv.Itoa(numTries))
return resp, err
}
return resp, err
}
c.HTTPClient = retryableClient.StandardClient()
}
return c, nil
}
// SetBaseURL is a client option for setting the base URL.
func SetBaseURL(bu string) ClientOpt {
return func(c *Client) error {
u, err := url.Parse(bu)
if err != nil {
return err
}
c.BaseURL = u
return nil
}
}
// SetAPIKey is a client option for setting the APIKey token.
func SetAPIKey(apiKey string) ClientOpt {
return func(c *Client) error {
tokenPartsCount := 2
parts := strings.SplitN(apiKey, " ", tokenPartsCount)
if len(parts) == 2 && strings.ToLower(parts[0]) == "apikey" {
apiKey = parts[1]
}
c.APIKey = apiKey
c.headers["Authorization"] = fmt.Sprintf("APIKey %s", c.APIKey)
return nil
}
}
// SetUserAgent is a client option for setting the user agent.
func SetUserAgent(ua string) ClientOpt {
return func(c *Client) error {
c.UserAgent = fmt.Sprintf("%s %s", ua, c.UserAgent)
return nil
}
}
// SetRequestHeaders sets optional HTTP headers on the client that are
// sent on each HTTP request.
func SetRequestHeaders(headers map[string]string) ClientOpt {
return func(c *Client) error {
for k, v := range headers {
c.headers[k] = v
}
return nil
}
}
// WithRetryAndBackoffs sets retry values. Setting the RetryConfig.RetryMax value enables automatically retrying requests
// that fail with 429 or 500-level response codes using the go-retryablehttp client.
func WithRetryAndBackoffs(retryConfig RetryConfig) ClientOpt {
return func(c *Client) error {
c.RetryConfig.RetryMax = retryConfig.RetryMax
c.RetryConfig.RetryWaitMax = retryConfig.RetryWaitMax
c.RetryConfig.RetryWaitMin = retryConfig.RetryWaitMin
c.RetryConfig.Logger = retryConfig.Logger
return nil
}
}
// NewRequest creates an API request. A relative URL can be provided in urlStr, which will be resolved to the
// BaseURL of the Client. Relative URLS should always be specified without a preceding slash. If specified, the
// value pointed to by body is JSON encoded and included in as the request body.
func (c *Client) NewRequest(_ context.Context, method, urlStr string, body interface{}) (*http.Request, error) {
// check urlStr is valid path
if _, err := url.Parse(urlStr); err != nil {
return nil, err
}
urlPath := path.Join(c.BaseURL.Path, urlStr)
u, err := c.BaseURL.Parse(urlPath)
if err != nil {
return nil, err
}
var req *http.Request
switch method {
case http.MethodGet, http.MethodHead, http.MethodOptions:
req, err = http.NewRequest(method, u.String(), nil)
if err != nil {
return nil, err
}
default:
buf := new(bytes.Buffer)
if body != nil {
err = json.NewEncoder(buf).Encode(body)
if err != nil {
return nil, err
}
}
req, err = http.NewRequest(method, u.String(), buf)
if err != nil {
return nil, err
}
req.Header.Set("Content-Type", mediaType)
}
for k, v := range c.headers {
req.Header.Add(k, v)
}
req.Header.Set("Accept", mediaType)
req.Header.Set("User-Agent", c.UserAgent)
return req, nil
}
// newResponse creates a new Response for the provided http.Response.
func newResponse(r *http.Response) *Response {
response := Response{Response: r}
return &response
}
// Do sends an API request and returns the API response. The API response is JSON decoded and stored in the value
// pointed to by v, or returned as an error if an API error has occurred. If v implements the io.Writer interface,
// the raw response will be written to v, without attempting to decode it.
func (c *Client) Do(ctx context.Context, req *http.Request, v interface{}) (*Response, error) {
resp, err := DoRequestWithClient(ctx, c.HTTPClient, req)
if err != nil {
return &Response{
Response: &http.Response{
Status: http.StatusText(http.StatusInternalServerError),
StatusCode: http.StatusInternalServerError,
},
}, err
}
defer func() {
// Ensure the response body is fully read and closed
// before we reconnect, so that we reuse the same TCPConnection.
// Close the previous response's body. But read at least some of
// the body so if it's small the underlying TCP connection will be
// re-used. No need to check for errors: if it fails, the Transport
// won't reuse it anyway.
const maxBodySlurpSize = 2 << 10
if resp.ContentLength == -1 || resp.ContentLength <= maxBodySlurpSize {
_, _ = io.CopyN(io.Discard, resp.Body, maxBodySlurpSize)
}
if rErr := resp.Body.Close(); err == nil {
err = rErr
}
}()
response := newResponse(resp)
err = CheckResponse(resp)
if err != nil {
return response, err
}
if resp.StatusCode != http.StatusNoContent && v != nil {
if w, ok := v.(io.Writer); ok {
_, err = io.Copy(w, resp.Body)
} else {
err = json.NewDecoder(resp.Body).Decode(v)
}
if err != nil {
return &Response{
Response: &http.Response{
Status: http.StatusText(http.StatusInternalServerError),
StatusCode: http.StatusInternalServerError,
},
}, err
}
}
return response, err
}
// DoRequestWithClient submits an HTTP request using the specified client.
func DoRequestWithClient(ctx context.Context, client *http.Client, req *http.Request) (*http.Response, error) {
req = req.WithContext(ctx)
return client.Do(req)
}
func (r *ResponseError) Error() string {
var attempted string
if r.Attempts > 0 {
attempted = fmt.Sprintf("; giving up after %d attempt(s)", r.Attempts)
}
return fmt.Sprintf("%v %v: %d %v%s",
r.Response.Request.Method, r.Response.Request.URL, r.Response.StatusCode, r.Message, attempted)
}
// CheckResponse checks the API response for errors, and returns them if present. A response is considered an
// error if it has a status code outside the 200 range. API error responses are expected to have either no response
// body, or a JSON response body that maps to ResponseError. Any other response body will be silently ignored.
// If the API error response does not include the request ID in its body, the one from its header will be used.
func CheckResponse(r *http.Response) error {
if c := r.StatusCode; c >= 200 && c <= 299 {
return nil
}
errorResponse := &ResponseError{Response: r}
data, err := io.ReadAll(r.Body)
if err == nil && len(data) > 0 {
err := json.Unmarshal(data, errorResponse)
if err != nil {
errorResponse.Message = string(data)
}
}
attempts, strconvErr := strconv.Atoi(r.Header.Get(internalHeaderRetryAttempts))
if strconvErr == nil {
errorResponse.Attempts = attempts
}
return errorResponse
}
// PtrTo returns a pointer to the provided input.
func PtrTo[T any](v T) *T {
return &v
}