-
Notifications
You must be signed in to change notification settings - Fork 20
/
channel.go
219 lines (185 loc) · 5.99 KB
/
channel.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
package flows
import (
"encoding/json"
"github.com/nyaruka/goflow/excellent/types"
"github.com/nyaruka/goflow/utils"
)
// ChannelRole is a role that a channel can perform
type ChannelRole string
// different roles that channels can perform
const (
ChannelRoleSend ChannelRole = "send"
ChannelRoleReceive ChannelRole = "receive"
ChannelRoleCall ChannelRole = "call"
ChannelRoleAnswer ChannelRole = "answer"
ChannelRoleUSSD ChannelRole = "ussd"
)
// Channel represents a means for sending and receiving input during a flow run. It renders as its name in a template,
// and has the following properties which can be accessed:
//
// * `uuid` the UUID of the channel
// * `name` the name of the channel
// * `address` the address of the channel
//
// Examples:
//
// @contact.channel -> My Android Phone
// @contact.channel.name -> My Android Phone
// @contact.channel.address -> +12345671111
// @run.input.channel.uuid -> 57f1078f-88aa-46f4-a59a-948a5739c03d
// @(json(contact.channel)) -> {"address":"+12345671111","name":"My Android Phone","uuid":"57f1078f-88aa-46f4-a59a-948a5739c03d"}
//
// @context channel
type Channel interface {
types.XValue
types.XResolvable
UUID() ChannelUUID
Name() string
Address() string
Schemes() []string
SupportsScheme(string) bool
Roles() []ChannelRole
HasRole(ChannelRole) bool
Reference() *ChannelReference
}
type channel struct {
uuid ChannelUUID
name string
address string
schemes []string
roles []ChannelRole
}
// NewChannel creates a new channel
func NewChannel(uuid ChannelUUID, name string, address string, schemes []string, roles []ChannelRole) Channel {
return &channel{
uuid: uuid,
name: name,
address: address,
schemes: schemes,
roles: roles,
}
}
// UUID returns the UUID of this channel
func (c *channel) UUID() ChannelUUID { return c.uuid }
// Name returns the name of this channel
func (c *channel) Name() string { return c.name }
// Address returns the address of this channel
func (c *channel) Address() string { return c.address }
// Schemes returns the supported schemes of this channel
func (c *channel) Schemes() []string { return c.schemes }
// Roles returns the roles of this channel
func (c *channel) Roles() []ChannelRole { return c.roles }
// Reference returns a reference to this channel
func (c *channel) Reference() *ChannelReference { return NewChannelReference(c.uuid, c.name) }
// SupportsScheme returns whether this channel supports the given URN scheme
func (c *channel) SupportsScheme(scheme string) bool {
for _, s := range c.schemes {
if s == scheme {
return true
}
}
return false
}
// HasRole returns whether this channel has the given role
func (c *channel) HasRole(role ChannelRole) bool {
for _, r := range c.roles {
if r == role {
return true
}
}
return false
}
// Resolve resolves the given key when this channel is referenced in an expression
func (c *channel) Resolve(env utils.Environment, key string) types.XValue {
switch key {
case "uuid":
return types.NewXText(string(c.uuid))
case "name":
return types.NewXText(c.name)
case "address":
return types.NewXText(c.address)
}
return types.NewXResolveError(c, key)
}
// Describe returns a representation of this type for error messages
func (c *channel) Describe() string { return "channel" }
// Reduce is called when this object needs to be reduced to a primitive
func (c *channel) Reduce(env utils.Environment) types.XPrimitive {
return types.NewXText(c.name)
}
// ToXJSON is called when this type is passed to @(json(...))
func (c *channel) ToXJSON(env utils.Environment) types.XText {
return types.ResolveKeys(env, c, "uuid", "name", "address").ToXJSON(env)
}
var _ Channel = (*channel)(nil)
// ChannelSet defines the unordered set of all channels for a session
type ChannelSet struct {
channels []Channel
channelsByUUID map[ChannelUUID]Channel
}
// NewChannelSet creates a new channel set
func NewChannelSet(channels []Channel) *ChannelSet {
s := &ChannelSet{channels: channels, channelsByUUID: make(map[ChannelUUID]Channel, len(channels))}
for _, channel := range s.channels {
s.channelsByUUID[channel.UUID()] = channel
}
return s
}
// GetForURN returns the best channel for the given URN
func (s *ChannelSet) GetForURN(urn *ContactURN) Channel {
// if caller has told us which channel to use for this URN, use that
if urn.Channel() != nil {
return urn.Channel()
}
// if not, return the first channel which supports this URN scheme
scheme := urn.Scheme()
for _, ch := range s.channels {
if ch.HasRole(ChannelRoleSend) && ch.SupportsScheme(scheme) {
return ch
}
}
return nil
}
// FindByUUID finds the channel with the given UUID
func (s *ChannelSet) FindByUUID(uuid ChannelUUID) Channel {
return s.channelsByUUID[uuid]
}
//------------------------------------------------------------------------------------------
// JSON Encoding / Decoding
//------------------------------------------------------------------------------------------
type channelEnvelope struct {
UUID ChannelUUID `json:"uuid" validate:"required,uuid"`
Name string `json:"name"`
Address string `json:"address"`
Schemes []string `json:"schemes" validate:"min=1"`
Roles []ChannelRole `json:"roles" validate:"min=1,dive,eq=send|eq=receive|eq=call|eq=answer|eq=ussd"`
}
// ReadChannel decodes a channel from the passed in JSON
func ReadChannel(data json.RawMessage) (Channel, error) {
ce := channelEnvelope{}
if err := utils.UnmarshalAndValidate(data, &ce, "channel"); err != nil {
return nil, err
}
return &channel{
uuid: ce.UUID,
name: ce.Name,
address: ce.Address,
schemes: ce.Schemes,
roles: ce.Roles,
}, nil
}
// ReadChannelSet decodes channels from the passed in JSON
func ReadChannelSet(data json.RawMessage) (*ChannelSet, error) {
items, err := utils.UnmarshalArray(data)
if err != nil {
return nil, err
}
channels := make([]Channel, len(items))
for c := range items {
channels[c], err = ReadChannel(items[c])
if err != nil {
return nil, err
}
}
return NewChannelSet(channels), nil
}