-
Notifications
You must be signed in to change notification settings - Fork 4
/
availableMethods.go
2539 lines (2324 loc) · 104 KB
/
availableMethods.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
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
package telegrambot
// https://core.telegram.org/bots/api#available-methods
import "fmt"
// A simple method for testing your bot's authentication token. Requires no
// parameters. Returns basic information about the bot in form of a User object.
// https://core.telegram.org/bots/api#user
//
// https://core.telegram.org/bots/api#getme
func (api *API) GetMe() (*User, error) {
user := &User{}
_, err := api.makeAPICall("getMe", nil, nil, user)
if err != nil {
return nil, fmt.Errorf("GetMe: %w", err)
}
return user, nil
}
// Use this method to log out from the cloud Bot API server before launching the
// bot locally. You must log out the bot before running it locally, otherwise
// there is no guarantee that the bot will receive updates. After a successful
// call, you can immediately log in on a local server, but will not be able to
// log in back to the cloud Bot API server for 10 minutes. Returns True on
// success. Requires no parameters.
//
// https://core.telegram.org/bots/api#logout
func (api *API) LogOut() error {
_, err := api.makeAPICall("logOut", nil, nil, nil)
if err != nil {
return fmt.Errorf("LogOut: %w", err)
}
return nil
}
// Use this method to close the bot instance before moving it from one local
// server to another. You need to delete the webhook before calling this method
// to ensure that the bot isn't launched again after server restart. The method
// will return error 429 in the first 10 minutes after the bot is launched.
// Returns True on success. Requires no parameters.
//
// https://core.telegram.org/bots/api#close
func (api *API) Close() error {
_, err := api.makeAPICall("close", nil, nil, nil)
if err != nil {
return fmt.Errorf("Close: %w", err)
}
return nil
}
type SendMessageParams struct {
// Unique identifier for the target chat or username of the target channel
// (in the format @channelusername)
ChatID ChatIDOrUsername `json:"chat_id"`
// Text of the message to be sent, 1-4096 characters after entities parsing
Text string `json:"text"`
// Optional. Mode for parsing entities in the message text. See formatting
// options for more details.
ParseMode ParseMode `json:"parse_mode,omitempty"`
// Optional. A JSON-serialized list of special entities that appear in
// message text, which can be specified instead of parse_mode
Entities []*MessageEntity `json:"entities,omitempty"`
// Optional. Disables link previews for links in this message
DisableWebPagePreview bool `json:"disable_web_page_preview,omitempty"`
// Optional. Sends the message silently. Users will receive a notification
// with no sound. https://telegram.org/blog/channels-2-0#silent-messages
DisableNotification bool `json:"disable_notification,omitempty"`
// Optional. Protects the contents of the sent message from forwarding and
// saving
ProtectContent bool `json:"protect_content,omitempty"`
// Optional. If the message is a reply, ID of the original message
ReplyToMessageID MessageID `json:"reply_to_message_id,omitempty"`
// Optional. Pass True, if the message should be sent even if the specified
// replied-to message is not found
AllowSendingWithoutReply bool `json:"allow_sending_without_reply,omitempty"`
// Optional. Additional interface options. A JSON-serialized object for an
// inline keyboard, custom reply keyboard, instructions to remove reply
// keyboard or to force a reply from the user.
// https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating
// https://core.telegram.org/bots#keyboards
ReplyMarkup ReplyMarkup `json:"reply_markup,omitempty"`
}
// Use this method to send text messages. On success, the sent Message is
// returned. https://core.telegram.org/bots/api#message
//
// https://core.telegram.org/bots/api#sendmessage
func (api *API) SendMessage(params *SendMessageParams) (*Message, error) {
msg := &Message{}
migrateToChatID, err := api.makeAPICall("sendMessage", params, nil, msg)
if err != nil {
if migrateToChatID != 0 {
params.ChatID = migrateToChatID
_, err = api.makeAPICall("sendMessage", params, nil, msg)
if err != nil {
return nil, fmt.Errorf("SendMessage: %w", err)
}
} else {
return nil, fmt.Errorf("SendMessage: %w", err)
}
}
return msg, nil
}
type ForwardMessageParams struct {
// Unique identifier for the target chat or username of the target channel
// (in the format @channelusername)
ChatID ChatIDOrUsername `json:"chat_id"`
// Unique identifier for the chat where the original message was sent (or
// channel username in the format @channelusername)
FromChatID ChatIDOrUsername `json:"from_chat_id"`
// Optional. Sends the message silently. Users will receive a notification
// with no sound. https://telegram.org/blog/channels-2-0#silent-messages
DisableNotification bool `json:"disable_notification,omitempty"`
// Optional. Protects the contents of the forwarded message from forwarding
// and saving
ProtectContent bool `json:"protect_content,omitempty"`
// Message identifier in the chat specified in from_chat_id
MessageID MessageID `json:"message_id"`
}
// Use this method to forward messages of any kind. Service messages can't be
// forwarded. On success, the sent Message is returned.
// https://core.telegram.org/bots/api#message
//
// https://core.telegram.org/bots/api#forwardmessage
func (api *API) ForwardMessage(params *ForwardMessageParams) (*Message, error) {
msg := &Message{}
migrateToChatID, err := api.makeAPICall("forwardMessage", params, nil, msg)
if err != nil {
if migrateToChatID != 0 {
params.ChatID = migrateToChatID
_, err = api.makeAPICall("forwardMessage", params, nil, msg)
if err != nil {
return nil, fmt.Errorf("ForwardMessage: %w", err)
}
} else {
return nil, fmt.Errorf("ForwardMessage: %w", err)
}
}
return msg, nil
}
type CopyMessageParams struct {
// Unique identifier for the target chat or username of the target channel
// (in the format @channelusername)
ChatID ChatIDOrUsername `json:"chat_id"`
// Unique identifier for the chat where the original message was sent (or
// channel username in the format @channelusername)
FromChatID ChatIDOrUsername `json:"from_chat_id"`
// Message identifier in the chat specified in from_chat_id
MessageID MessageID `json:"message_id"`
// Optional. New caption for media, 0-1024 characters after entities
// parsing. If not specified, the original caption is kept
Caption string `json:"caption,omitempty"`
// Optional. Mode for parsing entities in the new caption. See formatting
// options for more details.
// https://core.telegram.org/bots/api#formatting-options
ParseMode ParseMode `json:"parse_mode,omitempty"`
// Optional. A JSON-serialized list of special entities that appear in the
// new caption, which can be specified instead of parse_mode
CaptionEntities []*MessageEntity `json:"caption_entities,omitempty"`
// Optional. Sends the message silently. Users will receive a notification
// with no sound. https://telegram.org/blog/channels-2-0#silent-messages
DisableNotification bool `json:"disable_notification,omitempty"`
// Optional. Protects the contents of the sent message from forwarding and
// saving
ProtectContent bool `json:"protect_content,omitempty"`
// Optional. If the message is a reply, ID of the original message
ReplyToMessageID bool `json:"reply_to_message_id,omitempty"`
// Optional. Pass True, if the message should be sent even if the specified
// replied-to message is not found
AllowSendingWithoutReply bool `json:"allow_sending_without_reply,omitempty"`
// Optional. Additional interface options. A JSON-serialized object for an
// inline keyboard, custom reply keyboard, instructions to remove reply
// keyboard or to force a reply from the user.
// https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating
// https://core.telegram.org/bots#keyboards
ReplyMarkup ReplyMarkup `json:"reply_markup,omitempty"`
}
// Use this method to copy messages of any kind. Service messages and invoice
// messages can't be copied. The method is analogous to the method
// forwardMessage, but the copied message doesn't have a link to the original
// message. Returns the MessageId of the sent message on success.
// https://core.telegram.org/bots/api#forwardmessage
// https://core.telegram.org/bots/api#messageid
//
// https://core.telegram.org/bots/api#copymessage
func (api *API) CopyMessage(params *CopyMessageParams) (*MessageIDObject, error) {
msgID := &MessageIDObject{}
migrateToChatID, err := api.makeAPICall("copyMessage", params, nil, msgID)
if err != nil {
if migrateToChatID != 0 {
params.ChatID = migrateToChatID
_, err = api.makeAPICall("copyMessage", params, nil, msgID)
if err != nil {
return nil, fmt.Errorf("CopyMessage: %w", err)
}
} else {
return nil, fmt.Errorf("CopyMessage: %w", err)
}
}
return msgID, nil
}
type SendPhotoParams struct {
// Unique identifier for the target chat or username of the target channel
// (in the format @channelusername)
ChatID ChatIDOrUsername `json:"chat_id"`
// Photo to send. Pass a file_id as String to send a photo that exists on
// the Telegram servers (recommended), pass an HTTP URL as a String for
// Telegram to get a photo from the Internet, or upload a new photo using
// multipart/form-data. The photo must be at most 10 MB in size. The photo's
// width and height must not exceed 10000 in total. Width and height ratio
// must be at most 20. More info on Sending Files »
// https://core.telegram.org/bots/api#sending-files
Photo InputFile `json:"photo"`
// Optional. Photo caption (may also be used when resending photos by
// file_id), 0-1024 characters after entities parsing
Caption string `json:"caption,omitempty"`
// Optional. Mode for parsing entities in the new caption. See formatting
// options for more details.
// https://core.telegram.org/bots/api#formatting-options
ParseMode ParseMode `json:"parse_mode,omitempty"`
// Optional. A JSON-serialized list of special entities that appear in the
// new caption, which can be specified instead of parse_mode
CaptionEntities []*MessageEntity `json:"caption_entities,omitempty"`
// Optional. Sends the message silently. Users will receive a notification
// with no sound. https://telegram.org/blog/channels-2-0#silent-messages
DisableNotification bool `json:"disable_notification,omitempty"`
// Optional. Protects the contents of the sent message from forwarding and
// saving
ProtectContent bool `json:"protect_content,omitempty"`
// Optional. If the message is a reply, ID of the original message
ReplyToMessageID bool `json:"reply_to_message_id,omitempty"`
// Optional. Pass True, if the message should be sent even if the specified
// replied-to message is not found
AllowSendingWithoutReply bool `json:"allow_sending_without_reply,omitempty"`
// Optional. Additional interface options. A JSON-serialized object for an
// inline keyboard, custom reply keyboard, instructions to remove reply
// keyboard or to force a reply from the user.
// https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating
// https://core.telegram.org/bots#keyboards
ReplyMarkup ReplyMarkup `json:"reply_markup,omitempty"`
}
// Use this method to send photos. On success, the sent Message is returned.
// https://core.telegram.org/bots/api#message
//
// https://core.telegram.org/bots/api#sendphoto
func (api *API) SendPhoto(params *SendPhotoParams) (*Message, error) {
msg := &Message{}
migrateToChatID, err := api.makeAPICall("sendPhoto", params, []InputFile{params.Photo}, msg)
if err != nil {
if migrateToChatID != 0 {
params.ChatID = migrateToChatID
_, err = api.makeAPICall("sendPhoto", params, []InputFile{params.Photo}, msg)
if err != nil {
return nil, fmt.Errorf("SendPhoto: %w", err)
}
} else {
return nil, fmt.Errorf("SendPhoto: %w", err)
}
}
return msg, nil
}
type SendAudioParams struct {
// Unique identifier for the target chat or username of the target channel
// (in the format @channelusername)
ChatID ChatIDOrUsername `json:"chat_id"`
// Audio file to send. Pass a file_id as String to send an audio file that
// exists on the Telegram servers (recommended), pass an HTTP URL as a
// String for Telegram to get an audio file from the Internet, or upload a
// new one using multipart/form-data. More info on Sending Files »
// https://core.telegram.org/bots/api#sending-files
Audio InputFile `json:"audio"`
// Optional. Audio caption, 0-1024 characters after entities parsing
Caption string `json:"caption,omitempty"`
// Optional. Mode for parsing entities in the new caption. See formatting
// options for more details.
// https://core.telegram.org/bots/api#formatting-options
ParseMode ParseMode `json:"parse_mode,omitempty"`
// Optional. A JSON-serialized list of special entities that appear in the
// new caption, which can be specified instead of parse_mode
CaptionEntities []*MessageEntity `json:"caption_entities,omitempty"`
// Optional. Duration of the audio in seconds
Duration int `json:"duration,omitempty"`
// Optional. Performer
Performer string `json:"performer,omitempty"`
// Track name
Title string `json:"title,omitempty"`
// Optional. Thumbnail of the file sent; can be ignored if thumbnail
// generation for the file is supported server-side. The thumbnail should be
// in JPEG format and less than 200 kB in size. A thumbnail's width and
// height should not exceed 320. Ignored if the file is not uploaded using
// multipart/form-data. Thumbnails can't be reused and can be only uploaded
// as a new file, so you can pass "attach://<file_attach_name>" if the
// thumbnail was uploaded using multipart/form-data under
// <file_attach_name>. More info on Sending Files »
// https://core.telegram.org/bots/api#sending-files
Thumb InputFile `json:"thumb,omitempty"`
// Optional. Sends the message silently. Users will receive a notification
// with no sound. https://telegram.org/blog/channels-2-0#silent-messages
DisableNotification bool `json:"disable_notification,omitempty"`
// Optional. Protects the contents of the sent message from forwarding and
// saving
ProtectContent bool `json:"protect_content,omitempty"`
// Optional. If the message is a reply, ID of the original message
ReplyToMessageID bool `json:"reply_to_message_id,omitempty"`
// Optional. Pass True, if the message should be sent even if the specified
// replied-to message is not found
AllowSendingWithoutReply bool `json:"allow_sending_without_reply,omitempty"`
// Optional. Additional interface options. A JSON-serialized object for an
// inline keyboard, custom reply keyboard, instructions to remove reply
// keyboard or to force a reply from the user.
// https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating
// https://core.telegram.org/bots#keyboards
ReplyMarkup ReplyMarkup `json:"reply_markup,omitempty"`
}
// Use this method to send audio files, if you want Telegram clients to display
// them in the music player. Your audio must be in the .MP3 or .M4A format. On
// success, the sent Message is returned. Bots can currently send audio files of
// up to 50 MB in size, this limit may be changed in the future.
//
// For sending voice messages, use the sendVoice method instead.
// https://core.telegram.org/bots/api#sendvoice
// https://core.telegram.org/bots/api#message
//
// https://core.telegram.org/bots/api#sendaudio
func (api *API) SendAudio(params *SendAudioParams) (*Message, error) {
msg := &Message{}
migrateToChatID, err := api.makeAPICall("sendAudio", params, []InputFile{params.Audio, params.Thumb}, msg)
if err != nil {
if migrateToChatID != 0 {
params.ChatID = migrateToChatID
_, err = api.makeAPICall("sendAudio", params, []InputFile{params.Audio, params.Thumb}, msg)
if err != nil {
return nil, fmt.Errorf("SendAudio: %w", err)
}
} else {
return nil, fmt.Errorf("SendAudio: %w", err)
}
}
return msg, nil
}
type SendDocumentParams struct {
// Unique identifier for the target chat or username of the target channel
// (in the format @channelusername)
ChatID ChatIDOrUsername `json:"chat_id"`
// File to send. Pass a file_id as String to send a file that exists on the
// Telegram servers (recommended), pass an HTTP URL as a String for Telegram
// to get a file from the Internet, or upload a new one using
// multipart/form-data. More info on Sending Files » //
// https://core.telegram.org/bots/api#sending-files
Document InputFile `json:"document"`
// Optional. Thumbnail of the file sent; can be ignored if thumbnail
// generation for the file is supported server-side. The thumbnail should be
// in JPEG format and less than 200 kB in size. A thumbnail's width and
// height should not exceed 320. Ignored if the file is not uploaded using
// multipart/form-data. Thumbnails can't be reused and can be only uploaded
// as a new file, so you can pass "attach://<file_attach_name>" if the
// thumbnail was uploaded using multipart/form-data under
// <file_attach_name>. More info on Sending Files »
// https://core.telegram.org/bots/api#sending-files
Thumb InputFile `json:"thumb,omitempty"`
// Optional. Document caption (may also be used when resending documents by
// file_id), 0-1024 characters after entities parsing
Caption string `json:"caption,omitempty"`
// Optional. Mode for parsing entities in the new caption. See formatting
// options for more details.
// https://core.telegram.org/bots/api#formatting-options
ParseMode ParseMode `json:"parse_mode,omitempty"`
// Optional. A JSON-serialized list of special entities that appear in the
// new caption, which can be specified instead of parse_mode
CaptionEntities []*MessageEntity `json:"caption_entities,omitempty"`
// Disables automatic server-side content type detection for files uploaded
// using multipart/form-data
DisableContentTypeDetection bool `json:"disable_content_type_detection,omitempty"`
// Optional. Sends the message silently. Users will receive a notification
// with no sound. https://telegram.org/blog/channels-2-0#silent-messages
DisableNotification bool `json:"disable_notification,omitempty"`
// Optional. Protects the contents of the sent message from forwarding and
// saving
ProtectContent bool `json:"protect_content,omitempty"`
// Optional. If the message is a reply, ID of the original message
ReplyToMessageID bool `json:"reply_to_message_id,omitempty"`
// Optional. Pass True, if the message should be sent even if the specified
// replied-to message is not found
AllowSendingWithoutReply bool `json:"allow_sending_without_reply,omitempty"`
// Optional. Additional interface options. A JSON-serialized object for an
// inline keyboard, custom reply keyboard, instructions to remove reply
// keyboard or to force a reply from the user.
// https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating
// https://core.telegram.org/bots#keyboards
ReplyMarkup ReplyMarkup `json:"reply_markup,omitempty"`
}
// Use this method to send general files. On success, the sent Message is
// returned. Bots can currently send files of any type of up to 50 MB in size,
// this limit may be changed in the future.
// https://core.telegram.org/bots/api#message
//
// https://core.telegram.org/bots/api#senddocument
func (api *API) SendDocument(params *SendDocumentParams) (*Message, error) {
msg := &Message{}
migrateToChatID, err := api.makeAPICall("sendDocument", params, []InputFile{params.Document, params.Thumb}, msg)
if err != nil {
if migrateToChatID != 0 {
params.ChatID = migrateToChatID
_, err = api.makeAPICall("sendDocument", params, []InputFile{params.Document, params.Thumb}, msg)
if err != nil {
return nil, fmt.Errorf("SendDocument: %w", err)
}
} else {
return nil, fmt.Errorf("SendDocument: %w", err)
}
}
return msg, nil
}
type SendVideoParams struct {
// Unique identifier for the target chat or username of the target channel
// (in the format @channelusername)
ChatID ChatIDOrUsername `json:"chat_id"`
// Video to send. Pass a file_id as String to send a video that exists on
// the Telegram servers (recommended), pass an HTTP URL as a String for
// Telegram to get a video from the Internet, or upload a new video using
// multipart/form-data. More info on Sending Files »
// https://core.telegram.org/bots/api#sending-files
Video InputFile `json:"video"`
//Optional. Duration of sent video in seconds
Duration int `json:"duration,omitempty"`
// Optional. Video width
Width int `json:"width,omitempty"`
// Optional. Video height
Height int `json:"height,omitempty"`
// Optional. Thumbnail of the file sent; can be ignored if thumbnail
// generation for the file is supported server-side. The thumbnail should be
// in JPEG format and less than 200 kB in size. A thumbnail's width and
// height should not exceed 320. Ignored if the file is not uploaded using
// multipart/form-data. Thumbnails can't be reused and can be only uploaded
// as a new file, so you can pass "attach://<file_attach_name>" if the
// thumbnail was uploaded using multipart/form-data under
// <file_attach_name>. More info on Sending Files »
// https://core.telegram.org/bots/api#sending-files
Thumb InputFile `json:"thumb,omitempty"`
// Optional. Video caption (may also be used when resending videos by
// file_id), 0-1024 characters after entities parsing
Caption string `json:"caption,omitempty"`
// Optional. Mode for parsing entities in the new caption. See formatting
// options for more details.
// https://core.telegram.org/bots/api#formatting-options
ParseMode ParseMode `json:"parse_mode,omitempty"`
// Optional. A JSON-serialized list of special entities that appear in the
// new caption, which can be specified instead of parse_mode
CaptionEntities []*MessageEntity `json:"caption_entities,omitempty"`
// Disables automatic server-side content type detection for files uploaded
// using multipart/form-data
DisableContentTypeDetection bool `json:"disable_content_type_detection,omitempty"`
// Optional. Sends the message silently. Users will receive a notification
// with no sound. https://telegram.org/blog/channels-2-0#silent-messages
DisableNotification bool `json:"disable_notification,omitempty"`
// Optional. Protects the contents of the sent message from forwarding and
// saving
ProtectContent bool `json:"protect_content,omitempty"`
// Optional. If the message is a reply, ID of the original message
ReplyToMessageID bool `json:"reply_to_message_id,omitempty"`
// Optional. Pass True, if the message should be sent even if the specified
// replied-to message is not found
AllowSendingWithoutReply bool `json:"allow_sending_without_reply,omitempty"`
// Optional. Additional interface options. A JSON-serialized object for an
// inline keyboard, custom reply keyboard, instructions to remove reply
// keyboard or to force a reply from the user.
// https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating
// https://core.telegram.org/bots#keyboards
ReplyMarkup ReplyMarkup `json:"reply_markup,omitempty"`
}
// Use this method to send video files, Telegram clients support mp4 videos
// (other formats may be sent as Document). On success, the sent Message is
// returned. Bots can currently send video files of up to 50 MB in size, this
// limit may be changed in the future.
// https://core.telegram.org/bots/api#document
// https://core.telegram.org/bots/api#message
//
// https://core.telegram.org/bots/api#sendvideo
func (api *API) SendVideo(params *SendVideoParams) (*Message, error) {
msg := &Message{}
migrateToChatID, err := api.makeAPICall("sendVideo", params, []InputFile{params.Video, params.Thumb}, msg)
if err != nil {
if migrateToChatID != 0 {
params.ChatID = migrateToChatID
_, err = api.makeAPICall("sendVideo", params, []InputFile{params.Video, params.Thumb}, msg)
if err != nil {
return nil, fmt.Errorf("SendVideo: %w", err)
}
} else {
return nil, fmt.Errorf("SendVideo: %w", err)
}
}
return msg, nil
}
type SendAnimationParams struct {
// Unique identifier for the target chat or username of the target channel
// (in the format @channelusername)
ChatID ChatIDOrUsername `json:"chat_id"`
// Animation to send. Pass a file_id as String to send an animation that
// exists on the Telegram servers (recommended), pass an HTTP URL as a
// String for Telegram to get an animation from the Internet, or upload a
// new animation using multipart/form-data. More info on Sending Files »
// https://core.telegram.org/bots/api#sending-files
Animation InputFile `json:"animation"`
//Optional. Duration of sent animation in seconds
Duration int `json:"duration,omitempty"`
// Optional. Animation width
Width int `json:"width,omitempty"`
// Optional. Animation height
Height int `json:"height,omitempty"`
// Thumbnail of the file sent; can be ignored if thumbnail generation for
// the file is supported server-side. The thumbnail should be in JPEG format
// and less than 200 kB in size. A thumbnail's width and height should not
// exceed 320. Ignored if the file is not uploaded using
// multipart/form-data. Thumbnails can't be reused and can be only uploaded
// as a new file, so you can pass “attach://<file_attach_name>” if the
// thumbnail was uploaded using multipart/form-data under
// <file_attach_name>. More info on Sending Files »
// https://core.telegram.org/bots/api#sending-files
Thumb InputFile `json:"thumb,omitempty"`
// Optional. Animation caption (may also be used when resending animation by
// file_id), 0-1024 characters after entities parsing
Caption string `json:"caption,omitempty"`
// Optional. Mode for parsing entities in the new caption. See formatting
// options for more details.
// https://core.telegram.org/bots/api#formatting-options
ParseMode ParseMode `json:"parse_mode,omitempty"`
// Optional. A JSON-serialized list of special entities that appear in the
// new caption, which can be specified instead of parse_mode
CaptionEntities []*MessageEntity `json:"caption_entities,omitempty"`
// Disables automatic server-side content type detection for files uploaded
// using multipart/form-data
DisableContentTypeDetection bool `json:"disable_content_type_detection,omitempty"`
// Optional. Sends the message silently. Users will receive a notification
// with no sound. https://telegram.org/blog/channels-2-0#silent-messages
DisableNotification bool `json:"disable_notification,omitempty"`
// Optional. Protects the contents of the sent message from forwarding and
// saving
ProtectContent bool `json:"protect_content,omitempty"`
// Optional. If the message is a reply, ID of the original message
ReplyToMessageID bool `json:"reply_to_message_id,omitempty"`
// Optional. Pass True, if the message should be sent even if the specified
// replied-to message is not found
AllowSendingWithoutReply bool `json:"allow_sending_without_reply,omitempty"`
// Optional. Additional interface options. A JSON-serialized object for an
// inline keyboard, custom reply keyboard, instructions to remove reply
// keyboard or to force a reply from the user.
// https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating
// https://core.telegram.org/bots#keyboards
ReplyMarkup ReplyMarkup `json:"reply_markup,omitempty"`
}
// Use this method to send animation files (GIF or H.264/MPEG-4 AVC video
// without sound). On success, the sent Message is returned. Bots can currently
// send animation files of up to 50 MB in size, this limit may be changed in the
// future. https://core.telegram.org/bots/api#message
//
// https://core.telegram.org/bots/api#sendanimation
func (api *API) SendAnimation(params *SendAnimationParams) (*Message, error) {
msg := &Message{}
migrateToChatID, err := api.makeAPICall("sendAnimation", params, []InputFile{params.Animation, params.Thumb}, msg)
if err != nil {
if migrateToChatID != 0 {
params.ChatID = migrateToChatID
_, err = api.makeAPICall("sendAnimation", params, []InputFile{params.Animation, params.Thumb}, msg)
if err != nil {
return nil, fmt.Errorf("SendAnimation: %w", err)
}
} else {
return nil, fmt.Errorf("SendAnimation: %w", err)
}
}
return msg, nil
}
type SendVoiceParams struct {
// Unique identifier for the target chat or username of the target channel
// (in the format @channelusername)
ChatID ChatIDOrUsername `json:"chat_id"`
// Audio file to send. Pass a file_id as String to send a file that exists
// on the Telegram servers (recommended), pass an HTTP URL as a String for
// Telegram to get a file from the Internet, or upload a new one using
// multipart/form-data. More info on Sending Files »
// https://core.telegram.org/bots/api#sending-files
Voice InputFile `json:"voice"`
// Optional. Voice message caption, 0-1024 characters after entities parsing
Caption string `json:"caption,omitempty"`
// Optional. Mode for parsing entities in the new caption. See formatting
// options for more details.
// https://core.telegram.org/bots/api#formatting-options
ParseMode ParseMode `json:"parse_mode,omitempty"`
// Optional. Duration of the voice message in seconds
Duration int `json:"duration,omitempty"`
// Optional. A JSON-serialized list of special entities that appear in the
// new caption, which can be specified instead of parse_mode
CaptionEntities []*MessageEntity `json:"caption_entities,omitempty"`
// Disables automatic server-side content type detection for files uploaded
// using multipart/form-data
DisableContentTypeDetection bool `json:"disable_content_type_detection,omitempty"`
// Optional. Sends the message silently. Users will receive a notification
// with no sound. https://telegram.org/blog/channels-2-0#silent-messages
DisableNotification bool `json:"disable_notification,omitempty"`
// Optional. Protects the contents of the sent message from forwarding and
// saving
ProtectContent bool `json:"protect_content,omitempty"`
// Optional. If the message is a reply, ID of the original message
ReplyToMessageID bool `json:"reply_to_message_id,omitempty"`
// Optional. Pass True, if the message should be sent even if the specified
// replied-to message is not found
AllowSendingWithoutReply bool `json:"allow_sending_without_reply,omitempty"`
// Optional. Additional interface options. A JSON-serialized object for an
// inline keyboard, custom reply keyboard, instructions to remove reply
// keyboard or to force a reply from the user.
// https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating
// https://core.telegram.org/bots#keyboards
ReplyMarkup ReplyMarkup `json:"reply_markup,omitempty"`
}
// Use this method to send audio files, if you want Telegram clients to display
// the file as a playable voice message. For this to work, your audio must be in
// an .OGG file encoded with OPUS (other formats may be sent as Audio or
// Document). On success, the sent Message is returned. Bots can currently send
// voice messages of up to 50 MB in size, this limit may be changed in the
// future. https://core.telegram.org/bots/api#audio
// https://core.telegram.org/bots/api#document
// https://core.telegram.org/bots/api#message
//
// https://core.telegram.org/bots/api#sendvoice
func (api *API) SendVoice(params *SendVoiceParams) (*Message, error) {
msg := &Message{}
migrateToChatID, err := api.makeAPICall("sendVoice", params, []InputFile{params.Voice}, msg)
if err != nil {
if migrateToChatID != 0 {
params.ChatID = migrateToChatID
_, err = api.makeAPICall("sendVoice", params, []InputFile{params.Voice}, msg)
if err != nil {
return nil, fmt.Errorf("SendVoice: %w", err)
}
} else {
return nil, fmt.Errorf("SendVoice: %w", err)
}
}
return msg, nil
}
type SendVideoNoteParams struct {
// Unique identifier for the target chat or username of the target channel
// (in the format @channelusername)
ChatID ChatIDOrUsername `json:"chat_id"`
// Video note to send. Pass a file_id as String to send a video note that
// exists on the Telegram servers (recommended) or upload a new video using
// multipart/form-data. More info on Sending Files ». Sending video notes by
// a URL is currently unsupported
// https://core.telegram.org/bots/api#sending-files
VideoNote InputFile `json:"video_note"`
// Optional. Duration of sent video in seconds
Duration int `json:"duration,omitempty"`
// Optional. Video width and height, i.e. diameter of the video message
Length int `json:"length,omitempty"`
// Thumbnail of the file sent; can be ignored if thumbnail generation for
// the file is supported server-side. The thumbnail should be in JPEG format
// and less than 200 kB in size. A thumbnail's width and height should not
// exceed 320. Ignored if the file is not uploaded using
// multipart/form-data. Thumbnails can't be reused and can be only uploaded
// as a new file, so you can pass “attach://<file_attach_name>” if the
// thumbnail was uploaded using multipart/form-data under
// <file_attach_name>. More info on Sending Files »
// https://core.telegram.org/bots/api#sending-files
Thumb InputFile `json:"thumb,omitempty"`
// Optional. Animation caption (may also be used when resending animation by
// file_id), 0-1024 characters after entities parsing
Caption string `json:"caption,omitempty"`
// Optional. Mode for parsing entities in the new caption. See formatting
// options for more details.
// https://core.telegram.org/bots/api#formatting-options
ParseMode ParseMode `json:"parse_mode,omitempty"`
// Optional. A JSON-serialized list of special entities that appear in the
// new caption, which can be specified instead of parse_mode
CaptionEntities []*MessageEntity `json:"caption_entities,omitempty"`
// Disables automatic server-side content type detection for files uploaded
// using multipart/form-data
DisableContentTypeDetection bool `json:"disable_content_type_detection,omitempty"`
// Optional. Sends the message silently. Users will receive a notification
// with no sound. https://telegram.org/blog/channels-2-0#silent-messages
DisableNotification bool `json:"disable_notification,omitempty"`
// Optional. Protects the contents of the sent message from forwarding and
// saving
ProtectContent bool `json:"protect_content,omitempty"`
// Optional. If the message is a reply, ID of the original message
ReplyToMessageID bool `json:"reply_to_message_id,omitempty"`
// Optional. Pass True, if the message should be sent even if the specified
// replied-to message is not found
AllowSendingWithoutReply bool `json:"allow_sending_without_reply,omitempty"`
// Optional. Additional interface options. A JSON-serialized object for an
// inline keyboard, custom reply keyboard, instructions to remove reply
// keyboard or to force a reply from the user.
// https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating
// https://core.telegram.org/bots#keyboards
ReplyMarkup ReplyMarkup `json:"reply_markup,omitempty"`
}
// As of v.4.0, Telegram clients support rounded square mp4 videos of up to 1
// minute long. Use this method to send video messages. On success, the sent
// Message is returned. https://telegram.org/blog/video-messages-and-telescope
// https://core.telegram.org/bots/api#message
//
// https://core.telegram.org/bots/api#sendvideonote
func (api *API) SendVideoNote(params *SendVideoNoteParams) (*Message, error) {
msg := &Message{}
migrateToChatID, err := api.makeAPICall("sendVideoNote", params, []InputFile{params.VideoNote, params.Thumb}, msg)
if err != nil {
if migrateToChatID != 0 {
params.ChatID = migrateToChatID
_, err = api.makeAPICall("sendVideoNote", params, []InputFile{params.VideoNote, params.Thumb}, msg)
if err != nil {
return nil, fmt.Errorf("SendVideoNote: %w", err)
}
} else {
return nil, fmt.Errorf("SendVideoNote: %w", err)
}
}
return msg, nil
}
type SendMediaGroupParams struct {
// Unique identifier for the target chat or username of the target channel
// (in the format @channelusername)
ChatID ChatIDOrUsername `json:"chat_id"`
// A JSON-serialized array describing messages to be sent, must include 2-10
// items
Media []*InputMedia `json:"media"`
// Optional. Sends messages silently. Users will receive a notification with
// no sound. https://telegram.org/blog/channels-2-0#silent-messages
DisableNotification bool `json:"disable_notification,omitempty"`
// Optional. Protects the contents of the sent message from forwarding and
// saving
ProtectContent bool `json:"protect_content,omitempty"`
// Optional. If the message is a reply, ID of the original message
ReplyToMessageID bool `json:"reply_to_message_id,omitempty"`
// Optional. Pass True, if the message should be sent even if the specified
// replied-to message is not found
AllowSendingWithoutReply bool `json:"allow_sending_without_reply,omitempty"`
}
// Use this method to send a group of photos, videos, documents or audios as an
// album. Documents and audio files can be only grouped in an album with
// messages of the same type. On success, an array of Messages that were sent is
// returned. https://core.telegram.org/bots/api#message
//
// https://core.telegram.org/bots/api#sendmediagroup
func (api *API) SendMediaGroup(params *SendMediaGroupParams) ([]*Message, error) {
inputFiles := []InputFile{}
for _, inputMedia := range params.Media {
inputFiles = append(inputFiles, inputMedia.Media, inputMedia.Thumb)
}
msgs := []*Message{}
migrateToChatID, err := api.makeAPICall("sendMediaGroup", params, inputFiles, &msgs)
if err != nil {
if migrateToChatID != 0 {
params.ChatID = migrateToChatID
_, err = api.makeAPICall("sendMediaGroup", params, inputFiles, &msgs)
if err != nil {
return nil, fmt.Errorf("SendMediaGroup: %w", err)
}
} else {
return nil, fmt.Errorf("SendMediaGroup: %w", err)
}
}
return msgs, nil
}
type SendLocationParams struct {
// Unique identifier for the target chat or username of the target channel
// (in the format @channelusername)
ChatID ChatIDOrUsername `json:"chat_id"`
// Latitude of the location
Latitude float64 `json:"latitude"`
// Longitude of the location
Longitude float64 `json:"longitude"`
// Optional. The radius of uncertainty for the location, measured in meters;
// 0-1500
HorizontalAccuracy float64 `json:"horizontal_accuracy,omitempty"`
// Optional. Period in seconds for which the location will be updated (see
// Live Locations, should be between 60 and 86400.
// https://telegram.org/blog/live-locations
LivePeriod int `json:"live_period,omitempty"`
// Optional. For live locations, a direction in which the user is moving, in
// degrees. Must be between 1 and 360 if specified.
Heading int `json:"heading,omitempty"`
// Optional. For live locations, a maximum distance for proximity alerts
// about approaching another chat member, in meters. Must be between 1 and
// 100000 if specified.
ProximityAlertRadius int `json:"proximity_alert_radius,omitempty"`
// Optional. Sends the message silently. Users will receive a notification
// with no sound. https://telegram.org/blog/channels-2-0#silent-messages
DisableNotification bool `json:"disable_notification,omitempty"`
// Optional. Protects the contents of the sent message from forwarding and
// saving
ProtectContent bool `json:"protect_content,omitempty"`
// Optional. If the message is a reply, ID of the original message
ReplyToMessageID bool `json:"reply_to_message_id,omitempty"`
// Optional. Pass True, if the message should be sent even if the specified
// replied-to message is not found
AllowSendingWithoutReply bool `json:"allow_sending_without_reply,omitempty"`
// Optional. Additional interface options. A JSON-serialized object for an
// inline keyboard, custom reply keyboard, instructions to remove reply
// keyboard or to force a reply from the user.
// https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating
// https://core.telegram.org/bots#keyboards
ReplyMarkup ReplyMarkup `json:"reply_markup,omitempty"`
}
// Use this method to send point on the map. On success, the sent Message is
// returned. https://core.telegram.org/bots/api#message
//
// https://core.telegram.org/bots/api#sendlocation
func (api *API) SendLocation(params *SendLocationParams) (*Message, error) {
msg := &Message{}
migrateToChatID, err := api.makeAPICall("sendLocation", params, nil, msg)
if err != nil {
if migrateToChatID != 0 {
params.ChatID = migrateToChatID
_, err = api.makeAPICall("sendLocation", params, nil, msg)
if err != nil {
return nil, fmt.Errorf("SendLocation: %w", err)
}
} else {
return nil, fmt.Errorf("SendLocation: %w", err)
}
}
return msg, nil
}
type EditMessageLiveLocationParams struct {
// Optional. Required if inline_message_id is not specified. Unique
// identifier for the target chat or username of the target channel (in the
// format @channelusername)
ChatID ChatIDOrUsername `json:"chat_id,omitempty"`
// Optional. Required if inline_message_id is not specified. Identifier of
// the message to edit
MessageID MessageID `json:"message_id,omitempty"`
// Optional. Required if chat_id and message_id are not specified.
// Identifier of the inline message
InlineMessageID InlineMessageID `json:"inline_message_id,omitempty"`
// Latitude of new location
Latitude float64 `json:"latitude"`
// Longitude of new location
Longitude float64 `json:"longitude"`
// Optional. The radius of uncertainty for the location, measured in meters;
// 0-1500
HorizontalAccuracy float64 `json:"horizontal_accuracy,omitempty"`
// Optional. Direction in which the user is moving, in degrees. Must be
// between 1 and 360 if specified.
Heading int `json:"heading,omitempty"`
// Optional. Maximum distance for proximity alerts about approaching another
// chat member, in meters. Must be between 1 and 100000 if specified.
ProximityAlertRadius int `json:"proximity_alert_radius,omitempty"`
// Optional. A JSON-serialized object for a new inline keyboard.
// https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating
ReplyMarkup *InlineKeyboardMarkup `json:"reply_markup,omitempty"`
}
// Use this method to edit live location messages. A location can be edited
// until its live_period expires or editing is explicitly disabled by a call to
// stopMessageLiveLocation. On success, if the edited message is not an inline
// message, the edited Message is returned, otherwise True is returned.
// https://core.telegram.org/bots/api#stopmessagelivelocation
// https://core.telegram.org/bots/api#message
//
// https://core.telegram.org/bots/api#editmessagelivelocation
func (api *API) EditMessageLiveLocation(params *EditMessageLiveLocationParams) (*Message, error) {
var msg *Message
if params.InlineMessageID != "" {
msg = &Message{}
}
migrateToChatID, err := api.makeAPICall("editMessageLiveLocation", params, nil, msg)
if err != nil {
if migrateToChatID != 0 {
params.ChatID = migrateToChatID
_, err = api.makeAPICall("editMessageLiveLocation", params, nil, msg)
if err != nil {
return nil, fmt.Errorf("EditMessageLiveLocation: %w", err)
}
} else {
return nil, fmt.Errorf("EditMessageLiveLocation: %w", err)
}
}
return msg, nil
}
type StopMessageLiveLocationParams struct {
// Optional. Required if inline_message_id is not specified. Unique
// identifier for the target chat or username of the target channel (in the
// format @channelusername)
ChatID ChatIDOrUsername `json:"chat_id,omitempty"`
// Optional. Required if inline_message_id is not specified. Identifier of
// the message with live location to stop
MessageID MessageID `json:"message_id,omitempty"`
// Optional. Required if chat_id and message_id are not specified.
// Identifier of the inline message
InlineMessageID InlineMessageID `json:"inline_message_id,omitempty"`
// Optional. A JSON-serialized object for a new inline keyboard.
// https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating
ReplyMarkup *InlineKeyboardMarkup `json:"reply_markup,omitempty"`
}
// Use this method to stop updating a live location message before live_period
// expires. On success, if the message is not an inline message, the edited
// Message is returned, otherwise True is returned.
// https://core.telegram.org/bots/api#message
//
// https://core.telegram.org/bots/api#stopmessagelivelocation
func (api *API) StopMessageLiveLocation(params *StopMessageLiveLocationParams) (*Message, error) {
var msg *Message
if params.InlineMessageID != "" {
msg = &Message{}
}
migrateToChatID, err := api.makeAPICall("stopMessageLiveLocation", params, nil, msg)
if err != nil {
if migrateToChatID != 0 {
params.ChatID = migrateToChatID
_, err = api.makeAPICall("stopMessageLiveLocation", params, nil, msg)
if err != nil {
return nil, fmt.Errorf("StopMessageLiveLocation: %w", err)
}
} else {
return nil, fmt.Errorf("StopMessageLiveLocation: %w", err)
}
}
return msg, nil
}
type SendVenueParams struct {
// Unique identifier for the target chat or username of the target channel
// (in the format @channelusername)
ChatID ChatIDOrUsername `json:"chat_id"`
// Latitude of the venue
Latitude float64 `json:"latitude"`
// Longitude of the venue
Longitude float64 `json:"longitude"`
// Name of the venue
Title string `json:"title"`
// Address of the venue
Address string `json:"address"`
// Optional. Foursquare identifier of the venue
FoursquareID string `json:"foursquare_id,omitempty"`
// Optional. Foursquare type of the venue, if known. (For example,
// “arts_entertainment/default”, “arts_entertainment/aquarium” or
// “food/icecream”.)
FoursquareType string `json:"foursquare_type,omitempty"`