-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtrigger.go
92 lines (84 loc) · 2.6 KB
/
trigger.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
package trigger
import (
"github.com/google/cel-go/cel"
"github.com/google/cel-go/common/types/ref"
"github.com/pkg/errors"
"strings"
)
// Trigger creates values as map[string]interface{} if it's decisider returns no errors against a Mapper
type Trigger struct {
decision *Decision
program cel.Program
expression string
}
// NewTrigger creates a new trigger instance from the decision & trigger expressions
func NewTrigger(decision *Decision, triggerExpression string) (*Trigger, error) {
if triggerExpression == "" {
return nil, ErrEmptyExpressions
}
program, err := globalEnv.Program(triggerExpression)
if err != nil {
return nil, err
}
return &Trigger{
decision: decision,
program: program,
expression: triggerExpression,
}, nil
}
// Trigger executes it's decision against the Mapper and then overwrites the
func (t *Trigger) Trigger(data map[string]interface{}) (map[string]interface{}, error) {
if err := t.decision.Eval(data); err == nil {
out, _, err := t.program.Eval(map[string]interface{}{
"this": data,
})
if err != nil {
return nil, errors.Wrapf(err, "trigger: failed to evaluate trigger (%s)", t.expression)
}
if patchFields, ok := out.Value().(map[ref.Val]ref.Val); ok {
newData := map[string]interface{}{}
for k, v := range patchFields {
newData[k.Value().(string)] = v.Value()
}
return newData, nil
}
if patchFields, ok := out.Value().(map[string]interface{}); ok {
return patchFields, nil
}
if patchFields, ok := out.Value().(map[string]string); ok {
newData := map[string]interface{}{}
for k, v := range patchFields {
newData[k] = v
}
return newData, nil
}
return map[string]interface{}{
"value": out.Value(),
}, nil
}
return map[string]interface{}{}, nil
}
// Expression returns the triggers raw CEL expressions
func (e *Trigger) Expression() string {
return e.expression
}
const ArrowOperator = "=>"
var ErrArrowOperator = errors.Errorf("arrow operator: expecting syntax ${decision} %s ${mutation}", ArrowOperator)
// NewArrowTrigger creates a trigger from arrow syntax ${decision} => ${mutation}
func NewArrowTrigger(arrowExpression string) (*Trigger, error) {
split := strings.Split(arrowExpression, ArrowOperator)
if len(split) != 2 {
return nil, ErrArrowOperator
}
decisionExp := split[0]
decision, err := NewDecision(decisionExp)
if err != nil {
return nil, errors.Wrap(err, "failed to create trigger from arrow expression")
}
triggerExp := split[1]
t, err := NewTrigger(decision, triggerExp)
if err != nil {
return nil, errors.Wrap(err, "failed to create trigger from arrow expression")
}
return t, nil
}