-
Notifications
You must be signed in to change notification settings - Fork 20
/
channel.go
183 lines (157 loc) · 4.84 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
package flows
import (
"fmt"
"strings"
"github.com/nyaruka/gocommon/urns"
"github.com/nyaruka/goflow/assets"
"github.com/nyaruka/goflow/envs"
"github.com/nyaruka/goflow/excellent/types"
"github.com/nyaruka/goflow/utils"
)
// Channel represents a means for sending and receiving input during a flow run
type Channel struct {
assets.Channel
}
// NewChannel creates a new channenl
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
}
// HasParent returns whether this channel has a parent
func (c *Channel) HasParent() bool {
return c.Parent() != nil
}
// Context returns the properties available in expressions
//
// __default__:text -> the name
// uuid:text -> the UUID of the channel
// name:text -> the name of the channel
// address:text -> the address of the channel
//
// @context channel
func (c *Channel) Context(env envs.Environment) map[string]types.XValue {
return map[string]types.XValue{
"__default__": types.NewXText(c.Name()),
"uuid": types.NewXText(string(c.UUID())),
"name": types.NewXText(c.Name()),
"address": types.NewXText(c.Address()),
}
}
func (c *Channel) String() string {
return fmt.Sprintf("%s (%s)", c.Address(), c.Name())
}
// 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 i, asset := range channels {
channel := NewChannel(asset)
s.all[i] = channel
s.byUUID[channel.UUID()] = channel
}
return s
}
// Get returns the channel with the given UUID
func (s *ChannelAssets) Get(uuid assets.ChannelUUID) *Channel {
return s.byUUID[uuid]
}
// 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 {
// skip if not tel and not sendable
if !ch.SupportsScheme(urns.TelScheme) || !ch.HasRole(role) {
continue
}
// skip if international and channel doesn't allow that
if countryCode != "" && countryCode != ch.Country() && !ch.AllowInternational() {
continue
}
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 nil
}
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(role) && 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
}