mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
detect mime type before replicating to other volume servers
This commit is contained in:
parent
044841c885
commit
16fe132a20
|
@ -93,6 +93,7 @@ func doUploadData(uploadUrl string, filename string, cipher bool, data []byte, i
|
||||||
if !isInputGzipped {
|
if !isInputGzipped {
|
||||||
if mtype == "" {
|
if mtype == "" {
|
||||||
mtype = http.DetectContentType(data)
|
mtype = http.DetectContentType(data)
|
||||||
|
// println("detect1 mimetype to", mtype)
|
||||||
if mtype == "application/octet-stream" {
|
if mtype == "application/octet-stream" {
|
||||||
mtype = ""
|
mtype = ""
|
||||||
}
|
}
|
||||||
|
|
|
@ -38,6 +38,7 @@ func (fs *FilerServer) encrypt(ctx context.Context, w http.ResponseWriter, r *ht
|
||||||
}
|
}
|
||||||
if pu.MimeType == "" {
|
if pu.MimeType == "" {
|
||||||
pu.MimeType = http.DetectContentType(uncompressedData)
|
pu.MimeType = http.DetectContentType(uncompressedData)
|
||||||
|
// println("detect2 mimetype to", pu.MimeType)
|
||||||
}
|
}
|
||||||
|
|
||||||
uploadResult, uploadError := operation.UploadData(urlLocation, pu.FileName, true, uncompressedData, false, pu.MimeType, pu.PairMap, auth)
|
uploadResult, uploadError := operation.UploadData(urlLocation, pu.FileName, true, uncompressedData, false, pu.MimeType, pu.PairMap, auth)
|
||||||
|
|
|
@ -7,6 +7,7 @@ import (
|
||||||
"mime"
|
"mime"
|
||||||
"net/http"
|
"net/http"
|
||||||
"path"
|
"path"
|
||||||
|
"path/filepath"
|
||||||
"strconv"
|
"strconv"
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
|
@ -50,18 +51,33 @@ func ParseUpload(r *http.Request, sizeLimit int64) (pu *ParsedUpload, e error) {
|
||||||
|
|
||||||
pu.OriginalDataSize = len(pu.Data)
|
pu.OriginalDataSize = len(pu.Data)
|
||||||
pu.UncompressedData = pu.Data
|
pu.UncompressedData = pu.Data
|
||||||
|
// println("received data", len(pu.Data), "isGzipped", pu.IsGzipped, "mime", pu.MimeType, "name", pu.FileName)
|
||||||
|
if pu.MimeType == "" {
|
||||||
|
pu.MimeType = http.DetectContentType(pu.Data)
|
||||||
|
// println("detected mimetype to", pu.MimeType)
|
||||||
|
if pu.MimeType == "application/octet-stream" {
|
||||||
|
pu.MimeType = ""
|
||||||
|
}
|
||||||
|
}
|
||||||
if pu.IsGzipped {
|
if pu.IsGzipped {
|
||||||
if unzipped, e := util.UnGzipData(pu.Data); e == nil {
|
if unzipped, e := util.UnGzipData(pu.Data); e == nil {
|
||||||
pu.OriginalDataSize = len(unzipped)
|
pu.OriginalDataSize = len(unzipped)
|
||||||
pu.UncompressedData = unzipped
|
pu.UncompressedData = unzipped
|
||||||
|
// println("ungzipped data size", len(unzipped))
|
||||||
}
|
}
|
||||||
} else if shouldGzip, _ := util.IsGzippableFileType("", pu.MimeType); pu.MimeType == "" || shouldGzip {
|
} else {
|
||||||
if compressedData, err := util.GzipData(pu.Data); err == nil {
|
ext := filepath.Base(pu.FileName)
|
||||||
pu.Data = compressedData
|
if shouldGzip, iAmSure := util.IsGzippableFileType(ext, pu.MimeType); pu.MimeType == "" && !iAmSure || shouldGzip && iAmSure {
|
||||||
pu.IsGzipped = true
|
// println("ext", ext, "iAmSure", iAmSure, "shouldGzip", shouldGzip, "mimeType", pu.MimeType)
|
||||||
|
if compressedData, err := util.GzipData(pu.Data); err == nil {
|
||||||
|
if len(compressedData)*10 < len(pu.Data)*9 {
|
||||||
|
pu.Data = compressedData
|
||||||
|
pu.IsGzipped = true
|
||||||
|
}
|
||||||
|
// println("gzipped data size", len(compressedData))
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -91,7 +107,7 @@ func parseMultipart(r *http.Request, sizeLimit int64, pu *ParsedUpload) (e error
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
//first multi-part item
|
// first multi-part item
|
||||||
part, fe := form.NextPart()
|
part, fe := form.NextPart()
|
||||||
if fe != nil {
|
if fe != nil {
|
||||||
glog.V(0).Infoln("Reading Multi part [ERROR]", fe)
|
glog.V(0).Infoln("Reading Multi part [ERROR]", fe)
|
||||||
|
@ -114,7 +130,7 @@ func parseMultipart(r *http.Request, sizeLimit int64, pu *ParsedUpload) (e error
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
//if the filename is empty string, do a search on the other multi-part items
|
// if the filename is empty string, do a search on the other multi-part items
|
||||||
for pu.FileName == "" {
|
for pu.FileName == "" {
|
||||||
part2, fe := form.NextPart()
|
part2, fe := form.NextPart()
|
||||||
if fe != nil {
|
if fe != nil {
|
||||||
|
@ -123,7 +139,7 @@ func parseMultipart(r *http.Request, sizeLimit int64, pu *ParsedUpload) (e error
|
||||||
|
|
||||||
fName := part2.FileName()
|
fName := part2.FileName()
|
||||||
|
|
||||||
//found the first <file type> multi-part has filename
|
// found the first <file type> multi-part has filename
|
||||||
if fName != "" {
|
if fName != "" {
|
||||||
data2, fe2 := ioutil.ReadAll(io.LimitReader(part2, sizeLimit+1))
|
data2, fe2 := ioutil.ReadAll(io.LimitReader(part2, sizeLimit+1))
|
||||||
if fe2 != nil {
|
if fe2 != nil {
|
||||||
|
@ -136,7 +152,7 @@ func parseMultipart(r *http.Request, sizeLimit int64, pu *ParsedUpload) (e error
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
//update
|
// update
|
||||||
pu.Data = data2
|
pu.Data = data2
|
||||||
pu.FileName = path.Base(fName)
|
pu.FileName = path.Base(fName)
|
||||||
break
|
break
|
||||||
|
@ -155,7 +171,7 @@ func parseMultipart(r *http.Request, sizeLimit int64, pu *ParsedUpload) (e error
|
||||||
}
|
}
|
||||||
contentType := part.Header.Get("Content-Type")
|
contentType := part.Header.Get("Content-Type")
|
||||||
if contentType != "" && contentType != "application/octet-stream" && mtype != contentType {
|
if contentType != "" && contentType != "application/octet-stream" && mtype != contentType {
|
||||||
pu.MimeType = contentType //only return mime type if not deductable
|
pu.MimeType = contentType // only return mime type if not deductable
|
||||||
mtype = contentType
|
mtype = contentType
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue