mirror of
https://github.com/gogf/gf.git
synced 2025-04-05 03:05:05 +08:00
feat(net/ghttp): skip binary contentType when parseBody (#4200)
This commit is contained in:
parent
f45f71149e
commit
2982398379
@ -10,6 +10,7 @@ import (
|
||||
"bytes"
|
||||
"fmt"
|
||||
"io"
|
||||
"mime"
|
||||
"mime/multipart"
|
||||
"net/http"
|
||||
"reflect"
|
||||
@ -238,6 +239,12 @@ func (r *Request) parseBody() {
|
||||
if gstr.Contains(contentType, "multipart/") {
|
||||
return
|
||||
}
|
||||
|
||||
// Skip binary content types, which should not be parsed.
|
||||
if r.isBinaryContentType(contentType) {
|
||||
return
|
||||
}
|
||||
|
||||
if body := r.GetBody(); len(body) > 0 {
|
||||
// Trim space/new line characters.
|
||||
body = bytes.TrimSpace(body)
|
||||
@ -401,3 +408,42 @@ func (r *Request) GetMultipartFiles(name string) []*multipart.FileHeader {
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
// isBinaryContentType check the content type is binary or not.
|
||||
func (r *Request) isBinaryContentType(contentType string) bool {
|
||||
// parseMediaType
|
||||
mimeType, _, err := mime.ParseMediaType(contentType)
|
||||
// If the content type is invalid, it's treated as binary.
|
||||
if err != nil {
|
||||
return true
|
||||
}
|
||||
|
||||
// Lowercase the MIME type for easier comparison
|
||||
mimeType = strings.ToLower(mimeType)
|
||||
|
||||
// if the MIME type is text, then it's definitely not binary
|
||||
if strings.HasPrefix(mimeType, "text/") {
|
||||
return false
|
||||
}
|
||||
|
||||
// defined non-binary MIME types
|
||||
nonBinaryTypes := map[string]struct{}{
|
||||
"application/json": {},
|
||||
"application/xml": {},
|
||||
"application/x-www-form-urlencoded": {},
|
||||
"application/javascript": {},
|
||||
"application/xhtml+xml": {},
|
||||
}
|
||||
if _, ok := nonBinaryTypes[mimeType]; ok {
|
||||
return false
|
||||
}
|
||||
|
||||
// if the MIME type is JSON or XML, it's definitely not binary
|
||||
if strings.HasSuffix(mimeType, "+json") || strings.HasSuffix(mimeType, "+xml") {
|
||||
return false
|
||||
}
|
||||
|
||||
// otherwise, it's binary
|
||||
// (this includes application/octet-stream、image/*、video/*、audio/*)
|
||||
return true
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user