forked from linode/linodego
-
Notifications
You must be signed in to change notification settings - Fork 0
/
client.go
550 lines (441 loc) · 13 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
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
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
package linodego
import (
"context"
"fmt"
"log"
"net/http"
"net/url"
"os"
"path"
"path/filepath"
"reflect"
"strconv"
"sync"
"time"
"github.com/go-resty/resty/v2"
)
const (
// APIConfigEnvVar environment var to get path to Linode config
APIConfigEnvVar = "LINODE_CONFIG"
// APIConfigProfileEnvVar specifies the profile to use when loading from a Linode config
APIConfigProfileEnvVar = "LINODE_PROFILE"
// APIHost Linode API hostname
APIHost = "api.linode.com"
// APIHostVar environment var to check for alternate API URL
APIHostVar = "LINODE_URL"
// APIHostCert environment var containing path to CA cert to validate against
APIHostCert = "LINODE_CA"
// APIVersion Linode API version
APIVersion = "v4"
// APIVersionVar environment var to check for alternate API Version
APIVersionVar = "LINODE_API_VERSION"
// APIProto connect to API with http(s)
APIProto = "https"
// APIEnvVar environment var to check for API token
APIEnvVar = "LINODE_TOKEN"
// APISecondsPerPoll how frequently to poll for new Events or Status in WaitFor functions
APISecondsPerPoll = 3
// Maximum wait time for retries
APIRetryMaxWaitTime = time.Duration(30) * time.Second
)
var envDebug = false
// Client is a wrapper around the Resty client
type Client struct {
resty *resty.Client
userAgent string
debug bool
retryConditionals []RetryConditional
pollInterval time.Duration
baseURL string
apiVersion string
apiProto string
selectedProfile string
loadedProfile string
configProfiles map[string]ConfigProfile
// Fields for caching endpoint responses
shouldCache bool
cacheExpiration time.Duration
cachedEntries map[string]clientCacheEntry
cachedEntryLock *sync.RWMutex
}
type EnvDefaults struct {
Token string
Profile string
}
type clientCacheEntry struct {
Created time.Time
Data any
// If != nil, use this instead of the
// global expiry
ExpiryOverride *time.Duration
}
type (
Request = resty.Request
Logger = resty.Logger
)
func init() {
// Wether or not we will enable Resty debugging output
if apiDebug, ok := os.LookupEnv("LINODE_DEBUG"); ok {
if parsed, err := strconv.ParseBool(apiDebug); err == nil {
envDebug = parsed
log.Println("[INFO] LINODE_DEBUG being set to", envDebug)
} else {
log.Println("[WARN] LINODE_DEBUG should be an integer, 0 or 1")
}
}
}
// SetUserAgent sets a custom user-agent for HTTP requests
func (c *Client) SetUserAgent(ua string) *Client {
c.userAgent = ua
c.resty.SetHeader("User-Agent", c.userAgent)
return c
}
// R wraps resty's R method
func (c *Client) R(ctx context.Context) *resty.Request {
return c.resty.R().
ExpectContentType("application/json").
SetHeader("Content-Type", "application/json").
SetContext(ctx).
SetError(APIError{})
}
// SetDebug sets the debug on resty's client
func (c *Client) SetDebug(debug bool) *Client {
c.debug = debug
c.resty.SetDebug(debug)
return c
}
// SetLogger allows the user to override the output
// logger for debug logs.
func (c *Client) SetLogger(logger Logger) *Client {
c.resty.SetLogger(logger)
return c
}
// OnBeforeRequest adds a handler to the request body to run before the request is sent
func (c *Client) OnBeforeRequest(m func(request *Request) error) {
c.resty.OnBeforeRequest(func(_ *resty.Client, req *resty.Request) error {
return m(req)
})
}
// SetBaseURL sets the base URL of the Linode v4 API (https://api.linode.com/v4)
func (c *Client) SetBaseURL(baseURL string) *Client {
baseURLPath, _ := url.Parse(baseURL)
c.baseURL = path.Join(baseURLPath.Host, baseURLPath.Path)
c.apiProto = baseURLPath.Scheme
c.updateHostURL()
return c
}
// SetAPIVersion sets the version of the API to interface with
func (c *Client) SetAPIVersion(apiVersion string) *Client {
c.apiVersion = apiVersion
c.updateHostURL()
return c
}
func (c *Client) updateHostURL() {
apiProto := APIProto
baseURL := APIHost
apiVersion := APIVersion
if c.baseURL != "" {
baseURL = c.baseURL
}
if c.apiVersion != "" {
apiVersion = c.apiVersion
}
if c.apiProto != "" {
apiProto = c.apiProto
}
c.resty.SetBaseURL(
fmt.Sprintf(
"%s://%s/%s",
apiProto,
baseURL,
url.PathEscape(apiVersion),
),
)
}
// SetRootCertificate adds a root certificate to the underlying TLS client config
func (c *Client) SetRootCertificate(path string) *Client {
c.resty.SetRootCertificate(path)
return c
}
// SetToken sets the API token for all requests from this client
// Only necessary if you haven't already provided the http client to NewClient() configured with the token.
func (c *Client) SetToken(token string) *Client {
c.resty.SetHeader("Authorization", fmt.Sprintf("Bearer %s", token))
return c
}
// SetRetries adds retry conditions for "Linode Busy." errors and 429s.
func (c *Client) SetRetries() *Client {
c.
addRetryConditional(linodeBusyRetryCondition).
addRetryConditional(tooManyRequestsRetryCondition).
addRetryConditional(serviceUnavailableRetryCondition).
addRetryConditional(requestTimeoutRetryCondition).
addRetryConditional(requestGOAWAYRetryCondition).
addRetryConditional(requestNGINXRetryCondition).
SetRetryMaxWaitTime(APIRetryMaxWaitTime)
configureRetries(c)
return c
}
// AddRetryCondition adds a RetryConditional function to the Client
func (c *Client) AddRetryCondition(retryCondition RetryConditional) *Client {
c.resty.AddRetryCondition(resty.RetryConditionFunc(retryCondition))
return c
}
func (c *Client) addRetryConditional(retryConditional RetryConditional) *Client {
c.retryConditionals = append(c.retryConditionals, retryConditional)
return c
}
func (c *Client) addCachedResponse(endpoint string, response any, expiry *time.Duration) {
if !c.shouldCache {
return
}
responseValue := reflect.ValueOf(response)
entry := clientCacheEntry{
Created: time.Now(),
ExpiryOverride: expiry,
}
switch responseValue.Kind() {
case reflect.Ptr:
// We want to automatically deref pointers to
// avoid caching mutable data.
entry.Data = responseValue.Elem().Interface()
default:
entry.Data = response
}
c.cachedEntryLock.Lock()
defer c.cachedEntryLock.Unlock()
c.cachedEntries[endpoint] = entry
}
func (c *Client) getCachedResponse(endpoint string) any {
if !c.shouldCache {
return nil
}
c.cachedEntryLock.RLock()
// Hacky logic to dynamically RUnlock
// only if it is still locked by the
// end of the function.
// This is necessary as we take write
// access if the entry has expired.
rLocked := true
defer func() {
if rLocked {
c.cachedEntryLock.RUnlock()
}
}()
entry, ok := c.cachedEntries[endpoint]
if !ok {
return nil
}
// Handle expired entries
elapsedTime := time.Since(entry.Created)
hasExpired := elapsedTime > c.cacheExpiration
if entry.ExpiryOverride != nil {
hasExpired = elapsedTime > *entry.ExpiryOverride
}
if hasExpired {
// We need to give up our read access and request read-write access
c.cachedEntryLock.RUnlock()
rLocked = false
c.cachedEntryLock.Lock()
defer c.cachedEntryLock.Unlock()
delete(c.cachedEntries, endpoint)
return nil
}
return c.cachedEntries[endpoint].Data
}
// InvalidateCache clears all cached responses for all endpoints.
func (c *Client) InvalidateCache() {
c.cachedEntryLock.Lock()
defer c.cachedEntryLock.Unlock()
// GC will handle the old map
c.cachedEntries = make(map[string]clientCacheEntry)
}
// InvalidateCacheEndpoint invalidates a single cached endpoint.
func (c *Client) InvalidateCacheEndpoint(endpoint string) error {
u, err := url.Parse(endpoint)
if err != nil {
return fmt.Errorf("failed to parse URL for caching: %w", err)
}
c.cachedEntryLock.Lock()
defer c.cachedEntryLock.Unlock()
delete(c.cachedEntries, u.Path)
return nil
}
// SetGlobalCacheExpiration sets the desired time for any cached response
// to be valid for.
func (c *Client) SetGlobalCacheExpiration(expiryTime time.Duration) {
c.cacheExpiration = expiryTime
}
// UseCache sets whether response caching should be used
func (c *Client) UseCache(value bool) {
c.shouldCache = value
}
// SetRetryMaxWaitTime sets the maximum delay before retrying a request.
func (c *Client) SetRetryMaxWaitTime(max time.Duration) *Client {
c.resty.SetRetryMaxWaitTime(max)
return c
}
// SetRetryWaitTime sets the default (minimum) delay before retrying a request.
func (c *Client) SetRetryWaitTime(min time.Duration) *Client {
c.resty.SetRetryWaitTime(min)
return c
}
// SetRetryAfter sets the callback function to be invoked with a failed request
// to determine wben it should be retried.
func (c *Client) SetRetryAfter(callback RetryAfter) *Client {
c.resty.SetRetryAfter(resty.RetryAfterFunc(callback))
return c
}
// SetRetryCount sets the maximum retry attempts before aborting.
func (c *Client) SetRetryCount(count int) *Client {
c.resty.SetRetryCount(count)
return c
}
// SetPollDelay sets the number of milliseconds to wait between events or status polls.
// Affects all WaitFor* functions and retries.
func (c *Client) SetPollDelay(delay time.Duration) *Client {
c.pollInterval = delay
return c
}
// GetPollDelay gets the number of milliseconds to wait between events or status polls.
// Affects all WaitFor* functions and retries.
func (c *Client) GetPollDelay() time.Duration {
return c.pollInterval
}
// SetHeader sets a custom header to be used in all API requests made with the current
// client.
// NOTE: Some headers may be overridden by the individual request functions.
func (c *Client) SetHeader(name, value string) {
c.resty.SetHeader(name, value)
}
// NewClient factory to create new Client struct
func NewClient(hc *http.Client) (client Client) {
if hc != nil {
client.resty = resty.NewWithClient(hc)
} else {
client.resty = resty.New()
}
client.shouldCache = true
client.cacheExpiration = time.Minute * 15
client.cachedEntries = make(map[string]clientCacheEntry)
client.cachedEntryLock = &sync.RWMutex{}
client.SetUserAgent(DefaultUserAgent)
baseURL, baseURLExists := os.LookupEnv(APIHostVar)
if baseURLExists {
client.SetBaseURL(baseURL)
}
apiVersion, apiVersionExists := os.LookupEnv(APIVersionVar)
if apiVersionExists {
client.SetAPIVersion(apiVersion)
} else {
client.SetAPIVersion(APIVersion)
}
certPath, certPathExists := os.LookupEnv(APIHostCert)
if certPathExists {
cert, err := os.ReadFile(filepath.Clean(certPath))
if err != nil {
log.Fatalf("[ERROR] Error when reading cert at %s: %s\n", certPath, err.Error())
}
client.SetRootCertificate(certPath)
if envDebug {
log.Printf("[DEBUG] Set API root certificate to %s with contents %s\n", certPath, cert)
}
}
client.
SetRetryWaitTime((1000 * APISecondsPerPoll) * time.Millisecond).
SetPollDelay(APISecondsPerPoll * time.Second).
SetRetries().
SetDebug(envDebug)
return
}
// NewClientFromEnv creates a Client and initializes it with values
// from the LINODE_CONFIG file and the LINODE_TOKEN environment variable.
func NewClientFromEnv(hc *http.Client) (*Client, error) {
client := NewClient(hc)
// Users are expected to chain NewClient(...) and LoadConfig(...) to customize these options
configPath, err := resolveValidConfigPath()
if err != nil {
return nil, err
}
// Populate the token from the environment.
// Tokens should be first priority to maintain backwards compatibility
if token, ok := os.LookupEnv(APIEnvVar); ok && token != "" {
client.SetToken(token)
return &client, nil
}
if p, ok := os.LookupEnv(APIConfigEnvVar); ok {
configPath = p
} else if !ok && configPath == "" {
return nil, fmt.Errorf("no linode config file or token found")
}
configProfile := DefaultConfigProfile
if p, ok := os.LookupEnv(APIConfigProfileEnvVar); ok {
configProfile = p
}
client.selectedProfile = configProfile
// We should only load the config if the config file exists
if _, err := os.Stat(configPath); err != nil {
return nil, fmt.Errorf("error loading config file %s: %w", configPath, err)
}
err = client.preLoadConfig(configPath)
return &client, err
}
func (c *Client) preLoadConfig(configPath string) error {
if envDebug {
log.Printf("[INFO] Loading profile from %s\n", configPath)
}
if err := c.LoadConfig(&LoadConfigOptions{
Path: configPath,
SkipLoadProfile: true,
}); err != nil {
return err
}
// We don't want to load the profile until the user is actually making requests
c.OnBeforeRequest(func(_ *Request) error {
if c.loadedProfile != c.selectedProfile {
if err := c.UseProfile(c.selectedProfile); err != nil {
return err
}
}
return nil
})
return nil
}
func copyBool(bPtr *bool) *bool {
if bPtr == nil {
return nil
}
t := *bPtr
return &t
}
func copyInt(iPtr *int) *int {
if iPtr == nil {
return nil
}
t := *iPtr
return &t
}
func copyString(sPtr *string) *string {
if sPtr == nil {
return nil
}
t := *sPtr
return &t
}
func copyTime(tPtr *time.Time) *time.Time {
if tPtr == nil {
return nil
}
t := *tPtr
return &t
}
func generateListCacheURL(endpoint string, opts *ListOptions) (string, error) {
if opts == nil {
return endpoint, nil
}
hashedOpts, err := opts.Hash()
if err != nil {
return endpoint, err
}
return fmt.Sprintf("%s:%s", endpoint, hashedOpts), nil
}