Add function to check if the media type is composite
This commit is contained in:
parent
209059f2b4
commit
6322566a54
9
atom.go
9
atom.go
@ -12,6 +12,15 @@ type (
|
||||
URI string
|
||||
)
|
||||
|
||||
func isCompositeMediaType(mediaType string) bool {
|
||||
mediaType, _, err := mime.ParseMediaType(mediaType)
|
||||
if err != nil {
|
||||
return false
|
||||
}
|
||||
|
||||
return strings.HasPrefix(mediaType, "multipart/") || strings.HasPrefix(mediaType, "message/")
|
||||
}
|
||||
|
||||
func isXMLMediaType(mediaType string) bool {
|
||||
mediaType, _, err := mime.ParseMediaType(mediaType)
|
||||
if err != nil {
|
||||
|
Loading…
x
Reference in New Issue
Block a user