mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
rename
This commit is contained in:
parent
023a1efdf2
commit
3faa0aa448
|
@ -218,7 +218,7 @@ func handleStaticResources2(r *mux.Router) {
|
||||||
r.PathPrefix("/seaweedfsstatic/").Handler(http.StripPrefix("/seaweedfsstatic", http.FileServer(statikFS)))
|
r.PathPrefix("/seaweedfsstatic/").Handler(http.StripPrefix("/seaweedfsstatic", http.FileServer(statikFS)))
|
||||||
}
|
}
|
||||||
|
|
||||||
func adjustHeaders(w http.ResponseWriter, r *http.Request, filename string) {
|
func adjustHeaderContentDisposition(w http.ResponseWriter, r *http.Request, filename string) {
|
||||||
if filename != "" {
|
if filename != "" {
|
||||||
contentDisposition := "inline"
|
contentDisposition := "inline"
|
||||||
if r.FormValue("dl") != "" {
|
if r.FormValue("dl") != "" {
|
||||||
|
|
|
@ -102,7 +102,7 @@ func (fs *FilerServer) GetOrHeadHandler(w http.ResponseWriter, r *http.Request,
|
||||||
setEtag(w, etag)
|
setEtag(w, etag)
|
||||||
|
|
||||||
filename := entry.Name()
|
filename := entry.Name()
|
||||||
adjustHeaders(w, r, filename)
|
adjustHeaderContentDisposition(w, r, filename)
|
||||||
|
|
||||||
if r.Method == "HEAD" {
|
if r.Method == "HEAD" {
|
||||||
w.Header().Set("Content-Length", strconv.FormatInt(int64(filer2.TotalSize(entry.Chunks)), 10))
|
w.Header().Set("Content-Length", strconv.FormatInt(int64(filer2.TotalSize(entry.Chunks)), 10))
|
||||||
|
|
|
@ -244,7 +244,7 @@ func writeResponseContent(filename, mimeType string, rs io.ReadSeeker, w http.Re
|
||||||
}
|
}
|
||||||
w.Header().Set("Accept-Ranges", "bytes")
|
w.Header().Set("Accept-Ranges", "bytes")
|
||||||
|
|
||||||
adjustHeaders(w, r, filename)
|
adjustHeaderContentDisposition(w, r, filename)
|
||||||
|
|
||||||
if r.Method == "HEAD" {
|
if r.Method == "HEAD" {
|
||||||
w.Header().Set("Content-Length", strconv.FormatInt(totalSize, 10))
|
w.Header().Set("Content-Length", strconv.FormatInt(totalSize, 10))
|
||||||
|
|
Loading…
Reference in a new issue