forked from gookit/validate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhelper.go
595 lines (520 loc) · 13.9 KB
/
helper.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
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
package validate
import (
"errors"
"fmt"
"math"
"reflect"
"strconv"
"strings"
"unicode"
"github.com/gookit/filter"
"github.com/gookit/goutil/mathutil"
"github.com/gookit/goutil/strutil"
)
// NilObject represent nil value for calling functions and should be reflected at custom filters as nil variable.
type NilObject struct{}
// CallByValue call func by reflect.Value
func CallByValue(fv reflect.Value, args ...interface{}) []reflect.Value {
if fv.Kind() != reflect.Func {
panicf("parameter must be an func type")
}
in := make([]reflect.Value, len(args))
for k, v := range args {
// NOTICE: reflect.Call emit panic if kind is Invalid
if in[k] = reflect.ValueOf(v); in[k].Kind() == reflect.Invalid {
in[k] = reflect.ValueOf(NilObject{})
}
}
// NOTICE: CallSlice()与Call() 不一样的是,参数的最后一个会被展开
// f.CallSlice()
return fv.Call(in)
}
func stringSplit(str, sep string) (ss []string) {
str = strings.TrimSpace(str)
if str == "" {
return
}
for _, val := range strings.Split(str, sep) {
if val = strings.TrimSpace(val); val != "" {
ss = append(ss, val)
}
}
return
}
func strings2Args(strings []string) []interface{} {
args := make([]interface{}, len(strings))
for i, s := range strings {
args[i] = s
}
return args
}
func args2strings(args []interface{}) []string {
strSlice := make([]string, len(args))
for i, s := range args {
strSlice[i] = fmt.Sprintf("%v", s)
}
return strSlice
}
func buildArgs(val interface{}, args []interface{}) []interface{} {
newArgs := make([]interface{}, len(args)+1)
newArgs[0] = val
// as[1:] = args // error
copy(newArgs[1:], args)
return newArgs
}
// ValueIsEmpty check
func ValueIsEmpty(v reflect.Value) bool {
switch v.Kind() {
case reflect.Invalid:
return true
case reflect.String, reflect.Array:
return v.Len() == 0
case reflect.Map, reflect.Slice:
return v.Len() == 0 || v.IsNil()
case reflect.Bool:
return !v.Bool()
case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:
return v.Int() == 0
case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr:
return v.Uint() == 0
case reflect.Float32, reflect.Float64:
return v.Float() == 0
case reflect.Interface, reflect.Ptr:
return v.IsNil()
}
return reflect.DeepEqual(v.Interface(), reflect.Zero(v.Type()).Interface())
}
// ValueLen get value length
func ValueLen(v reflect.Value) int {
k := v.Kind()
// (u)int use width.
switch k {
case reflect.Map, reflect.Array, reflect.Chan, reflect.Slice, reflect.String:
return v.Len()
case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr:
return len(fmt.Sprint(v.Uint()))
case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:
return len(fmt.Sprint(v.Int()))
case reflect.Float32, reflect.Float64:
return len(fmt.Sprint(v.Interface()))
}
// cannot get length
return -1
}
var (
errConvertFail = errors.New("convert value is failure")
)
func valueToInt64(v interface{}, strict bool) (i64 int64, err error) {
switch tVal := v.(type) {
case string:
if strict {
return 0, errConvertFail
}
i64, err = strconv.ParseInt(filter.Trim(tVal), 10, 0)
case int:
i64 = int64(tVal)
case int8:
i64 = int64(tVal)
case int16:
i64 = int64(tVal)
case int32:
i64 = int64(tVal)
case int64:
i64 = tVal
case uint:
i64 = int64(tVal)
case uint8:
i64 = int64(tVal)
case uint16:
i64 = int64(tVal)
case uint32:
i64 = int64(tVal)
case uint64:
i64 = int64(tVal)
case float32:
if strict {
return 0, errConvertFail
}
i64 = int64(tVal)
case float64:
if strict {
return 0, errConvertFail
}
i64 = int64(tVal)
default:
err = errConvertFail
}
return
}
// CalcLength for input value
func CalcLength(val interface{}) int {
if val == nil {
return -1
}
// string length
if str, ok := val.(string); ok {
// return len(str)
// fix: issues#39
return len([]rune(str))
}
return ValueLen(reflect.ValueOf(val))
}
// value compare. use for compare int, string.
func valueCompare(srcVal, dstVal interface{}, op string) (ok bool) {
var err error
var srcInt, dstInt int64
// string: compare length
if str, ok := srcVal.(string); ok {
dst, ok := dstVal.(string)
if !ok {
return false
}
srcInt = int64(len(str))
dstInt = int64(len(dst))
} else { // as int: compare size
srcInt, err = filter.Int64(srcVal)
if err != nil {
return false
}
dstInt, err = filter.Int64(dstVal)
if err != nil {
return false
}
}
switch op {
case "lt":
ok = srcInt < dstInt
case "lte":
ok = srcInt <= dstInt
case "gt":
ok = srcInt > dstInt
case "gte":
ok = srcInt >= dstInt
}
return
}
// func nameOfFunc(fv reflect.Value) string {
// return runtime.FuncForPC(fv.Pointer()).Name()
// }
func parseArgString(argStr string) (ss []string) {
if argStr == "" { // no arg
return
}
if len(argStr) == 1 { // one char
return []string{argStr}
}
return stringSplit(argStr, ",")
}
func toInt64Slice(enum interface{}) (ret []int64, ok bool) {
rv := reflect.ValueOf(enum)
if rv.Kind() != reflect.Slice {
return
}
for i := 0; i < rv.Len(); i++ {
i64, err := filter.Int64(rv.Index(i).Interface())
if err != nil {
return []int64{}, false
}
ret = append(ret, i64)
}
ok = true
return
}
func getVariadicKind(typString string) reflect.Kind {
switch typString {
case "[]int":
return reflect.Int
case "[]int8":
return reflect.Int8
case "[]int16":
return reflect.Int16
case "[]int64":
return reflect.Int64
case "[]uint":
return reflect.Uint
case "[]uint64":
return reflect.Uint64
case "[]string":
return reflect.String
case "[]interface {}": // args ...interface{}
return reflect.Interface
}
return reflect.Invalid
}
func convertType(srcVal interface{}, srcKind kind, dstType reflect.Kind) (interface{}, error) {
switch srcKind {
case stringKind:
switch dstType {
case reflect.Int:
return mathutil.Int(srcVal)
case reflect.Int64:
return mathutil.Int64(srcVal)
}
case intKind, uintKind:
i64 := filter.MustInt64(srcVal)
switch dstType {
case reflect.Int64:
return i64, nil
case reflect.String:
// fmt is slow : return fmt.Sprint(i64), nil
return strutil.ToString(srcVal)
}
default:
switch dstType {
case reflect.String:
return strutil.ToString(srcVal)
}
}
return nil, errConvertFail
}
func panicf(format string, args ...interface{}) {
panic("validate: " + fmt.Sprintf(format, args...))
}
// From package "text/template" -> text/template/funcs.go
var (
errorType = reflect.TypeOf((*error)(nil)).Elem()
// fmtStringerType = reflect.TypeOf((*fmt.Stringer)(nil)).Elem()
// reflectValueType = reflect.TypeOf((*reflect.Value)(nil)).Elem()
)
func checkValidatorFunc(name string, fn interface{}) reflect.Value {
if !goodName(name) {
panic(fmt.Errorf("validate name %s is not a valid identifier", name))
}
fv := reflect.ValueOf(fn)
if fn == nil || fv.Kind() != reflect.Func { // is nil or not is func
panicf("validator '%s'. 2th parameter is invalid, it must be an func", name)
}
ft := fv.Type()
if ft.NumIn() == 0 {
panicf("validator '%s' func at least one parameter position", name)
}
if ft.NumOut() != 1 || ft.Out(0).Kind() != reflect.Bool {
panicf("validator '%s' func must be return a bool value", name)
}
return fv
}
func checkFilterFunc(name string, fn interface{}) reflect.Value {
if !goodName(name) {
panic(fmt.Errorf("filter name %s is not a valid identifier", name))
}
fv := reflect.ValueOf(fn)
if fn == nil || fv.Kind() != reflect.Func { // is nil or not is func
panicf("filter '%s'. 2th parameter is invalid, it must be an func", name)
}
ft := fv.Type()
if ft.NumIn() == 0 {
panicf("filter '%s' func at least one parameter position", name)
}
if !goodFunc(ft) {
panicf("can't install method/function %q with %d results", name, ft.NumOut())
}
return fv
}
// goodFunc reports whether the function or method has the right result signature.
func goodFunc(typ reflect.Type) bool {
// We allow functions with 1 result or 2 results where the second is an error.
switch {
case typ.NumOut() == 1:
return true
case typ.NumOut() == 2 && typ.Out(1) == errorType:
return true
}
return false
}
// goodName reports whether the function name is a valid identifier.
func goodName(name string) bool {
if name == "" {
return false
}
for i, r := range name {
switch {
case r == '_':
case i == 0 && !unicode.IsLetter(r):
return false
case !unicode.IsLetter(r) && !unicode.IsDigit(r):
return false
}
}
return true
}
// ---- From package "text/template" -> text/template/exec.go
// indirect returns the item at the end of indirection, and a bool to indicate if it's nil.
func indirect(v reflect.Value) (rv reflect.Value, isNil bool) {
for ; v.Kind() == reflect.Ptr || v.Kind() == reflect.Interface; v = v.Elem() {
if v.IsNil() {
return v, true
}
}
return v, false
}
// indirectInterface returns the concrete value in an interface value,
// or else the zero reflect.Value.
// That is, if v represents the interface value x, the result is the same as reflect.ValueOf(x):
// the fact that x was an interface value is forgotten.
func indirectInterface(v reflect.Value) reflect.Value {
if v.Kind() != reflect.Interface {
return v
}
if v.IsNil() {
return emptyValue
}
return v.Elem()
}
/*************************************************************
* Comparison:
* From package "text/template" -> text/template/funcs.go
*************************************************************/
// TODO: Perhaps allow comparison between signed and unsigned integers.
var (
errBadComparisonType = errors.New("invalid type for operation")
// errBadComparison = errors.New("incompatible types for comparison")
// errNoComparison = errors.New("missing argument for comparison")
)
type kind int
const (
invalidKind kind = iota
boolKind
complexKind
intKind
floatKind
stringKind
uintKind
)
func basicKind(v reflect.Value) (kind, error) {
switch v.Kind() {
case reflect.Bool:
return boolKind, nil
case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:
return intKind, nil
case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr:
return uintKind, nil
case reflect.Float32, reflect.Float64:
return floatKind, nil
case reflect.Complex64, reflect.Complex128:
return complexKind, nil
case reflect.String:
return stringKind, nil
}
// like: slice, array, map ...
return invalidKind, errBadComparisonType
}
// eq evaluates the comparison a == b
func eq(arg1 reflect.Value, arg2 reflect.Value) (bool, error) {
v1 := indirectInterface(arg1)
k1, err := basicKind(v1)
if err != nil {
return false, err
}
v2 := indirectInterface(arg2)
k2, err := basicKind(v2)
if err != nil {
return false, err
}
truth := false
if k1 != k2 {
// Special case: Can compare integer values regardless of type's sign.
switch {
case k1 == intKind && k2 == uintKind:
truth = v1.Int() >= 0 && uint64(v1.Int()) == v2.Uint()
case k1 == uintKind && k2 == intKind:
truth = v2.Int() >= 0 && v1.Uint() == uint64(v2.Int())
// default:
// return false, errBadComparison
}
return truth, nil
}
switch k1 {
case boolKind:
truth = v1.Bool() == v2.Bool()
case complexKind:
truth = v1.Complex() == v2.Complex()
case floatKind:
truth = v1.Float() == v2.Float()
case intKind:
truth = v1.Int() == v2.Int()
case stringKind:
truth = v1.String() == v2.String()
case uintKind:
truth = v1.Uint() == v2.Uint()
// default:
// panic("invalid kind")
}
return truth, nil
}
// from package: github.com/stretchr/testify/assert/assertions.go
func includeElement(list, element interface{}) (ok, found bool) {
listValue := reflect.ValueOf(list)
elementValue := reflect.ValueOf(element)
listKind := listValue.Type().Kind()
// string contains check
if listKind == reflect.String {
return true, strings.Contains(listValue.String(), elementValue.String())
}
defer func() {
if e := recover(); e != nil {
ok = false // call Value.Len() panic.
found = false
}
}()
if listKind == reflect.Map {
mapKeys := listValue.MapKeys()
for i := 0; i < len(mapKeys); i++ {
if IsEqual(mapKeys[i].Interface(), element) {
return true, true
}
}
return true, false
}
for i := 0; i < listValue.Len(); i++ {
if IsEqual(listValue.Index(i).Interface(), element) {
return true, true
}
}
return true, false
}
/*************************************************************
* Reflection:
* From package(go 1.13) "reflect" -> reflect/value.go
*************************************************************/
// IsZero reports whether v is the zero value for its type.
// It panics if the argument is invalid.
// NOTICE: this's an built-in method in reflect/value.go since go 1.13
func IsZero(v reflect.Value) bool {
switch v.Kind() {
case reflect.Bool:
return !v.Bool()
case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:
return v.Int() == 0
case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr:
return v.Uint() == 0
case reflect.Float32, reflect.Float64:
return math.Float64bits(v.Float()) == 0
case reflect.Complex64, reflect.Complex128:
c := v.Complex()
return math.Float64bits(real(c)) == 0 && math.Float64bits(imag(c)) == 0
case reflect.Array:
for i := 0; i < v.Len(); i++ {
// if !v.Index(i).IsZero() {
if !IsZero(v.Index(i)) {
return false
}
}
return true
case reflect.Chan, reflect.Func, reflect.Interface, reflect.Map, reflect.Ptr, reflect.Slice, reflect.UnsafePointer:
return v.IsNil()
case reflect.String:
return v.Len() == 0
case reflect.Struct:
for i := 0; i < v.NumField(); i++ {
// if !v.Index(i).IsZero() {
if !IsZero(v.Field(i)) {
return false
}
}
return true
default:
// This should never happens, but will act as a safeguard for
// later, as a default value doesn't makes sense here.
panic(&reflect.ValueError{Method: "cannot check reflect.Value.IsZero", Kind: v.Kind()})
}
}