forked from Eleirbag89/TelegramBotPHP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Telegram.php
1813 lines (1548 loc) · 58.6 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 animation.
*/
const ANIMATION = 'animation';
/**
* Constant for type sticker.
*/
const STICKER = 'sticker';
/**
* 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';
/**
* Constant for type New Chat Member.
*/
const NEW_CHAT_MEMBER = 'new_chat_member';
/**
* Constant for type Left Chat Member.
*/
const LEFT_CHAT_MEMBER = 'left_chat_member';
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 = [])
{
$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.
/**
* See <a href="https://core.telegram.org/bots/api#getme">getMe</a>
* \return the JSON Telegram's reply.
*/
public function getMe()
{
return $this->endpoint('getMe', [], false);
}
/**
* See <a href="https://core.telegram.org/bots/api#logout">logOut</a>
* \return the JSON Telegram's reply.
*/
public function logOut()
{
return $this->endpoint('logOut', [], false);
}
/**
* See <a href="https://core.telegram.org/bots/api#close">close</a>
* \return the JSON Telegram's reply.
*/
public function close()
{
return $this->endpoint('close', [], 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
/**
* See <a href="https://core.telegram.org/bots/api#sendmessage">sendMessage</a> for the input values
* \param $content the request parameters as array
* \return the JSON Telegram's reply.
*/
public function sendMessage(array $content)
{
return $this->endpoint('sendMessage', $content);
}
/// Copy a message
/**
* See <a href="https://core.telegram.org/bots/api#copymessage">copyMessage</a> for the input values
* \param $content the request parameters as array
* \return the JSON Telegram's reply.
*/
public function copyMessage(array $content)
{
return $this->endpoint('copyMessage', $content);
}
/// Forward a message
/**
* See <a href="https://core.telegram.org/bots/api#forwardmessage">forwardMessage</a> for the input values
* \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
/**
* See <a href="https://core.telegram.org/bots/api#sendphoto">sendPhoto</a> for the input values
* \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
/**
* See <a href="https://core.telegram.org/bots/api#sendaudio">sendAudio</a> for the input values
* \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
/**
* See <a href="https://core.telegram.org/bots/api#senddocument">sendDocument</a> for the input values
* \param $content the request parameters as array
* \return the JSON Telegram's reply.
*/
public function sendDocument(array $content)
{
return $this->endpoint('sendDocument', $content);
}
/// Send an animation
/**
* See <a href="https://core.telegram.org/bots/api#sendanimation">sendAnimation</a> for the input values
* \param $content the request parameters as array
* \return the JSON Telegram's reply.
*/
public function sendAnimation(array $content)
{
return $this->endpoint('sendAnimation', $content);
}
/// Send a sticker
/**
* See <a href="https://core.telegram.org/bots/api#sendsticker">sendSticker</a> for the input values
* \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
/**
* See <a href="https://core.telegram.org/bots/api#sendvideo">sendVideo</a> for the input values
* \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
/**
* See <a href="https://core.telegram.org/bots/api#sendvoice">sendVoice</a> for the input values
* \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
/**
* See <a href="https://core.telegram.org/bots/api#sendlocation">sendLocation</a> for the input values
* \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
/**
* See <a href="https://core.telegram.org/bots/api#editmessageliveLocation">editMessageLiveLocation</a> for the input values
* \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
/**
* See <a href="https://core.telegram.org/bots/api#stopmessagelivelocation">stopMessageLiveLocation</a> for the input values
* \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
/**
* See <a href="https://core.telegram.org/bots/api#setchatstickerset">setChatStickerSet</a> for the input values
* \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
/**
* See <a href="https://core.telegram.org/bots/api#deletechatstickerset">deleteChatStickerSet</a> for the input values
* \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
/**
* See <a href="https://core.telegram.org/bots/api#sendmediagroup">sendMediaGroup</a> for the input values
* \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
/**
* See <a href="https://core.telegram.org/bots/api#sendvenue">sendVenue</a> for the input values
* \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
/**
* See <a href="https://core.telegram.org/bots/api#sendcontact">sendContact</a> for the input values
* \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 poll
/**
* See <a href="https://core.telegram.org/bots/api#sendpoll">sendPoll</a> for the input values
* \param $content the request parameters as array
* \return the JSON Telegram's reply.
*/
public function sendPoll(array $content)
{
return $this->endpoint('sendPoll', $content);
}
//Send a dice
/**
* See <a href="https://core.telegram.org/bots/api#senddice">sendDice</a> for the input values
* \param $content the request parameters as array
* \return the JSON Telegram's reply.
*/
public function sendDice(array $content)
{
return $this->endpoint('sendDice', $content);
}
/// Send a chat action
/**
* See <a href="https://core.telegram.org/bots/api#sendchataction">sendChatAction</a> for the input values
* \param $content the request parameters as array
* \return the JSON Telegram's reply.
*/
public function sendChatAction(array $content)
{
return $this->endpoint('sendChatAction', $content);
}
/// Get a list of profile pictures for a user
/**
* See <a href="https://core.telegram.org/bots/api#getuserprofilephotos">getUserProfilePhotos</a> for the input values
* \param $content the request parameters as array
* \return the JSON Telegram's reply.
*/
public function getUserProfilePhotos(array $content)
{
return $this->endpoint('getUserProfilePhotos', $content);
}
/// Use this method to get basic info about a file and prepare it for downloading
/**
* Use this method to get basic info about a file and prepare it for downloading. For the moment, bots can download files of up to 20MB in size. On success, a File object is returned. The file can then be downloaded via the link https://api.telegram.org/file/bot<token>/<file_path>, where <file_path> is taken from the response. It is guaranteed that the link will be valid for at least 1 hour. When the link expires, a new one can be requested by calling getFile again.
* \param $file_id String File identifier to get info about
* \return the JSON Telegram's reply.
*/
public function getFile($file_id)
{
$content = ['file_id' => $file_id];
return $this->endpoint('getFile', $content);
}
/// Kick Chat Member
/**
* Deprecated
* \param $content the request parameters as array
* \return the JSON Telegram's reply.
*/
public function kickChatMember(array $content)
{
return $this->endpoint('kickChatMember', $content);
}
/// Leave Chat
/**
* See <a href="https://core.telegram.org/bots/api#leavechat">leaveChat</a> for the input values
* \param $content the request parameters as array
* \return the JSON Telegram's reply.
*/
public function leaveChat(array $content)
{
return $this->endpoint('leaveChat', $content);
}
/// Ban Chat Member
/**
* See <a href="https://core.telegram.org/bots/api#banchatmember">banChatMember</a> for the input values
* \param $content the request parameters as array
* \return the JSON Telegram's reply.
*/
public function banChatMember(array $content)
{
return $this->endpoint('banChatMember', $content);
}
/// Unban Chat Member
/**
* See <a href="https://core.telegram.org/bots/api#unbanchatmember">unbanChatMember</a> for the input values
* \param $content the request parameters as array
* \return the JSON Telegram's reply.
*/
public function unbanChatMember(array $content)
{
return $this->endpoint('unbanChatMember', $content);
}
/// Get Chat Information
/**
* See <a href="https://core.telegram.org/bots/api#getchat">getChat</a> for the input values
* \param $content the request parameters as array
* \return the JSON Telegram's reply.
*/
public function getChat(array $content)
{
return $this->endpoint('getChat', $content);
}
/// Get chat Administrators
/**
* See <a href="https://core.telegram.org/bots/api#getchatadministrators">getChatAdministrators</a> for the input values
* \param $content the request parameters as array
* \return the JSON Telegram's reply.
*/
public function getChatAdministrators(array $content)
{
return $this->endpoint('getChatAdministrators', $content);
}
/// Get chat member count
/**
* See <a href="https://core.telegram.org/bots/api#getchatmembercount">getChatMemberCount</a> for the input values
* \param $content the request parameters as array
* \return the JSON Telegram's reply.
*/
public function getChatMemberCount(array $content)
{
return $this->endpoint('getChatMemberCount', $content);
}
/**
* For retrocompatibility
* \param $content the request parameters as array
* \return the JSON Telegram's reply.
*/
public function getChatMembersCount(array $content)
{
return $this->getChatMemberCount($content);
}
/**
* See <a href="https://core.telegram.org/bots/api#getchatmember">getChatMember</a> for the input values
* \param $content the request parameters as array
* \return the JSON Telegram's reply.
*/
public function getChatMember(array $content)
{
return $this->endpoint('getChatMember', $content);
}
/**
* See <a href="https://core.telegram.org/bots/api#answerinlinequery">answerInlineQuery</a> for the input values
* \param $content the request parameters as array
* \return the JSON Telegram's reply.
*/
public function answerInlineQuery(array $content)
{
return $this->endpoint('answerInlineQuery', $content);
}
/// Set Game Score
/**
* See <a href="https://core.telegram.org/bots/api#setgamescore">setGameScore</a> for the input values
* \param $content the request parameters as array
* \return the JSON Telegram's reply.
*/
public function setGameScore(array $content)
{
return $this->endpoint('setGameScore', $content);
}
/// Get Game Hi Scores
/**
* See <a href="https://core.telegram.org/bots/api#getgamehighscores">getGameHighScores</a> for the input values
* \param $content the request parameters as array
* \return the JSON Telegram's reply.
*/
public function getGameHighScores(array $content)
{
return $this->endpoint('getGameHighScores', $content);
}
/// Answer a callback Query
/**
* See <a href="https://core.telegram.org/bots/api#answercallbackquery">answerCallbackQuery</a> for the input values
* \param $content the request parameters as array
* \return the JSON Telegram's reply.
*/
public function answerCallbackQuery(array $content)
{
return $this->endpoint('answerCallbackQuery', $content);
}
/// Set the list of the bot commands
/**
* See <a href="https://core.telegram.org/bots/api#setmycommands">setMyCommands</a> for the input values
* \param $content the request parameters as array
* \return the JSON Telegram's reply.
*/
public function setMyCommands(array $content)
{
return $this->endpoint('setMyCommands', $content);
}
/// Delete the list of the bot commands
/**
* See <a href="https://core.telegram.org/bots/api#deletemycommands">deleteMyCommands</a> for the input values
* \param $content the request parameters as array
* \return the JSON Telegram's reply.
*/
public function deleteMyCommands(array $content)
{
return $this->endpoint('deleteMyCommands', $content);
}
/// Get the list of the bot commands
/**
* See <a href="https://core.telegram.org/bots/api#getmycommands">getMyCommands</a> for the input values
* \param $content the request parameters as array
* \return the JSON Telegram's reply.
*/
public function getMyCommands(array $content)
{
return $this->endpoint('getMyCommands', $content);
}
/// Set the chat menu button
/**
* See <a href="https://core.telegram.org/bots/api#setchatmenubutton">setChatMenuButton</a> for the input values
* \param $content the request parameters as array
* \return the JSON Telegram's reply.
*/
public function setChatMenuButton(array $content)
{
return $this->endpoint('setChatMenuButton', $content);
}
/// Get the chat menu button
/**
* See <a href="https://core.telegram.org/bots/api#getchatmenubutton">getChatMenuButton</a> for the input values
* \param $content the request parameters as array
* \return the JSON Telegram's reply.
*/
public function getChatMenuButton(array $content)
{
return $this->endpoint('getChatMenuButton', $content);
}
/// Set the default aministrator rights
/**
* See <a href="https://core.telegram.org/bots/api#setmydefaultadministratorrights">setMyDefaultAdministratorRights</a> for the input values
* \param $content the request parameters as array
* \return the JSON Telegram's reply.
*/
public function setMyDefaultAdministratorRights(array $content)
{
return $this->endpoint('setMyDefaultAdministratorRights', $content);
}
/// Get the default aministrator rights
/**
* See <a href="https://core.telegram.org/bots/api#getmydefaultadministratorrights">getMyDefaultAdministratorRights</a> for the input values
* \param $content the request parameters as array
* \return the JSON Telegram's reply.
*/
public function getMyDefaultAdministratorRights(array $content)
{
return $this->endpoint('getMyDefaultAdministratorRights', $content);
}
/**
* See <a href="https://core.telegram.org/bots/api#editmessagetext">editMessageText</a> for the input values
* \param $content the request parameters as array
* \return the JSON Telegram's reply.
*/
public function editMessageText(array $content)
{
return $this->endpoint('editMessageText', $content);
}
/**
* See <a href="https://core.telegram.org/bots/api#editmessagecaption">editMessageCaption</a> for the input values
* \param $content the request parameters as array
* \return the JSON Telegram's reply.
*/
public function editMessageCaption(array $content)
{
return $this->endpoint('editMessageCaption', $content);
}
/**
* See <a href="https://core.telegram.org/bots/api#editmessagemedia">editMessageMedia</a> for the input values
* \param $content the request parameters as array
* \return the JSON Telegram's reply.
*/
public function editMessageMedia(array $content)
{
return $this->endpoint('editMessageMedia', $content);
}
/**
* See <a href="https://core.telegram.org/bots/api#editmessagereplymarkup">editMessageReplyMarkup</a> for the input values
* \param $content the request parameters as array
* \return the JSON Telegram's reply.
*/
public function editMessageReplyMarkup(array $content)
{
return $this->endpoint('editMessageReplyMarkup', $content);
}
/**
* See <a href="https://core.telegram.org/bots/api#stoppoll">stopPoll</a> for the input values
* \param $content the request parameters as array
* \return the JSON Telegram's reply.
*/
public function stopPoll(array $content)
{
return $this->endpoint('stopPoll', $content);
}
/// Use this method to download a file
/**
* Use this method to to download a file from the Telegram servers.
* \param $telegram_file_path String File path on Telegram servers
* \param $local_file_path String File path where save the file.
*/
public function downloadFile($telegram_file_path, $local_file_path)
{
$file_url = 'https://api.telegram.org/file/bot'.$this->bot_token.'/'.$telegram_file_path;
$in = fopen($file_url, 'rb');
$out = fopen($local_file_path, 'wb');
while ($chunk = fread($in, 8192)) {
fwrite($out, $chunk, 8192);
}
fclose($in);
fclose($out);
}
/// Set a WebHook for the bot
/**
* Use this method to specify a url and receive incoming updates via an outgoing webhook. Whenever there is an update for the bot, we will send an HTTPS POST request to the specified url, containing a JSON-serialized Update. In case of an unsuccessful request, we will give up after a reasonable amount of attempts.
*
* If you'd like to make sure that the Webhook request comes from Telegram, we recommend using a secret path in the URL, e.g. https://www.example.com/<token>. Since nobody else knows your bot‘s token, you can be pretty sure it’s us.
* \param $url String HTTPS url to send updates to. Use an empty string to remove webhook integration
* \param $certificate InputFile Upload your public key certificate so that the root certificate in use can be checked
* \return the JSON Telegram's reply.
*/
public function setWebhook($url, $certificate = '')
{
if ($certificate == '') {
$requestBody = ['url' => $url];
} else {
$requestBody = ['url' => $url, 'certificate' => "@$certificate"];
}
return $this->endpoint('setWebhook', $requestBody, true);
}
/// Delete the WebHook for the bot
/**
* Use this method to remove webhook integration if you decide to switch back to <a href="https://core.telegram.org/bots/api#getupdates">getUpdates</a>. Returns True on success. Requires no parameters.
* \return the JSON Telegram's reply.
*/
public function deleteWebhook()
{
return $this->endpoint('deleteWebhook', [], false);
}
/// Get the data of the current message
/** Get the POST request of a user in a Webhook or the message actually processed in a getUpdates() enviroment.
* \return the JSON users's message.
*/
public function getData()
{
if (empty($this->data)) {
$rawData = file_get_contents('php://input');
return json_decode($rawData, true);
} else {
return $this->data;
}
}
/// Set the data currently used
public function setData(array $data)
{
$this->data = $data;
}
/// Get the text of the current message
/**
* \return the String users's text.
*/
public function Text()
{
$type = $this->getUpdateType();
if ($type == self::CALLBACK_QUERY) {
return @$this->data['callback_query']['data'];
}
if ($type == self::CHANNEL_POST) {
return @$this->data['channel_post']['text'];
}
if ($type == self::EDITED_MESSAGE) {
return @$this->data['edited_message']['text'];
}
return @$this->data['message']['text'];
}
public function Caption()
{
$type = $this->getUpdateType();
if ($type == self::CHANNEL_POST) {
return @$this->data['channel_post']['caption'];
}
return @$this->data['message']['caption'];
}
/// Get the chat_id of the current message
/**
* \return the String users's chat_id.
*/
public function ChatID()
{
$type = $this->getUpdateType();
if ($type == self::CALLBACK_QUERY) {
return @$this->data['callback_query']['message']['chat']['id'];
}
if ($type == self::CHANNEL_POST) {
return @$this->data['channel_post']['chat']['id'];
}
if ($type == self::EDITED_MESSAGE) {
return @$this->data['edited_message']['chat']['id'];
}
if ($type == self::INLINE_QUERY) {
return @$this->data['inline_query']['from']['id'];
}
return $this->data['message']['chat']['id'];
}
/// Get the message_id of the current message
/**
* \return the String message_id.
*/
public function MessageID()
{
$type = $this->getUpdateType();
if ($type == self::CALLBACK_QUERY) {
return @$this->data['callback_query']['message']['message_id'];
}
if ($type == self::CHANNEL_POST) {
return @$this->data['channel_post']['message_id'];
}
if ($type == self::EDITED_MESSAGE) {
return @$this->data['edited_message']['message_id'];
}
return $this->data['message']['message_id'];
}
/// Get the reply_to_message message_id of the current message
/**
* \return the String reply_to_message message_id.
*/
public function ReplyToMessageID()
{
return $this->data['message']['reply_to_message']['message_id'];
}
/// Get the reply_to_message forward_from user_id of the current message
/**
* \return the String reply_to_message forward_from user_id.
*/
public function ReplyToMessageFromUserID()
{
return $this->data['message']['reply_to_message']['forward_from']['id'];
}
/// Get the inline_query of the current update
/**
* \return the Array inline_query.
*/
public function Inline_Query()
{
return $this->data['inline_query'];
}
/// Get the callback_query of the current update
/**
* \return the String callback_query.
*/
public function Callback_Query()
{
return $this->data['callback_query'];
}
/// Get the callback_query id of the current update
/**
* \return the String callback_query id.
*/
public function Callback_ID()
{
return $this->data['callback_query']['id'];
}
/// Get the Get the data of the current callback
/**
* \deprecated Use Text() instead
* \return the String callback_data.
*/
public function Callback_Data()
{
return $this->data['callback_query']['data'];
}
/// Get the Get the message of the current callback
/**
* \return the Message.
*/
public function Callback_Message()
{
return $this->data['callback_query']['message'];
}
/// Get the Get the chat_id of the current callback
/**
* \deprecated Use ChatId() instead
* \return the String callback_query.
*/
public function Callback_ChatID()
{
return $this->data['callback_query']['message']['chat']['id'];
}
/// Get the Get the from_id of the current callback
/**
* \return the String callback_query from_id.
*/
public function Callback_FromID()
{
return $this->data['callback_query']['from']['id'];
}
/// Get the date of the current message
/**
* \return the String message's date.
*/
public function Date()
{
return $this->data['message']['date'];
}
/// Get the first name of the user
public function FirstName()
{
$type = $this->getUpdateType();
if ($type == self::CALLBACK_QUERY) {
return @$this->data['callback_query']['from']['first_name'];
}
if ($type == self::CHANNEL_POST) {
return @$this->data['channel_post']['from']['first_name'];
}
if ($type == self::EDITED_MESSAGE) {
return @$this->data['edited_message']['from']['first_name'];
}
return @$this->data['message']['from']['first_name'];
}
/// Get the last name of the user
public function LastName()