mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
volume: passing ext info via URL
This commit is contained in:
parent
cea52a4faf
commit
73bc286377
|
@ -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 != "" {
|
||||||
|
|
Loading…
Reference in a new issue