-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutil.go
125 lines (95 loc) · 2.06 KB
/
util.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
package confusing
import (
"path/filepath"
"reflect"
"regexp"
"strings"
"unicode"
)
var matchFirstCap = regexp.MustCompile("(.)([A-Z][a-z]+)")
var matchAllCap = regexp.MustCompile("([a-z0-9])([A-Z])")
// converts camelCase to dot.notation
func camelToSnake(input string, ensureLowercase bool) string {
input = matchFirstCap.ReplaceAllString(input, "${1}_${2}")
input = matchAllCap.ReplaceAllString(input, "${1}_${2}")
if ensureLowercase {
input = strings.ToLower(input)
}
return input
}
func ucfirst(s string) string {
r := []rune(s)
r[0] = unicode.ToUpper(r[0])
return string(r)
}
func lcfirst(s string) string {
r := []rune(s)
r[0] = unicode.ToLower(r[0])
return string(r)
}
func concatenateKeys(keys ...string) string {
return strings.Join(keys, ".")
}
func parseBool(val string) (bool, error) {
switch strings.ToLower(val) {
case "1", "yes", "on":
return true, nil
case "0", "no", "off":
return false, nil
}
return false, InvalidBooleanError
}
func parseBoolOrDefault(val string, defaultValue bool) bool {
boolValue, err := parseBool(val)
if err != nil {
return defaultValue
}
return boolValue
}
func processStructField(field reflect.StructField) string {
key := field.Tag.Get("config")
if key == "-" {
return ""
}
if field.Anonymous {
t := field.Type
if t.Kind() == reflect.Ptr {
t = t.Elem()
}
// How can we read an anonymous embedded primitive?
// Maybe we can use the name of the type as the field name in the future
if t.Kind() != reflect.Struct {
return ""
}
} else if !field.IsExported() {
return ""
}
if key == "" {
key = field.Name
}
return key
}
func stringOrDefault(key string, defaultValue string) string {
if key == "" {
return defaultValue
}
return key
}
func inferSourceTypeFromFilePath(filePath string) SourceType {
var typ SourceType
var ok bool
if strings.HasPrefix(filePath, ".env") {
typ = sourceTypeByExt[".env"]
} else {
ext := filepath.Ext(filePath)
typ, ok = sourceTypeByExt[ext]
if !ok {
typ = ext
}
}
_, ok = sources[typ]
if !ok {
typ = ""
}
return typ
}