volume: passing ext info via URL

This commit is contained in:
Chris Lu 2020-04-02 21:23:15 -07:00
parent cea52a4faf
commit 73bc286377

View file

@ -124,7 +124,7 @@ func (vs *VolumeServer) GetOrHeadHandler(w http.ResponseWriter, r *http.Request)
} }
} }
if vs.tryHandleChunkedFile(n, filename, w, r) { if vs.tryHandleChunkedFile(n, filename, ext, w, r) {
return return
} }
@ -161,7 +161,7 @@ func (vs *VolumeServer) GetOrHeadHandler(w http.ResponseWriter, r *http.Request)
} }
} }
func (vs *VolumeServer) tryHandleChunkedFile(n *needle.Needle, fileName string, w http.ResponseWriter, r *http.Request) (processed bool) { func (vs *VolumeServer) tryHandleChunkedFile(n *needle.Needle, fileName string, ext string, w http.ResponseWriter, r *http.Request) (processed bool) {
if !n.IsChunkedManifest() || r.URL.Query().Get("cm") == "false" { if !n.IsChunkedManifest() || r.URL.Query().Get("cm") == "false" {
return false return false
} }
@ -175,7 +175,9 @@ func (vs *VolumeServer) tryHandleChunkedFile(n *needle.Needle, fileName string,
fileName = chunkManifest.Name fileName = chunkManifest.Name
} }
ext := filepath.Ext(fileName) if ext == "" {
ext = filepath.Ext(fileName)
}
mType := "" mType := ""
if chunkManifest.Mime != "" { if chunkManifest.Mime != "" {