-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathreactions_gen.go
509 lines (441 loc) · 12.4 KB
/
reactions_gen.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
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
package slack
// Auto-generated by internal/cmd/genmethods/genmethods.go. DO NOT EDIT!
import (
"context"
"net/url"
"strconv"
"strings"
"github.com/lestrrat-go/slack/objects"
"github.com/pkg/errors"
)
var _ = strconv.Itoa
var _ = strings.Index
var _ = objects.EpochTime(0)
// ReactionsAddCall is created by ReactionsService.Add method call
type ReactionsAddCall struct {
service *ReactionsService
channel string
file string
fileComment string
name string
timestamp string
}
// ReactionsGetCall is created by ReactionsService.Get method call
type ReactionsGetCall struct {
service *ReactionsService
channel string
file string
fileComment string
full bool
timestamp string
}
// ReactionsListCall is created by ReactionsService.List method call
type ReactionsListCall struct {
service *ReactionsService
count int
full bool
page int
user string
}
// ReactionsRemoveCall is created by ReactionsService.Remove method call
type ReactionsRemoveCall struct {
service *ReactionsService
channel string
file string
fileComment string
name string
timestamp string
}
// Add creates a ReactionsAddCall object in preparation for accessing the reactions.add endpoint
func (s *ReactionsService) Add(name string) *ReactionsAddCall {
var call ReactionsAddCall
call.service = s
call.name = name
return &call
}
// Channel sets the value for optional channel parameter
func (c *ReactionsAddCall) Channel(channel string) *ReactionsAddCall {
c.channel = channel
return c
}
// File sets the value for optional file parameter
func (c *ReactionsAddCall) File(file string) *ReactionsAddCall {
c.file = file
return c
}
// FileComment sets the value for optional fileComment parameter
func (c *ReactionsAddCall) FileComment(fileComment string) *ReactionsAddCall {
c.fileComment = fileComment
return c
}
// Timestamp sets the value for optional timestamp parameter
func (c *ReactionsAddCall) Timestamp(timestamp string) *ReactionsAddCall {
c.timestamp = timestamp
return c
}
// ValidateArgs checks that all required fields are set in the ReactionsAddCall object
func (c *ReactionsAddCall) ValidateArgs() error {
if len(c.name) <= 0 {
return errors.New(`required field name not initialized`)
}
return nil
}
// Values returns the ReactionsAddCall object as url.Values
func (c *ReactionsAddCall) Values() (url.Values, error) {
if err := c.ValidateArgs(); err != nil {
return nil, errors.Wrap(err, `failed validation`)
}
v := url.Values{}
v.Set(`token`, c.service.token)
if len(c.channel) > 0 {
v.Set("channel", c.channel)
}
if len(c.file) > 0 {
v.Set("file", c.file)
}
if len(c.fileComment) > 0 {
v.Set("fileComment", c.fileComment)
}
v.Set("name", c.name)
if len(c.timestamp) > 0 {
v.Set("timestamp", c.timestamp)
}
return v, nil
}
// Do executes the call to access reactions.add endpoint
func (c *ReactionsAddCall) Do(ctx context.Context) error {
const endpoint = "reactions.add"
v, err := c.Values()
if err != nil {
return err
}
var res struct {
objects.GenericResponse
}
if err := c.service.client.postForm(ctx, endpoint, v, &res); err != nil {
return errors.Wrap(err, `failed to post to reactions.add`)
}
if !res.OK {
return errors.New(res.Error.String())
}
return nil
}
// FromValues parses the data in v and populates `c`
func (c *ReactionsAddCall) FromValues(v url.Values) error {
var tmp ReactionsAddCall
if raw := strings.TrimSpace(v.Get("channel")); len(raw) > 0 {
tmp.channel = raw
}
if raw := strings.TrimSpace(v.Get("file")); len(raw) > 0 {
tmp.file = raw
}
if raw := strings.TrimSpace(v.Get("fileComment")); len(raw) > 0 {
tmp.fileComment = raw
}
if raw := strings.TrimSpace(v.Get("name")); len(raw) > 0 {
tmp.name = raw
}
if raw := strings.TrimSpace(v.Get("timestamp")); len(raw) > 0 {
tmp.timestamp = raw
}
*c = tmp
return nil
}
// Get creates a ReactionsGetCall object in preparation for accessing the reactions.get endpoint
func (s *ReactionsService) Get() *ReactionsGetCall {
var call ReactionsGetCall
call.service = s
return &call
}
// Channel sets the value for optional channel parameter
func (c *ReactionsGetCall) Channel(channel string) *ReactionsGetCall {
c.channel = channel
return c
}
// File sets the value for optional file parameter
func (c *ReactionsGetCall) File(file string) *ReactionsGetCall {
c.file = file
return c
}
// FileComment sets the value for optional fileComment parameter
func (c *ReactionsGetCall) FileComment(fileComment string) *ReactionsGetCall {
c.fileComment = fileComment
return c
}
// Full sets the value for optional full parameter
func (c *ReactionsGetCall) Full(full bool) *ReactionsGetCall {
c.full = full
return c
}
// Timestamp sets the value for optional timestamp parameter
func (c *ReactionsGetCall) Timestamp(timestamp string) *ReactionsGetCall {
c.timestamp = timestamp
return c
}
// ValidateArgs checks that all required fields are set in the ReactionsGetCall object
func (c *ReactionsGetCall) ValidateArgs() error {
return nil
}
// Values returns the ReactionsGetCall object as url.Values
func (c *ReactionsGetCall) Values() (url.Values, error) {
if err := c.ValidateArgs(); err != nil {
return nil, errors.Wrap(err, `failed validation`)
}
v := url.Values{}
v.Set(`token`, c.service.token)
if len(c.channel) > 0 {
v.Set("channel", c.channel)
}
if len(c.file) > 0 {
v.Set("file", c.file)
}
if len(c.fileComment) > 0 {
v.Set("fileComment", c.fileComment)
}
if c.full {
v.Set("full", "true")
}
if len(c.timestamp) > 0 {
v.Set("timestamp", c.timestamp)
}
return v, nil
}
// Do executes the call to access reactions.get endpoint
func (c *ReactionsGetCall) Do(ctx context.Context) (*objects.ReactionsGetResponse, error) {
const endpoint = "reactions.get"
v, err := c.Values()
if err != nil {
return nil, err
}
var res struct {
objects.GenericResponse
*objects.ReactionsGetResponse
}
if err := c.service.client.postForm(ctx, endpoint, v, &res); err != nil {
return nil, errors.Wrap(err, `failed to post to reactions.get`)
}
if !res.OK {
return nil, errors.New(res.Error.String())
}
return res.ReactionsGetResponse, nil
}
// FromValues parses the data in v and populates `c`
func (c *ReactionsGetCall) FromValues(v url.Values) error {
var tmp ReactionsGetCall
if raw := strings.TrimSpace(v.Get("channel")); len(raw) > 0 {
tmp.channel = raw
}
if raw := strings.TrimSpace(v.Get("file")); len(raw) > 0 {
tmp.file = raw
}
if raw := strings.TrimSpace(v.Get("fileComment")); len(raw) > 0 {
tmp.fileComment = raw
}
if raw := strings.TrimSpace(v.Get("full")); len(raw) > 0 {
parsed, err := strconv.ParseBool(raw)
if err != nil {
return errors.Wrap(err, `failed to parse boolean value "full"`)
}
tmp.full = parsed
}
if raw := strings.TrimSpace(v.Get("timestamp")); len(raw) > 0 {
tmp.timestamp = raw
}
*c = tmp
return nil
}
// List creates a ReactionsListCall object in preparation for accessing the reactions.list endpoint
func (s *ReactionsService) List() *ReactionsListCall {
var call ReactionsListCall
call.service = s
return &call
}
// Count sets the value for optional count parameter
func (c *ReactionsListCall) Count(count int) *ReactionsListCall {
c.count = count
return c
}
// Full sets the value for optional full parameter
func (c *ReactionsListCall) Full(full bool) *ReactionsListCall {
c.full = full
return c
}
// Page sets the value for optional page parameter
func (c *ReactionsListCall) Page(page int) *ReactionsListCall {
c.page = page
return c
}
// User sets the value for optional user parameter
func (c *ReactionsListCall) User(user string) *ReactionsListCall {
c.user = user
return c
}
// ValidateArgs checks that all required fields are set in the ReactionsListCall object
func (c *ReactionsListCall) ValidateArgs() error {
return nil
}
// Values returns the ReactionsListCall object as url.Values
func (c *ReactionsListCall) Values() (url.Values, error) {
if err := c.ValidateArgs(); err != nil {
return nil, errors.Wrap(err, `failed validation`)
}
v := url.Values{}
v.Set(`token`, c.service.token)
if c.count > 0 {
v.Set("count", strconv.Itoa(c.count))
}
if c.full {
v.Set("full", "true")
}
if c.page > 0 {
v.Set("page", strconv.Itoa(c.page))
}
if len(c.user) > 0 {
v.Set("user", c.user)
}
return v, nil
}
// Do executes the call to access reactions.list endpoint
func (c *ReactionsListCall) Do(ctx context.Context) (*objects.ReactionsListResponse, error) {
const endpoint = "reactions.list"
v, err := c.Values()
if err != nil {
return nil, err
}
var res struct {
objects.GenericResponse
*objects.ReactionsListResponse
}
if err := c.service.client.postForm(ctx, endpoint, v, &res); err != nil {
return nil, errors.Wrap(err, `failed to post to reactions.list`)
}
if !res.OK {
return nil, errors.New(res.Error.String())
}
return res.ReactionsListResponse, nil
}
// FromValues parses the data in v and populates `c`
func (c *ReactionsListCall) FromValues(v url.Values) error {
var tmp ReactionsListCall
if raw := strings.TrimSpace(v.Get("count")); len(raw) > 0 {
parsed, err := strconv.ParseInt(raw, 10, 64)
if err != nil {
return errors.Wrap(err, `failed to parse integer value "count"`)
}
tmp.count = int(parsed)
}
if raw := strings.TrimSpace(v.Get("full")); len(raw) > 0 {
parsed, err := strconv.ParseBool(raw)
if err != nil {
return errors.Wrap(err, `failed to parse boolean value "full"`)
}
tmp.full = parsed
}
if raw := strings.TrimSpace(v.Get("page")); len(raw) > 0 {
parsed, err := strconv.ParseInt(raw, 10, 64)
if err != nil {
return errors.Wrap(err, `failed to parse integer value "page"`)
}
tmp.page = int(parsed)
}
if raw := strings.TrimSpace(v.Get("user")); len(raw) > 0 {
tmp.user = raw
}
*c = tmp
return nil
}
// Remove creates a ReactionsRemoveCall object in preparation for accessing the reactions.remove endpoint
func (s *ReactionsService) Remove(name string) *ReactionsRemoveCall {
var call ReactionsRemoveCall
call.service = s
call.name = name
return &call
}
// Channel sets the value for optional channel parameter
func (c *ReactionsRemoveCall) Channel(channel string) *ReactionsRemoveCall {
c.channel = channel
return c
}
// File sets the value for optional file parameter
func (c *ReactionsRemoveCall) File(file string) *ReactionsRemoveCall {
c.file = file
return c
}
// FileComment sets the value for optional fileComment parameter
func (c *ReactionsRemoveCall) FileComment(fileComment string) *ReactionsRemoveCall {
c.fileComment = fileComment
return c
}
// Timestamp sets the value for optional timestamp parameter
func (c *ReactionsRemoveCall) Timestamp(timestamp string) *ReactionsRemoveCall {
c.timestamp = timestamp
return c
}
// ValidateArgs checks that all required fields are set in the ReactionsRemoveCall object
func (c *ReactionsRemoveCall) ValidateArgs() error {
if len(c.name) <= 0 {
return errors.New(`required field name not initialized`)
}
return nil
}
// Values returns the ReactionsRemoveCall object as url.Values
func (c *ReactionsRemoveCall) Values() (url.Values, error) {
if err := c.ValidateArgs(); err != nil {
return nil, errors.Wrap(err, `failed validation`)
}
v := url.Values{}
v.Set(`token`, c.service.token)
if len(c.channel) > 0 {
v.Set("channel", c.channel)
}
if len(c.file) > 0 {
v.Set("file", c.file)
}
if len(c.fileComment) > 0 {
v.Set("fileComment", c.fileComment)
}
v.Set("name", c.name)
if len(c.timestamp) > 0 {
v.Set("timestamp", c.timestamp)
}
return v, nil
}
// Do executes the call to access reactions.remove endpoint
func (c *ReactionsRemoveCall) Do(ctx context.Context) error {
const endpoint = "reactions.remove"
v, err := c.Values()
if err != nil {
return err
}
var res struct {
objects.GenericResponse
}
if err := c.service.client.postForm(ctx, endpoint, v, &res); err != nil {
return errors.Wrap(err, `failed to post to reactions.remove`)
}
if !res.OK {
return errors.New(res.Error.String())
}
return nil
}
// FromValues parses the data in v and populates `c`
func (c *ReactionsRemoveCall) FromValues(v url.Values) error {
var tmp ReactionsRemoveCall
if raw := strings.TrimSpace(v.Get("channel")); len(raw) > 0 {
tmp.channel = raw
}
if raw := strings.TrimSpace(v.Get("file")); len(raw) > 0 {
tmp.file = raw
}
if raw := strings.TrimSpace(v.Get("fileComment")); len(raw) > 0 {
tmp.fileComment = raw
}
if raw := strings.TrimSpace(v.Get("name")); len(raw) > 0 {
tmp.name = raw
}
if raw := strings.TrimSpace(v.Get("timestamp")); len(raw) > 0 {
tmp.timestamp = raw
}
*c = tmp
return nil
}