This repository has been archived by the owner on Sep 12, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
s3_archive.go
114 lines (104 loc) · 2.43 KB
/
s3_archive.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
// Copyright 2016 Stellar Development Foundation and contributors. Licensed
// under the Apache License, Version 2.0. See the COPYING file at the root
// of this distribution or at http://www.apache.org/licenses/LICENSE-2.0
package archivist
import (
"io"
"path"
"bytes"
"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/aws/session"
"github.com/aws/aws-sdk-go/service/s3"
)
type S3ArchiveBackend struct {
svc *s3.S3
bucket string
prefix string
}
func (b *S3ArchiveBackend) GetFile(pth string) (io.ReadCloser, error) {
params := &s3.GetObjectInput{
Bucket: aws.String(b.bucket),
Key: aws.String(path.Join(b.prefix, pth)),
}
resp, err := b.svc.GetObject(params)
if err != nil {
return nil, err
}
return resp.Body, nil
}
func (b *S3ArchiveBackend) Exists(pth string) bool {
params := &s3.HeadObjectInput{
Bucket: aws.String(b.bucket),
Key: aws.String(path.Join(b.prefix, pth)),
}
_, err := b.svc.HeadObject(params)
return err == nil
}
func (b *S3ArchiveBackend) PutFile(pth string, in io.ReadCloser) error {
var buf bytes.Buffer
_, err := buf.ReadFrom(in)
in.Close()
if err != nil {
return err
}
params := &s3.PutObjectInput{
Bucket: aws.String(b.bucket),
Key: aws.String(path.Join(b.prefix, pth)),
ACL: aws.String(s3.ObjectCannedACLPublicRead),
Body: bytes.NewReader(buf.Bytes()),
}
_, err = b.svc.PutObject(params)
in.Close()
return err
}
func (b *S3ArchiveBackend) ListFiles(pth string) (chan string, chan error) {
prefix := path.Join(b.prefix, pth)
ch := make(chan string)
errs := make(chan error)
params := &s3.ListObjectsInput{
Bucket: aws.String(b.bucket),
MaxKeys: aws.Int64(1000),
Prefix: aws.String(prefix),
}
resp, err := b.svc.ListObjects(params)
if err != nil {
errs <- err
close(ch)
close(errs)
return ch, errs
}
go func() {
for {
for _, c := range resp.Contents {
params.Marker = c.Key
ch <- *c.Key
}
if *resp.IsTruncated {
resp, err = b.svc.ListObjects(params)
if err != nil {
errs <- err
}
} else {
break
}
}
close(ch)
close(errs)
}()
return ch, errs
}
func (b *S3ArchiveBackend) CanListFiles() bool {
return true
}
func MakeS3Backend(bucket string, prefix string, opts *ConnectOptions) ArchiveBackend {
cfg := aws.Config{}
if opts != nil && opts.S3Region != "" {
cfg.Region = aws.String(opts.S3Region)
}
sess := session.New(&cfg)
return &S3ArchiveBackend{
svc: s3.New(sess),
bucket: bucket,
prefix: prefix,
}
}