1
0
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:
Fat Totoro 2025-03-30 18:06:01 +08:00 committed by GitHub
parent f45f71149e
commit 2982398379
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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
}