forked from diegoholiveira/jsonlogic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
validator.go
122 lines (103 loc) · 1.67 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
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
package jsonlogic
import (
"encoding/json"
"io"
)
// IsValid reads a JSON Logic rule from io.Reader and validates it
func IsValid(rule io.Reader) bool {
var _rule interface{}
decoderRule := json.NewDecoder(rule)
err := decoderRule.Decode(&_rule)
if err != nil {
return false
}
return ValidateJsonLogic(_rule)
}
func ValidateJsonLogic(rules interface{}) bool {
if isVar(rules) {
return true
}
if isMap(rules) {
for operator, value := range rules.(map[string]interface{}) {
if !isOperator(operator) {
return false
}
return ValidateJsonLogic(value)
}
}
if isSlice(rules) {
for _, value := range rules.([]interface{}) {
if isSlice(value) || isMap(value) {
if ValidateJsonLogic(value) {
continue
}
return false
}
if isVar(value) || isPrimitive(value) {
continue
}
}
return true
}
return isPrimitive(rules)
}
func isOperator(op string) bool {
operators := []string{
"==",
"===",
"!=",
"!==",
">",
">=",
"<",
"<=",
"!",
"or",
"and",
"?:",
"in",
"in_sorted",
"cat",
"%",
"abs",
"max",
"min",
"+",
"-",
"*",
"/",
"substr",
"merge",
"if",
"!!",
"missing",
"missing_some",
"some",
"filter",
"map",
"reduce",
"all",
"none",
"set",
"var",
}
for customOperator := range customOperators {
operators = append(operators, customOperator)
}
for _, operator := range operators {
if operator == op {
return true
}
}
return false
}
func isVar(value interface{}) bool {
if !isMap(value) {
return false
}
_var, ok := value.(map[string]interface{})["var"]
if !ok {
return false
}
return isString(_var) || isNumber(_var) || _var == nil
}