...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15 package tag
16
17 import "errors"
18
19 const (
20 maxKeyLength = 255
21
22
23 validKeyValueMin = 32
24 validKeyValueMax = 126
25 )
26
27 var (
28 errInvalidKeyName = errors.New("invalid key name: only ASCII characters accepted; max length must be 255 characters")
29 errInvalidValue = errors.New("invalid value: only ASCII characters accepted; max length must be 255 characters")
30 )
31
32 func checkKeyName(name string) bool {
33 if len(name) == 0 {
34 return false
35 }
36 if len(name) > maxKeyLength {
37 return false
38 }
39 return isASCII(name)
40 }
41
42 func isASCII(s string) bool {
43 for _, c := range s {
44 if (c < validKeyValueMin) || (c > validKeyValueMax) {
45 return false
46 }
47 }
48 return true
49 }
50
51 func checkValue(v string) bool {
52 if len(v) > maxKeyLength {
53 return false
54 }
55 return isASCII(v)
56 }
57
View as plain text