-
Notifications
You must be signed in to change notification settings - Fork 1
/
notification_topic_user_presence.go
73 lines (64 loc) · 1.89 KB
/
notification_topic_user_presence.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
package gcloudcx
import (
"encoding/json"
"github.com/gildas/go-errors"
)
// UserPresenceTopic describes a Topic about User's Presence
type UserPresenceTopic struct {
Name string
User *User
Presence UserPresence
CorrelationID string
Targets []Identifiable
}
func init() {
notificationTopicRegistry.Add(UserPresenceTopic{})
}
// GetType returns the type of this topic
//
// implements core.TypeCarrier
func (topic UserPresenceTopic) GetType() string {
return "v2.users.{id}.presence"
}
// GetTargets returns the targets of this topic
func (topic UserPresenceTopic) GetTargets() []Identifiable {
return topic.Targets
}
// With creates a new NotificationTopic with the given targets
func (topic UserPresenceTopic) With(targets ...Identifiable) NotificationTopic {
newTopic := topic
newTopic.Targets = targets
return newTopic
}
// String gets a string version
//
// implements the fmt.Stringer interface
func (topic UserPresenceTopic) String() string {
if len(topic.Targets) == 0 {
return topic.GetType()
}
return topicNameWith(topic, topic.Targets...)
}
// UnmarshalJSON unmarshals JSON into this
func (topic *UserPresenceTopic) UnmarshalJSON(payload []byte) (err error) {
var inner struct {
TopicName string `json:"topicName"`
Presence UserPresence `json:"eventBody"`
Metadata struct {
CorrelationID string `json:"correlationId"`
} `json:"metadata"`
Version string `json:"version"`
}
if err = json.Unmarshal(payload, &inner); err != nil {
return errors.JSONUnmarshalError.Wrap(err)
}
found, targets := getTargets(topic.GetType(), inner.TopicName)
if !found || len(targets) == 0 {
return errors.JSONUnmarshalError.Wrap(errors.ArgumentInvalid.With("topicName", inner.TopicName))
}
topic.Name = inner.TopicName
topic.Presence = inner.Presence
topic.User = &User{ID: targets[0].GetID()}
topic.CorrelationID = inner.Metadata.CorrelationID
return
}