-
Notifications
You must be signed in to change notification settings - Fork 0
/
presence_request.go
107 lines (88 loc) · 2.75 KB
/
presence_request.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
package pubnub
import (
"strings"
)
type presenceBuilder struct {
opts *presenceOpts
}
type presenceOpts struct {
pubnub *PubNub
channels []string
channelGroups []string
connected bool
ctx Context
queryParam map[string]string
state map[string]interface{}
}
func newPresenceBuilder(pubnub *PubNub) *presenceBuilder {
builder := presenceBuilder{
opts: &presenceOpts{
pubnub: pubnub,
},
}
return &builder
}
func newPresenceBuilderWithContext(pubnub *PubNub, context Context) *presenceBuilder {
builder := presenceBuilder{
opts: &presenceOpts{
pubnub: pubnub,
ctx: context,
},
}
return &builder
}
// Channels sets the Channels for the Presence request.
func (b *presenceBuilder) Channels(ch []string) *presenceBuilder {
b.opts.channels = ch
return b
}
// ChannelGroups sets the ChannelGroups for the Presence request.
func (b *presenceBuilder) ChannelGroups(cg []string) *presenceBuilder {
b.opts.channelGroups = cg
return b
}
// Channels sets the Channels for the Presence request.
func (b *presenceBuilder) Connected(connected bool) *presenceBuilder {
b.opts.connected = connected
return b
}
// QueryParam accepts a map, the keys and values of the map are passed as the query string parameters of the URL called by the API.
func (b *presenceBuilder) QueryParam(queryParam map[string]string) *presenceBuilder {
b.opts.queryParam = queryParam
return b
}
// State sets the State for the Set State request.
func (b *presenceBuilder) State(state map[string]interface{}) *presenceBuilder {
b.opts.state = state
return b
}
func (b *presenceBuilder) Execute() {
if b.opts.connected {
for _, ch := range b.opts.channels {
if strings.Contains(ch, "-pnpres") {
ch = strings.Replace(ch, "-pnpres", "", -1)
}
b.opts.pubnub.heartbeatManager.Lock()
b.opts.pubnub.heartbeatManager.heartbeatChannels[ch] = newSubscriptionItem(ch)
b.opts.pubnub.heartbeatManager.Unlock()
}
for _, cg := range b.opts.channelGroups {
if strings.Contains(cg, "-pnpres") {
cg = strings.Replace(cg, "-pnpres", "", -1)
}
b.opts.pubnub.heartbeatManager.Lock()
b.opts.pubnub.heartbeatManager.heartbeatGroups[cg] = newSubscriptionItem(cg)
b.opts.pubnub.heartbeatManager.Unlock()
}
b.opts.pubnub.heartbeatManager.state = b.opts.state
b.opts.pubnub.heartbeatManager.queryParam = b.opts.queryParam
b.opts.pubnub.heartbeatManager.startHeartbeatTimer(true)
} else {
b.opts.pubnub.heartbeatManager.Lock()
b.opts.pubnub.heartbeatManager.heartbeatChannels = make(map[string]*SubscriptionItem)
b.opts.pubnub.heartbeatManager.heartbeatGroups = make(map[string]*SubscriptionItem)
b.opts.pubnub.heartbeatManager.state = nil
b.opts.pubnub.heartbeatManager.queryParam = nil
b.opts.pubnub.heartbeatManager.Unlock()
}
}