-
Notifications
You must be signed in to change notification settings - Fork 20
/
contact.go
677 lines (576 loc) · 18.9 KB
/
contact.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
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
package flows
import (
"encoding/json"
"fmt"
"strconv"
"time"
"github.com/nyaruka/gocommon/dates"
"github.com/nyaruka/gocommon/jsonx"
"github.com/nyaruka/gocommon/urns"
"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/types"
"github.com/nyaruka/goflow/utils"
"github.com/shopspring/decimal"
"github.com/pkg/errors"
validator "gopkg.in/go-playground/validator.v9"
)
func init() {
utils.RegisterValidatorAlias("contact_status", "eq=active|eq=blocked|eq=stopped|eq=archived", func(validator.FieldError) string {
return "is not a valid contact status"
})
}
// ContactStatus is status in which a contact is in
type ContactStatus string
const (
// ContactStatusActive is the contact status of active
ContactStatusActive ContactStatus = "active"
// ContactStatusBlocked is the contact status of blocked
ContactStatusBlocked ContactStatus = "blocked"
// ContactStatusStopped is the contact status of stopped
ContactStatusStopped ContactStatus = "stopped"
// ContactStatusArchived is the contact status of archived
ContactStatusArchived ContactStatus = "archived"
)
// Contact represents a person who is interacting with the flow
type Contact struct {
uuid ContactUUID
id ContactID
name string
language envs.Language
status ContactStatus
timezone *time.Location
createdOn time.Time
lastSeenOn *time.Time
urns URNList
groups *GroupList
fields FieldValues
tickets *TicketList
// transient fields
assets SessionAssets
}
// NewContact creates a new contact with the passed in attributes
func NewContact(
sa SessionAssets,
uuid ContactUUID,
id ContactID,
name string,
language envs.Language,
status ContactStatus,
timezone *time.Location,
createdOn time.Time,
lastSeenOn *time.Time,
urns []urns.URN,
groups []*assets.GroupReference,
fields map[string]*Value,
tickets []*Ticket,
missing assets.MissingCallback) (*Contact, error) {
urnList, err := ReadURNList(sa, urns, missing)
if err != nil {
return nil, err
}
groupList := NewGroupList(sa, groups, missing)
fieldValues := NewFieldValues(sa, fields, missing)
ticketList := NewTicketList(tickets)
return &Contact{
uuid: uuid,
id: id,
name: name,
language: language,
status: status,
timezone: timezone,
createdOn: createdOn,
lastSeenOn: lastSeenOn,
urns: urnList,
groups: groupList,
fields: fieldValues,
tickets: ticketList,
assets: sa,
}, nil
}
// NewEmptyContact creates a new empy contact with the passed in name, language and location
func NewEmptyContact(sa SessionAssets, name string, language envs.Language, timezone *time.Location) *Contact {
return &Contact{
uuid: ContactUUID(uuids.New()),
name: name,
language: language,
status: ContactStatusActive,
timezone: timezone,
createdOn: dates.Now(),
lastSeenOn: nil,
urns: URNList{},
groups: NewGroupList(sa, nil, assets.IgnoreMissing),
fields: make(FieldValues),
tickets: NewTicketList([]*Ticket{}),
assets: sa,
}
}
// Clone creates a copy of this contact
func (c *Contact) Clone() *Contact {
if c == nil {
return nil
}
return &Contact{
uuid: c.uuid,
id: c.id,
name: c.name,
language: c.language,
status: c.status,
timezone: c.timezone,
createdOn: c.createdOn,
lastSeenOn: c.lastSeenOn,
urns: c.urns.clone(),
groups: c.groups.clone(),
fields: c.fields.clone(),
tickets: c.tickets.clone(),
assets: c.assets,
}
}
// Equal returns true if this instance is equal to the given instance
func (c *Contact) Equal(other *Contact) bool {
asJSON1, _ := jsonx.Marshal(c)
asJSON2, _ := jsonx.Marshal(other)
return string(asJSON1) == string(asJSON2)
}
// UUID returns the UUID of this contact
func (c *Contact) UUID() ContactUUID { return c.uuid }
// ID returns the numeric ID of this contact
func (c *Contact) ID() ContactID { return c.id }
// SetLanguage sets the language for this contact
func (c *Contact) SetLanguage(lang envs.Language) { c.language = lang }
// Language gets the language for this contact
func (c *Contact) Language() envs.Language { return c.language }
// Country gets the country for this contact..
//
// TODO: currently this is taken from their preferred channel but probably should become an explicit field at some point
func (c *Contact) Country() envs.Country {
ch := c.PreferredChannel()
if ch != nil && ch.Country() != envs.NilCountry {
return ch.Country()
}
return envs.NilCountry
}
// Locale gets the locale for this contact, using the environment country if contact doesn't have one
func (c *Contact) Locale(env envs.Environment) envs.Locale {
country := c.Country()
if country == envs.NilCountry {
country = env.DefaultCountry()
}
return envs.NewLocale(c.language, country)
}
// Status returns the contact status
func (c *Contact) Status() ContactStatus { return c.status }
// SetStatus sets the status of this contact (blocked, stopped or active)
func (c *Contact) SetStatus(status ContactStatus) { c.status = status }
// SetTimezone sets the timezone of this contact
func (c *Contact) SetTimezone(tz *time.Location) {
c.timezone = tz
}
// Timezone returns the timezone of this contact
func (c *Contact) Timezone() *time.Location { return c.timezone }
// CreatedOn returns the created on time of this contact
func (c *Contact) CreatedOn() time.Time { return c.createdOn }
// LastSeenOn returns the last seen on time of this contact
func (c *Contact) LastSeenOn() *time.Time { return c.lastSeenOn }
// SetLastSeenOn sets the last seen on time of this contact
func (c *Contact) SetLastSeenOn(t time.Time) { c.lastSeenOn = &t }
// SetName sets the name of this contact
func (c *Contact) SetName(name string) { c.name = name }
// Name returns the name of this contact
func (c *Contact) Name() string { return c.name }
// URNs returns the URNs of this contact
func (c *Contact) URNs() URNList { return c.urns }
// ClearURNs clears the URNs on this contact
func (c *Contact) ClearURNs() bool {
hadURNS := len(c.urns) > 0
c.urns = URNList{}
return hadURNS
}
// AddURN adds a new URN to this contact
func (c *Contact) AddURN(urn urns.URN, channel *Channel) bool {
if c.HasURN(urn) {
return false
}
c.urns = append(c.urns, NewContactURN(urn, channel))
return true
}
// RemoveURN adds a new URN to this contact
func (c *Contact) RemoveURN(urn urns.URN) bool {
if !c.HasURN(urn) {
return false
}
newURNs := make([]*ContactURN, 0, len(c.urns)-1)
for _, u := range c.urns {
if u.URN().Identity() != urn.Identity() {
newURNs = append(newURNs, u)
}
}
c.urns = URNList(newURNs)
return true
}
// HasURN checks whether the contact has the given URN
func (c *Contact) HasURN(urn urns.URN) bool {
urn = urn.Normalize("")
for _, u := range c.urns {
if u.URN().Identity() == urn.Identity() {
return true
}
}
return false
}
// Fields returns this contact's field values
func (c *Contact) Fields() FieldValues { return c.fields }
// Groups returns the groups that this contact belongs to
func (c *Contact) Groups() *GroupList { return c.groups }
// Tickets returns the tickets that this contact has open
func (c *Contact) Tickets() *TicketList { return c.tickets }
// Reference returns a reference to this contact
func (c *Contact) Reference() *ContactReference {
if c == nil {
return nil
}
return NewContactReference(c.uuid, c.name)
}
// Format returns a friendly string version of this contact depending on what fields are set
func (c *Contact) Format(env envs.Environment) string {
// if contact has a name set, use that
if c.name != "" {
return c.name
}
// otherwise use either id or the highest priority URN depending on the env
if env.RedactionPolicy() == envs.RedactionPolicyURNs {
return strconv.Itoa(int(c.id))
}
if len(c.urns) > 0 {
return c.urns[0].URN().Format()
}
return ""
}
// Context returns the properties available in expressions
//
// __default__:text -> the name or URN
// uuid:text -> the UUID of the contact
// id:text -> the numeric ID of the contact
// first_name:text -> the first name of the contact
// name:text -> the name of the contact
// language:text -> the language of the contact as 3-letter ISO code
// created_on:datetime -> the creation date of the contact
// last_seen_on:any -> the last seen date of the contact
// urns:[]text -> the URNs belonging to the contact
// urn:text -> the preferred URN of the contact
// groups:[]group -> the groups the contact belongs to
// fields:fields -> the custom field values of the contact
// channel:channel -> the preferred channel of the contact
// tickets:[]ticket -> the open tickets of the contact
//
// @context contact
func (c *Contact) Context(env envs.Environment) map[string]types.XValue {
var firstName, urn, timezone, lastSeenOn types.XValue
if c.timezone != nil {
timezone = types.NewXText(c.timezone.String())
}
preferredURN := c.PreferredURN()
if preferredURN != nil {
urn = preferredURN.ToXValue(env)
}
names := utils.TokenizeString(c.name)
if len(names) >= 1 {
firstName = types.NewXText(names[0])
}
if c.lastSeenOn != nil {
lastSeenOn = types.NewXDateTime(*c.lastSeenOn)
}
return map[string]types.XValue{
"__default__": types.NewXText(c.Format(env)),
"uuid": types.NewXText(string(c.uuid)),
"id": types.NewXText(strconv.Itoa(int(c.id))),
"name": types.NewXText(c.name),
"first_name": firstName,
"language": types.NewXText(string(c.language)),
"timezone": timezone,
"created_on": types.NewXDateTime(c.createdOn),
"last_seen_on": lastSeenOn,
"urns": c.urns.ToXValue(env),
"urn": urn,
"groups": c.groups.ToXValue(env),
"fields": Context(env, c.Fields()),
"channel": Context(env, c.PreferredChannel()),
"tickets": c.tickets.ToXValue(env),
}
}
// Destination is a sendable channel and URN pair
type Destination struct {
Channel *Channel
URN *ContactURN
}
// ResolveDestinations resolves possible URN/channel destinations
func (c *Contact) ResolveDestinations(all bool) []Destination {
destinations := []Destination{}
for _, u := range c.urns {
channel := c.assets.Channels().GetForURN(u, assets.ChannelRoleSend)
if channel != nil {
destinations = append(destinations, Destination{URN: u, Channel: channel})
if !all {
break
}
}
}
return destinations
}
// PreferredURN gets the preferred URN for this contact, i.e. the URN we would use for sending
func (c *Contact) PreferredURN() *ContactURN {
destinations := c.ResolveDestinations(false)
if len(destinations) > 0 {
return destinations[0].URN
}
return nil
}
// PreferredChannel gets the preferred channel for this contact, i.e. the channel we would use for sending
func (c *Contact) PreferredChannel() *Channel {
destinations := c.ResolveDestinations(false)
if len(destinations) > 0 {
return destinations[0].Channel
}
return nil
}
// UpdatePreferredChannel updates the preferred channel and returns whether any change was made
func (c *Contact) UpdatePreferredChannel(channel *Channel) bool {
oldURNs := c.urns.clone()
// setting preferred channel to nil means clearing affinity on all URNs
if channel == nil {
for _, urn := range c.urns {
urn.SetChannel(nil)
}
} else {
if !channel.HasRole(assets.ChannelRoleSend) {
return false
}
priorityURNs := make([]*ContactURN, 0)
otherURNs := make([]*ContactURN, 0)
for _, urn := range c.urns {
// tel URNs can be re-assigned, other URN schemes are considered channel specific
if urn.URN().Scheme() == urns.TelScheme && channel.SupportsScheme(urns.TelScheme) {
urn.SetChannel(channel)
}
// If URN doesn't have a channel and is a scheme supported by the channel, then we can set its
// channel. This may result in unsendable URN/channel pairing but can't do much about that.
if urn.Channel() == nil && channel.SupportsScheme(urn.URN().Scheme()) {
urn.SetChannel(channel)
}
// move any URNs with this channel to the front of the list
if urn.Channel() == channel {
priorityURNs = append(priorityURNs, urn)
} else {
otherURNs = append(otherURNs, urn)
}
}
c.urns = append(priorityURNs, otherURNs...)
}
return !oldURNs.Equal(c.urns)
}
// ReevaluateQueryBasedGroups reevaluates membership of all query based groups for this contact
func (c *Contact) ReevaluateQueryBasedGroups(env envs.Environment) ([]*Group, []*Group) {
added := make([]*Group, 0)
removed := make([]*Group, 0)
for _, group := range c.assets.Groups().All() {
if !group.UsesQuery() {
continue
}
qualifies := group.CheckQueryBasedMembership(env, c)
if qualifies {
if c.groups.Add(group) {
added = append(added, group)
}
} else {
if c.groups.Remove(group) {
removed = append(removed, group)
}
}
}
return added, removed
}
// QueryProperty resolves a contact query search key for this contact
func (c *Contact) QueryProperty(env envs.Environment, key string, propType contactql.PropertyType) []interface{} {
if propType == contactql.PropertyTypeAttribute {
switch key {
case contactql.AttributeUUID:
return []interface{}{string(c.uuid)}
case contactql.AttributeID:
if c.id != 0 {
return []interface{}{fmt.Sprintf("%d", c.id)}
}
return nil
case contactql.AttributeName:
if c.name != "" {
return []interface{}{c.name}
}
return nil
case contactql.AttributeLanguage:
if c.language != envs.NilLanguage {
return []interface{}{string(c.language)}
}
return nil
case contactql.AttributeURN:
vals := make([]interface{}, len(c.URNs()))
for i, urn := range c.URNs() {
vals[i] = urn.URN().Path()
}
return vals
case contactql.AttributeGroup:
vals := make([]interface{}, c.Groups().Count())
for i, group := range c.Groups().All() {
vals[i] = group.Name()
}
return vals
case contactql.AttributeTickets:
return []interface{}{decimal.NewFromInt(int64(c.tickets.Count()))}
case contactql.AttributeCreatedOn:
return []interface{}{c.createdOn}
case contactql.AttributeLastSeenOn:
if c.lastSeenOn != nil {
return []interface{}{*c.lastSeenOn}
}
return nil
default:
return nil
}
} else if propType == contactql.PropertyTypeScheme {
urnsWithScheme := c.urns.WithScheme(key)
vals := make([]interface{}, len(urnsWithScheme))
for i := range urnsWithScheme {
vals[i] = urnsWithScheme[i].URN().Path()
}
return vals
}
// try as a contact field
nativeValue := c.fields[key].QueryValue()
if nativeValue == nil {
return nil
}
return []interface{}{nativeValue}
}
var _ contactql.Queryable = (*Contact)(nil)
// ContactReference is used to reference a contact
type ContactReference struct {
UUID ContactUUID `json:"uuid" validate:"required,uuid4"`
Name string `json:"name"`
}
// NewContactReference creates a new contact reference with the given UUID and name
func NewContactReference(uuid ContactUUID, name string) *ContactReference {
return &ContactReference{UUID: uuid, Name: name}
}
// Type returns the name of the asset type
func (r *ContactReference) Type() string {
return "contact"
}
// Identity returns the unique identity of the asset
func (r *ContactReference) Identity() string {
return string(r.UUID)
}
// Variable returns whether this a variable (vs concrete) reference
func (r *ContactReference) Variable() bool {
return r.Identity() == ""
}
func (r *ContactReference) String() string {
return fmt.Sprintf("%s[uuid=%s,name=%s]", r.Type(), r.Identity(), r.Name)
}
var _ assets.Reference = (*ContactReference)(nil)
//------------------------------------------------------------------------------------------
// JSON Encoding / Decoding
//------------------------------------------------------------------------------------------
type contactEnvelope struct {
UUID ContactUUID `json:"uuid" validate:"required,uuid4"`
ID ContactID `json:"id,omitempty"`
Name string `json:"name,omitempty"`
Language envs.Language `json:"language,omitempty"`
Status ContactStatus `json:"status,omitempty" validate:"omitempty,contact_status"`
Stopped bool `json:"stopped,omitempty"`
Blocked bool `json:"blocked,omitempty"`
Timezone string `json:"timezone,omitempty"`
CreatedOn time.Time `json:"created_on" validate:"required"`
LastSeenOn *time.Time `json:"last_seen_on,omitempty"`
URNs []urns.URN `json:"urns,omitempty" validate:"dive,urn"`
Groups []*assets.GroupReference `json:"groups,omitempty" validate:"dive"`
Fields map[string]*Value `json:"fields,omitempty"`
Tickets []json.RawMessage `json:"tickets,omitempty"`
}
// ReadContact decodes a contact from the passed in JSON
func ReadContact(sa SessionAssets, data json.RawMessage, missing assets.MissingCallback) (*Contact, error) {
var envelope contactEnvelope
var err error
if err := utils.UnmarshalAndValidate(data, &envelope); err != nil {
return nil, errors.Wrap(err, "unable to read contact")
}
c := &Contact{
uuid: envelope.UUID,
id: envelope.ID,
name: envelope.Name,
language: envelope.Language,
status: envelope.Status,
createdOn: envelope.CreatedOn,
lastSeenOn: envelope.LastSeenOn,
assets: sa,
}
// it's possible older sessions won't have contact status
if c.status == "" {
c.status = ContactStatusActive
}
if envelope.Timezone != "" {
if c.timezone, err = time.LoadLocation(envelope.Timezone); err != nil {
return nil, err
}
}
if envelope.URNs == nil {
c.urns = make(URNList, 0)
} else {
if c.urns, err = ReadURNList(sa, envelope.URNs, missing); err != nil {
return nil, errors.Wrap(err, "error reading urns")
}
}
c.groups = NewGroupList(sa, envelope.Groups, missing)
c.fields = NewFieldValues(sa, envelope.Fields, missing)
tickets := make([]*Ticket, len(envelope.Tickets))
for i := range envelope.Tickets {
tickets[i], err = ReadTicket(sa, envelope.Tickets[i], missing)
if err != nil {
return nil, errors.Wrap(err, "unable to read ticket")
}
}
c.tickets = NewTicketList(tickets)
return c, nil
}
// MarshalJSON marshals this contact into JSON
func (c *Contact) MarshalJSON() ([]byte, error) {
var err error
tickets := make([]json.RawMessage, len(c.tickets.tickets))
for i, ticket := range c.tickets.tickets {
tickets[i], err = jsonx.Marshal(ticket)
if err != nil {
return nil, err
}
}
ce := &contactEnvelope{
Name: c.name,
UUID: c.uuid,
ID: c.id,
Status: c.status,
Language: c.language,
CreatedOn: c.createdOn,
LastSeenOn: c.lastSeenOn,
URNs: c.urns.RawURNs(),
Groups: c.groups.references(),
Tickets: tickets,
}
if c.timezone != nil {
ce.Timezone = c.timezone.String()
}
ce.Fields = make(map[string]*Value)
for _, v := range c.fields {
if v != nil {
ce.Fields[v.field.Key()] = v.Value
}
}
return jsonx.Marshal(ce)
}