-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
272 lines (230 loc) · 6.09 KB
/
main.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
package main
import (
"archive/tar"
"archive/zip"
"compress/gzip"
"encoding/json"
"fmt"
"io"
"log"
"os"
"regexp"
"strconv"
"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/caarlos0/env/v6"
)
var config = Configuration{}
var s3Svc *s3.S3
var s3downloader *s3manager.Downloader
var prefix string
var writePath string
var compType string
type Configuration struct {
AccessKey string `env:"AccessKey"`
SecretKey string `env:"SecretKey"`
Bucket string `env:"Bucket"`
Region string `env:"Region"`
Port int `env:"Port"`
}
type FakeWriterAt struct {
w io.Writer
}
func (fw FakeWriterAt) WriteAt(p []byte, offset int64) (n int, err error) {
// ignore 'offset' because we forced sequential downloads
return fw.w.Write(p)
}
func GetConfig() {
// Get config from conf.json
configFile, err := os.Open("conf.json")
if err != nil {
fmt.Println("No config fil.. parsing from env")
} else {
// Config parsed from file
decoder := json.NewDecoder(configFile)
err = decoder.Decode(&config)
if err != nil {
panic("Error reading conf")
}
}
// Get config from env variables
// err = envconfig.Process("", &config)
// if err != nil {
// panic("No config in file or env")
// }
if err := env.Parse(&config); err != nil {
fmt.Printf("%+v\n", err)
}
}
func initS3() {
creds := credentials.NewStaticCredentials(config.AccessKey, config.SecretKey, "")
sess, err := session.NewSession(&aws.Config{
Region: aws.String(config.Region),
Credentials: creds,
})
if err != nil {
fmt.Println("err", err)
}
s3Svc = s3.New(sess, &aws.Config{Region: aws.String(config.Region)}) // TODO - remove region?
downloader := s3manager.NewDownloader(sess, func(d *s3manager.Downloader) {
// d.PartSize = 64 * 1024 * 1024 // 64MB per part
// d.Concurrency = 5
})
s3downloader = downloader
}
func main() {
// Parse config
GetConfig()
// Init s3
initS3()
// Run server
fmt.Println("Running on port", config.Port)
http.HandleFunc("/", handler)
err := http.ListenAndServe(":"+strconv.Itoa(config.Port), nil)
if err != nil {
fmt.Println("Error starting server", err)
}
}
func handler(w http.ResponseWriter, r *http.Request) {
start := time.Now()
compType = "zip"
health, ok := r.URL.Query()["health"]
if len(health) > 0 {
fmt.Fprintf(w, "OK")
return
}
cType, ok := r.URL.Query()["comp"]
if len(cType) > 0 {
// fmt.Println("comp tpye", cType)
if cType[0] == "tar" {
compType = "tar"
}
}
// Get "prefix" URL params
pres, ok := r.URL.Query()["prefix"]
if !ok || len(pres) < 1 {
http.Error(w, "Prefix not specified. Pass ?prefix= to use.", 500)
return
}
prefix = pres[0]
// Get path url parms
// Specifys the folder name they want to write to in the zip
path, ok := r.URL.Query()["path"]
if !ok || len(pres) < 1 {
// if no path is specified write to root folder
writePath = "/"
} else {
// If folder is specified make sure there is a trailing '/'
fixedPath := path[0]
if fixedPath[len(fixedPath)-1:] != "/" {
fixedPath += "/"
}
writePath = fixedPath
}
res, err := s3Svc.ListObjectsV2(&s3.ListObjectsV2Input{
Bucket: aws.String(config.Bucket),
Prefix: aws.String(prefix),
})
if err != nil {
fmt.Println(err)
return
}
// Start processing the response
w.Header().Add("Content-Disposition", "attachment; filename=\""+GetName(prefix)+"."+compType+"\"")
w.Header().Add("Content-Type", "application/"+compType)
// tarit(res.Contents)
if compType == "zip" {
zipit(w, res.Contents)
}
if compType == "tar" {
tarit(w, res.Contents)
}
// Loop over files, add them to the
log.Printf("%s\t%s\t%s", compType, r.RequestURI, time.Since(start))
}
func tarit(w http.ResponseWriter, contents []*s3.Object) {
gw := gzip.NewWriter(w)
defer gw.Close()
tw := tar.NewWriter(gw)
defer tw.Close()
for _, file := range contents {
// fmt.Println("File", *file)
filePath := *file.Key
path := strings.Replace(filePath, prefix, writePath, 1)
header := new(tar.Header)
header.Name = path
header.Size = *file.Size
// header.Mode = int64(0755) // TODO?
header.ModTime = *file.LastModified
// write the header to the tarball archive
if err := tw.WriteHeader(header); err != nil {
// return err;;
fmt.Println("err", err)
}
// Read file from S3, log any errors
_, err := s3downloader.Download(FakeWriterAt{tw}, &s3.GetObjectInput{
Bucket: aws.String(config.Bucket),
Key: aws.String(*file.Key),
})
if err != nil {
fmt.Println("dl err", err)
}
}
return
}
func zipit(w http.ResponseWriter, contents []*s3.Object) {
zipWriter := zip.NewWriter(w)
// pr, pw := io.Pipe()
// Create zip.Write which will writes to pipes
for _, file := range contents {
// fmt.Println("File", *file)
// Ge rid of prefix in zip path
filePath := *file.Key
zipPath := strings.Replace(filePath, prefix, writePath, 1)
// fmt.Println("zipPath", zipPath)
h := &zip.FileHeader{
Name: zipPath,
Method: zip.Deflate,
Flags: 0x800,
Modified: *file.LastModified,
}
f, _ := zipWriter.CreateHeader(h)
// Build safe file file name
// Read file from S3, log any errors
_, err := s3downloader.Download(FakeWriterAt{f}, &s3.GetObjectInput{
Bucket: aws.String(config.Bucket),
Key: aws.String(*file.Key),
})
if err != nil {
fmt.Println("dl err", err)
}
}
zipWriter.Close()
return
}
var makeSafeFileName = regexp.MustCompile(`[#<>:"/\|?*\\]`)
func GetName(path string) string {
// Returns the last item of the prefix
// should return either the file name or folder
s := strings.Split(path, "/")
root_item_name := s[len(s)-1]
// Added because folders are often sandwitched between two /'s
if root_item_name == "" {
root_item_name = s[len(s)-2]
}
safeFileName := makeSafeFileName.ReplaceAllString(root_item_name, "")
if safeFileName == "" { // Unlikely but just in case
safeFileName = "file"
}
return safeFileName
}
// Todo:
// 1. Better Error handling
// 2. Turn any repeated code into functions
// 3. Add api auth/key?