Update upload.go
This commit is contained in:
parent
5effb947e3
commit
d6ebc29483
|
@ -61,7 +61,7 @@ func uploadPostHandler(c web.C, w http.ResponseWriter, r *http.Request) {
|
||||||
uploadHeaderProcess(r, &upReq)
|
uploadHeaderProcess(r, &upReq)
|
||||||
|
|
||||||
contentType := r.Header.Get("Content-Type")
|
contentType := r.Header.Get("Content-Type")
|
||||||
|
srcIp := r.Header.get("X-Forwarded-For")
|
||||||
if strings.HasPrefix(contentType, "multipart/form-data") {
|
if strings.HasPrefix(contentType, "multipart/form-data") {
|
||||||
file, headers, err := r.FormFile("file")
|
file, headers, err := r.FormFile("file")
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
@ -92,7 +92,6 @@ func uploadPostHandler(c web.C, w http.ResponseWriter, r *http.Request) {
|
||||||
|
|
||||||
upReq.expiry = parseExpiry(r.PostFormValue("expires"))
|
upReq.expiry = parseExpiry(r.PostFormValue("expires"))
|
||||||
upReq.accessKey = r.PostFormValue(accessKeyParamName)
|
upReq.accessKey = r.PostFormValue(accessKeyParamName)
|
||||||
upReq.srcIp := r.Header.get("X-Forwarded-For")
|
|
||||||
if r.PostFormValue("randomize") == "true" {
|
if r.PostFormValue("randomize") == "true" {
|
||||||
upReq.randomBarename = true
|
upReq.randomBarename = true
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue