-
Notifications
You must be signed in to change notification settings - Fork 62
/
objects_set_channel_members.go
285 lines (216 loc) · 6.62 KB
/
objects_set_channel_members.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
package pubnub
import (
"bytes"
"encoding/json"
"errors"
"fmt"
"io/ioutil"
"mime/multipart"
"net/http"
"net/url"
"strconv"
"github.com/pubnub/go/v7/pnerr"
)
var emptySetChannelMembersResponse *PNSetChannelMembersResponse
const setChannelMembersPath = "/v2/objects/%s/channels/%s/uuids"
const setChannelMembersLimit = 100
type setChannelMembersBuilder struct {
opts *setChannelMembersOpts
}
func newSetChannelMembersBuilder(pubnub *PubNub) *setChannelMembersBuilder {
builder := setChannelMembersBuilder{
opts: &setChannelMembersOpts{
pubnub: pubnub,
},
}
builder.opts.Limit = setChannelMembersLimit
return &builder
}
func newSetChannelMembersBuilderWithContext(pubnub *PubNub,
context Context) *setChannelMembersBuilder {
builder := setChannelMembersBuilder{
opts: &setChannelMembersOpts{
pubnub: pubnub,
ctx: context,
},
}
return &builder
}
func (b *setChannelMembersBuilder) Include(include []PNChannelMembersInclude) *setChannelMembersBuilder {
b.opts.Include = EnumArrayToStringArray(include)
return b
}
func (b *setChannelMembersBuilder) Channel(channel string) *setChannelMembersBuilder {
b.opts.Channel = channel
return b
}
func (b *setChannelMembersBuilder) Limit(limit int) *setChannelMembersBuilder {
b.opts.Limit = limit
return b
}
func (b *setChannelMembersBuilder) Start(start string) *setChannelMembersBuilder {
b.opts.Start = start
return b
}
func (b *setChannelMembersBuilder) End(end string) *setChannelMembersBuilder {
b.opts.End = end
return b
}
func (b *setChannelMembersBuilder) Count(count bool) *setChannelMembersBuilder {
b.opts.Count = count
return b
}
func (b *setChannelMembersBuilder) Filter(filter string) *setChannelMembersBuilder {
b.opts.Filter = filter
return b
}
func (b *setChannelMembersBuilder) Sort(sort []string) *setChannelMembersBuilder {
b.opts.Sort = sort
return b
}
func (b *setChannelMembersBuilder) Set(channelMembersSet []PNChannelMembersSet) *setChannelMembersBuilder {
b.opts.ChannelMembersSet = channelMembersSet
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 *setChannelMembersBuilder) QueryParam(queryParam map[string]string) *setChannelMembersBuilder {
b.opts.QueryParam = queryParam
return b
}
// Transport sets the Transport for the setChannelMembers request.
func (b *setChannelMembersBuilder) Transport(tr http.RoundTripper) *setChannelMembersBuilder {
b.opts.Transport = tr
return b
}
// Execute runs the setChannelMembers request.
func (b *setChannelMembersBuilder) Execute() (*PNSetChannelMembersResponse, StatusResponse, error) {
rawJSON, status, err := executeRequest(b.opts)
if err != nil {
return emptySetChannelMembersResponse, status, err
}
return newPNSetChannelMembersResponse(rawJSON, b.opts, status)
}
type setChannelMembersOpts struct {
pubnub *PubNub
Channel string
Limit int
Include []string
Start string
End string
Filter string
Sort []string
Count bool
QueryParam map[string]string
ChannelMembersSet []PNChannelMembersSet
Transport http.RoundTripper
ctx Context
}
func (o *setChannelMembersOpts) config() Config {
return *o.pubnub.Config
}
func (o *setChannelMembersOpts) client() *http.Client {
return o.pubnub.GetClient()
}
func (o *setChannelMembersOpts) context() Context {
return o.ctx
}
func (o *setChannelMembersOpts) validate() error {
if o.config().SubscribeKey == "" {
return newValidationError(o, StrMissingSubKey)
}
if o.Channel == "" {
return newValidationError(o, StrMissingChannel)
}
return nil
}
func (o *setChannelMembersOpts) buildPath() (string, error) {
return fmt.Sprintf(setChannelMembersPath,
o.pubnub.Config.SubscribeKey, o.Channel), nil
}
func (o *setChannelMembersOpts) buildQuery() (*url.Values, error) {
q := defaultQuery(o.pubnub.Config.UUID, o.pubnub.telemetryManager)
if o.Include != nil {
SetQueryParamAsCommaSepString(q, o.Include, "include")
}
q.Set("limit", strconv.Itoa(o.Limit))
if o.Start != "" {
q.Set("start", o.Start)
}
if o.Count {
q.Set("count", "1")
} else {
q.Set("count", "0")
}
if o.End != "" {
q.Set("end", o.End)
}
if o.Filter != "" {
q.Set("filter", o.Filter)
}
if o.Sort != nil {
SetQueryParamAsCommaSepString(q, o.Sort, "sort")
}
SetQueryParam(q, o.QueryParam)
return q, nil
}
func (o *setChannelMembersOpts) jobQueue() chan *JobQItem {
return o.pubnub.jobQueue
}
// PNChannelMembersSetChangeset is the Objects API input to add, remove or update membership
type PNChannelMembersSetChangeset struct {
Set []PNChannelMembersSet `json:"set"`
}
func (o *setChannelMembersOpts) buildBody() ([]byte, error) {
b := &PNChannelMembersSetChangeset{
Set: o.ChannelMembersSet,
}
jsonEncBytes, errEnc := json.Marshal(b)
if errEnc != nil {
o.pubnub.Config.Log.Printf("ERROR: Serialization error: %s\n", errEnc.Error())
return []byte{}, errEnc
}
return jsonEncBytes, nil
}
func (o *setChannelMembersOpts) buildBodyMultipartFileUpload() (bytes.Buffer, *multipart.Writer, int64, error) {
return bytes.Buffer{}, nil, 0, errors.New("Not required")
}
func (o *setChannelMembersOpts) httpMethod() string {
return "PATCH"
}
func (o *setChannelMembersOpts) isAuthRequired() bool {
return true
}
func (o *setChannelMembersOpts) requestTimeout() int {
return o.pubnub.Config.NonSubscribeRequestTimeout
}
func (o *setChannelMembersOpts) connectTimeout() int {
return o.pubnub.Config.ConnectTimeout
}
func (o *setChannelMembersOpts) operationType() OperationType {
return PNSetChannelMembersOperation
}
func (o *setChannelMembersOpts) telemetryManager() *TelemetryManager {
return o.pubnub.telemetryManager
}
func (o *setChannelMembersOpts) tokenManager() *TokenManager {
return o.pubnub.tokenManager
}
// PNSetChannelMembersResponse is the Objects API Response for SetChannelMembers
type PNSetChannelMembersResponse struct {
status int `json:"status"`
Data []PNChannelMembers `json:"data"`
TotalCount int `json:"totalCount"`
Next string `json:"next"`
Prev string `json:"prev"`
}
func newPNSetChannelMembersResponse(jsonBytes []byte, o *setChannelMembersOpts,
status StatusResponse) (*PNSetChannelMembersResponse, StatusResponse, error) {
resp := &PNSetChannelMembersResponse{}
err := json.Unmarshal(jsonBytes, &resp)
if err != nil {
e := pnerr.NewResponseParsingError("Error unmarshalling response",
ioutil.NopCloser(bytes.NewBufferString(string(jsonBytes))), err)
return emptySetChannelMembersResponse, status, e
}
return resp, status, nil
}