mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2025-09-24 06:43:37 +08:00
@@ -59,21 +59,15 @@ func ParseUpload(r *http.Request) (fileName string, data []byte, mimeType string
|
|||||||
e = fe
|
e = fe
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//first multi-part item
|
||||||
part, fe := form.NextPart()
|
part, fe := form.NextPart()
|
||||||
for {
|
|
||||||
if fe != nil {
|
if fe != nil {
|
||||||
glog.V(0).Infoln("Reading Multi part [ERROR]", fe)
|
glog.V(0).Infoln("Reading Multi part [ERROR]", fe)
|
||||||
e = fe
|
e = fe
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
if part.FileName() != "" {
|
|
||||||
break //found the first <file type> multi-part
|
|
||||||
}
|
|
||||||
|
|
||||||
part, fe = form.NextPart()
|
|
||||||
}
|
|
||||||
|
|
||||||
fileName = part.FileName()
|
fileName = part.FileName()
|
||||||
if fileName != "" {
|
if fileName != "" {
|
||||||
fileName = path.Base(fileName)
|
fileName = path.Base(fileName)
|
||||||
@@ -84,6 +78,32 @@ func ParseUpload(r *http.Request) (fileName string, data []byte, mimeType string
|
|||||||
glog.V(0).Infoln("Reading Content [ERROR]", e)
|
glog.V(0).Infoln("Reading Content [ERROR]", e)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//if the filename is empty string, do a search on the other multi-part items
|
||||||
|
for fileName == "" {
|
||||||
|
part2, fe := form.NextPart()
|
||||||
|
if fe != nil {
|
||||||
|
break // no more or on error, just safely break
|
||||||
|
}
|
||||||
|
|
||||||
|
fName := part2.FileName()
|
||||||
|
|
||||||
|
//found the first <file type> multi-part has filename
|
||||||
|
if fName != "" {
|
||||||
|
data2, fe2 := ioutil.ReadAll(part2)
|
||||||
|
if fe2 != nil {
|
||||||
|
glog.V(0).Infoln("Reading Content [ERROR]", fe2)
|
||||||
|
e = fe2
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
//update
|
||||||
|
data = data2
|
||||||
|
fileName = path.Base(fName)
|
||||||
|
break
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
dotIndex := strings.LastIndex(fileName, ".")
|
dotIndex := strings.LastIndex(fileName, ".")
|
||||||
ext, mtype := "", ""
|
ext, mtype := "", ""
|
||||||
if dotIndex > 0 {
|
if dotIndex > 0 {
|
||||||
|
Reference in New Issue
Block a user