-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
api_client.go
101 lines (86 loc) · 2.6 KB
/
api_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
package s3autoregion
import (
"fmt"
"net/http"
"github.com/aws/aws-sdk-go-v2/aws"
awshttp "github.com/aws/aws-sdk-go-v2/aws/transport/http"
"github.com/aws/aws-sdk-go-v2/service/s3"
lru "github.com/hashicorp/golang-lru/v2"
)
type Client struct {
client *s3.Client
cache *lru.Cache[string, string]
lastRegion string
}
type ExtendedOptions struct {
// The size of the LRU cache that remembers what region buckets reside in
CacheSize int
// The wrapper client needs to override the HTTPClient in order to function
// If you need to modify the transport in any way, use this function to do so
TransportOptionsFn func(*http.Transport)
}
func New(options s3.Options, extendedOptions *ExtendedOptions, optFns ...func(*s3.Options)) *Client {
httpClientBuilder := awshttp.NewBuildableClient()
var cache *lru.Cache[string, string]
if extendedOptions != nil {
if extendedOptions.CacheSize > 0 {
var err error
cache, err = lru.New[string, string](extendedOptions.CacheSize)
if err != nil {
panic(fmt.Errorf("error creating LRU cache: %w", err))
}
}
if extendedOptions.TransportOptionsFn != nil {
httpClientBuilder = httpClientBuilder.WithTransportOptions(extendedOptions.TransportOptionsFn)
}
}
options.HTTPClient = &http.Client{
Transport: followXAmzBucketRegion{
tr: httpClientBuilder.GetTransport(),
},
}
client := s3.New(options, optFns...)
effectiveOptions := client.Options()
return &Client{
client: client,
cache: cache,
lastRegion: effectiveOptions.Region,
}
}
func NewFromConfig(cfg aws.Config, extendedOptions *ExtendedOptions, optFns ...func(*s3.Options)) *Client {
httpClientBuilder := awshttp.NewBuildableClient()
var cache *lru.Cache[string, string]
if extendedOptions != nil {
if extendedOptions.CacheSize > 0 {
var err error
cache, err = lru.New[string, string](extendedOptions.CacheSize)
if err != nil {
panic(fmt.Errorf("error creating LRU cache: %w", err))
}
}
if extendedOptions.TransportOptionsFn != nil {
httpClientBuilder = httpClientBuilder.WithTransportOptions(extendedOptions.TransportOptionsFn)
}
}
cfg.HTTPClient = &http.Client{
Transport: followXAmzBucketRegion{
tr: httpClientBuilder.GetTransport(),
},
}
client := s3.NewFromConfig(cfg, optFns...)
effectiveOptions := client.Options()
return &Client{
client: client,
cache: cache,
lastRegion: effectiveOptions.Region,
}
}
func (c *Client) Options() s3.Options {
return c.client.Options()
}
func (c *Client) GetBucketRegion(bucket string) (region string, ok bool) {
if c.cache == nil {
return "", false
}
return c.cache.Get(bucket)
}