-
Notifications
You must be signed in to change notification settings - Fork 53
/
Copy pathoperation.go
77 lines (67 loc) · 1.91 KB
/
operation.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
package jsonlogic
import (
"fmt"
"github.com/diegoholiveira/jsonlogic/v3/internal/typing"
)
type OperatorFn func(values, data any) (result any)
type ErrInvalidOperator struct {
operator string
}
func (e ErrInvalidOperator) Error() string {
return fmt.Sprintf("The operator \"%s\" is not supported", e.operator)
}
// operators holds custom operators
var operators = make(map[string]OperatorFn)
// AddOperator allows for custom operators to be used
func AddOperator(key string, cb OperatorFn) {
operators[key] = func(values, data any) any {
return cb(parseValues(values, data), data)
}
}
func operation(operator string, values, data any) any {
opFn, found := operators[operator]
if found {
return opFn(values, data)
}
panic(ErrInvalidOperator{
operator: operator,
})
}
func init() {
operators["and"] = _and
operators["or"] = _or
operators["filter"] = filter
operators["map"] = _map
operators["reduce"] = reduce
operators["all"] = all
operators["none"] = none
operators["some"] = some
operators["in"] = _in
operators["missing"] = missing
operators["missing_some"] = missingSome
operators["var"] = getVar
operators["set"] = setProperty
operators["cat"] = concat
operators["substr"] = substr
operators["merge"] = merge
operators["if"] = conditional
operators["?:"] = conditional
operators["max"] = max
operators["min"] = min
operators["+"] = sum
operators["-"] = minus
operators["*"] = mult
operators["/"] = div
operators["%"] = mod
operators["abs"] = abs
operators["!"] = negative
operators["!!"] = func(v, d any) any { return !typing.IsTrue(negative(v, d)) }
operators["==="] = hardEquals
operators["!=="] = func(v, d any) any { return !hardEquals(v, d).(bool) }
operators["<"] = isLessThan
operators["<="] = isLessOrEqualThan
operators[">"] = isGreaterThan
operators[">="] = isGreaterOrEqualThan
operators["=="] = isEqual
operators["!="] = func(v, d any) any { return !isEqual(v, d).(bool) }
}