-
Notifications
You must be signed in to change notification settings - Fork 0
/
mime_parser.go
60 lines (53 loc) · 1.31 KB
/
mime_parser.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
54
55
56
57
58
59
60
package dic
import "strings"
// ParseMime Разбор строки в объект MIME типа.
func ParseMime(s string) IMime {
const keySlash, keyEqual, keySemicolon = "/", "=", ";"
var (
clean func(string) string
mto *tMime
sss []string
tmp []string
n int
)
clean = func(s string) string { return strings.ToLower(strings.TrimSpace(s)) }
mto, sss = &tMime{opts: make(map[string]string)}, strings.Split(s, keySemicolon)
switch tmp = strings.Split(sss[0], keySlash); len(tmp) {
case 1:
mto.main = clean(tmp[0])
default:
mto.main = clean(tmp[0])
mto.subt = clean(tmp[1])
}
if len(sss) < 2 {
return mto
}
for n = 1; n < len(sss); n++ {
switch tmp = strings.Split(sss[n], keyEqual); len(tmp) {
case 2:
mto.opts[clean(tmp[0])] = clean(tmp[1])
}
}
return mto
}
// NewMime Создание объекта под интерфейс IMime, функция предназначена для формирования настраиваемых справочников.
func NewMime(main, sub string, opts map[string]string) IMime {
var (
mto *tMime
key string
)
mto = &tMime{
main: main,
subt: sub,
opts: make(map[string]string),
}
if opts != nil {
for key = range opts {
if key == "" || opts[key] == "" {
continue
}
mto.opts[key] = opts[key]
}
}
return mto
}