forked from javifr/s3zipper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paths3zipper.go
410 lines (344 loc) · 9.71 KB
/
s3zipper.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
package main
import (
"archive/zip"
"encoding/json"
"errors"
"fmt"
"io"
"log"
"os"
"regexp"
"strconv"
"strings"
"time"
"net/http"
"github.com/AdRoll/goamz/aws"
"github.com/AdRoll/goamz/s3"
redigo "github.com/garyburd/redigo/redis"
)
type Configuration struct {
AccessKey string
SecretKey string
Bucket string
Region string
RedisServerAndPort string
Port int
}
var config = Configuration{}
var aws_bucket *s3.Bucket
var redisPool *redigo.Pool
type RedisFile struct {
FileName string
Folder string
S3Path string
DataValue string
//// Optional - we use are Teamwork.com but feel free to rmove
//FileId int64 `json:",string"`
//ProjectId int64 `json:",string"`
//ProjectName string
//Modified string
//ModifiedTime time.Time
}
func main() {
if 1 == 0 {
test()
return
}
configFile, _ := os.Open("conf.json")
decoder := json.NewDecoder(configFile)
err := decoder.Decode(&config)
if err != nil {
panic("Error reading conf")
}
initAwsBucket()
InitRedis()
fmt.Println("Running on port", config.Port)
http.HandleFunc("/", handler)
http.ListenAndServe(":" + strconv.Itoa(config.Port), nil)
}
func test() {
var err error
var files []*RedisFile
jsonData := "[{\"S3Path\":\"1\\/p23216.tf_A89A5199-F04D-A2DE-5824E635AC398956.Avis_Rent_A_Car_Print_Reservation.pdf\",\"FileVersionId\":\"4164\",\"FileName\":\"Avis Rent A Car_ Print Reservation.pdf\",\"ProjectName\":\"Superman\",\"ProjectId\":\"23216\",\"Folder\":\"\",\"FileId\":\"4169\"},{\"modified\":\"2015-07-18T02:05:04Z\",\"S3Path\":\"1\\/p23216.tf_351310E0-DF49-701F-60601109C2792187.a1.jpg\",\"FileVersionId\":\"4165\",\"FileName\":\"a1.jpg\",\"ProjectName\":\"Superman\",\"ProjectId\":\"23216\",\"Folder\":\"Level 1\\/Level 2 x\\/Level 3\",\"FileId\":\"4170\"}]"
resultByte := []byte(jsonData)
err = json.Unmarshal(resultByte, &files)
if err != nil {
err = errors.New("Error decoding json: " + jsonData)
}
//parseFileDates(files)
}
//func parseFileDates(files []*RedisFile) {
// layout := "2006-01-02T15:04:05Z"
// for _, file := range files {
// t, err := time.Parse(layout, file.Modified)
// if err != nil {
// fmt.Println(err)
// continue
// }
// file.ModifiedTime = t
// }
//}
func initAwsBucket() {
expiration := time.Now().Add(time.Hour * 1)
auth, err := aws.GetAuth(config.AccessKey, config.SecretKey, "", expiration) //"" = token which isn't needed
if err != nil {
panic(err)
}
aws_bucket = s3.New(auth, aws.GetRegion(config.Region)).Bucket(config.Bucket)
}
func InitRedis() {
redisPool = &redigo.Pool{
MaxIdle: 10,
IdleTimeout: 1 * time.Second,
Dial: func() (redigo.Conn, error) {
return redigo.Dial("tcp", config.RedisServerAndPort)
},
TestOnBorrow: func(c redigo.Conn, t time.Time) (err error) {
_, err = c.Do("PING")
if err != nil {
panic("Error connecting to redis")
}
return
},
}
}
// Remove all other unrecognised characters apart from
var makeSafeFileName = regexp.MustCompile(`[#<>:"/\|?*\\]`)
func getFilesFromRedis(ref string) (files []*RedisFile, err error) {
// Testing - enable to test. Remove later.
if 1 == 0 && ref == "test" {
files = append(files, &RedisFile{FileName: "test.zip", Folder: "", S3Path: "test/test.zip"}) // Edit and dplicate line to test
return
}
redis := redisPool.Get()
defer redis.Close()
// Get the value from Redis
result, err := redis.Do("GET", "zip:" + ref)
if err != nil || result == nil {
err = errors.New("Access Denied (sorry your link has timed out)")
}
// Convert to bytes
var resultByte []byte
var ok bool
if resultByte, ok = result.([]byte); !ok {
err = errors.New("Error converting data stream to bytes")
return
}
// Decode JSON
err = json.Unmarshal(resultByte, &files)
if err != nil {
err = errors.New("Error decoding json: " + string(resultByte))
}
// Convert mofified date strings to time objects
//parseFileDates(files)
return
}
func getCnfFilesFromRedis(cnf string) (CnfDatas []*RedisFile, err error) {
redis := redisPool.Get()
defer redis.Close()
// Get the value from Redis
result, err := redis.Do("GET", "cnf:" + cnf)
if err != nil || result == nil {
err = errors.New("Conf File Access Denied (sorry your link has timed out)")
return
}
// Convert to bytes
var resultByte []byte
var ok bool
if resultByte, ok = result.([]byte); !ok {
err = errors.New("Conf File Error converting data stream to bytes")
return
}
// Decode JSON
err = json.Unmarshal(resultByte, &CnfDatas)
if err != nil {
err = errors.New("Conf File Error decoding json: " + string(resultByte))
}
return
}
func slicer(a []*RedisFile, b int) [][]*RedisFile {
c := make([][]*RedisFile, 0)
for i := 0; i < len(a); i += b {
if i + b > len(a) {
c = append(c, a[i:])
} else {
c = append(c, a[i:i + b])
}
}
return c
}
func handler(w http.ResponseWriter, r *http.Request) {
start := time.Now()
// Get "ref" URL params
refs, ok := r.URL.Query()["ref"]
if !ok || len(refs) < 1 {
http.Error(w, "S3 File Zipper. Pass ?ref= to use.", 500)
return
}
ref := refs[0]
// Get "downloadas" URL params
downloadas, ok := r.URL.Query()["downloadas"]
if !ok && len(downloadas) > 0 {
downloadas[0] = makeSafeFileName.ReplaceAllString(downloadas[0], "")
if downloadas[0] == "" {
downloadas[0] = "download.zip"
}
} else {
downloadas = append(downloadas, "download.zip")
}
files, err := getFilesFromRedis(ref)
if err != nil {
http.Error(w, err.Error(), 403)
log.Printf("%s\t%s\t%s", r.Method, r.RequestURI, err.Error())
return
}
// Get "conf" URL parms
cnfs, ok := r.URL.Query()["cnf"]
if !ok || len(cnfs) < 1 {
http.Error(w, "S3 File Zipper. Pass ?cnf= to use.", 500)
return
}
cnf := cnfs[0]
CnfDatas, err := getCnfFilesFromRedis(cnf)
if err != nil {
http.Error(w, err.Error(), 403)
log.Printf("%s\t%s\t%s", r.Method, r.RequestURI, err.Error())
return
}
// Start processing the response
w.Header().Add("Content-Disposition", "attachment; filename=\"" + downloadas[0] + "\"")
w.Header().Add("Content-Type", "application/zip")
// Loop over files, add them to the
zipWriter := zip.NewWriter(w)
// We have to set a special flag so zip files recognize utf file names
// See http://stackoverflow.com/questions/30026083/creating-a-zip-archive-with-unicode-filenames-using-gos-archive-zip
for _, CnfData := range CnfDatas {
// Build safe file file name
safeFileName := makeSafeFileName.ReplaceAllString(CnfData.FileName, "")
// Build a good path for the file within the zip
zipPath := ""
// Prefix folder name, if any
if CnfData.Folder != "" {
zipPath += CnfData.Folder
if !strings.HasSuffix(zipPath, "/") {
zipPath += "/"
}
}
zipPath += safeFileName
h := &zip.FileHeader{
Name: zipPath,
Method: zip.Deflate,
Flags: 0x800,
}
f, _ := zipWriter.CreateHeader(h)
r := strings.NewReader(CnfData.DataValue)
io.Copy(f, r)
}
sz := len(files);
fmt.Println("Total Patches:", sz)
chunks := slicer(files, 1000)
fmt.Printf("Total Chunks %v\n", len(chunks))
for _, f1 := range chunks {
initAwsBucket();
for _, file := range f1 {
if file.S3Path == "" {
log.Printf("Missing path for file: %v", file)
continue
}
// Build safe file file name
safeFileName := makeSafeFileName.ReplaceAllString(file.FileName, "")
if safeFileName == "" {
// Unlikely but just in case
safeFileName = "file"
}
// Read file from S3, log any errors
rdr, err := aws_bucket.GetReader(file.S3Path)
if err != nil {
switch t := err.(type) {
case *s3.Error:
if t.StatusCode == 404 {
log.Printf("File not found. %s", file.S3Path)
}
default:
log.Printf("Error downloading \"%s\" - %s", file.S3Path, err.Error())
}
continue
}
// Build a good path for the file within the zip
zipPath := ""
// Prefix folder name, if any
if file.Folder != "" {
zipPath += file.Folder
if !strings.HasSuffix(zipPath, "/") {
zipPath += "/"
}
}
zipPath += safeFileName
// We have to set a special flag so zip files recognize utf file names
// See http://stackoverflow.com/questions/30026083/creating-a-zip-archive-with-unicode-filenames-using-gos-archive-zip
h := &zip.FileHeader{
Name: zipPath,
Method: zip.Deflate,
Flags: 0x800,
}
f, _ := zipWriter.CreateHeader(h)
io.Copy(f, rdr)
rdr.Close()
}
}
//for _, file := range files {
//
// if file.S3Path == "" {
// log.Printf("Missing path for file: %v", file)
// continue
// }
//
// // Build safe file file name
// safeFileName := makeSafeFileName.ReplaceAllString(file.FileName, "")
// if safeFileName == "" {
// // Unlikely but just in case
// safeFileName = "file"
// }
//
// // Read file from S3, log any errors
// rdr, err := aws_bucket.GetReader(file.S3Path)
// if err != nil {
// switch t := err.(type) {
// case *s3.Error:
// if t.StatusCode == 404 {
// log.Printf("File not found. %s", file.S3Path)
// }
// default:
// log.Printf("Error downloading \"%s\" - %s", file.S3Path, err.Error())
// }
// continue
// }
//
// // Build a good path for the file within the zip
// zipPath := ""
// // Prefix folder name, if any
// if file.Folder != "" {
// zipPath += file.Folder
// if !strings.HasSuffix(zipPath, "/") {
// zipPath += "/"
// }
// }
//
// zipPath += safeFileName
//
// // We have to set a special flag so zip files recognize utf file names
// // See http://stackoverflow.com/questions/30026083/creating-a-zip-archive-with-unicode-filenames-using-gos-archive-zip
// h := &zip.FileHeader{
// Name: zipPath,
// Method: zip.Deflate,
// Flags: 0x800,
// }
//
// f, _ := zipWriter.CreateHeader(h)
//
// io.Copy(f, rdr)
// rdr.Close()
//}
zipWriter.Close()
log.Printf("%s\t%s\t%s", r.Method, r.RequestURI, time.Since(start))
}