-
Notifications
You must be signed in to change notification settings - Fork 22
/
Telegram.php
executable file
·3113 lines (2913 loc) · 117 KB
/
Telegram.php
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
<?php
if (file_exists('TelegramErrorLogger.php')) {
require_once 'TelegramErrorLogger.php';
}
/**
* Telegram Bot Class.
*
* @author Gabriele Grillo <[email protected]>
*/
class Telegram
{
/**
* Constant for type Inline Query.
*/
const INLINE_QUERY = 'inline_query';
/**
* Constant for type Callback Query.
*/
const CALLBACK_QUERY = 'callback_query';
/**
* Constant for type Edited Message.
*/
const EDITED_MESSAGE = 'edited_message';
/**
* Constant for type Reply.
*/
const REPLY = 'reply';
/**
* Constant for type Message.
*/
const MESSAGE = 'message';
/**
* Constant for type Photo.
*/
const PHOTO = 'photo';
/**
* Constant for type Video.
*/
const VIDEO = 'video';
/**
* Constant for type Audio.
*/
const AUDIO = 'audio';
/**
* Constant for type Voice.
*/
const VOICE = 'voice';
/**
* Constant for type Document.
*/
const DOCUMENT = 'document';
/**
* Constant for type Location.
*/
const LOCATION = 'location';
/**
* Constant for type Contact.
*/
const CONTACT = 'contact';
/**
* Constant for type Channel Post.
*/
const CHANNEL_POST = 'channel_post';
private $bot_token = '';
private $data = [];
private $updates = [];
private $log_errors;
private $proxy;
/// Class constructor
/**
* Create a Telegram instance from the bot token
* \param $bot_token the bot token
* \param $log_errors enable or disable the logging
* \param $proxy array with the proxy configuration (url, port, type, auth)
* \return an instance of the class.
*/
public function __construct($bot_token, $log_errors = true, array $proxy=array())
{
$this->bot_token = $bot_token;
$this->data = $this->getData();
$this->log_errors = $log_errors;
$this->proxy = $proxy;
}
/// Do requests to Telegram Bot API
/**
* Contacts the various API's endpoints
* \param $api the API endpoint
* \param $content the request parameters as array
* \param $post boolean tells if $content needs to be sends
* \return the JSON Telegram's reply.
*/
public function endpoint($api, array $content, $post = true)
{
$url = 'https://api.telegram.org/bot'.$this->bot_token.'/'.$api;
if ($post) {
$reply = $this->sendAPIRequest($url, $content);
} else {
$reply = $this->sendAPIRequest($url, [], false);
}
return json_decode($reply, true);
}
/// A method for testing your bot.
/**
* A simple method for testing your bot's auth token. Requires no parameters.
* Returns basic information about the bot in form of a User object.
* \return the JSON Telegram's reply.
*/
public function getMe()
{
return $this->endpoint('getMe', [], false);
}
/// A method for responding http to Telegram.
/**
* \return the HTTP 200 to Telegram.
*/
public function respondSuccess()
{
http_response_code(200);
return json_encode(['status' => 'success']);
}
/// Send a message
/**
* Use this method to send text messages.<br/>Values inside $content:<br/>
* <table>
* <tr>
* <td><strong>Parameters</strong></td>
* <td><strong>Type</strong></td>
* <td><strong>Required</strong></td>
* <td><strong>Description</strong></td>
* </tr>
* <tr>
* <td>chat_id</td>
* <td>Integer</td>
* <td>Yes</td>
* <td>Unique identifier for the target chat or username of the target channel (in the format \c \@channelusername)</td>
* * </tr>
* <tr>
* <td>text</td>
* <td>String</td>
* <td>Yes</td>
* <td>Text of the message to be sent</td>
* </tr>
* <tr>
* <td>parse_mode</td>
* <td>String</td>
* <td>Optional</td>
* <td>Send <em>Markdown</em>, if you want Telegram apps to show bold, italic and inline URLs in your bot's message. For the moment, only Telegram for Android supports this.</td>
* </tr>
* <tr>
* <td>disable_web_page_preview</td>
* <td>Boolean</td>
* <td>Optional</td>
* <td>Disables link previews for links in this message</td>
* </tr>
* <tr>
* <td>reply_to_message_id</td>
* <td>Integer</td>
* <td>Optional</td>
* <td>If the message is a reply, ID of the original message</td>
* </tr>
* <tr>
* <td>reply_markup</td>
* <td>InlineKeyboardMarkup or ReplyKeyboardMarkup or ReplyKeyboardHide or ForceReply</td>
* <td>Optional</td>
* <td>Additional interface options. A JSON-serialized object for a custom reply keyboard, instructions to hide keyboard or to force a reply from the user.</td>
* </tr>
* </table>
* \param $content the request parameters as array
* \return the JSON Telegram's reply.
*/
public function sendMessage(array $content)
{
return $this->endpoint('sendMessage', $content);
}
/// Forward a message
/**
* Use this method to forward messages of any kind. On success, the sent Message is returned<br/>Values inside $content:<br/>
* <table>
* <tr>
* <td><strong>Parameters</strong></td>
* <td><strong>Type</strong></td>
* <td><strong>Required</strong></td>
* <td><strong>Description</strong></td>
* </tr>
* <tr>
* <td>chat_id</td>
* <td>Integer</td>
* <td>Yes</td>
* <td>Unique identifier for the target chat or username of the target channel (in the format \c \@channelusername)</td>
* </tr>
* <tr>
* <td>from_chat_id</td>
* <td>Integer</td>
* <td>Yes</td>
* <td>Unique identifier for the target chat or username of the target channel (in the format \c \@channelusername)</td>
* </tr>
* <tr>
* <td>disable_notification</td>
* <td>Boolean</td>
* <td>Optional</td>
* <td>Sends the message silently. Users will receive a notification with no sound.</td>
* </tr>
* <tr>
* <td>message_id</td>
* <td>Integer</td>
* <td>Yes</td>
* <td>Unique message identifier</td>
* </tr>
* </table>
* \param $content the request parameters as array
* \return the JSON Telegram's reply.
*/
public function forwardMessage(array $content)
{
return $this->endpoint('forwardMessage', $content);
}
/// Send a photo
/**
* Use this method to send photos. On success, the sent Message is returned.<br/>Values inside $content:<br/>
* <table>
* <tr>
* <td><strong>Parameters</strong></td>
* <td><strong>Type</strong></td>
* <td><strong>Required</strong></td>
* <td><strong>Description</strong></td>
* </tr>
* <tr>
* <td>chat_id</td>
* <td>Integer</td>
* <td>Yes</td>
* <td>Unique identifier for the target chat or username of the target channel (in the format \c \@channelusername)</td>
* </tr>
* <tr>
* <td>photo</td>
* <td><a href="https://core.telegram.org/bots/api#inputfile">InputFile</a> or String</td>
* <td>Yes</td>
* <td>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.</td>
* </tr>
* <tr>
* <td>caption</td>
* <td>String</td>
* <td>Optional</td>
* <td>Photo caption (may also be used when resending photos by <em>file_id</em>).</td>
* </tr>
* <tr>
* <td>reply_to_message_id</td>
* <td>Integer</td>
* <td>Optional</td>
* <td>If the message is a reply, ID of the original message</td>
* </tr>
* <tr>
* <td>disable_notification</td>
* <td>Boolean</td>
* <td>Optional</td>
* <td>Sends the message silently. Users will receive a notification with no sound.</td>
* </tr>
* <tr>
* <td>reply_markup</td>
* <td>InlineKeyboardMarkup or ReplyKeyboardMarkup or ReplyKeyboardRemove or ForceReply</td>
* <td>Optional</td>
* <td>Additional interface options. A JSON-serialized object for a custom reply keyboard, instructions to hide keyboard or to force a reply from the user.</td>
* </tr>
* </table>
* \param $content the request parameters as array
* \return the JSON Telegram's reply.
*/
public function sendPhoto(array $content)
{
return $this->endpoint('sendPhoto', $content);
}
/// Send an audio
/**
* 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 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.<br/>Values inside $content:<br/>
* <table>
* <tr>
* <td><strong>Parameters</strong></td>
* <td><strong>Type</strong></td>
* <td><strong>Required</strong></td>
* <td><strong>Description</strong></td>
* </tr>
* <tr>
* <td>chat_id</td>
* <td>Integer</td>
* <td>Yes</td>
* <td>Unique identifier for the target chat or username of the target channel (in the format \c \@channelusername)</td>
* </tr>
* <tr>
* <td>audio</td>
* <td><a href="https://core.telegram.org/bots/api#inputfile">InputFile</a> or String</td>
* <td>Yes</td>
* <td>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 <strong>multipart/form-data</strong>.</td>
* </tr>
* <tr>
* <td>duration</td>
* <td>Integer</td>
* <td>Optional</td>
* <td>Duration of the audio in seconds</td>
* </tr>
* <tr>
* <td>performer</td>
* <td>String</td>
* <td>Optional</td>
* <td>Performer</td>
* </tr>
* <tr>
* <td>title</td>
* <td>String</td>
* <td>Optional</td>
* <td>Track name</td>
* </tr>
* <tr>
* <td>disable_notification</td>
* <td>Boolean</td>
* <td>Optional</td>
* <td>Sends the message silently. Users will receive a notification with no sound.</td>
* </tr>
* <tr>
* <td>reply_to_message_id</td>
* <td>Integer</td>
* <td>Optional</td>
* <td>If the message is a reply, ID of the original message</td>
* </tr>
* <tr>
* <td>reply_markup</td>
* <td>InlineKeyboardMarkup or ReplyKeyboardMarkup or ReplyKeyboardRemove or ForceReply</td>
* <td>Optional</td>
* <td>Additional interface options. A JSON-serialized object for a custom reply keyboard, instructions to hide keyboard or to force a reply from the user.</td>
* </tr>
* </table>
* \param $content the request parameters as array
* \return the JSON Telegram's reply.
*/
public function sendAudio(array $content)
{
return $this->endpoint('sendAudio', $content);
}
/// Send a document
/**
* 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.<br/>Values inside $content:<br/>
* <table>
* <tr>
* <td><strong>Parameters</strong></td>
* <td><strong>Type</strong></td>
* <td><strong>Required</strong></td>
* <td><strong>Description</strong></td>
* </tr>
* <tr>
* <td>chat_id</td>
* <td>Integer</td>
* <td>Yes</td>
* <td>Unique identifier for the target chat or username of the target channel (in the format \c \@channelusername)</td>
* </tr>
* <tr>
* <td>document</td>
* <td>InputFile or String</td>
* <td>Yes</td>
* <td>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 <strong>multipart/form-data</strong>.</td>
* </tr>
* <tr>
* <td>caption</td>
* <td>String</td>
* <td>Optional</td>
* <td>Document caption (may also be used when resending documents by file_id), 0-200 characters.</td>
* </tr>
* <tr>
* <td>disable_notification</td>
* <td>Boolean</td>
* <td>Optional</td>
* <td>Sends the message silently. Users will receive a notification with no sound.</td>
* </tr>
* <tr>
* <td>reply_to_message_id</td>
* <td>Integer</td>
* <td>Optional</td>
* <td>If the message is a reply, ID of the original message</td>
* </tr>
* <tr>
* <td>reply_markup</td>
* <td>InlineKeyboardMarkup or ReplyKeyboardMarkup or ReplyKeyboardRemove or ForceReply</td>
* <td>Optional</td>
* <td>Additional interface options. A JSON-serialized object for a custom reply keyboard, instructions to hide keyboard or to force a reply from the user.</td>
* </tr>
* </table>
* \param $content the request parameters as array
* \return the JSON Telegram's reply.
*/
public function sendDocument(array $content)
{
return $this->endpoint('sendDocument', $content);
}
/// Send a sticker
/**
* Use this method to send .webp stickers. On success, the sent Message is returned.<br/>Values inside $content:<br/>
* <table>
* <tr>
* <td><strong>Parameters</strong></td>
* <td><strong>Type</strong></td>
* <td><strong>Required</strong></td>
* <td><strong>Description</strong></td>
* </tr>
* <tr>
* <td>chat_id</td>
* <td>Integer</td>
* <td>Yes</td>
* <td>Unique identifier for the message recipient — User or GroupChat id</td>
* </tr>
* <tr>
* <td>sticker</td>
* <td><a href="https://core.telegram.org/bots/api#inputfile">InputFile</a> or String</td>
* <td>Yes</td>
* <td>Sticker to send. You can either pass a <em>file_id</em> as String to resend a sticker that is already on the Telegram servers, or upload a new sticker using <strong>multipart/form-data</strong>.</td>
* </tr>
* <tr>
* <td>reply_to_message_id</td>
* <td>Integer</td>
* <td>Optional</td>
* <td>If the message is a reply, ID of the original message</td>
* </tr>
* <tr>
* <td>reply_markup</td>
* <td>ReplyKeyboardMarkup or ReplyKeyboardHide or ForceReply</td>
* <td>Optional</td>
* <td>Additional interface options. A JSON-serialized object for a custom reply keyboard, instructions to hide keyboard or to force a reply from the user.</td>
* </tr>
* </table>
* \param $content the request parameters as array
* \return the JSON Telegram's reply.
*/
public function sendSticker(array $content)
{
return $this->endpoint('sendSticker', $content);
}
/// Send a video
/**
* 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.<br/>Values inside $content:<br/>
* <table>
* <tr>
* <td><strong>Parameters</strong></td>
* <td><strong>Type</strong></td>
* <td><strong>Required</strong></td>
* <td><strong>Description</strong></td>
* </tr>
* <tr>
* <td>chat_id</td>
* <td>Integer</td>
* <td>Yes</td>
* <td>Unique identifier for the message recipient — User or GroupChat id</td>
* </tr>
* <tr>
* <td>video</td>
* <td><a href="https://core.telegram.org/bots/api#inputfile">InputFile</a> or String</td>
* <td>Yes</td>
* <td>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 <strong>multipart/form-data</strong>.</td>
* </tr>
* <tr>
* <td>duration</td>
* <td>Integer</td>
* <td>Optional</td>
* <td>Duration of sent video in seconds</td>
* </tr>
* <tr>
* <td>width</td>
* <td>Integer</td>
* <td>Optional</td>
* <td>Video width</td>
* </tr>
* <tr>
* <td>height</td>
* <td>Integer</td>
* <td>Optional</td>
* <td>Video height</td>
* </tr>
* <tr>
* <td>caption</td>
* <td>String</td>
* <td>Optional</td>
* <td>Video caption (may also be used when resending videos by <em>file_id</em>).</td>
* </tr>
* <tr>
* <td>disable_notification</td>
* <td>Boolean</td>
* <td>Optional</td>
* <td>Sends the message silently. Users will receive a notification with no sound.</td>
* </tr>
* <tr>
* <td>reply_to_message_id</td>
* <td>Integer</td>
* <td>Optional</td>
* <td>If the message is a reply, ID of the original message</td>
* </tr>
* <tr>
* <td>reply_markup</td>
* <td>InlineKeyboardMarkup or ReplyKeyboardMarkup or ReplyKeyboardRemove or ForceReply</td>
* <td>Optional</td>
* <td>Additional interface options. A JSON-serialized object for a custom reply keyboard, instructions to hide keyboard or to force a reply from the user.</td>
* </tr>
* </table>
* \param $content the request parameters as array
* \return the JSON Telegram's reply.
*/
public function sendVideo(array $content)
{
return $this->endpoint('sendVideo', $content);
}
/// Send a voice message
/**
* 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.<br/>Values inside $content:<br/>
* <table>
* <tr>
* <td><strong>Parameters</strong></td>
* <td><strong>Type</strong></td>
* <td><strong>Required</strong></td>
* <td><strong>Description</strong></td>
* </tr>
* <tr>
* <td>chat_id</td>
* <td>Integer</td>
* <td>Yes</td>
* <td>Unique identifier for the target chat or username of the target channel (in the format \c \@channelusername)</td>
* </tr>
* <tr>
* <td>voice</td>
* <td><a href="https://core.telegram.org/bots/api#inputfile">InputFile</a> or String</td>
* <td>Yes</td>
* <td>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 <strong>multipart/form-data</strong>.</td>
* </tr>
* <tr>
* <td>caption</td>
* <td>String</td>
* <td>Optional</td>
* <td>Voice message caption, 0-200 characters</td>
* </tr>
* <tr>
* <td>duration</td>
* <td>Integer</td>
* <td>Optional</td>
* <td>Duration of sent audio in seconds</td>
* </tr>
* <tr>
* <td>disable_notification</td>
* <td>Boolean</td>
* <td>Optional</td>
* <td>Sends the message silently. Users will receive a notification with no sound.</td>
* </tr>
* <tr>
* <td>reply_to_message_id</td>
* <td>Integer</td>
* <td>Optional</td>
* <td>If the message is a reply, ID of the original message</td>
* </tr>
* <tr>
* <td>reply_markup</td>
* <td>InlineKeyboardMarkup or ReplyKeyboardMarkup or ReplyKeyboardRemove or ForceReply</td>
* <td>Optional</td>
* <td>Additional interface options. A JSON-serialized object for a custom reply keyboard, instructions to hide keyboard or to force a reply from the user.</td>
* </tr>
* </table>
* \param $content the request parameters as array
* \return the JSON Telegram's reply.
*/
public function sendVoice(array $content)
{
return $this->endpoint('sendVoice', $content);
}
/// Send a location
/**
* Use this method to send point on the map. On success, the sent Message is returned.<br/>Values inside $content:<br/>
* <table>
* <tr>
* <td><strong>Parameters</strong></td>
* <td><strong>Type</strong></td>
* <td><strong>Required</strong></td>
* <td><strong>Description</strong></td>
* </tr>
* <tr>
* <td>chat_id</td>
* <td>Integer</td>
* <td>Yes</td>
* <td>Unique identifier for the target chat or username of the target channel (in the format \c \@channelusername)</td>
* </tr>
* <tr>
* <td>latitude</td>
* <td>Float number</td>
* <td>Yes</td>
* <td>Latitude of location</td>
* </tr>
* <tr>
* <td>longitude</td>
* <td>Float number</td>
* <td>Yes</td>
* <td>Longitude of location</td>
* </tr>
* <tr>
* <td>live_period</td>
* <td>Integer</td>
* <td>Optional</td>
* <td>Period in seconds for which the location will be updated (see <a href="https://telegram.org/blog/live-locations">Live Locations</a>, should be between 60 and 86400.</td>
* </tr>
* <tr>
* <td>disable_notification</td>
* <td>Boolean</td>
* <td>Optional</td>
* <td>Sends the message silently. Users will receive a notification with no sound.</td>
* </tr>
* <tr>
* <td>reply_to_message_id</td>
* <td>Integer</td>
* <td>Optional</td>
* <td>If the message is a reply, ID of the original message</td>
* </tr>
* <tr>
* <td>reply_markup</td>
* <td>InlineKeyboardMarkup or ReplyKeyboardMarkup or ReplyKeyboardRemove or ForceReply</td>
* <td>Optional</td>
* <td>Additional interface options. A JSON-serialized object for a custom reply keyboard, instructions to hide keyboard or to force a reply from the user.</td>
* </tr>
* </table>
* \param $content the request parameters as array
* \return the JSON Telegram's reply.
*/
public function sendLocation(array $content)
{
return $this->endpoint('sendLocation', $content);
}
/// Edit Message Live Location
/**
* Use this method to edit live location messages sent by the bot or via the bot (for <a href="https://core.telegram.org/bots/api#inline-mode">inline bots</a>). A location can be edited until its <em>live_period</em> expires or editing is explicitly disabled by a call to <a href="https://core.telegram.org/bots/api#stopmessagelivelocation">stopMessageLiveLocation</a>. On success, if the edited message was sent by the bot, the edited <a href="https://core.telegram.org/bots/api#message">Message</a> is returned, otherwise <em>True</em> is returned.<br/>Values inside $content:<br/>
* <table>
* <tr>
* <td><strong>Parameters</strong></td>
* <td><strong>Type</strong></td>
* <td><strong>Required</strong></td>
* <td><strong>Description</strong></td>
* </tr>
* <tr>
* <td>chat_id</td>
* <td>Integer or String</td>
* <td>Optional</td>
* <td>Required if <em>inline_message_id</em> is not specified. Unique identifier for the target chat or username of the target channel (in the format \c \@channelusername)</td>
* </tr>
* <tr>
* <td>message_id</td>
* <td>Integer</td>
* <td>Optional</td>
* <td>Required if <em>inline_message_id</em> is not specified. Identifier of the sent message</td>
* </tr>
* <tr>
* <td>inline_message_id</td>
* <td>String</td>
* <td>Optional</td>
* <td>Required if <em>chat_id</em> and <em>message_id</em> are not specified. Identifier of the inline message</td>
* </tr>
* <tr>
* <td>latitude</td>
* <td>Float number</td>
* <td>Yes</td>
* <td>Latitude of new location</td>
* </tr>
* <tr>
* <td>longitude</td>
* <td>Float number</td>
* <td>Yes</td>
* <td>Longitude of new location</td>
* </tr>
* <tr>
* <td>reply_markup</td>
* <td><a href="https://core.telegram.org/bots/api#inlinekeyboardmarkup">InlineKeyboardMarkup</a></td>
* <td>Optional</td>
* <td>A JSON-serialized object for a new <a href="https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating">inline keyboard</a>.</td>
* </tr>
* </table>
* \param $content the request parameters as array
* \return the JSON Telegram's reply.
*/
public function editMessageLiveLocation(array $content)
{
return $this->endpoint('editMessageLiveLocation', $content);
}
/// Stop Message Live Location
/**
* Use this method to stop updating a live location message sent by the bot or via the bot (for <a href="https://core.telegram.org/bots/api#inline-mode">inline bots</a>) before <em>live_period</em> expires. On success, if the message was sent by the bot, the sent <a href="https://core.telegram.org/bots/api#message">Message</a> is returned, otherwise <em>True</em> is returned.<br/>Values inside $content:<br/>
* <table>
* <tr>
* <td><strong>Parameters</strong></td>
* <td><strong>Type</strong></td>
* <td><strong>Required</strong></td>
* <td><strong>Description</strong></td>
* </tr>
* <tr>
* <td>chat_id</td>
* <td>Integer or String</td>
* <td>Optional</td>
* <td>Required if <em>inline_message_id</em> is not specified. Unique identifier for the target chat or username of the target channel (in the format \c \@channelusername)</td>
* </tr>
* <tr>
* <td>message_id</td>
* <td>Integer</td>
* <td>Optional</td>
* <td>Required if <em>inline_message_id</em> is not specified. Identifier of the sent message</td>
* </tr>
* <tr>
* <td>inline_message_id</td>
* <td>String</td>
* <td>Optional</td>
* <td>Required if <em>chat_id</em> and <em>message_id</em> are not specified. Identifier of the inline message</td>
* </tr>
* <tr>
* <td>reply_markup</td>
* <td><a href="https://core.telegram.org/bots/api#inlinekeyboardmarkup">InlineKeyboardMarkup</a></td>
* <td>Optional</td>
* <td>A JSON-serialized object for a new <a href="https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating">inline keyboard</a>.</td>
* </tr>
* </table>
* \param $content the request parameters as array
* \return the JSON Telegram's reply.
*/
public function stopMessageLiveLocation(array $content)
{
return $this->endpoint('stopMessageLiveLocation', $content);
}
/// Set Chat Sticker Set
/**
* Use this method to set a new group sticker set for a supergroup. The bot must be an administrator in the chat for this to work and must have the appropriate admin rights. Use the field <em>can_set_sticker_set</em> optionally returned in <a href="https://core.telegram.org/bots/api#getchat">getChat</a> requests to check if the bot can use this method. Returns <em>True</em> on success.<br/>Values inside $content:<br/>
* <table>
* <tr>
* <td><strong>Parameters</strong></td>
* <td><strong>Type</strong></td>
* <td><strong>Required</strong></td>
* <td><strong>Description</strong></td>
* </tr>
* <tr>
* <td>chat_id</td>
* <td>Integer or String</td>
* <td>Yes</td>
* <td>Unique identifier for the target chat or username of the target supergroup (in the format <code>@supergroupusername</code>)</td>
* </tr>
* </table>
* \param $content the request parameters as array
* \return the JSON Telegram's reply.
*/
public function setChatStickerSet(array $content)
{
return $this->endpoint('setChatStickerSet', $content);
}
/// Delete Chat Sticker Set
/**
* Use this method to delete a group sticker set from a supergroup. The bot must be an administrator in the chat for this to work and must have the appropriate admin rights. Use the field <em>can_set_sticker_set</em> optionally returned in <a href="https://core.telegram.org/bots/api#getchat">getChat</a> requests to check if the bot can use this method. Returns <em>True</em> on success.<br/>Values inside $content:<br/>
* <table>
* <tr>
* <td><strong>Parameters</strong></td>
* <td><strong>Type</strong></td>
* <td><strong>Required</strong></td>
* <td><strong>Description</strong></td>
* </tr>
* <tr>
* <td>chat_id</td>
* <td>Integer or String</td>
* <td>Yes</td>
* <td>Unique identifier for the target chat or username of the target supergroup (in the format <code>@supergroupusername</code>)</td>
* </tr>
* </table>
* \param $content the request parameters as array
* \return the JSON Telegram's reply.
*/
public function deleteChatStickerSet(array $content)
{
return $this->endpoint('deleteChatStickerSet', $content);
}
/// Send Media Group
/**
* Use this method to send a group of photos or videos as an album. On success, an array of the sent <a href="https://core.telegram.org/bots/api#message">Messages</a> is returned.<br/>Values inside $content:<br/>
* <table>
* <tr>
* <td><strong>Parameters</strong></td>
* <td><strong>Type</strong></td>
* <td><strong>Required</strong></td>
* <td><strong>Description</strong></td>
* </tr>
* <tr>
* <td>chat_id</td>
* <td>Integer or String</td>
* <td>Yes</td>
* <td>Unique identifier for the target chat or username of the target channel (in the format \c \@channelusername)</td>
* </tr>
* <tr>
* <td>media</td>
* <td>Array of <a href="https://core.telegram.org/bots/api#inputmedia">InputMedia</a></td>
* <td>Yes</td>
* <td>A JSON-serialized array describing photos and videos to be sent, must include 2–10 items</td>
* </tr>
* <tr>
* <td>disable_notification</td>
* <td>Boolean</td>
* <td>Optional</td>
* <td>Sends the messages <a href="https://telegram.org/blog/channels-2-0#silent-messages">silently</a>. Users will receive a notification with no sound.</td>
* </tr>
* <tr>
* <td>reply_to_message_id</td>
* <td>Integer</td>
* <td>Optional</td>
* <td>If the messages are a reply, ID of the original message</td>
* </tr>
* </table>
* \param $content the request parameters as array
* \return the JSON Telegram's reply.
*/
public function sendMediaGroup(array $content)
{
return $this->endpoint('sendMediaGroup', $content);
}
/// Send Venue
/**
* Use this method to send information about a venue. On success, the sent <a href="https://core.telegram.org/bots/api#message">Message</a> is returned.<br/>Values inside $content:<br/>
* <table>
* <tr>
* <td><strong>Parameters</strong></td>
* <td><strong>Type</strong></td>
* <td><strong>Required</strong></td>
* <td><strong>Description</strong></td>
* </tr>
* <tr>
* <td>chat_id</td>
* <td>Integer or String</td>
* <td>Yes</td>
* <td>Unique identifier for the target chat or username of the target channel (in the format \c \@channelusername)</td>
* </tr>
* <tr>
* <td>latitude</td>
* <td>Float number</td>
* <td>Yes</td>
* <td>Latitude of the venue</td>
* </tr>
* <tr>
* <td>longitude</td>
* <td>Float number</td>
* <td>Yes</td>
* <td>Longitude of the venue</td>
* </tr>
* <tr>
* <td>title</td>
* <td>String</td>
* <td>Yes</td>
* <td>Name of the venue</td>
* </tr>
* <tr>
* <td>address</td>
* <td>String</td>
* <td>Yes</td>
* <td>Address of the venue</td>
* </tr>
* <tr>
* <td>foursquare_id</td>
* <td>String</td>
* <td>Optional</td>
* <td>Foursquare identifier of the venue</td>
* </tr>
* <tr>
* <td>disable_notification</td>
* <td>Boolean</td>
* <td>Optional</td>
* <td>Sends the message <a href="https://telegram.org/blog/channels-2-0#silent-messages">silently</a>. iOS users will not receive a notification, Android users will receive a notification with no sound.</td>
* </tr>
* <tr>
* <td>reply_to_message_id</td>
* <td>Integer</td>
* <td>Optional</td>
* <td>If the message is a reply, ID of the original message</td>
* </tr>
* <tr>
* <td>reply_markup</td>
* <td><a href="https://core.telegram.org/bots/api#inlinekeyboardmarkup">InlineKeyboardMarkup</a> or <a href="https://core.telegram.org/bots/api#replykeyboardmarkup">ReplyKeyboardMarkup</a> or <a href="https://core.telegram.org/bots/api#replykeyboardhide">ReplyKeyboardHide</a> or <a href="https://core.telegram.org/bots/api#forcereply">ForceReply</a></td>
* <td>Optional</td>
* <td>Additional interface options. A JSON-serialized object for an <a href="https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating">inline keyboard</a>, <a href="https://core.telegram.org/bots#keyboards">custom reply keyboard</a>, instructions to hide reply keyboard or to force a reply from the user.</td>
* </tr>
* </table>
* \param $content the request parameters as array
* \return the JSON Telegram's reply.
*/
public function sendVenue(array $content)
{
return $this->endpoint('sendVenue', $content);
}
//Send contact
/**Use this method to send phone contacts. On success, the sent <a href="https://core.telegram.org/bots/api#message">Message</a> is returned.</p> <br/>Values inside $content:<br/>
* <table>
* <tr>
* <td><strong>Parameters</strong></td>
* <td><strong>Type</strong></td>
* <td><strong>Required</strong></td>
* <td><strong>Description</strong></td>
* </tr>
* <tr>
* <td>chat_id</td>
* <td>Integer or String</td>
* <td>Yes</td>
* <td>Unique identifier for the target chat or username of the target channel (in the format \c \@channelusername)</td>
* </tr>
* <tr>
* <td>phone_number</td>
* <td>String</td>
* <td>Yes</td>
* <td>Contact's phone number</td>
* </tr>
* <tr>
* <td>first_name</td>
* <td>String</td>
* <td>Yes</td>
* <td>Contact's first name</td>
* </tr>
* <tr>
* <td>last_name</td>
* <td>String</td>
* <td>Optional</td>
* <td>Contact's last name</td>
* </tr>
* <tr>
* <td>disable_notification</td>
* <td>Boolean</td>
* <td>Optional</td>
* <td>Sends the message <a href="https://telegram.org/blog/channels-2-0#silent-messages">silently</a>. iOS users will not receive a notification, Android users will receive a notification with no sound.</td>
* </tr>
* <tr>
* <td>reply_to_message_id</td>
* <td>Integer</td>
* <td>Optional</td>
* <td>If the message is a reply, ID of the original message</td>
* </tr>
* <tr>
* <td>reply_markup</td>
* <td><a href="https://core.telegram.org/bots/api#inlinekeyboardmarkup">InlineKeyboardMarkup</a> or <a href="https://core.telegram.org/bots/api#replykeyboardmarkup">ReplyKeyboardMarkup</a> or <a href="https://core.telegram.org/bots/api#replykeyboardhide">ReplyKeyboardHide</a> or <a href="https://core.telegram.org/bots/api#forcereply">ForceReply</a></td>
* <td>Optional</td>
* <td>Additional interface options. A JSON-serialized object for an <a href="https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating">inline keyboard</a>, <a href="https://core.telegram.org/bots#keyboards">custom reply keyboard</a>, instructions to hide keyboard or to force a reply from the user.</td>
* </tr>
* </table>
* \param $content the request parameters as array
* \return the JSON Telegram's reply
*/
public function sendContact(array $content)
{
return $this->endpoint('sendContact', $content);
}
/// Send a chat action
/**
* Use this method when you need to tell the user that something is happening on the bot's side. The status is set for 5 seconds or less (when a message arrives from your bot, Telegram clients clear its typing status).
*
* Example: The ImageBot needs some time to process a request and upload the image. Instead of sending a text message along the lines of “Retrieving image, please wait…”, the bot may use sendChatAction with action = upload_photo. The user will see a “sending photo” status for the bot.
*
* We only recommend using this method when a response from the bot will take a noticeable amount of time to arrive.<br/>Values inside $content:<br/>
* <table>
* <tr>
* <td><strong>Parameters</strong></td>
* <td><strong>Type</strong></td>
* <td><strong>Required</strong></td>