-
Notifications
You must be signed in to change notification settings - Fork 20
/
channel.go
205 lines (175 loc) · 5.72 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
package flows
import (
"fmt"
"strings"
"github.com/nyaruka/gocommon/urns"
"github.com/nyaruka/goflow/assets"
"github.com/nyaruka/goflow/excellent/types"
"github.com/nyaruka/goflow/utils"
"github.com/pkg/errors"
)
// 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
// @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 struct {
assets.Channel
}
func NewChannel(asset assets.Channel) *Channel {
return &Channel{Channel: asset}
}
// Asset returns the underlying asset
func (c *Channel) Asset() assets.Channel { return c.Channel }
// Reference returns a reference to this channel
func (c *Channel) Reference() *assets.ChannelReference {
if c == nil {
return nil
}
return assets.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 assets.ChannelRole) bool {
for _, r := range c.Roles() {
if r == role {
return true
}
}
return false
}
func (c *Channel) HasParent() bool {
return c.Parent() != nil
}
// 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 strings.ToLower(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)
}
func (c *Channel) String() string {
return fmt.Sprintf("%s (%s)", c.Address(), c.Name())
}
var _ types.XValue = (*Channel)(nil)
var _ types.XResolvable = (*Channel)(nil)
// ChannelAssets provides access to all channel assets
type ChannelAssets struct {
all []*Channel
byUUID map[assets.ChannelUUID]*Channel
}
// NewChannelAssets creates a new set of channel assets
func NewChannelAssets(channels []assets.Channel) *ChannelAssets {
s := &ChannelAssets{
all: make([]*Channel, len(channels)),
byUUID: make(map[assets.ChannelUUID]*Channel, len(channels)),
}
for c, asset := range channels {
channel := NewChannel(asset)
s.all[c] = channel
s.byUUID[channel.UUID()] = channel
}
return s
}
// Get returns the channel with the given UUID
func (s *ChannelAssets) Get(uuid assets.ChannelUUID) (*Channel, error) {
c, found := s.byUUID[uuid]
if !found {
return nil, errors.Errorf("no such channel with UUID '%s'", uuid)
}
return c, nil
}
// GetForURN returns the best channel for the given URN
func (s *ChannelAssets) GetForURN(urn *ContactURN, role assets.ChannelRole) *Channel {
// if caller has told us which channel to use for this URN, use that
if urn.Channel() != nil {
return s.getDelegate(urn.Channel(), role)
}
// tel is a special case because we do number based matching
if urn.URN().Scheme() == urns.TelScheme {
countryCode := utils.DeriveCountryFromTel(urn.URN().Path())
candidates := make([]*Channel, 0)
for _, ch := range s.all {
if ch.HasRole(role) && ch.SupportsScheme(urns.TelScheme) && (countryCode == "" || countryCode == ch.Country()) && !ch.HasParent() {
candidates = append(candidates, ch)
}
}
var channel *Channel
if len(candidates) > 1 {
// we don't have a channel for this contact yet, let's try to pick one from the same carrier
// we need at least one digit to overlap to infer a channel
contactNumber := strings.TrimPrefix(urn.URN().Path(), "+")
maxOverlap := 0
for _, candidate := range candidates {
candidatePrefixes := candidate.MatchPrefixes()
if len(candidatePrefixes) == 0 {
candidatePrefixes = []string{strings.TrimPrefix(candidate.Address(), "+")}
}
for _, prefix := range candidatePrefixes {
overlap := utils.PrefixOverlap(prefix, contactNumber)
if overlap >= maxOverlap {
maxOverlap = overlap
channel = candidate
}
}
}
} else if len(candidates) == 1 {
channel = candidates[0]
}
if channel != nil {
return s.getDelegate(channel, role)
}
}
return s.getForSchemeAndRole(urn.URN().Scheme(), role)
}
func (s *ChannelAssets) getForSchemeAndRole(scheme string, role assets.ChannelRole) *Channel {
for _, ch := range s.all {
if ch.HasRole(assets.ChannelRoleSend) && ch.SupportsScheme(scheme) {
return s.getDelegate(ch, role)
}
}
return nil
}
// looks for a delegate for the given channel and defaults to the channel itself
func (s *ChannelAssets) getDelegate(channel *Channel, role assets.ChannelRole) *Channel {
for _, ch := range s.all {
if ch.HasParent() && ch.Parent().UUID == channel.UUID() && ch.HasRole(role) {
return ch
}
}
return channel
}