-
Notifications
You must be signed in to change notification settings - Fork 20
/
interfaces.go
454 lines (357 loc) · 10.7 KB
/
interfaces.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
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
package flows
import (
"encoding/json"
"time"
"github.com/nyaruka/gocommon/uuids"
"github.com/nyaruka/goflow/assets"
"github.com/nyaruka/goflow/contactql"
"github.com/nyaruka/goflow/envs"
"github.com/nyaruka/goflow/excellent"
"github.com/nyaruka/goflow/excellent/types"
"github.com/nyaruka/goflow/utils"
)
// NodeUUID is a UUID of a flow node
type NodeUUID uuids.UUID
// CategoryUUID is the UUID of a node category
type CategoryUUID uuids.UUID
// ExitUUID is the UUID of a node exit
type ExitUUID uuids.UUID
// ActionUUID is the UUID of an action
type ActionUUID uuids.UUID
// ContactID is the ID of a contact
type ContactID int64
// ContactUUID is the UUID of a contact
type ContactUUID uuids.UUID
// RunUUID is the UUID of a flow run
type RunUUID uuids.UUID
// StepUUID is the UUID of a run step
type StepUUID uuids.UUID
// InputUUID is the UUID of an input
type InputUUID uuids.UUID
// SessionUUID is the UUID of a session
type SessionUUID uuids.UUID
// MsgID is the ID of a message
type MsgID int64
// NilMsgID is our constant for nil message ids
const NilMsgID = MsgID(0)
// MsgUUID is the UUID of a message
type MsgUUID uuids.UUID
// SessionStatus represents the current status of the engine session
type SessionStatus string
const (
// SessionStatusActive represents a session that is still active
SessionStatusActive SessionStatus = "active"
// SessionStatusCompleted represents a session that has run to completion
SessionStatusCompleted SessionStatus = "completed"
// SessionStatusWaiting represents a session which is waiting for something from the caller
SessionStatusWaiting SessionStatus = "waiting"
// SessionStatusFailed represents a session that encountered an unrecoverable error
SessionStatusFailed SessionStatus = "failed"
)
// RunStatus represents the current status of the flow run
type RunStatus string
const (
// RunStatusActive represents a run that is still active
RunStatusActive RunStatus = "active"
// RunStatusCompleted represents a run that has run to completion
RunStatusCompleted RunStatus = "completed"
// RunStatusWaiting represents a run which is waiting for something from the caller
RunStatusWaiting RunStatus = "waiting"
// RunStatusFailed represents a run that encountered an unrecoverable error
RunStatusFailed RunStatus = "failed"
// RunStatusExpired represents a run that expired due to inactivity
RunStatusExpired RunStatus = "expired"
)
// FlowAssets provides access to flow assets
type FlowAssets interface {
Get(assets.FlowUUID) (Flow, error)
FindByName(string) (Flow, error)
}
// SessionAssets is the assets available to a session
type SessionAssets interface {
contactql.Resolver
Source() assets.Source
Channels() *ChannelAssets
Classifiers() *ClassifierAssets
Fields() *FieldAssets
Flows() FlowAssets
Globals() *GlobalAssets
Groups() *GroupAssets
Labels() *LabelAssets
Locations() *LocationAssets
Resthooks() *ResthookAssets
Templates() *TemplateAssets
Ticketers() *TicketerAssets
Topics() *TopicAssets
Users() *UserAssets
}
// Localizable is anything in the flow definition which can be localized and therefore needs a UUID
type Localizable interface {
LocalizationUUID() uuids.UUID
}
// Flow describes the ordered logic of actions and routers
type Flow interface {
Contextable
// spec properties
UUID() assets.FlowUUID
Name() string
Revision() int
Language() envs.Language
Type() FlowType
ExpireAfterMinutes() int
Localization() Localization
UI() json.RawMessage
Nodes() []Node
GetNode(uuid NodeUUID) Node
Asset() assets.Flow
Reference() *assets.FlowReference
Inspect(sa SessionAssets) *Inspection
ExtractTemplates() []string
ExtractLocalizables() []string
ChangeLanguage(envs.Language) (Flow, error)
}
// Node is a single node in a flow
type Node interface {
UUID() NodeUUID
Actions() []Action
Router() Router
Exits() []Exit
Validate(Flow, map[uuids.UUID]bool) error
EnumerateTemplates(Localization, func(Action, Router, envs.Language, string))
EnumerateDependencies(Localization, func(Action, Router, envs.Language, assets.Reference))
EnumerateResults(func(Action, Router, *ResultInfo))
EnumerateLocalizables(func(uuids.UUID, string, []string, func([]string)))
}
// Action is an action within a flow node
type Action interface {
utils.Typed
Localizable
FlowTypeRestricted
UUID() ActionUUID
Execute(Run, Step, ModifierCallback, EventCallback) error
Validate() error
}
// Category is how routers map results to exits
type Category interface {
Localizable
UUID() CategoryUUID
Name() string
ExitUUID() ExitUUID
}
// Router is a router on a note which can pick an exit
type Router interface {
utils.Typed
Wait() Wait
Categories() []Category
ResultName() string
Validate(Flow, []Exit) error
AllowTimeout() bool
Route(Run, Step, EventCallback) (ExitUUID, string, error)
RouteTimeout(Run, Step, EventCallback) (ExitUUID, error)
EnumerateTemplates(Localization, func(envs.Language, string))
EnumerateDependencies(Localization, func(envs.Language, assets.Reference))
EnumerateResults(func(*ResultInfo))
EnumerateLocalizables(func(uuids.UUID, string, []string, func([]string)))
}
// Exit is a route out of a node and optionally to another node
type Exit interface {
UUID() ExitUUID
DestinationUUID() NodeUUID
}
// Timeout is a way to skip a wait after X amount of time
type Timeout interface {
Seconds() int
CategoryUUID() CategoryUUID
}
// Wait tells the engine that the session requires input from the user
type Wait interface {
utils.Typed
FlowTypeRestricted
Timeout() Timeout
Begin(Run, EventCallback) bool
Accepts(Resume) bool
}
// Hint tells the caller what type of input the flow is expecting
type Hint interface {
utils.Typed
}
// Localization provide a way to get the translations for a specific language
type Localization interface {
GetItemTranslation(envs.Language, uuids.UUID, string) []string
SetItemTranslation(envs.Language, uuids.UUID, string, []string)
Languages() []envs.Language
}
// Trigger represents something which can initiate a session with the flow engine
type Trigger interface {
utils.Typed
Contextable
Initialize(Session, EventCallback) error
InitializeRun(Run, EventCallback) error
Environment() envs.Environment
Flow() *assets.FlowReference
Contact() *Contact
Call() *Call
Batch() bool
Params() *types.XObject
History() *SessionHistory
TriggeredOn() time.Time
}
// TriggerWithRun is special case of trigger that provides a parent run to the session
type TriggerWithRun interface {
Trigger
RunSummary() json.RawMessage
}
// Resume represents something which can resume a session with the flow engine
type Resume interface {
utils.Typed
Contextable
Apply(Run, EventCallback)
Environment() envs.Environment
Contact() *Contact
ResumedOn() time.Time
}
// Modifier is something which can modify a contact
type Modifier interface {
utils.Typed
Apply(envs.Environment, Services, SessionAssets, *Contact, EventCallback) bool
}
// ModifierCallback is a callback invoked when a modifier has been generated
type ModifierCallback func(Modifier)
// Event describes a state change
type Event interface {
utils.Typed
CreatedOn() time.Time
StepUUID() StepUUID
SetStepUUID(StepUUID)
}
// EventCallback is a callback invoked when an event has been generated
type EventCallback func(Event)
// Input describes input from the contact and currently we only support one type of input: `msg`
type Input interface {
utils.Typed
Contextable
UUID() InputUUID
CreatedOn() time.Time
Channel() *Channel
}
// Step is a single step in the path thru a flow
type Step interface {
Contextable
UUID() StepUUID
NodeUUID() NodeUUID
ExitUUID() ExitUUID
ArrivedOn() time.Time
Leave(ExitUUID)
}
// Engine provides callers with session starting and resuming
type Engine interface {
NewSession(SessionAssets, Trigger) (Session, Sprint, error)
ReadSession(SessionAssets, json.RawMessage, assets.MissingCallback) (Session, error)
Services() Services
MaxStepsPerSprint() int
MaxResumesPerSession() int
MaxTemplateChars() int
}
// Segment is a movement on the flow graph from an exit to another node
type Segment interface {
Flow() Flow
Node() Node
Exit() Exit
Operand() string
Destination() Node
Time() time.Time
}
// Sprint is an interaction with the engine - i.e. a start or resume of a session
type Sprint interface {
Modifiers() []Modifier
Events() []Event
Segments() []Segment
}
// Session represents the session of a flow run which may contain many runs
type Session interface {
Assets() SessionAssets
UUID() SessionUUID
Type() FlowType
SetType(FlowType)
Environment() envs.Environment
SetEnvironment(envs.Environment)
Contact() *Contact
SetContact(*Contact)
Input() Input
SetInput(Input)
Status() SessionStatus
Trigger() Trigger
CurrentResume() Resume
BatchStart() bool
PushFlow(Flow, Run, bool)
Resume(Resume) (Sprint, error)
Runs() []Run
GetRun(RunUUID) (Run, error)
FindStep(uuid StepUUID) (Run, Step)
GetCurrentChild(Run) Run
ParentRun() RunSummary
CurrentContext() *types.XObject
History() *SessionHistory
Engine() Engine
}
// RunSummary represents the minimum information available about all runs (current or related) and is the
// representation of runs made accessible to router tests.
type RunSummary interface {
UUID() RunUUID
Contact() *Contact
Flow() Flow
Status() RunStatus
Results() Results
}
// Run is a single contact's journey through a flow. It records the path they have taken,
// and the results that have been collected.
type Run interface {
Contextable
RunSummary
FlowReference() *assets.FlowReference
Environment() envs.Environment
Session() Session
SaveResult(*Result)
SetStatus(RunStatus)
Webhook() types.XValue
SetWebhook(types.XValue)
CreateStep(Node) Step
Path() []Step
PathLocation() (Step, Node, error)
LogEvent(Step, Event)
LogError(Step, error)
Events() []Event
ReceivedInput() bool
EvaluateTemplateValue(string) (types.XValue, error)
EvaluateTemplateText(string, excellent.Escaping, bool) (string, error)
EvaluateTemplate(string) (string, error)
RootContext(envs.Environment) map[string]types.XValue
GetText(uuids.UUID, string, string) string
GetTextArray(uuids.UUID, string, []string) ([]string, envs.Language)
GetTranslatedTextArray(uuids.UUID, string, []string, []envs.Language) []string
Snapshot() RunSummary
Parent() RunSummary
ParentInSession() Run
Ancestors() []Run
CreatedOn() time.Time
ModifiedOn() time.Time
ExitedOn() *time.Time
Exit(RunStatus)
}
// LegacyExtraContributor is something which contributes results for constructing @legacy_extra
type LegacyExtraContributor interface {
LegacyExtra() Results
}
type Dependency interface {
Reference() assets.Reference
Type() string
Missing() bool
}
// Issue is a problem found during flow inspection
type Issue interface {
utils.Typed
NodeUUID() NodeUUID
ActionUUID() ActionUUID
Language() envs.Language
Description() string
}