-
Notifications
You must be signed in to change notification settings - Fork 53
/
Copy pathvalidator.go
82 lines (63 loc) · 1.39 KB
/
validator.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
package jsonlogic
import (
"encoding/json"
"io"
"github.com/diegoholiveira/jsonlogic/v3/internal/typing"
)
// IsValid reads a JSON Logic rule from io.Reader and validates it
func IsValid(rule io.Reader) bool {
var _rule any
decoderRule := json.NewDecoder(rule)
err := decoderRule.Decode(&_rule)
if err != nil {
return false
}
return ValidateJsonLogic(_rule)
}
func ValidateJsonLogic(rules any) bool {
if isVar(rules) {
return true
}
if typing.IsMap(rules) {
rulesMap := rules.(map[string]any)
// A map with more than 1 key counts as a primitive so it's time to end recursion
if len(rulesMap) > 1 {
return true
}
for operator, value := range rulesMap {
if !isOperator(operator) {
return false
}
return ValidateJsonLogic(value)
}
}
if typing.IsSlice(rules) {
for _, value := range rules.([]any) {
if typing.IsSlice(value) || typing.IsMap(value) {
if ValidateJsonLogic(value) {
continue
}
return false
}
if isVar(value) || typing.IsPrimitive(value) {
continue
}
}
return true
}
return typing.IsPrimitive(rules)
}
func isOperator(op string) bool {
_, isOperator := operators[op]
return isOperator
}
func isVar(value any) bool {
if !typing.IsMap(value) {
return false
}
_var, ok := value.(map[string]any)["var"]
if !ok {
return false
}
return typing.IsString(_var) || typing.IsNumber(_var) || _var == nil
}