forked from pubnub/go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
objects_update_user.go
242 lines (182 loc) · 5.24 KB
/
objects_update_user.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
package pubnub
import (
"bytes"
"encoding/json"
"fmt"
"io/ioutil"
"net/http"
"net/url"
"github.com/pubnub/go/pnerr"
)
var emptyPNUpdateUserResponse *PNUpdateUserResponse
const updateUserPath = "/v1/objects/%s/users/%s"
type updateUserBuilder struct {
opts *updateUserOpts
}
func newUpdateUserBuilder(pubnub *PubNub) *updateUserBuilder {
builder := updateUserBuilder{
opts: &updateUserOpts{
pubnub: pubnub,
},
}
return &builder
}
func newUpdateUserBuilderWithContext(pubnub *PubNub,
context Context) *updateUserBuilder {
builder := updateUserBuilder{
opts: &updateUserOpts{
pubnub: pubnub,
ctx: context,
},
}
return &builder
}
// UpdateUserBody is the input to update user
type UpdateUserBody struct {
ID string `json:"id"`
Name string `json:"name"`
ExternalID string `json:"externalId"`
ProfileURL string `json:"profileUrl"`
Email string `json:"email"`
Custom map[string]interface{} `json:"custom"`
}
func (b *updateUserBuilder) Include(include []PNUserSpaceInclude) *updateUserBuilder {
b.opts.Include = EnumArrayToStringArray(include)
return b
}
func (b *updateUserBuilder) ID(id string) *updateUserBuilder {
b.opts.ID = id
return b
}
func (b *updateUserBuilder) Name(name string) *updateUserBuilder {
b.opts.Name = name
return b
}
func (b *updateUserBuilder) ExternalID(externalID string) *updateUserBuilder {
b.opts.ExternalID = externalID
return b
}
func (b *updateUserBuilder) ProfileURL(profileURL string) *updateUserBuilder {
b.opts.ProfileURL = profileURL
return b
}
func (b *updateUserBuilder) Email(email string) *updateUserBuilder {
b.opts.Email = email
return b
}
func (b *updateUserBuilder) Custom(custom map[string]interface{}) *updateUserBuilder {
b.opts.Custom = custom
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 *updateUserBuilder) QueryParam(queryParam map[string]string) *updateUserBuilder {
b.opts.QueryParam = queryParam
return b
}
// Transport sets the Transport for the updateUser request.
func (b *updateUserBuilder) Transport(tr http.RoundTripper) *updateUserBuilder {
b.opts.Transport = tr
return b
}
// Execute runs the updateUser request.
func (b *updateUserBuilder) Execute() (*PNUpdateUserResponse, StatusResponse, error) {
rawJSON, status, err := executeRequest(b.opts)
if err != nil {
return emptyPNUpdateUserResponse, status, err
}
return newPNUpdateUserResponse(rawJSON, b.opts, status)
}
type updateUserOpts struct {
pubnub *PubNub
Include []string
ID string
Name string
ExternalID string
ProfileURL string
Email string
Custom map[string]interface{}
QueryParam map[string]string
Transport http.RoundTripper
ctx Context
}
func (o *updateUserOpts) config() Config {
return *o.pubnub.Config
}
func (o *updateUserOpts) client() *http.Client {
return o.pubnub.GetClient()
}
func (o *updateUserOpts) context() Context {
return o.ctx
}
func (o *updateUserOpts) validate() error {
if o.config().SubscribeKey == "" {
return newValidationError(o, StrMissingSubKey)
}
return nil
}
func (o *updateUserOpts) buildPath() (string, error) {
return fmt.Sprintf(updateUserPath,
o.pubnub.Config.SubscribeKey, o.ID), nil
}
func (o *updateUserOpts) buildQuery() (*url.Values, error) {
q := defaultQuery(o.pubnub.Config.UUID, o.pubnub.telemetryManager)
if o.Include != nil {
SetQueryParamAsCommaSepString(q, o.Include, "include")
}
o.pubnub.tokenManager.SetAuthParan(q, o.ID, PNUsers)
SetQueryParam(q, o.QueryParam)
return q, nil
}
func (o *updateUserOpts) jobQueue() chan *JobQItem {
return o.pubnub.jobQueue
}
func (o *updateUserOpts) buildBody() ([]byte, error) {
b := &UpdateUserBody{
ID: o.ID,
Name: o.Name,
ExternalID: o.ExternalID,
ProfileURL: o.ProfileURL,
Email: o.Email,
Custom: o.Custom,
}
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 *updateUserOpts) httpMethod() string {
return "PATCH"
}
func (o *updateUserOpts) isAuthRequired() bool {
return true
}
func (o *updateUserOpts) requestTimeout() int {
return o.pubnub.Config.NonSubscribeRequestTimeout
}
func (o *updateUserOpts) connectTimeout() int {
return o.pubnub.Config.ConnectTimeout
}
func (o *updateUserOpts) operationType() OperationType {
return PNUpdateUserOperation
}
func (o *updateUserOpts) telemetryManager() *TelemetryManager {
return o.pubnub.telemetryManager
}
// PNUpdateUserResponse is the Objects API Response for Update user
type PNUpdateUserResponse struct {
status int `json:"status"`
Data PNUser `json:"data"`
}
func newPNUpdateUserResponse(jsonBytes []byte, o *updateUserOpts,
status StatusResponse) (*PNUpdateUserResponse, StatusResponse, error) {
resp := &PNUpdateUserResponse{}
err := json.Unmarshal(jsonBytes, &resp)
if err != nil {
e := pnerr.NewResponseParsingError("Error unmarshalling response",
ioutil.NopCloser(bytes.NewBufferString(string(jsonBytes))), err)
return emptyPNUpdateUserResponse, status, e
}
return resp, status, nil
}