-
Notifications
You must be signed in to change notification settings - Fork 0
/
utils.go
241 lines (226 loc) · 4.42 KB
/
utils.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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
package delayed_job
import (
"fmt"
"strconv"
"strings"
"time"
)
func boolWithDefault(args map[string]interface{}, key string, defaultValue bool) bool {
v, ok := args[key]
if !ok {
return defaultValue
}
if value, ok := v.(bool); ok {
return value
}
s := fmt.Sprint(v)
switch s {
case "1", "true":
return true
case "0", "false":
return false
default:
return defaultValue
}
}
func intWithDefault(args map[string]interface{}, key string, defaultValue int) int {
v, ok := args[key]
if !ok {
return defaultValue
}
return asIntWithDefault(v, defaultValue)
}
func asIntWithDefault(v interface{}, defaultValue int) int {
switch value := v.(type) {
case int:
return value
case int64:
return int(value)
case int32:
return int(value)
case float64:
return int(value)
case float32:
return int(value)
case string:
i, e := strconv.ParseInt(value, 10, 0)
if nil != e {
f64, e := strconv.ParseFloat(value, 64)
if nil != e {
return defaultValue
}
return int(f64)
}
return int(i)
default:
s := fmt.Sprint(value)
i, e := strconv.ParseInt(s, 10, 0)
if nil != e {
f64, e := strconv.ParseFloat(s, 64)
if nil != e {
return defaultValue
}
return int(f64)
}
return int(i)
}
}
func asInt64WithDefault(v interface{}, defaultValue int64) int64 {
switch value := v.(type) {
case int:
return int64(value)
case int64:
return value
case int32:
return int64(value)
case float64:
return int64(value)
case float32:
return int64(value)
case string:
i, e := strconv.ParseInt(value, 10, 0)
if nil != e {
f64, e := strconv.ParseFloat(value, 64)
if nil != e {
return defaultValue
}
return int64(f64)
}
return int64(i)
default:
s := fmt.Sprint(value)
i, e := strconv.ParseInt(s, 10, 0)
if nil != e {
f64, e := strconv.ParseFloat(s, 64)
if nil != e {
return defaultValue
}
return int64(f64)
}
return i
}
}
func durationWithDefault(args map[string]interface{}, key string, defaultValue time.Duration) time.Duration {
v, ok := args[key]
if !ok {
return defaultValue
}
switch value := v.(type) {
case time.Duration:
return value
case string:
i, e := time.ParseDuration(value)
if nil != e {
return defaultValue
}
return i
default:
s := fmt.Sprint(value)
i, e := time.ParseDuration(s)
if nil != e {
return defaultValue
}
return i
}
}
func timeWithDefault(args map[string]interface{}, key string, defaultValue time.Time) time.Time {
v, ok := args[key]
if !ok {
return defaultValue
}
return asTimeWithDefault(v, defaultValue)
}
func asTimeWithDefault(v interface{}, defaultValue time.Time) time.Time {
switch value := v.(type) {
case time.Time:
return value
case string:
for _, layout := range []string{time.ANSIC,
time.UnixDate,
time.RubyDate,
time.RFC822,
time.RFC822Z,
time.RFC850,
time.RFC1123,
time.RFC1123Z,
time.RFC3339,
time.RFC3339Nano} {
t, e := time.Parse(value, layout)
if nil == e {
return t
}
}
return defaultValue
default:
return defaultValue
}
}
func stringWithDefault(args map[string]interface{}, key string, defaultValue string) string {
v, ok := args[key]
if !ok {
return defaultValue
}
if nil == v {
return defaultValue
}
if s, ok := v.(string); ok && 0 != len(s) {
return s
}
return fmt.Sprint(v)
}
func stringOrArrayWithDefault(args map[string]interface{}, keys []string, defaultValue string) string {
var v interface{}
var ok bool
for _, key := range keys {
v, ok = args[key]
if ok {
break
}
}
if !ok {
return defaultValue
}
if nil == v {
return defaultValue
}
if s, ok := v.(string); ok && 0 != len(s) {
return s
}
if ii, ok := v.([]interface{}); ok {
ss := make([]string, len(ii))
for i, s := range ii {
ss[i] = fmt.Sprint(s)
}
return strings.Join(ss, ",")
}
if ss, ok := v.([]string); ok {
return strings.Join(ss, ",")
}
return fmt.Sprint(v)
}
func stringsWithDefault(args map[string]interface{}, key, sep string, defaultValue []string) []string {
v, ok := args[key]
if !ok {
return defaultValue
}
if ii, ok := v.([]interface{}); ok {
ss := make([]string, len(ii))
for i, s := range ii {
ss[i] = fmt.Sprint(s)
}
return ss
}
if ss, ok := v.([]string); ok {
return ss
}
if s, ok := v.(string); ok && 0 != len(s) {
if 0 == len(sep) {
return []string{s}
}
return strings.Split(s, sep)
}
return defaultValue
}
func SplitLines(s string) []string {
return strings.Split(s, "\n")
}