-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy pathvalidator.go
119 lines (99 loc) · 2.15 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
package jsonlogic
import (
"encoding/json"
"io"
"github.com/diegoholiveira/jsonlogic/v3/internal/typing"
)
var operators = map[string]bool{
"==": true,
"===": true,
"!=": true,
"!==": true,
">": true,
">=": true,
"<": true,
"<=": true,
"!": true,
"or": true,
"and": true,
"?:": true,
"in": true,
"cat": true,
"%": true,
"abs": true,
"max": true,
"min": true,
"+": true,
"-": true,
"*": true,
"/": true,
"substr": true,
"merge": true,
"if": true,
"!!": true,
"missing": true,
"missing_some": true,
"some": true,
"filter": true,
"map": true,
"reduce": true,
"all": true,
"none": true,
"set": true,
"var": true,
}
// 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) {
for operator, value := range rules.(map[string]any) {
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]
if !isOperator && customOperators[op] != nil {
return true
}
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
}