-
Notifications
You must be signed in to change notification settings - Fork 46
/
copy.go
173 lines (148 loc) · 3.92 KB
/
copy.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
package main
import (
"fmt"
"mime"
"os"
"path"
"path/filepath"
"strings"
"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/service/s3"
"github.com/aws/aws-sdk-go/service/s3/s3manager"
)
// Given a SRC and DST URL - copy the file
//
// this is a useful helper
func copyFile(config *Config, src, dst *FileURI, ensure_directory bool) error {
if config.Verbose {
fmt.Printf("Copy %s -> %s\n", src.String(), dst.String())
}
if config.DryRun {
return nil
}
switch src.Scheme + "->" + dst.Scheme {
case "file->file":
return fmt.Errorf("cp should not be doing local files")
case "s3->s3":
return copyOnS3(config, src, dst)
case "s3->file":
return copyToLocal(config, src, dst, ensure_directory)
case "file->s3":
return copyToS3(config, src, dst)
}
return nil
}
// Copy from S3 to local file
func copyToLocal(config *Config, src, dst *FileURI, ensure_directory bool) error {
svc, err := SessionForBucket(config, src.Bucket)
if err != nil {
return err
}
downloader := s3manager.NewDownloaderWithClient(svc)
params := &s3.GetObjectInput{
Bucket: aws.String(src.Bucket),
Key: src.Key(),
}
dst_path := dst.Path
// if the destination is a directory then copy to a file in the directory
sinfo, err := os.Stat(dst_path)
if err == nil && sinfo.IsDir() {
dst_path = path.Join(dst_path, filepath.Base(src.Path))
}
if ensure_directory {
dir := filepath.Dir(dst.Path)
if _, err := os.Stat(dir); err != nil {
if config.Verbose {
fmt.Printf("Making directory dir=%s\n", dir)
}
if err := os.MkdirAll(dir, 0755); err != nil {
fmt.Println(err)
return fmt.Errorf("Error making directory dir=%s error=%v", dir, err)
}
}
}
fd, err := os.Create(dst_path)
if err != nil {
fmt.Println(err)
return err
}
defer fd.Close()
_, err = downloader.Download(fd, params)
if err != nil {
return err
}
return nil
}
// Copy from local file to S3
func copyToS3(config *Config, src, dst *FileURI) error {
svc, err := SessionForBucket(config, dst.Bucket)
if err != nil {
return err
}
uploader := s3manager.NewUploaderWithClient(svc, func(u *s3manager.Uploader) {
u.PartSize = config.PartSize * 1024 * 1024
u.Concurrency = config.Concurrency
})
fd, err := os.Open(src.Path)
if err != nil {
return err
}
defer fd.Close()
var contentType *string
if mimeType := mime.TypeByExtension(path.Ext(src.Path)); mimeType != "" {
contentType = &mimeType
}
params := &s3manager.UploadInput{
Bucket: aws.String(dst.Bucket), // Required
Key: cleanBucketDestPath(src.Path, dst.Path),
Body: fd,
ContentType: contentType,
}
if config.StorageClass != "" {
params.StorageClass = aws.String(config.StorageClass)
}
_, err = uploader.Upload(params)
if err != nil {
return err
}
return nil
}
// Copy from S3 to S3
//
// -- if src and dst are the same it effects a "touch"
func copyOnS3(config *Config, src, dst *FileURI) error {
svc, err := SessionForBucket(config, dst.Bucket)
if err != nil {
return err
}
if strings.HasSuffix(src.Path, "/") {
return fmt.Errorf("Invalid source for bucket to bucket copy path ends in '/'")
}
params := &s3.CopyObjectInput{
Bucket: aws.String(dst.Bucket),
CopySource: aws.String(fmt.Sprintf("/%s/%s", src.Bucket, src.Path[1:])),
Key: cleanBucketDestPath(src.Path, dst.Path),
}
// if this is an overwrite - note that
if src.Bucket == dst.Bucket && *params.CopySource == fmt.Sprintf("/%s/%s", dst.Bucket, *params.Key) {
params.MetadataDirective = aws.String("REPLACE")
}
_, err = svc.CopyObject(params)
if err != nil {
return err
}
return nil
}
// Take a src and dst and make a valid destination path for the bucket
//
// if the dst ends in "/" add the basename of the source to the object
// make sure the leading "/" is stripped off
func cleanBucketDestPath(src, dst string) *string {
if strings.HasSuffix(dst, "/") {
dst += filepath.Base(src)
}
if strings.HasPrefix(dst, "/") {
dst = dst[1:]
}
return &dst
}