forked from Teamwork/s3zipper
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy paths3zipper.go
346 lines (293 loc) · 9.06 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
package main
import (
"archive/zip"
"encoding/json"
"errors"
"fmt"
"io"
"log"
"os"
"regexp"
"strconv"
"strings"
"time"
"path"
"net/http"
"github.com/AdRoll/goamz/aws"
"github.com/AdRoll/goamz/s3"
redigo "github.com/garyburd/redigo/redis"
newrelic "github.com/newrelic/go-agent"
)
type configuration struct {
AccessKey string
SecretKey string
Bucket string
Region string
RedisServerAndPort string
RedisAuth string
Port string
}
type newRelicConfiguration struct {
AppName string
SecretKey string
}
var (
config configuration
newRelicConfig newRelicConfiguration
awsBucket *s3.Bucket
redisPool *redigo.Pool
newRelicApp newrelic.Application
)
type redisFile struct {
FileName string
Folder string
S3Path 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
}
initConfig()
// initNewRelicAgent()
initAwsBucket()
initRedis()
fmt.Println("Running on port", config.Port)
// http.HandleFunc(newrelic.WrapHandleFunc(newRelicApp, "/", handler))
http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
w.WriteHeader(http.StatusOK)
return
})
http.HandleFunc("/s3zipper", handler)
http.ListenAndServe(":"+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 defaults(value, def string) string {
if value == "" {
return def
}
return value
}
func initConfig() {
config = configuration{
AccessKey: os.Getenv("AWS_ACCESS_KEY"),
SecretKey: os.Getenv("AWS_SECRET_KEY"),
Bucket: os.Getenv("AWS_BUCKET"),
Region: defaults(os.Getenv("AWS_REGION"), "us-east-1"),
RedisServerAndPort: os.Getenv("REDIS_URL"),
RedisAuth: os.Getenv("REDIS_AUTH"),
Port: defaults(os.Getenv("PORT"), "8000"),
}
}
func initNewRelicAgent() {
newRelicConfig = newRelicConfiguration{
AppName: defaults(os.Getenv("NEW_RELIC_APP_NAME"), "s3zipper-stg"),
SecretKey: defaults(os.Getenv("NEW_RELIC_LICENSE_KEY"), "60b00e37eb643d5a2156a668dbe2de37f93dc626"),
}
config := newrelic.NewConfig(newRelicConfig.AppName, newRelicConfig.SecretKey)
config.Logger = newrelic.NewDebugLogger(os.Stdout)
var err error
newRelicApp, err = newrelic.NewApplication(config)
if nil != err {
panic(err)
}
}
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)
}
awsBucket = 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) {
c, err := redigo.Dial("tcp", config.RedisServerAndPort)
if err != nil {
return nil, err
}
if auth := config.RedisAuth; auth != "" {
if _, err := c.Do("AUTH", auth); err != nil {
c.Close()
return nil, err
}
}
return c, err
},
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)")
return
}
// 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 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
}
// Start processing the response
w.Header().Add("Content-Disposition", "attachment; filename=\""+downloadas[0]+"\"")
w.Header().Add("Content-Type", "application/zip")
// initializing list of filenames already used
fileNamesList := make(map[string]int)
// Loop over files, add them to the
zipWriter := zip.NewWriter(w)
for _, file := range files {
// Build safe file file name
safeFileName := makeSafeFileName.ReplaceAllString(file.FileName, "")
if safeFileName == "" { // Unlikely but just in case
safeFileName = "file"
}
// Building another name if file already exists on zip
base := path.Base(safeFileName)
if fileNamesList[base] != 0 {
extension := path.Ext(safeFileName)
filename := base[:len(base)-len(extension)]
safeFileName = filename + " (" + strconv.Itoa(fileNamesList[base]) + ")" + extension
fileNamesList[base] = fileNamesList[base] + 1
} else {
fileNamesList[base] = 1
}
// Read file from S3, log any errors
rdr, err := awsBucket.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
}
if rdr == nil {
log.Printf("Reader is nil for file %s", file.S3Path)
continue
}
// Build a good path for the file within the zip
zipPath := ""
// Prefix project Id and name, if any (remove if you don't need)
if file.ProjectID > 0 {
zipPath += strconv.FormatInt(file.ProjectID, 10) + "."
// Build Safe Project Name
file.ProjectName = makeSafeFileName.ReplaceAllString(file.ProjectName, "")
if file.ProjectName == "" { // Unlikely but just in case
file.ProjectName = "Project"
}
zipPath += file.ProjectName + "/"
}
// 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,
}
if file.Modified != "" {
h.SetModTime(file.ModifiedTime)
}
f, err := zipWriter.CreateHeader(h)
if err != nil {
log.Printf("Error creating zip header for file %s: %s", zipPath, err.Error())
continue
}
io.Copy(f, rdr)
rdr.Close()
}
zipWriter.Close()
log.Printf("%s\t%s\t%s", r.Method, r.RequestURI, time.Since(start))
}