forked from electricdusk/rushlink
Replace io.Copy w/ http.ServeContent for download
This commit is contained in:
parent
8dce4e8483
commit
5e6ce9c2be
16
handlers.go
16
handlers.go
@ -3,7 +3,6 @@ package rushlink
|
||||
import (
|
||||
"crypto/subtle"
|
||||
"fmt"
|
||||
"io"
|
||||
"log"
|
||||
"mime/multipart"
|
||||
"net/http"
|
||||
@ -95,12 +94,17 @@ func (rl *rushlink) uploadFileGetHandler(w http.ResponseWriter, r *http.Request)
|
||||
// unexpected error
|
||||
panic(err)
|
||||
}
|
||||
w.Header().Set("Content-Type", fu.ContentType)
|
||||
w.WriteHeader(http.StatusOK)
|
||||
if r.Method == "HEAD" {
|
||||
return
|
||||
info, err := file.Stat()
|
||||
var modtime time.Time
|
||||
if err != nil {
|
||||
log.Printf("error: %v", errors.Wrapf(err, "could not stat file '%v'", filePath))
|
||||
} else {
|
||||
modtime = info.ModTime()
|
||||
}
|
||||
io.Copy(w, file)
|
||||
// We use http.ServeContent (instead of http.ServeFile) because we cannot
|
||||
// use http.ServeFile together with the assertion that the file exists,
|
||||
// without introducing a TOCTOU flaw.
|
||||
http.ServeContent(w, r, fu.FileName, modtime, file)
|
||||
}
|
||||
|
||||
func (rl *rushlink) viewPasteHandler(w http.ResponseWriter, r *http.Request) {
|
||||
|
Loading…
Reference in New Issue
Block a user