-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathchat_gen.go
969 lines (849 loc) · 25 KB
/
chat_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
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
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)
// ChatDeleteCall is created by ChatService.Delete method call
type ChatDeleteCall struct {
service *ChatService
asUser bool
channel string
timestamp string
}
// ChatGetPermalinkCall is created by ChatService.GetPermalink method call
type ChatGetPermalinkCall struct {
service *ChatService
channel string
messageTimestamp string
}
// ChatMeMessageCall is created by ChatService.MeMessage method call
type ChatMeMessageCall struct {
service *ChatService
channel string
text string
}
// ChatPostEphemeralCall is created by ChatService.PostEphemeral method call
type ChatPostEphemeralCall struct {
service *ChatService
asUser bool
attachments objects.AttachmentList
channel string
linkNames bool
parse string
text string
user string
}
// ChatPostMessageCall is created by ChatService.PostMessage method call
type ChatPostMessageCall struct {
service *ChatService
asUser bool
attachments objects.AttachmentList
channel string
escapeText bool
iconEmoji string
iconURL string
linkNames bool
markdown bool
parse string
text string
unfurlLinks bool
unfurlMedia bool
username string
}
// ChatUnfurlCall is created by ChatService.Unfurl method call
type ChatUnfurlCall struct {
service *ChatService
channel string
timestamp string
unfurls string
userAuthRequired bool
}
// ChatUpdateCall is created by ChatService.Update method call
type ChatUpdateCall struct {
service *ChatService
asUser bool
attachments objects.AttachmentList
channel string
linkNames bool
parse string
text string
timestamp string
}
// Delete creates a ChatDeleteCall object in preparation for accessing the chat.delete endpoint
func (s *ChatService) Delete(channel string) *ChatDeleteCall {
var call ChatDeleteCall
call.service = s
call.channel = channel
return &call
}
// AsUser sets the value for optional asUser parameter
func (c *ChatDeleteCall) AsUser(asUser bool) *ChatDeleteCall {
c.asUser = asUser
return c
}
// Timestamp sets the value for optional timestamp parameter
func (c *ChatDeleteCall) Timestamp(timestamp string) *ChatDeleteCall {
c.timestamp = timestamp
return c
}
// ValidateArgs checks that all required fields are set in the ChatDeleteCall object
func (c *ChatDeleteCall) ValidateArgs() error {
if len(c.channel) <= 0 {
return errors.New(`required field channel not initialized`)
}
return nil
}
// Values returns the ChatDeleteCall object as url.Values
func (c *ChatDeleteCall) 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.asUser {
v.Set("as_user", "true")
}
v.Set("channel", c.channel)
if len(c.timestamp) > 0 {
v.Set("ts", c.timestamp)
}
return v, nil
}
// Do executes the call to access chat.delete endpoint
func (c *ChatDeleteCall) Do(ctx context.Context) (*objects.ChatResponse, error) {
const endpoint = "chat.delete"
v, err := c.Values()
if err != nil {
return nil, err
}
var res struct {
objects.GenericResponse
*objects.ChatResponse
}
if err := c.service.client.postForm(ctx, endpoint, v, &res); err != nil {
return nil, errors.Wrap(err, `failed to post to chat.delete`)
}
if !res.OK {
return nil, errors.New(res.Error.String())
}
return res.ChatResponse, nil
}
// FromValues parses the data in v and populates `c`
func (c *ChatDeleteCall) FromValues(v url.Values) error {
var tmp ChatDeleteCall
if raw := strings.TrimSpace(v.Get("as_user")); len(raw) > 0 {
parsed, err := strconv.ParseBool(raw)
if err != nil {
return errors.Wrap(err, `failed to parse boolean value "as_user"`)
}
tmp.asUser = parsed
}
if raw := strings.TrimSpace(v.Get("channel")); len(raw) > 0 {
tmp.channel = raw
}
if raw := strings.TrimSpace(v.Get("ts")); len(raw) > 0 {
tmp.timestamp = raw
}
*c = tmp
return nil
}
// GetPermalink creates a ChatGetPermalinkCall object in preparation for accessing the chat.getPermalink endpoint
func (s *ChatService) GetPermalink(channel string, messageTimestamp string) *ChatGetPermalinkCall {
var call ChatGetPermalinkCall
call.service = s
call.channel = channel
call.messageTimestamp = messageTimestamp
return &call
}
// ValidateArgs checks that all required fields are set in the ChatGetPermalinkCall object
func (c *ChatGetPermalinkCall) ValidateArgs() error {
if len(c.channel) <= 0 {
return errors.New(`required field channel not initialized`)
}
if len(c.messageTimestamp) <= 0 {
return errors.New(`required field messageTimestamp not initialized`)
}
return nil
}
// Values returns the ChatGetPermalinkCall object as url.Values
func (c *ChatGetPermalinkCall) 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)
v.Set("channel", c.channel)
v.Set("message_ts", c.messageTimestamp)
return v, nil
}
// Do executes the call to access chat.getPermalink endpoint
func (c *ChatGetPermalinkCall) Do(ctx context.Context) (*objects.PermalinkResponse, error) {
const endpoint = "chat.getPermalink"
v, err := c.Values()
if err != nil {
return nil, err
}
var res struct {
objects.GenericResponse
*objects.PermalinkResponse
}
if err := c.service.client.postForm(ctx, endpoint, v, &res); err != nil {
return nil, errors.Wrap(err, `failed to post to chat.getPermalink`)
}
if !res.OK {
return nil, errors.New(res.Error.String())
}
return res.PermalinkResponse, nil
}
// FromValues parses the data in v and populates `c`
func (c *ChatGetPermalinkCall) FromValues(v url.Values) error {
var tmp ChatGetPermalinkCall
if raw := strings.TrimSpace(v.Get("channel")); len(raw) > 0 {
tmp.channel = raw
}
if raw := strings.TrimSpace(v.Get("message_ts")); len(raw) > 0 {
tmp.messageTimestamp = raw
}
*c = tmp
return nil
}
// MeMessage creates a ChatMeMessageCall object in preparation for accessing the chat.meMessage endpoint
func (s *ChatService) MeMessage(channel string) *ChatMeMessageCall {
var call ChatMeMessageCall
call.service = s
call.channel = channel
return &call
}
// Text sets the value for optional text parameter
func (c *ChatMeMessageCall) Text(text string) *ChatMeMessageCall {
c.text = text
return c
}
// ValidateArgs checks that all required fields are set in the ChatMeMessageCall object
func (c *ChatMeMessageCall) ValidateArgs() error {
if len(c.channel) <= 0 {
return errors.New(`required field channel not initialized`)
}
return nil
}
// Values returns the ChatMeMessageCall object as url.Values
func (c *ChatMeMessageCall) 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)
v.Set("channel", c.channel)
if len(c.text) > 0 {
v.Set("text", c.text)
}
return v, nil
}
// Do executes the call to access chat.meMessage endpoint
func (c *ChatMeMessageCall) Do(ctx context.Context) (*objects.ChatResponse, error) {
const endpoint = "chat.meMessage"
v, err := c.Values()
if err != nil {
return nil, err
}
var res struct {
objects.GenericResponse
*objects.ChatResponse
}
if err := c.service.client.postForm(ctx, endpoint, v, &res); err != nil {
return nil, errors.Wrap(err, `failed to post to chat.meMessage`)
}
if !res.OK {
return nil, errors.New(res.Error.String())
}
return res.ChatResponse, nil
}
// FromValues parses the data in v and populates `c`
func (c *ChatMeMessageCall) FromValues(v url.Values) error {
var tmp ChatMeMessageCall
if raw := strings.TrimSpace(v.Get("channel")); len(raw) > 0 {
tmp.channel = raw
}
if raw := strings.TrimSpace(v.Get("text")); len(raw) > 0 {
tmp.text = raw
}
*c = tmp
return nil
}
// PostEphemeral creates a ChatPostEphemeralCall object in preparation for accessing the chat.postEphemeral endpoint
func (s *ChatService) PostEphemeral(channel string, text string, user string) *ChatPostEphemeralCall {
var call ChatPostEphemeralCall
call.service = s
call.channel = channel
call.text = text
call.user = user
return &call
}
// AsUser sets the value for optional asUser parameter
func (c *ChatPostEphemeralCall) AsUser(asUser bool) *ChatPostEphemeralCall {
c.asUser = asUser
return c
}
// SetAttachments sets the attachments list
func (c *ChatPostEphemeralCall) SetAttachments(attachments objects.AttachmentList) *ChatPostEphemeralCall {
c.attachments = attachments
return c
}
// Attachment appends to the attachments list
func (c *ChatPostEphemeralCall) Attachment(attachment *objects.Attachment) *ChatPostEphemeralCall {
c.attachments.Append(attachment)
return c
}
// LinkNames sets the value for optional linkNames parameter
func (c *ChatPostEphemeralCall) LinkNames(linkNames bool) *ChatPostEphemeralCall {
c.linkNames = linkNames
return c
}
// Parse sets the value for optional parse parameter
func (c *ChatPostEphemeralCall) Parse(parse string) *ChatPostEphemeralCall {
c.parse = parse
return c
}
// ValidateArgs checks that all required fields are set in the ChatPostEphemeralCall object
func (c *ChatPostEphemeralCall) ValidateArgs() error {
if len(c.channel) <= 0 {
return errors.New(`required field channel not initialized`)
}
if len(c.text) <= 0 {
return errors.New(`required field text not initialized`)
}
if len(c.user) <= 0 {
return errors.New(`required field user not initialized`)
}
return nil
}
// Values returns the ChatPostEphemeralCall object as url.Values
func (c *ChatPostEphemeralCall) 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.asUser {
v.Set("as_user", "true")
}
if len(c.attachments) > 0 {
attachmentsEncoded, err := c.attachments.Encode()
if err != nil {
return nil, errors.Wrap(err, `failed to encode field`)
}
v.Set("attachments", attachmentsEncoded)
}
v.Set("channel", c.channel)
if c.linkNames {
v.Set("linkNames", "true")
}
if len(c.parse) > 0 {
v.Set("parse", c.parse)
}
v.Set("text", c.text)
v.Set("user", c.user)
return v, nil
}
// Do executes the call to access chat.postEphemeral endpoint
func (c *ChatPostEphemeralCall) Do(ctx context.Context) (*objects.EphemeralResponse, error) {
const endpoint = "chat.postEphemeral"
v, err := c.Values()
if err != nil {
return nil, err
}
var res struct {
objects.GenericResponse
*objects.EphemeralResponse
}
if err := c.service.client.postForm(ctx, endpoint, v, &res); err != nil {
return nil, errors.Wrap(err, `failed to post to chat.postEphemeral`)
}
if !res.OK {
return nil, errors.New(res.Error.String())
}
return res.EphemeralResponse, nil
}
// FromValues parses the data in v and populates `c`
func (c *ChatPostEphemeralCall) FromValues(v url.Values) error {
var tmp ChatPostEphemeralCall
if raw := strings.TrimSpace(v.Get("as_user")); len(raw) > 0 {
parsed, err := strconv.ParseBool(raw)
if err != nil {
return errors.Wrap(err, `failed to parse boolean value "as_user"`)
}
tmp.asUser = parsed
}
if raw := strings.TrimSpace(v.Get("attachments")); len(raw) > 0 {
if err := tmp.attachments.Decode(raw); err != nil {
return errors.Wrap(err, `failed to decode value "attachments"`)
}
}
if raw := strings.TrimSpace(v.Get("channel")); len(raw) > 0 {
tmp.channel = raw
}
if raw := strings.TrimSpace(v.Get("linkNames")); len(raw) > 0 {
parsed, err := strconv.ParseBool(raw)
if err != nil {
return errors.Wrap(err, `failed to parse boolean value "linkNames"`)
}
tmp.linkNames = parsed
}
if raw := strings.TrimSpace(v.Get("parse")); len(raw) > 0 {
tmp.parse = raw
}
if raw := strings.TrimSpace(v.Get("text")); len(raw) > 0 {
tmp.text = raw
}
if raw := strings.TrimSpace(v.Get("user")); len(raw) > 0 {
tmp.user = raw
}
*c = tmp
return nil
}
// PostMessage creates a ChatPostMessageCall object in preparation for accessing the chat.postMessage endpoint
func (s *ChatService) PostMessage(channel string) *ChatPostMessageCall {
var call ChatPostMessageCall
call.service = s
call.channel = channel
return &call
}
// AsUser sets the value for optional asUser parameter
func (c *ChatPostMessageCall) AsUser(asUser bool) *ChatPostMessageCall {
c.asUser = asUser
return c
}
// SetAttachments sets the attachments list
func (c *ChatPostMessageCall) SetAttachments(attachments objects.AttachmentList) *ChatPostMessageCall {
c.attachments = attachments
return c
}
// Attachment appends to the attachments list
func (c *ChatPostMessageCall) Attachment(attachment *objects.Attachment) *ChatPostMessageCall {
c.attachments.Append(attachment)
return c
}
// EscapeText sets the value for optional escapeText parameter
func (c *ChatPostMessageCall) EscapeText(escapeText bool) *ChatPostMessageCall {
c.escapeText = escapeText
return c
}
// IconEmoji sets the value for optional iconEmoji parameter
func (c *ChatPostMessageCall) IconEmoji(iconEmoji string) *ChatPostMessageCall {
c.iconEmoji = iconEmoji
return c
}
// IconURL sets the value for optional iconURL parameter
func (c *ChatPostMessageCall) IconURL(iconURL string) *ChatPostMessageCall {
c.iconURL = iconURL
return c
}
// LinkNames sets the value for optional linkNames parameter
func (c *ChatPostMessageCall) LinkNames(linkNames bool) *ChatPostMessageCall {
c.linkNames = linkNames
return c
}
// Markdown sets the value for optional markdown parameter
func (c *ChatPostMessageCall) Markdown(markdown bool) *ChatPostMessageCall {
c.markdown = markdown
return c
}
// Parse sets the value for optional parse parameter
func (c *ChatPostMessageCall) Parse(parse string) *ChatPostMessageCall {
c.parse = parse
return c
}
// Text sets the value for optional text parameter
func (c *ChatPostMessageCall) Text(text string) *ChatPostMessageCall {
c.text = text
return c
}
// UnfurlLinks sets the value for optional unfurlLinks parameter
func (c *ChatPostMessageCall) UnfurlLinks(unfurlLinks bool) *ChatPostMessageCall {
c.unfurlLinks = unfurlLinks
return c
}
// UnfurlMedia sets the value for optional unfurlMedia parameter
func (c *ChatPostMessageCall) UnfurlMedia(unfurlMedia bool) *ChatPostMessageCall {
c.unfurlMedia = unfurlMedia
return c
}
// Username sets the value for optional username parameter
func (c *ChatPostMessageCall) Username(username string) *ChatPostMessageCall {
c.username = username
return c
}
// ValidateArgs checks that all required fields are set in the ChatPostMessageCall object
func (c *ChatPostMessageCall) ValidateArgs() error {
if len(c.channel) <= 0 {
return errors.New(`required field channel not initialized`)
}
return nil
}
// Values returns the ChatPostMessageCall object as url.Values
func (c *ChatPostMessageCall) 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.asUser {
v.Set("as_user", "true")
}
if len(c.attachments) > 0 {
attachmentsEncoded, err := c.attachments.Encode()
if err != nil {
return nil, errors.Wrap(err, `failed to encode field`)
}
v.Set("attachments", attachmentsEncoded)
}
v.Set("channel", c.channel)
if c.escapeText {
v.Set("escapeText", "true")
}
if len(c.iconEmoji) > 0 {
v.Set("iconEmoji", c.iconEmoji)
}
if len(c.iconURL) > 0 {
v.Set("iconURL", c.iconURL)
}
if c.linkNames {
v.Set("linkNames", "true")
}
if c.markdown {
v.Set("markdown", "true")
}
if len(c.parse) > 0 {
v.Set("parse", c.parse)
}
if len(c.text) > 0 {
v.Set("text", c.text)
}
if c.unfurlLinks {
v.Set("unfurlLinks", "true")
}
if c.unfurlMedia {
v.Set("unfurlMedia", "true")
}
if len(c.username) > 0 {
v.Set("username", c.username)
}
return v, nil
}
// Do executes the call to access chat.postMessage endpoint
func (c *ChatPostMessageCall) Do(ctx context.Context) (*objects.ChatResponse, error) {
const endpoint = "chat.postMessage"
v, err := c.Values()
if err != nil {
return nil, err
}
var res struct {
objects.GenericResponse
*objects.ChatResponse
}
if err := c.service.client.postForm(ctx, endpoint, v, &res); err != nil {
return nil, errors.Wrap(err, `failed to post to chat.postMessage`)
}
if !res.OK {
return nil, errors.New(res.Error.String())
}
return res.ChatResponse, nil
}
// FromValues parses the data in v and populates `c`
func (c *ChatPostMessageCall) FromValues(v url.Values) error {
var tmp ChatPostMessageCall
if raw := strings.TrimSpace(v.Get("as_user")); len(raw) > 0 {
parsed, err := strconv.ParseBool(raw)
if err != nil {
return errors.Wrap(err, `failed to parse boolean value "as_user"`)
}
tmp.asUser = parsed
}
if raw := strings.TrimSpace(v.Get("attachments")); len(raw) > 0 {
if err := tmp.attachments.Decode(raw); err != nil {
return errors.Wrap(err, `failed to decode value "attachments"`)
}
}
if raw := strings.TrimSpace(v.Get("channel")); len(raw) > 0 {
tmp.channel = raw
}
if raw := strings.TrimSpace(v.Get("escapeText")); len(raw) > 0 {
parsed, err := strconv.ParseBool(raw)
if err != nil {
return errors.Wrap(err, `failed to parse boolean value "escapeText"`)
}
tmp.escapeText = parsed
}
if raw := strings.TrimSpace(v.Get("iconEmoji")); len(raw) > 0 {
tmp.iconEmoji = raw
}
if raw := strings.TrimSpace(v.Get("iconURL")); len(raw) > 0 {
tmp.iconURL = raw
}
if raw := strings.TrimSpace(v.Get("linkNames")); len(raw) > 0 {
parsed, err := strconv.ParseBool(raw)
if err != nil {
return errors.Wrap(err, `failed to parse boolean value "linkNames"`)
}
tmp.linkNames = parsed
}
if raw := strings.TrimSpace(v.Get("markdown")); len(raw) > 0 {
parsed, err := strconv.ParseBool(raw)
if err != nil {
return errors.Wrap(err, `failed to parse boolean value "markdown"`)
}
tmp.markdown = parsed
}
if raw := strings.TrimSpace(v.Get("parse")); len(raw) > 0 {
tmp.parse = raw
}
if raw := strings.TrimSpace(v.Get("text")); len(raw) > 0 {
tmp.text = raw
}
if raw := strings.TrimSpace(v.Get("unfurlLinks")); len(raw) > 0 {
parsed, err := strconv.ParseBool(raw)
if err != nil {
return errors.Wrap(err, `failed to parse boolean value "unfurlLinks"`)
}
tmp.unfurlLinks = parsed
}
if raw := strings.TrimSpace(v.Get("unfurlMedia")); len(raw) > 0 {
parsed, err := strconv.ParseBool(raw)
if err != nil {
return errors.Wrap(err, `failed to parse boolean value "unfurlMedia"`)
}
tmp.unfurlMedia = parsed
}
if raw := strings.TrimSpace(v.Get("username")); len(raw) > 0 {
tmp.username = raw
}
*c = tmp
return nil
}
// Unfurl creates a ChatUnfurlCall object in preparation for accessing the chat.unfurl endpoint
func (s *ChatService) Unfurl(channel string, timestamp string, unfurls string) *ChatUnfurlCall {
var call ChatUnfurlCall
call.service = s
call.channel = channel
call.timestamp = timestamp
call.unfurls = unfurls
return &call
}
// UserAuthRequired sets the value for optional userAuthRequired parameter
func (c *ChatUnfurlCall) UserAuthRequired(userAuthRequired bool) *ChatUnfurlCall {
c.userAuthRequired = userAuthRequired
return c
}
// ValidateArgs checks that all required fields are set in the ChatUnfurlCall object
func (c *ChatUnfurlCall) ValidateArgs() error {
if len(c.channel) <= 0 {
return errors.New(`required field channel not initialized`)
}
if len(c.timestamp) <= 0 {
return errors.New(`required field timestamp not initialized`)
}
if len(c.unfurls) <= 0 {
return errors.New(`required field unfurls not initialized`)
}
return nil
}
// Values returns the ChatUnfurlCall object as url.Values
func (c *ChatUnfurlCall) 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)
v.Set("channel", c.channel)
v.Set("ts", c.timestamp)
v.Set("unfurls", c.unfurls)
if c.userAuthRequired {
v.Set("user_auth_required", "true")
}
return v, nil
}
// Do executes the call to access chat.unfurl endpoint
func (c *ChatUnfurlCall) Do(ctx context.Context) error {
const endpoint = "chat.unfurl"
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 chat.unfurl`)
}
if !res.OK {
return errors.New(res.Error.String())
}
return nil
}
// FromValues parses the data in v and populates `c`
func (c *ChatUnfurlCall) FromValues(v url.Values) error {
var tmp ChatUnfurlCall
if raw := strings.TrimSpace(v.Get("channel")); len(raw) > 0 {
tmp.channel = raw
}
if raw := strings.TrimSpace(v.Get("ts")); len(raw) > 0 {
tmp.timestamp = raw
}
if raw := strings.TrimSpace(v.Get("unfurls")); len(raw) > 0 {
tmp.unfurls = raw
}
if raw := strings.TrimSpace(v.Get("user_auth_required")); len(raw) > 0 {
parsed, err := strconv.ParseBool(raw)
if err != nil {
return errors.Wrap(err, `failed to parse boolean value "user_auth_required"`)
}
tmp.userAuthRequired = parsed
}
*c = tmp
return nil
}
// Update creates a ChatUpdateCall object in preparation for accessing the chat.update endpoint
func (s *ChatService) Update(channel string) *ChatUpdateCall {
var call ChatUpdateCall
call.service = s
call.channel = channel
return &call
}
// AsUser sets the value for optional asUser parameter
func (c *ChatUpdateCall) AsUser(asUser bool) *ChatUpdateCall {
c.asUser = asUser
return c
}
// SetAttachments sets the attachments list
func (c *ChatUpdateCall) SetAttachments(attachments objects.AttachmentList) *ChatUpdateCall {
c.attachments = attachments
return c
}
// Attachment appends to the attachments list
func (c *ChatUpdateCall) Attachment(attachment *objects.Attachment) *ChatUpdateCall {
c.attachments.Append(attachment)
return c
}
// LinkNames sets the value for optional linkNames parameter
func (c *ChatUpdateCall) LinkNames(linkNames bool) *ChatUpdateCall {
c.linkNames = linkNames
return c
}
// Parse sets the value for optional parse parameter
func (c *ChatUpdateCall) Parse(parse string) *ChatUpdateCall {
c.parse = parse
return c
}
// Text sets the value for optional text parameter
func (c *ChatUpdateCall) Text(text string) *ChatUpdateCall {
c.text = text
return c
}
// Timestamp sets the value for optional timestamp parameter
func (c *ChatUpdateCall) Timestamp(timestamp string) *ChatUpdateCall {
c.timestamp = timestamp
return c
}
// ValidateArgs checks that all required fields are set in the ChatUpdateCall object
func (c *ChatUpdateCall) ValidateArgs() error {
if len(c.channel) <= 0 {
return errors.New(`required field channel not initialized`)
}
return nil
}
// Values returns the ChatUpdateCall object as url.Values
func (c *ChatUpdateCall) 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.asUser {
v.Set("as_user", "true")
}
if len(c.attachments) > 0 {
attachmentsEncoded, err := c.attachments.Encode()
if err != nil {
return nil, errors.Wrap(err, `failed to encode field`)
}
v.Set("attachments", attachmentsEncoded)
}
v.Set("channel", c.channel)
if c.linkNames {
v.Set("linkNames", "true")
}
if len(c.parse) > 0 {
v.Set("parse", c.parse)
}
if len(c.text) > 0 {
v.Set("text", c.text)
}
if len(c.timestamp) > 0 {
v.Set("ts", c.timestamp)
}
return v, nil
}
// Do executes the call to access chat.update endpoint
func (c *ChatUpdateCall) Do(ctx context.Context) (*objects.ChatResponse, error) {
const endpoint = "chat.update"
v, err := c.Values()
if err != nil {
return nil, err
}
var res struct {
objects.GenericResponse
*objects.ChatResponse
}
if err := c.service.client.postForm(ctx, endpoint, v, &res); err != nil {
return nil, errors.Wrap(err, `failed to post to chat.update`)
}
if !res.OK {
return nil, errors.New(res.Error.String())
}
return res.ChatResponse, nil
}
// FromValues parses the data in v and populates `c`
func (c *ChatUpdateCall) FromValues(v url.Values) error {
var tmp ChatUpdateCall
if raw := strings.TrimSpace(v.Get("as_user")); len(raw) > 0 {
parsed, err := strconv.ParseBool(raw)
if err != nil {
return errors.Wrap(err, `failed to parse boolean value "as_user"`)
}
tmp.asUser = parsed
}
if raw := strings.TrimSpace(v.Get("attachments")); len(raw) > 0 {
if err := tmp.attachments.Decode(raw); err != nil {
return errors.Wrap(err, `failed to decode value "attachments"`)
}
}
if raw := strings.TrimSpace(v.Get("channel")); len(raw) > 0 {
tmp.channel = raw
}
if raw := strings.TrimSpace(v.Get("linkNames")); len(raw) > 0 {
parsed, err := strconv.ParseBool(raw)
if err != nil {
return errors.Wrap(err, `failed to parse boolean value "linkNames"`)
}
tmp.linkNames = parsed
}
if raw := strings.TrimSpace(v.Get("parse")); len(raw) > 0 {
tmp.parse = raw
}
if raw := strings.TrimSpace(v.Get("text")); len(raw) > 0 {
tmp.text = raw
}
if raw := strings.TrimSpace(v.Get("ts")); len(raw) > 0 {
tmp.timestamp = raw
}
*c = tmp
return nil
}