mirror of
https://github.com/ZizzyDizzyMC/linx-server.git
synced 2026-01-23 02:14:33 +00:00
Update upload.go
This commit is contained in:
parent
93ec408815
commit
416a0b1dcc
1 changed files with 21 additions and 6 deletions
27
upload.go
27
upload.go
|
|
@ -55,8 +55,13 @@ func uploadPostHandler(c web.C, w http.ResponseWriter, r *http.Request) {
|
|||
badRequestHandler(c, w, r, RespAUTO, "")
|
||||
return
|
||||
}
|
||||
if r.Header.Get("Test-Header") == "test" {
|
||||
oopsHandler(c, w, r, RespHTML, "You killed it")
|
||||
if len(r.Header.Get("Content-Length")) > 0 {
|
||||
i, err := strconv.ParseInt(r.Header.Get("Content-Length"), 10, 64)
|
||||
if err == nil {
|
||||
if i > Config.maxSize {
|
||||
oopsHandler(c, w, r, RespHTML, "Could not upload file: File too large")
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
upReq := UploadRequest{}
|
||||
|
|
@ -125,8 +130,13 @@ func uploadPostHandler(c web.C, w http.ResponseWriter, r *http.Request) {
|
|||
}
|
||||
|
||||
func uploadPutHandler(c web.C, w http.ResponseWriter, r *http.Request) {
|
||||
if r.Header.Get("Test-Header") == "test" {
|
||||
oopsHandler(c, w, r, RespHTML, "You killed it")
|
||||
if len(r.Header.Get("Content-Length")) > 0 {
|
||||
i, err := strconv.ParseInt(r.Header.Get("Content-Length"), 10, 64)
|
||||
if err == nil {
|
||||
if i > Config.maxSize {
|
||||
oopsHandler(c, w, r, RespHTML, "Could not upload file: File too large")
|
||||
}
|
||||
}
|
||||
}
|
||||
upReq := UploadRequest{}
|
||||
uploadHeaderProcess(r, &upReq)
|
||||
|
|
@ -236,8 +246,13 @@ func uploadHeaderProcess(r *http.Request, upReq *UploadRequest) {
|
|||
if r.Header.Get("Linx-Randomize") == "yes" {
|
||||
upReq.randomBarename = true
|
||||
}
|
||||
if r.Header.Get("Test-Header") == "test" {
|
||||
return
|
||||
if len(r.Header.Get("Content-Length")) > 0 {
|
||||
i, err := strconv.ParseInt(r.Header.Get("Content-Length"), 10, 64)
|
||||
if err == nil {
|
||||
if i > Config.maxSize {
|
||||
oopsHandler(c, w, r, RespHTML, "Could not upload file: File too large")
|
||||
}
|
||||
}
|
||||
}
|
||||
upReq.deleteKey = r.Header.Get("Linx-Delete-Key")
|
||||
upReq.accessKey = r.Header.Get(accessKeyHeaderName)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue