-
Notifications
You must be signed in to change notification settings - Fork 20
/
interfaces.go
428 lines (328 loc) · 10.2 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
package flows
import (
"encoding/json"
"time"
"github.com/nyaruka/goflow/assets"
"github.com/nyaruka/goflow/envs"
"github.com/nyaruka/goflow/excellent/types"
"github.com/nyaruka/goflow/utils"
"github.com/nyaruka/goflow/utils/uuids"
)
// 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
// FlowType represents the different types of flows
type FlowType string
const (
// FlowTypeMessaging is a flow that is run over a messaging channel
FlowTypeMessaging FlowType = "messaging"
// FlowTypeMessagingOffline is a flow which is run over an offline messaging client like Surveyor
FlowTypeMessagingOffline FlowType = "messaging_offline"
// FlowTypeVoice is a flow which is run over IVR
FlowTypeVoice FlowType = "voice"
)
// 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"
// SessionStatusErrored represents a session that encountered an error
SessionStatusErrored SessionStatus = "errored"
)
// 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"
// RunStatusErrored represents a run that encountered an error
RunStatusErrored RunStatus = "errored"
// RunStatusExpired represents a run that expired due to inactivity
RunStatusExpired RunStatus = "expired"
// RunStatusInterrupted represents a run that was interrupted by another flow
RunStatusInterrupted RunStatus = "interrupted"
)
type FlowAssets interface {
Get(assets.FlowUUID) (Flow, error)
}
// SessionAssets is the assets available to a session
type SessionAssets interface {
Channels() *ChannelAssets
Fields() *FieldAssets
Flows() FlowAssets
Groups() *GroupAssets
Labels() *LabelAssets
Locations() *LocationAssets
Resthooks() *ResthookAssets
Templates() *TemplateAssets
}
// 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
Reference() *assets.FlowReference
Generic() map[string]interface{}
Clone(map[uuids.UUID]uuids.UUID) Flow
Inspect() *FlowInfo
Validate(SessionAssets, func(assets.Reference)) error
ValidateRecursive(SessionAssets, func(assets.Reference)) error
ExtractTemplates() []string
ExtractDependencies() []assets.Reference
ExtractResults() []*ResultInfo
MarshalWithInfo() ([]byte, 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(string))
EnumerateDependencies(Localization, func(assets.Reference))
EnumerateResults(Node, func(*ResultInfo))
}
// Action is an action within a flow node
type Action interface {
utils.Typed
Localizable
UUID() ActionUUID
Execute(FlowRun, Step, ModifierCallback, EventCallback) error
Validate() error
AllowedFlowTypes() []FlowType
}
type Router interface {
utils.Typed
Wait() Wait
ResultName() string
Validate([]Exit) error
AllowTimeout() bool
Route(FlowRun, Step, EventCallback) (ExitUUID, error)
RouteTimeout(FlowRun, Step, EventCallback) (ExitUUID, error)
EnumerateTemplates(Localization, func(string))
EnumerateDependencies(Localization, func(assets.Reference))
EnumerateResults(Node, func(*ResultInfo))
}
type Exit interface {
UUID() ExitUUID
DestinationUUID() NodeUUID
}
type Timeout interface {
Seconds() int
CategoryUUID() CategoryUUID
}
type Wait interface {
utils.Typed
Timeout() Timeout
Begin(FlowRun, EventCallback) ActivatedWait
End(Resume) error
}
type ActivatedWait interface {
utils.Typed
TimeoutSeconds() *int
}
type Hint interface {
utils.Typed
}
// Localization provide a way to get the translations for a specific language
type Localization interface {
AddItemTranslation(envs.Language, uuids.UUID, string, []string)
GetTranslations(envs.Language) Translations
Languages() []envs.Language
}
// Translations provide a way to get the translation for a specific language for a uuid/key pair
type Translations interface {
GetTextArray(uuids.UUID, string) []string
SetTextArray(uuids.UUID, string, []string)
}
// Trigger represents something which can initiate a session with the flow engine
type Trigger interface {
utils.Typed
Contextable
Initialize(Session, EventCallback) error
InitializeRun(FlowRun, EventCallback) error
Environment() envs.Environment
Flow() *assets.FlowReference
Contact() *Contact
Connection() *Connection
Params() *types.XObject
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
Apply(FlowRun, EventCallback) error
Environment() envs.Environment
Contact() *Contact
ResumedOn() time.Time
}
// Modifier is something which can modify a contact
type Modifier interface {
utils.Typed
Apply(envs.Environment, SessionAssets, *Contact, EventCallback)
}
// 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
}
type Step interface {
Contextable
UUID() StepUUID
NodeUUID() NodeUUID
ExitUUID() ExitUUID
ArrivedOn() time.Time
Leave(ExitUUID)
}
type Engine interface {
NewSession(SessionAssets, Trigger) (Session, Sprint, error)
ReadSession(SessionAssets, json.RawMessage, assets.MissingCallback) (Session, error)
HTTPClient() *utils.HTTPClient
DisableWebhooks() bool
MaxWebhookResponseBytes() int
MaxStepsPerSprint() int
}
// Sprint is an interaction with the engine - i.e. a start or resume of a session
type Sprint interface {
Modifiers() []Modifier
LogModifier(Modifier)
Events() []Event
LogEvent(Event)
}
// 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
PushFlow(Flow, FlowRun, bool)
Wait() ActivatedWait
Resume(Resume) (Sprint, error)
Runs() []FlowRun
GetRun(RunUUID) (FlowRun, error)
GetCurrentChild(FlowRun) FlowRun
ParentRun() RunSummary
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
}
// RunEnvironment is a run specific environment which adds location functionality required by some router tests
type RunEnvironment interface {
envs.Environment
FindLocations(string, utils.LocationLevel, *utils.Location) ([]*utils.Location, error)
FindLocationsFuzzy(string, utils.LocationLevel, *utils.Location) ([]*utils.Location, error)
LookupLocation(utils.LocationPath) (*utils.Location, error)
}
// FlowRun is a single contact's journey through a flow. It records the path they have taken,
// and the results that have been collected.
type FlowRun interface {
Contextable
RunSummary
Environment() RunEnvironment
Session() Session
SaveResult(*Result)
SetStatus(RunStatus)
CreateStep(Node) Step
Path() []Step
PathLocation() (Step, Node, error)
LogEvent(Step, Event)
LogError(Step, error)
Events() []Event
EvaluateTemplateValue(template string) (types.XValue, error)
EvaluateTemplate(template string) (string, error)
GetText(uuids.UUID, string, string) string
GetTextArray(uuids.UUID, string, []string) []string
GetTranslatedTextArray(uuids.UUID, string, []string, []envs.Language) []string
Snapshot() RunSummary
Parent() RunSummary
ParentInSession() FlowRun
Ancestors() []FlowRun
CreatedOn() time.Time
ModifiedOn() time.Time
ExpiresOn() *time.Time
ResetExpiration(*time.Time)
ExitedOn() *time.Time
Exit(RunStatus)
}
// LegacyExtraContributor is something which contributes results for constructing @legacy_extra
type LegacyExtraContributor interface {
LegacyExtra() Results
}