forked from espebra/filebin2
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathhttp_bin.go
More file actions
366 lines (311 loc) · 9.79 KB
/
http_bin.go
File metadata and controls
366 lines (311 loc) · 9.79 KB
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
package main
import (
"archive/tar"
"archive/zip"
"encoding/json"
"fmt"
"io"
"net/http"
"net/url"
"path"
"time"
"github.com/dustin/go-humanize"
"github.com/espebra/filebin2/ds"
"github.com/gorilla/mux"
qrcode "github.com/skip2/go-qrcode"
)
// This handler adds a trailing slash to bin URLs to make them possible
// to exclude from robots.txt
func (h *HTTP) ViewBinRedirect(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Cache-Control", "max-age=3600")
w.Header().Set("X-Robots-Tag", "none, noarchive")
params := mux.Vars(r)
inputBin := params["bin"]
var binURL url.URL
binURL.Scheme = h.config.BaseUrl.Scheme
binURL.Host = h.config.BaseUrl.Host
binURL.Path = path.Join(h.config.BaseUrl.Path, inputBin)
http.Redirect(w, r, binURL.String(), 301)
}
func (h *HTTP) ViewBin(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Cache-Control", "max-age=0")
w.Header().Set("X-Robots-Tag", "none, noarchive")
params := mux.Vars(r)
inputBin := params["bin"]
type Data struct {
ds.Common
Bin ds.Bin `json:"bin"`
Files []ds.File `json:"files"`
}
var data Data
data.Page = "bin"
data.BaseUrl = h.config.BaseUrl.String()
var binURL url.URL
binURL.Scheme = h.config.BaseUrl.Scheme
binURL.Host = h.config.BaseUrl.Host
binURL.Path = path.Join(h.config.BaseUrl.Path, inputBin)
data.BinUrl = binURL.String()
bin, found, err := h.dao.Bin().GetByID(inputBin)
if err != nil {
fmt.Printf("Unable to GetByID(%s): %s\n", inputBin, err.Error())
http.Error(w, "Errno 200", http.StatusInternalServerError)
return
}
if found {
files, err := h.dao.File().GetByBin(inputBin, true)
if err != nil {
fmt.Printf("Unable to GetByBin(%s): %s\n", inputBin, err.Error())
http.Error(w, "Not found", http.StatusNotFound)
return
}
if bin.IsReadable() {
data.Files = files
}
} else {
// Synthetize a bin without creating it. It will be created when a file is uploaded.
bin = ds.Bin{}
bin.Id = inputBin
bin.ExpiredAt = time.Now().UTC().Add(h.config.ExpirationDuration)
bin.ExpiredAtRelative = humanize.Time(bin.ExpiredAt)
// Intentional slowdown to make crawling less efficient
time.Sleep(1 * time.Second)
}
data.Bin = bin
if bin.IsReadable() {
w.WriteHeader(200)
} else {
w.WriteHeader(404)
}
if r.Header.Get("accept") == "application/json" {
w.Header().Set("Content-Type", "application/json")
out, err := json.MarshalIndent(data, "", " ")
if err != nil {
fmt.Printf("Failed to parse json: %s\n", err.Error())
http.Error(w, "Errno 201", http.StatusInternalServerError)
return
}
io.WriteString(w, string(out))
} else {
if err := h.templates.ExecuteTemplate(w, "bin", data); err != nil {
fmt.Printf("Failed to execute template: %s\n", err.Error())
http.Error(w, "Errno 203", http.StatusInternalServerError)
return
}
}
}
func (h *HTTP) BinQR(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Cache-Control", "max-age=0")
w.Header().Set("X-Robots-Tag", "none, noarchive")
params := mux.Vars(r)
inputBin := params["bin"]
var binURL url.URL
binURL.Scheme = h.config.BaseUrl.Scheme
binURL.Host = h.config.BaseUrl.Host
binURL.Path = path.Join(h.config.BaseUrl.Path, inputBin)
var png []byte
png, err := qrcode.Encode(binURL.String(), qrcode.Medium, 256)
if err != nil {
fmt.Printf("Error generating qr code %s: %s\n", binURL.String(), err.Error())
http.Error(w, "Unable to generate QR code", http.StatusInternalServerError)
return
}
w.Header().Set("Content-Type", "image/png")
if _, err := w.Write(png); err != nil {
fmt.Printf("Unable to write image: %s\n", err.Error())
http.Error(w, "Unable to generate QR code", http.StatusInternalServerError)
}
}
func (h *HTTP) Archive(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Cache-Control", "max-age=0")
w.Header().Set("X-Robots-Tag", "none, noarchive")
params := mux.Vars(r)
inputBin := params["bin"]
inputFormat := params["format"]
if inputFormat != "zip" && inputFormat != "tar" {
http.Error(w, "Supported formats: zip and tar", http.StatusNotFound)
return
}
bin, found, err := h.dao.Bin().GetByID(inputBin)
if err != nil {
fmt.Printf("Unable to GetByID(%s): %s\n", inputBin, err.Error())
http.Error(w, "Errno 200", http.StatusInternalServerError)
return
}
if found == false {
h.Error(w, r, "", "The bin does not exist.", 201, http.StatusNotFound)
return
}
if bin.IsReadable() == false {
h.Error(w, r, "", fmt.Sprintf("The bin %s is no longer available.", inputBin), 202, http.StatusNotFound)
return
}
files, err := h.dao.File().GetByBin(inputBin, true)
if err != nil {
fmt.Printf("Unable to GetByBin(%s): %s\n", inputBin, err.Error())
http.Error(w, "Not found", http.StatusNotFound)
return
}
if len(files) == 0 {
// The bin does not contain any files
http.Error(w, "Not found", http.StatusNotFound)
return
}
if inputFormat == "zip" {
w.Header().Set("Content-Type", "application/zip")
w.Header().Set("Content-Disposition", fmt.Sprintf("attachment; filename=\"%s.zip\"", bin.Id))
zw := zip.NewWriter(w)
for _, file := range files {
header := &zip.FileHeader{}
header.Name = file.Filename
header.Modified = file.UpdatedAt
header.SetMode(400) // RW for the file owner
ze, err := zw.CreateHeader(header)
if err != nil {
fmt.Println(err)
return
}
fp, err := h.s3.GetObject(bin.Id, file.Filename, 0, 0)
if err != nil {
h.Error(w, r, fmt.Sprintf("Failed to archive object in bin %s: filename %s: %s", bin.Id, file.Filename, err.Error()), "Archive error", 300, http.StatusInternalServerError)
return
}
bytes, err := io.Copy(ze, fp)
if err != nil {
fmt.Println(err)
}
fmt.Printf("Added %d bytes to the zip archive\n", bytes)
}
if err := zw.Close(); err != nil {
fmt.Println(err)
}
if err := h.dao.Bin().RegisterDownload(&bin); err != nil {
fmt.Printf("Unable to update bin %s: %s\n", inputBin, err.Error())
}
return
} else if inputFormat == "tar" {
w.Header().Set("Content-Type", "application/x-tar")
w.Header().Set("Content-Disposition", fmt.Sprintf("attachment; filename=\"%s.tar\"", bin.Id))
tw := tar.NewWriter(w)
for _, file := range files {
header := &tar.Header{}
header.Name = file.Filename
header.Size = int64(file.Bytes)
header.ModTime = file.UpdatedAt
header.Mode = 0600 // rw access for the owner
if err := tw.WriteHeader(header); err != nil {
fmt.Println(err)
return
}
fp, err := h.s3.GetObject(bin.Id, file.Filename, 0, 0)
if err != nil {
h.Error(w, r, fmt.Sprintf("Failed to archive object in bin %s: filename %s: %s", bin.Id, file.Filename, err.Error()), "Archive error", 300, http.StatusInternalServerError)
return
}
bytes, err := io.Copy(tw, fp)
if err != nil {
fmt.Println(err)
}
fmt.Printf("Added %d bytes to the tar archive\n", bytes)
}
if err := tw.Close(); err != nil {
fmt.Println(err)
}
if err := h.dao.Bin().RegisterDownload(&bin); err != nil {
fmt.Printf("Unable to update bin %s: %s\n", inputBin, err.Error())
}
return
}
}
func (h *HTTP) DeleteBin(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Cache-Control", "max-age=0")
params := mux.Vars(r)
inputBin := params["bin"]
bin, found, err := h.dao.Bin().GetByID(inputBin)
if err != nil {
fmt.Printf("Unable to GetByID(%s): %s\n", inputBin, err.Error())
http.Error(w, "Errno 204", http.StatusInternalServerError)
return
}
if found == false {
http.Error(w, "Bin does not exist", http.StatusNotFound)
return
}
if bin.IsReadable() == false {
http.Error(w, "This bin is no longer available", http.StatusNotFound)
return
}
// Set to deleted
now := time.Now().UTC().Truncate(time.Microsecond)
bin.DeletedAt.Scan(now)
if err := h.dao.Bin().Update(&bin); err != nil {
http.Error(w, "Internal Server Error", http.StatusInternalServerError)
return
}
http.Error(w, "Bin deleted successfully ", http.StatusOK)
return
}
func (h *HTTP) LockBin(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Cache-Control", "max-age=0")
params := mux.Vars(r)
inputBin := params["bin"]
bin, found, err := h.dao.Bin().GetByID(inputBin)
if err != nil {
fmt.Printf("Unable to GetByID(%s): %s\n", inputBin, err.Error())
http.Error(w, "Errno 205", http.StatusInternalServerError)
return
}
if found == false {
http.Error(w, "Bin does not exist", http.StatusNotFound)
return
}
if bin.IsReadable() == false {
http.Error(w, "This bin is no longer available", http.StatusNotFound)
return
}
// No need to set the bin to readonlytwice
if bin.Readonly == true {
http.Error(w, "This bin is already locked", http.StatusOK)
return
}
// Set to read only
bin.Readonly = true
if err := h.dao.Bin().Update(&bin); err != nil {
http.Error(w, "Internal Server Error", http.StatusInternalServerError)
return
}
http.Error(w, "Bin locked successfully.", http.StatusOK)
return
}
func (h *HTTP) ApproveBin(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Cache-Control", "max-age=0")
params := mux.Vars(r)
inputBin := params["bin"]
bin, found, err := h.dao.Bin().GetByID(inputBin)
if err != nil {
fmt.Printf("Unable to GetByID(%s): %s\n", inputBin, err.Error())
http.Error(w, "Errno 205", http.StatusInternalServerError)
return
}
if found == false {
http.Error(w, "Bin does not exist", http.StatusNotFound)
return
}
if bin.IsReadable() == false {
http.Error(w, "This bin is no longer available", http.StatusNotFound)
return
}
// No need to set the bin to approved twice
if bin.IsApproved() {
http.Error(w, "This bin is already approved", http.StatusOK)
return
}
// Set bin as approved with the current timestamp
now := time.Now().UTC().Truncate(time.Microsecond)
bin.ApprovedAt.Scan(now)
if err := h.dao.Bin().Update(&bin); err != nil {
http.Error(w, "Internal Server Error", http.StatusInternalServerError)
return
}
http.Error(w, "Bin approved successfully.", http.StatusOK)
return
}