-
Notifications
You must be signed in to change notification settings - Fork 20
/
http_bin.go
551 lines (470 loc) · 14.9 KB
/
http_bin.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
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
package main
import (
"archive/tar"
"archive/zip"
"encoding/json"
"fmt"
"image/png"
"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")
// Bins should never be indexed
w.Header().Set("X-Robots-Tag", "noindex")
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", "noindex")
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.Contact = h.config.Contact
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(%q): %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(%q): %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
code := 200
if bin.IsReadable() == false {
code = 404
}
h.metrics.IncrBinPageViewCount()
if r.Header.Get("accept") == "application/json" {
w.Header().Set("Content-Type", "application/json")
w.WriteHeader(code)
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 {
w.Header().Set("Content-Type", "text/html; charset=utf-8")
w.WriteHeader(code)
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) viewBinPlainText(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Cache-Control", "max-age=0")
w.Header().Set("X-Robots-Tag", "noindex")
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
bin, found, err := h.dao.Bin().GetByID(inputBin)
if err != nil {
fmt.Printf("Unable to GetByID(%q): %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(%q): %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)
}
code := 200
if bin.IsReadable() == false {
code = 404
}
w.Header().Set("Content-Type", "text/plain")
w.WriteHeader(code)
for _, file := range data.Files {
var u url.URL
u.Scheme = h.config.BaseUrl.Scheme
u.Host = h.config.BaseUrl.Host
u.Path = path.Join(h.config.BaseUrl.Path, file.URL)
fmt.Fprintf(w, "%s\n", u.String())
}
}
func (h *HTTP) binQR(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Cache-Control", "max-age=31536000")
w.Header().Set("X-Robots-Tag", "noindex")
params := mux.Vars(r)
inputBin := params["bin"]
// Check if the thumbnail query parameter is set
thumbnail := r.URL.Query().Has("thumbnail")
size := 256
if thumbnail {
size = 80
}
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 q *qrcode.QRCode
q, err := qrcode.New(binURL.String(), qrcode.Medium)
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
}
q.DisableBorder = true
img := q.Image(size)
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 := png.Encode(w, img); 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", "noindex")
h.metrics.IncrArchiveDownloadInProgress()
defer h.metrics.DecrArchiveDownloadInProgress()
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(%q): %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, "", "This bin is no longer available.", 202, http.StatusNotFound)
return
}
files, err := h.dao.File().GetByBin(inputBin, true)
if err != nil {
fmt.Printf("Unable to GetByBin(%q): %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
}
// The file is downloadable at this point
if h.config.RequireCookie {
if h.cookieVerify(w, r) == false {
// Set the cookie
h.setVerificationCookie(w, r)
// Show the warning
type Data struct {
ds.Common
Bin ds.Bin `json:"bin"`
NextUrl string `json:"next_url"`
}
var data Data
data.Bin = bin
var nextUrl url.URL
nextUrl.Scheme = h.config.BaseUrl.Scheme
nextUrl.Host = h.config.BaseUrl.Host
nextUrl.Path = path.Join(h.config.BaseUrl.Path, r.RequestURI)
data.NextUrl = nextUrl.String()
if err := h.templates.ExecuteTemplate(w, "cookie", data); err != nil {
fmt.Printf("Failed to execute template: %s\n", err.Error())
http.Error(w, "Errno 302", http.StatusInternalServerError)
return
}
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 %q: filename %q: %s", bin.Id, file.Filename, err.Error()), "Archive error", 300, http.StatusInternalServerError)
return
}
defer fp.Close()
h.metrics.IncrBytesStorageToFilebin(file.Bytes)
bytes, err := io.Copy(ze, fp)
if err != nil {
fmt.Println(err)
}
h.metrics.IncrBytesFilebinToClient(uint64(bytes))
fmt.Printf("Added file %q at %s (%d bytes) to the zip archive for bin %s\n", file.Filename, humanize.Bytes(uint64(bytes)), bytes, bin.Id)
}
if err := zw.Close(); err != nil {
fmt.Println(err)
}
if err := h.dao.Bin().RegisterDownload(&bin); err != nil {
fmt.Printf("Unable to update bin %q: %s\n", inputBin, err.Error())
}
h.metrics.IncrZipArchiveDownloadCount()
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 %q: filename %q: %s", bin.Id, file.Filename, err.Error()), "Archive error", 300, http.StatusInternalServerError)
return
}
defer fp.Close()
h.metrics.IncrBytesStorageToFilebin(file.Bytes)
bytes, err := io.Copy(tw, fp)
if err != nil {
fmt.Println(err)
}
h.metrics.IncrBytesFilebinToClient(uint64(bytes))
fmt.Printf("Added file %q at %s (%d bytes) to the tar archive for bin %s\n", file.Filename, humanize.Bytes(uint64(bytes)), bytes, bin.Id)
}
if err := tw.Close(); err != nil {
fmt.Println(err)
}
if err := h.dao.Bin().RegisterDownload(&bin); err != nil {
fmt.Printf("Unable to update bin %q: %s\n", inputBin, err.Error())
}
h.metrics.IncrTarArchiveDownloadCount()
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(%q): %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
}
h.metrics.IncrBinDeleteCount()
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(%q): %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
}
h.metrics.IncrBinLockCount()
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(%q): %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
}
h.metrics.IncrBinDeleteCount()
http.Error(w, "Bin approved successfully.", http.StatusOK)
return
}
// Ban the client IP addresses that have uploaded files to the given bin
func (h *HTTP) banBin(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 {
// To make brute forcing a little bit less effective
time.Sleep(3 * time.Second)
fmt.Printf("Unable to GetByID(%q): %s\n", inputBin, err.Error())
http.Error(w, "Errno 205", http.StatusInternalServerError)
return
}
if found == false {
// To make brute forcing a little bit less effective
time.Sleep(3 * time.Second)
http.Error(w, "Bin does not exist", http.StatusNotFound)
return
}
if bin.IsReadable() == false {
// To make brute forcing a little bit less effective
time.Sleep(3 * time.Second)
http.Error(w, "This bin is no longer available", http.StatusNotFound)
return
}
var IPs []string
files, err := h.dao.File().GetByBin(inputBin, true)
if err != nil {
fmt.Printf("Unable to GetByBin(%q): %s\n", inputBin, err.Error())
http.Error(w, "Not found", http.StatusNotFound)
return
}
for _, file := range files {
IPs = append(IPs, file.IP)
}
if err := h.dao.Client().Ban(IPs, r.RemoteAddr); err != nil {
fmt.Printf("Unable to ban client IPs(%v): %s\n", IPs, err.Error())
http.Error(w, "Unable to ban clients", http.StatusInternalServerError)
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
}
h.metrics.IncrBinBanCount()
http.Error(w, "Bin banned successfully.", http.StatusOK)
return
}