-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathheader.go
53 lines (41 loc) · 953 Bytes
/
header.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
package isuperagent
import (
"regexp"
"strings"
)
type ContentType struct {
MediaType string
Charset string
Boundary string
}
func ParseContentType(raw string) ContentType {
c := ContentType{
MediaType: "text/plain",
Charset: "utf-8",
}
exp := regexp.MustCompile(`\s*;\s*`)
contentType := exp.Split(strings.TrimSpace(raw), -1)
if len(contentType) > 0 && strings.TrimSpace(contentType[0]) != "" {
c.MediaType = contentType[0]
}
if len(contentType) > 1 && strings.TrimSpace(contentType[1]) != "" {
c.Charset = contentType[1]
}
if len(contentType) > 2 && strings.TrimSpace(contentType[2]) != "" {
c.Charset = contentType[2]
}
return c
}
func (c *ContentType) String() string {
var buf strings.Builder
buf.WriteString(c.MediaType)
if c.Charset != "" {
buf.WriteString("; ")
buf.WriteString(c.Charset)
}
if c.Boundary != "" {
buf.WriteString("; ")
buf.WriteString(c.Boundary)
}
return buf.String()
}