-
Notifications
You must be signed in to change notification settings - Fork 1
/
notification_topic_conv_user_start.go
75 lines (66 loc) · 2.1 KB
/
notification_topic_conv_user_start.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
package gcloudcx
import (
"encoding/json"
"github.com/gildas/go-errors"
"github.com/google/uuid"
)
// ConversationUserStartTopic describes a Topic about a Conversation User Start
//
// See: https://developer.genesys.cloud/notificationsalerts/notifications/available-topics#v2-detail-events-conversation--id--user-start
type ConversationUserStartTopic struct {
ID uuid.UUID
Name string
ConversationID uuid.UUID
CorrelationID string
Targets []Identifiable
}
func init() {
notificationTopicRegistry.Add(ConversationUserStartTopic{})
}
// GetType returns the type of this topic
//
// implements core.TypeCarrier
func (topic ConversationUserStartTopic) GetType() string {
return "v2.detail.events.conversation.{id}.acd.end"
}
// GetTargets returns the targets
func (topic ConversationUserStartTopic) GetTargets() []Identifiable {
return topic.Targets
}
// With creates a new NotificationTopic with the given targets
func (topic ConversationUserStartTopic) With(targets ...Identifiable) NotificationTopic {
newTopic := topic
newTopic.Targets = targets
return newTopic
}
// String gets a string version
//
// implements the fmt.Stringer interface
func (topic ConversationUserStartTopic) String() string {
if len(topic.Targets) == 0 {
return topic.GetType()
}
return topicNameWith(topic, topic.Targets...)
}
// UnmarshalJSON unmarshals JSON into this
func (topic *ConversationUserStartTopic) UnmarshalJSON(payload []byte) (err error) {
var inner struct {
TopicName string `json:"topicName"`
EventBody struct {
ID uuid.UUID `json:"id,omitempty"`
Conversation EntityRef `json:"conversation,omitempty"`
} `json:"eventBody"`
Metadata struct {
CorrelationID string `json:"correlationId,omitempty"`
Type string `json:"type,omitempty"`
} `json:"metadata,omitempty"`
Version string `json:"version"` // all
}
if err = json.Unmarshal(payload, &inner); err != nil {
return errors.JSONUnmarshalError.Wrap(err)
}
topic.Name = inner.TopicName
topic.ConversationID = inner.EventBody.Conversation.ID
topic.CorrelationID = inner.Metadata.CorrelationID
return
}