-
Notifications
You must be signed in to change notification settings - Fork 106
/
s3client.go
538 lines (437 loc) · 13.9 KB
/
s3client.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
package s3resource
import (
"crypto/tls"
"encoding/json"
"errors"
"fmt"
"io"
"io/ioutil"
"os"
"strings"
"time"
"github.com/aws/aws-sdk-go/aws/credentials/stscreds"
"net/http"
"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/aws/credentials"
"github.com/aws/aws-sdk-go/aws/session"
"github.com/aws/aws-sdk-go/service/s3"
"github.com/aws/aws-sdk-go/service/s3/s3manager"
"github.com/cheggaaa/pb"
)
//go:generate counterfeiter . S3Client
type S3Client interface {
BucketFiles(bucketName string, prefixHint string) ([]string, error)
BucketFileVersions(bucketName string, remotePath string) ([]string, error)
ChunkedBucketList(bucketName string, prefix string, continuationToken *string) (BucketListChunk, error)
UploadFile(bucketName string, remotePath string, localPath string, options UploadFileOptions) (string, error)
DownloadFile(bucketName string, remotePath string, versionID string, localPath string) error
SetTags(bucketName string, remotePath string, versionID string, tags map[string]string) error
DownloadTags(bucketName string, remotePath string, versionID string, localPath string) error
DeleteFile(bucketName string, remotePath string) error
DeleteVersionedFile(bucketName string, remotePath string, versionID string) error
URL(bucketName string, remotePath string, private bool, versionID string) string
}
// 12 retries works out to ~5 mins of total backoff time, though AWS randomizes
// the backoff to some extent so it may be as low as 4 or as high as 8 minutes
const maxRetries = 12
type s3client struct {
client *s3.S3
session *session.Session
progressOutput io.Writer
}
type UploadFileOptions struct {
Acl string
ServerSideEncryption string
KmsKeyId string
ContentType string
DisableMultipart bool
}
func NewUploadFileOptions() UploadFileOptions {
return UploadFileOptions{
Acl: "private",
}
}
func NewS3Client(
progressOutput io.Writer,
awsConfig *aws.Config,
useV2Signing bool,
roleToAssume string,
) S3Client {
sess := session.New(awsConfig)
assumedRoleAwsConfig := fetchCredentialsForRoleIfDefined(roleToAssume, awsConfig)
client := s3.New(sess, awsConfig, &assumedRoleAwsConfig)
if useV2Signing {
setv2Handlers(client)
}
return &s3client{
client: client,
session: sess,
progressOutput: progressOutput,
}
}
func fetchCredentialsForRoleIfDefined(roleToAssume string, awsConfig *aws.Config) aws.Config {
assumedRoleAwsConfig := aws.Config{}
if len(roleToAssume) != 0 {
stsConfig := awsConfig.Copy()
stsConfig.Endpoint = nil
stsSession := session.Must(session.NewSession(stsConfig))
roleCredentials := stscreds.NewCredentials(stsSession, roleToAssume)
assumedRoleAwsConfig.Credentials = roleCredentials
}
return assumedRoleAwsConfig
}
func NewAwsConfig(
accessKey string,
secretKey string,
sessionToken string,
regionName string,
endpoint string,
disableSSL bool,
skipSSLVerification bool,
) *aws.Config {
var creds *credentials.Credentials
if accessKey == "" && secretKey == "" {
creds = credentials.AnonymousCredentials
} else {
creds = credentials.NewStaticCredentials(accessKey, secretKey, sessionToken)
}
if len(regionName) == 0 {
regionName = "us-east-1"
}
var httpClient *http.Client
if skipSSLVerification {
httpClient = &http.Client{Transport: &http.Transport{
TLSClientConfig: &tls.Config{InsecureSkipVerify: true},
}}
} else {
httpClient = http.DefaultClient
}
awsConfig := &aws.Config{
Region: aws.String(regionName),
Credentials: creds,
S3ForcePathStyle: aws.Bool(true),
MaxRetries: aws.Int(maxRetries),
DisableSSL: aws.Bool(disableSSL),
HTTPClient: httpClient,
}
if len(endpoint) != 0 {
endpoint := fmt.Sprintf("%s", endpoint)
awsConfig.Endpoint = &endpoint
}
return awsConfig
}
// BucketFiles returns all the files in bucketName immediately under directoryPrefix
func (client *s3client) BucketFiles(bucketName string, directoryPrefix string) ([]string, error) {
if !strings.HasSuffix(directoryPrefix, "/") {
directoryPrefix = directoryPrefix + "/"
}
var (
continuationToken *string
truncated bool
paths []string
)
for continuationToken, truncated = nil, true; truncated; {
s3ListChunk, err := client.ChunkedBucketList(bucketName, directoryPrefix, continuationToken)
if err != nil {
return []string{}, err
}
truncated = s3ListChunk.Truncated
continuationToken = s3ListChunk.ContinuationToken
paths = append(paths, s3ListChunk.Paths...)
}
return paths, nil
}
func (client *s3client) BucketFileVersions(bucketName string, remotePath string) ([]string, error) {
isBucketVersioned, err := client.getBucketVersioning(bucketName)
if err != nil {
return []string{}, err
}
if !isBucketVersioned {
return []string{}, errors.New("bucket is not versioned")
}
bucketFiles, err := client.getVersionedBucketContents(bucketName, remotePath)
if err != nil {
return []string{}, err
}
versions := make([]string, 0, len(bucketFiles))
for _, objectVersion := range bucketFiles[remotePath] {
versions = append(versions, *objectVersion.VersionId)
}
return versions, nil
}
type BucketListChunk struct {
Truncated bool
ContinuationToken *string
CommonPrefixes []string
Paths []string
}
// ChunkedBucketList lists the S3 bucket `bucketName` content's under `prefix` one chunk at a time
//
// The returned `BucketListChunk` contains part of the files and subdirectories
// present in `bucketName` under `prefix`. The files are listed in `Paths` and
// the subdirectories in `CommonPrefixes`. If the returned chunk does not
// include all the files and subdirectories, the `Truncated` flag will be set
// to `true` and the `ContinuationToken` can be used to retrieve the next chunk.
func (client *s3client) ChunkedBucketList(bucketName string, prefix string, continuationToken *string) (BucketListChunk, error) {
params := &s3.ListObjectsV2Input{
Bucket: aws.String(bucketName),
ContinuationToken: continuationToken,
Delimiter: aws.String("/"),
Prefix: aws.String(prefix),
}
response, err := client.client.ListObjectsV2(params)
if err != nil {
return BucketListChunk{}, err
}
commonPrefixes := make([]string, 0, len(response.CommonPrefixes))
paths := make([]string, 0, len(response.Contents))
for _, commonPrefix := range response.CommonPrefixes {
commonPrefixes = append(commonPrefixes, *commonPrefix.Prefix)
}
for _, path := range response.Contents {
paths = append(paths, *path.Key)
}
return BucketListChunk{
Truncated: *response.IsTruncated,
ContinuationToken: response.NextContinuationToken,
CommonPrefixes: commonPrefixes,
Paths: paths,
}, nil
}
func (client *s3client) UploadFile(bucketName string, remotePath string, localPath string, options UploadFileOptions) (string, error) {
uploader := s3manager.NewUploaderWithClient(client.client)
if client.isGCSHost() {
// GCS returns `InvalidArgument` on multipart uploads
uploader.MaxUploadParts = 1
}
stat, err := os.Stat(localPath)
if err != nil {
return "", err
}
localFile, err := os.Open(localPath)
if err != nil {
return "", err
}
defer localFile.Close()
// Automatically adjust partsize for larger files.
fSize := stat.Size()
if !options.DisableMultipart {
if fSize > int64(uploader.MaxUploadParts)*uploader.PartSize {
partSize := fSize / int64(uploader.MaxUploadParts)
if fSize%int64(uploader.MaxUploadParts) != 0 {
partSize++
}
uploader.PartSize = partSize
}
} else {
uploader.MaxUploadParts = 1
uploader.Concurrency = 1
uploader.PartSize = fSize + 1
if fSize <= s3manager.MinUploadPartSize {
uploader.PartSize = s3manager.MinUploadPartSize
}
}
progress := client.newProgressBar(fSize)
progress.Start()
defer progress.Finish()
uploadInput := s3manager.UploadInput{
Bucket: aws.String(bucketName),
Key: aws.String(remotePath),
Body: progressReader{localFile, progress},
ACL: aws.String(options.Acl),
}
if options.ServerSideEncryption != "" {
uploadInput.ServerSideEncryption = aws.String(options.ServerSideEncryption)
}
if options.KmsKeyId != "" {
uploadInput.SSEKMSKeyId = aws.String(options.KmsKeyId)
}
if options.ContentType != "" {
uploadInput.ContentType = aws.String(options.ContentType)
}
uploadOutput, err := uploader.Upload(&uploadInput)
if err != nil {
return "", err
}
if uploadOutput.VersionID != nil {
return *uploadOutput.VersionID, nil
}
return "", nil
}
func (client *s3client) DownloadFile(bucketName string, remotePath string, versionID string, localPath string) error {
headObject := &s3.HeadObjectInput{
Bucket: aws.String(bucketName),
Key: aws.String(remotePath),
}
if versionID != "" {
headObject.VersionId = aws.String(versionID)
}
object, err := client.client.HeadObject(headObject)
if err != nil {
return err
}
progress := client.newProgressBar(*object.ContentLength)
downloader := s3manager.NewDownloaderWithClient(client.client)
localFile, err := os.Create(localPath)
if err != nil {
return err
}
defer localFile.Close()
getObject := &s3.GetObjectInput{
Bucket: aws.String(bucketName),
Key: aws.String(remotePath),
}
if versionID != "" {
getObject.VersionId = aws.String(versionID)
}
progress.Start()
defer progress.Finish()
_, err = downloader.Download(progressWriterAt{localFile, progress}, getObject)
if err != nil {
return err
}
return nil
}
func (client *s3client) SetTags(bucketName string, remotePath string, versionID string, tags map[string]string) error {
var tagSet []*s3.Tag
for key, value := range tags {
tagSet = append(tagSet, &s3.Tag{
Key: aws.String(key),
Value: aws.String(value),
})
}
putObjectTagging := &s3.PutObjectTaggingInput{
Bucket: aws.String(bucketName),
Key: aws.String(remotePath),
Tagging: &s3.Tagging{TagSet: tagSet},
}
if versionID != "" {
putObjectTagging.VersionId = aws.String(versionID)
}
_, err := client.client.PutObjectTagging(putObjectTagging)
return err
}
func (client *s3client) DownloadTags(bucketName string, remotePath string, versionID string, localPath string) error {
getObjectTagging := &s3.GetObjectTaggingInput{
Bucket: aws.String(bucketName),
Key: aws.String(remotePath),
}
if versionID != "" {
getObjectTagging.VersionId = aws.String(versionID)
}
objectTagging, err := client.client.GetObjectTagging(getObjectTagging)
if err != nil {
return err
}
tags := map[string]string{}
for _, tag := range objectTagging.TagSet {
tags[*tag.Key] = *tag.Value
}
tagsJSON, err := json.Marshal(tags)
if err != nil {
return err
}
return ioutil.WriteFile(localPath, tagsJSON, 0644)
}
func (client *s3client) URL(bucketName string, remotePath string, private bool, versionID string) string {
getObjectInput := &s3.GetObjectInput{
Bucket: aws.String(bucketName),
Key: aws.String(remotePath),
}
if versionID != "" {
getObjectInput.VersionId = aws.String(versionID)
}
awsRequest, _ := client.client.GetObjectRequest(getObjectInput)
var url string
if private {
url, _ = awsRequest.Presign(24 * time.Hour)
} else {
awsRequest.Build()
url = awsRequest.HTTPRequest.URL.String()
}
return url
}
func (client *s3client) DeleteVersionedFile(bucketName string, remotePath string, versionID string) error {
_, err := client.client.DeleteObject(&s3.DeleteObjectInput{
Bucket: aws.String(bucketName),
Key: aws.String(remotePath),
VersionId: aws.String(versionID),
})
return err
}
func (client *s3client) DeleteFile(bucketName string, remotePath string) error {
_, err := client.client.DeleteObject(&s3.DeleteObjectInput{
Bucket: aws.String(bucketName),
Key: aws.String(remotePath),
})
return err
}
func (client *s3client) getBucketVersioning(bucketName string) (bool, error) {
params := &s3.GetBucketVersioningInput{
Bucket: aws.String(bucketName),
}
resp, err := client.client.GetBucketVersioning(params)
if err != nil {
return false, err
}
if resp.Status == nil {
return false, nil
}
return *resp.Status == "Enabled", nil
}
func (client *s3client) getVersionedBucketContents(bucketName string, prefix string) (map[string][]*s3.ObjectVersion, error) {
versionedBucketContents := map[string][]*s3.ObjectVersion{}
keyMarker := ""
versionMarker := ""
for {
params := &s3.ListObjectVersionsInput{
Bucket: aws.String(bucketName),
Prefix: aws.String(prefix),
}
if keyMarker != "" {
params.KeyMarker = aws.String(keyMarker)
}
if versionMarker != "" {
params.VersionIdMarker = aws.String(versionMarker)
}
listObjectVersionsResponse, err := client.client.ListObjectVersions(params)
if err != nil {
return versionedBucketContents, err
}
lastKey := ""
lastVersionKey := ""
for _, objectVersion := range listObjectVersionsResponse.Versions {
versionedBucketContents[*objectVersion.Key] = append(versionedBucketContents[*objectVersion.Key], objectVersion)
lastKey = *objectVersion.Key
lastVersionKey = *objectVersion.VersionId
}
if *listObjectVersionsResponse.IsTruncated {
keyMarker = *listObjectVersionsResponse.NextKeyMarker
versionMarker = *listObjectVersionsResponse.NextVersionIdMarker
if keyMarker == "" {
// From the s3 docs: If response does not include the
// NextMarker and it is truncated, you can use the value of the
// last Key in the response as the marker in the subsequent
// request to get the next set of object keys.
keyMarker = lastKey
}
if versionMarker == "" {
versionMarker = lastVersionKey
}
} else {
break
}
}
return versionedBucketContents, nil
}
func (client *s3client) newProgressBar(total int64) *pb.ProgressBar {
progress := pb.New64(total)
progress.Output = client.progressOutput
progress.ShowSpeed = true
progress.Units = pb.U_BYTES
progress.NotPrint = true
return progress.SetWidth(80)
}
func (client *s3client) isGCSHost() bool {
return (client.session.Config.Endpoint != nil && strings.Contains(*client.session.Config.Endpoint, "storage.googleapis.com"))
}