forked from concourse/s3-resource
-
Notifications
You must be signed in to change notification settings - Fork 0
/
s3client.go
448 lines (353 loc) · 10.7 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
package s3resource
import (
"crypto/tls"
"errors"
"fmt"
"io"
"os"
"strings"
"time"
"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)
UploadFile(bucketName string, remotePath string, localPath string, options UploadFileOptions) (string, error)
DownloadFile(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
}
func NewUploadFileOptions() UploadFileOptions {
return UploadFileOptions{
Acl: "private",
}
}
func NewS3Client(
progressOutput io.Writer,
awsConfig *aws.Config,
useV2Signing bool,
) S3Client {
sess := session.New(awsConfig)
client := s3.New(sess, awsConfig)
if useV2Signing {
setv2Handlers(client)
}
return &s3client{
client: client,
session: sess,
progressOutput: progressOutput,
}
}
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
}
func (client *s3client) BucketFiles(bucketName string, prefixHint string) ([]string, error) {
entries, err := client.getBucketContents(bucketName, prefixHint)
if err != nil {
return []string{}, err
}
paths := make([]string, 0, len(entries))
for _, entry := range entries {
paths = append(paths, *entry.Key)
}
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
}
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 fSize > int64(uploader.MaxUploadParts) * uploader.PartSize {
partSize := fSize / int64(uploader.MaxUploadParts)
if fSize % int64(uploader.MaxUploadParts) != 0 {
partSize++
}
uploader.PartSize = partSize
}
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) 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) getBucketContents(bucketName string, prefix string) (map[string]*s3.Object, error) {
bucketContents := map[string]*s3.Object{}
marker := ""
for {
listObjectsResponse, err := client.client.ListObjects(&s3.ListObjectsInput{
Bucket: aws.String(bucketName),
Prefix: aws.String(prefix),
Marker: aws.String(marker),
})
if err != nil {
return bucketContents, err
}
lastKey := ""
for _, key := range listObjectsResponse.Contents {
bucketContents[*key.Key] = key
lastKey = *key.Key
}
if *listObjectsResponse.IsTruncated {
prevMarker := marker
if listObjectsResponse.NextMarker == nil {
// 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.
marker = lastKey
} else {
marker = *listObjectsResponse.NextMarker
}
if marker == prevMarker {
return nil, errors.New("Unable to list all bucket objects; perhaps this is a CloudFront S3 bucket that needs its `Query String Forwarding and Caching` set to `Forward all, cache based on all`?")
}
} else {
break
}
}
return bucketContents, nil
}
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),
KeyMarker: aws.String(keyMarker),
Prefix: aws.String(prefix),
}
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"))
}