-
Notifications
You must be signed in to change notification settings - Fork 20
/
node.go
185 lines (151 loc) · 4.83 KB
/
node.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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
package definition
import (
"encoding/json"
"github.com/nyaruka/goflow/assets"
"github.com/nyaruka/goflow/flows"
"github.com/nyaruka/goflow/flows/actions"
"github.com/nyaruka/goflow/flows/routers"
"github.com/nyaruka/goflow/utils"
"github.com/pkg/errors"
)
type node struct {
uuid flows.NodeUUID
actions []flows.Action
router flows.Router
exits []flows.Exit
}
// NewNode creates a new flow node
func NewNode(uuid flows.NodeUUID, actions []flows.Action, router flows.Router, exits []flows.Exit) flows.Node {
return &node{
uuid: uuid,
actions: actions,
router: router,
exits: exits,
}
}
func (n *node) UUID() flows.NodeUUID { return n.uuid }
func (n *node) Actions() []flows.Action { return n.actions }
func (n *node) Router() flows.Router { return n.router }
func (n *node) Exits() []flows.Exit { return n.exits }
func (n *node) Validate(flow flows.Flow, seenUUIDs map[utils.UUID]bool) error {
// validate all the node's actions
for _, action := range n.Actions() {
// check that this action is valid for this flow type
isValidInType := false
for _, allowedType := range action.AllowedFlowTypes() {
if flow.Type() == allowedType {
isValidInType = true
break
}
}
if !isValidInType {
return errors.Errorf("action type '%s' is not allowed in a flow of type '%s'", action.Type(), flow.Type())
}
uuidAlreadySeen := seenUUIDs[utils.UUID(action.UUID())]
if uuidAlreadySeen {
return errors.Errorf("action UUID %s isn't unique", action.UUID())
}
seenUUIDs[utils.UUID(action.UUID())] = true
if err := action.Validate(); err != nil {
return errors.Wrapf(err, "invalid action[uuid=%s, type=%s]", action.UUID(), action.Type())
}
}
// check the router if there is one
if n.Router() != nil {
if err := n.Router().Validate(n.Exits()); err != nil {
return errors.Wrap(err, "invalid router")
}
}
// check every exit has a unique UUID and valid destination
for _, exit := range n.Exits() {
uuidAlreadySeen := seenUUIDs[utils.UUID(exit.UUID())]
if uuidAlreadySeen {
return errors.Errorf("exit UUID %s isn't unique", exit.UUID())
}
seenUUIDs[utils.UUID(exit.UUID())] = true
if exit.DestinationUUID() != "" && flow.GetNode(exit.DestinationUUID()) == nil {
return errors.Errorf("destination %s of exit[uuid=%s] isn't a known node", exit.DestinationUUID(), exit.UUID())
}
}
return nil
}
func (n *node) Inspect(inspect func(flows.Inspectable)) {
inspect(n)
for _, a := range n.Actions() {
a.Inspect(inspect)
}
if n.Router() != nil {
n.Router().Inspect(inspect)
}
}
// EnumerateTemplates enumerates all expressions on this object
func (n *node) EnumerateTemplates(include flows.TemplateIncluder) {}
// EnumerateDependencies enumerates all dependencies on this object
func (n *node) EnumerateDependencies(localization flows.Localization, include func(assets.Reference)) {
}
// EnumerateResults enumerates all potential results on this object
func (n *node) EnumerateResults(include func(*flows.ResultSpec)) {}
//------------------------------------------------------------------------------------------
// JSON Encoding / Decoding
//------------------------------------------------------------------------------------------
type nodeEnvelope struct {
UUID flows.NodeUUID `json:"uuid" validate:"required,uuid4"`
Actions []json.RawMessage `json:"actions,omitempty"`
Router json.RawMessage `json:"router,omitempty"`
Exits []*exit `json:"exits" validate:"required,min=1"`
}
// UnmarshalJSON unmarshals a flow node from the given JSON
func (n *node) UnmarshalJSON(data []byte) error {
e := &nodeEnvelope{}
err := utils.UnmarshalAndValidate(data, e)
if err != nil {
return errors.Wrap(err, "unable to read node")
}
n.uuid = e.UUID
// instantiate the right kind of router
if e.Router != nil {
n.router, err = routers.ReadRouter(e.Router)
if err != nil {
return errors.Wrap(err, "unable to read router")
}
}
// and the right kind of actions
n.actions = make([]flows.Action, len(e.Actions))
for i := range e.Actions {
n.actions[i], err = actions.ReadAction(e.Actions[i])
if err != nil {
return errors.Wrap(err, "unable to read action")
}
}
// populate our exits
n.exits = make([]flows.Exit, len(e.Exits))
for i := range e.Exits {
n.exits[i] = e.Exits[i]
}
return nil
}
// MarshalJSON marshals this flow node into JSON
func (n *node) MarshalJSON() ([]byte, error) {
var err error
e := &nodeEnvelope{
UUID: n.uuid,
}
e.Actions = make([]json.RawMessage, len(n.actions))
for i := range n.actions {
e.Actions[i], err = json.Marshal(n.actions[i])
if err != nil {
return nil, err
}
}
if n.router != nil {
e.Router, err = json.Marshal(n.router)
if err != nil {
return nil, err
}
}
e.Exits = make([]*exit, len(n.exits))
for i := range n.exits {
e.Exits[i] = n.exits[i].(*exit)
}
return json.Marshal(e)
}