-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
telegram_bot.m
3779 lines (3776 loc) · 180 KB
/
telegram_bot.m
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
classdef telegram_bot
% TELEGRAMM_BOT - tool for working with telegram bots It can receive
% and send telegtamm chat messages. You can get a token of a bot as
% follow: https://core.telegram.org/bots#botfather
% see also https://core.telegram.org/bots
% and https://core.telegram.org/bots/api
% and https://core.telegram.org/bots/faq
% Author Aleksei Kukin, 2021
%%
properties
token; % token of telegramm bot. see: https://core.telegram.org/bots#botfather
end
properties (Constant)%%
api_address = 'https://api.telegram.org/bot';
end
properties (Access = private)
main_url;
end
%%% methods
methods
%% function obj = telegram_bot(token)
function obj = telegram_bot(token)
% telegramm_bot. Set token of this bot.
% to get token see: https://core.telegram.org/bots#botfather
obj.token = token;
obj.main_url = [obj.api_address token '/'];
end % init bot
%% function update_inform = getMe(obj)
function update_inform = getMe(obj)
% getMe 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.
send_string = [ obj.main_url 'getMe' ];
update_inform = webread(send_string).result;
end % function getMe
%%
function update_inform = logOut(obj)
% 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.
send_string = [ obj.main_url 'logOut' ];
update_inform = webread(send_string).result;
end % function logOut
%%
function update_inform = close(obj)
% 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.
send_string = [ obj.main_url 'close' ];
update_inform = webread(send_string).result;
end % function close
%%
function update_inform = deleteWebhook(obj)
% deleteWebhook Use this method to remove webhook integration
% if you decide to switch back to getUpdates. Returns True on
% success. Requires no parameters.
send_string = [ obj.main_url 'deleteWebhook' ];
update_inform = webread(send_string).result;
end % function deleteWebhook
%%
function update_inform = getWebhookInfo(obj)
% getWebhookInfo Use this method to get current webhook status.
% Requires no parameters. On success, returns a WebhookInfo
% object. If the bot is using getUpdates, will return an object
% with the url field empty.
send_string = [ obj.main_url 'getWebhookInfo' ];
update_inform = webread(send_string).result;
end % function getWebhookInfo
%%
function response = getUpdates(obj, varargin)
% getUpdates Use this method to receive incoming updates using
% long polling. An Array of Update objects is returned. Can
% return an empty result if no a messages.
%
% offset Integer Optional Identifier of the first update
% to be returned. Must be greater by one than the highest among
% the identifiers of previously received updates. By default,
% updates starting with the earliest unconfirmed update are
% returned. An update is considered confirmed as soon as
% getUpdates is called with an offset higher than its
% update_id. The negative offset can be specified to retrieve
% updates starting from -offset update from the end of the
% updates queue. All previous updates will forgotten.
%
% limit Integer Optional Limits the number of updates to be
% retrieved. Values between 1-100 are accepted. Defaults to
% 100.
%
% timeout Integer Optional Timeout in seconds for long
% polling. Defaults to 0, i.e. usual short polling. Should be
% positive, short polling should be used for testing purposes
% only.
%
% allowed_updates Array of String Optional A
% JSON-serialized list of the update types you want your bot to
% receive. For example, specify [“message”,
% “edited_channel_post”, “callback_query”] to only receive
% updates of these types. See Update for a complete list of
% available update types. Specify an empty list to receive all
% updates regardless of type (default). If not specified, the
% previous setting will be used.
% Please note that this parameter doesn't affect updates
% created before the call to the getUpdates, so unwanted
% updates may be received for a short period of time.
%
% ResponseTimeout Seconds to wait to receive the initial
% response (header) from the server after sending the last
% packet of a request, specified as an integer. The default
% value is Inf. If this timeout is
% exceeded, then MATLAB closes the connection and throws an
% error.
% Use ResponseTimeout to limit the wait time when sending a
% request to a server through a proxy, since ConnectTimeout
% only applies to the proxy connection time.
% ResponseTimeout is equivalent to the Timeout property set by
% weboptions.
%
comand = 'getUpdates';
usePM = false;
ResponseTimeout = Inf;
params = struct;
params.timeout = '100';
params.offset = 'None';
while ~isempty(varargin)
switch lower(varargin{1})
case 'offset'
params.offset = (varargin{2});
case 'limit'
params.limit = (varargin{2});
case 'timeout'
params.timeout = (varargin{2});
case 'allowed_updates'
params.allowed_updates = (varargin{2});
case 'usepm'
usePM = varargin{2};
case 'responsetimeout'
ResponseTimeout = varargin{2};
otherwise
error(['Unexpected option: ' varargin{1}])
end %switch
varargin(1:2) = [];
end % while isempty
%send request
resp = sendMFD(obj, params, comand,...
'usepm', usePM, ...
'MediaType', 'application/json', ...
'ResponseTimeout', ResponseTimeout);
response = resp.Body.Data; %extract data from ansver of server
end % function getUpdates
%%
function response = setWebhook(obj, url, varargin)
% setWebhook 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. Returns True on success.
%
% 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.
%
% url String Required HTTPS url to send updates to. Use
% an empty string to remove webhook integration
%
% certificate InputFile Optional Upload your public key
% certificate so that the root certificate in use can be
% checked. See our self-signed guide for details.
%
% max_connections Integer Optional Maximum allowed number
% of simultaneous HTTPS connections to the webhook for update
% delivery, 1-100. Defaults to 40. Use lower values to limit
% the load on your bot's server, and higher values to increase
% your bot's throughput.
%
% allowed_updates Array of String Optional A
% JSON-serialized list of the update types you want your bot to
% receive. For example, specify [“message”,
% “edited_channel_post”, “callback_query”] to only receive
% updates of these types. See Update for a complete list of
% available update types. Specify an empty list to receive all
% updates regardless of type (default). If not specified, the
% previous setting will be used.
% Please note that this parameter doesn't affect updates
% created before the call to the setWebhook, so unwanted
% updates may be received for a short period of time.
%
comand = 'setWebhook';
usePM = false;
ResponseTimeout = Inf;
params = struct;
params.url = url;
while ~isempty(varargin)
switch lower(varargin{1})
case 'allowed_updates'
params.allowed_updates =(varargin{2});
case 'max_connections'
params.max_connections =(varargin{2});
case 'ip_address'
params.ip_address =(varargin{2});
case 'certificate'
params.certificate = ...
matlab.net.http.io.FileProvider(string(varargin{2}));
case 'usepm'
usePM = varargin{2};
otherwise
error(['Unexpected option: ' varargin{1}])
end % switch
varargin(1:2) = [ ];
end % while isempty
%send request
resp = sendMFD(obj, params, comand,...
'usepm', usePM, ...
'ResponseTimeout', ResponseTimeout); %
response = resp.Body.Data; %extract data from ansver of server
end % function setWebhook
%%
function response = sendMessage(obj, chat_id, text, varargin)
% sendMessage Use this method to send text messages. On
% success, the sent Message is returned.
%
% chat_id Integer or String Required Unique identifier
% for the target chat or username of the target channel (in the
% format @channelusername)
%
% text String Required Text of the message to be sent,
% 1-4096 characters after entities parsing
%
% parse_mode String Optional Mode for parsing entities
% in the message text. See formatting options for more details.
%
% disable_web_page_preview Boolean Optional Disables link
% previews for links in this message
%
% disable_notification Boolean Optional Sends the message
% silently. Users will receive a notification with no sound.
%
% reply_to_message_id Integer Optional If the message is a
% reply, ID of the original message
%
% reply_markup InlineKeyboardMarkup or ReplyKeyboardMarkup or
% ReplyKeyboardRemove or ForceReply 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.
comand = 'sendMessage';
usePM = false;
ResponseTimeout = Inf;
params = struct;
params.chat_id = (chat_id);
params.text = (text);
while ~isempty(varargin)
switch lower(varargin{1})
case 'parse_mode'
params.parse_mode = varargin{2};
case 'disable_web_page_preview'
params.disable_web_page_preview = varargin{2};
case 'disable_notification'
params.disable_notification = varargin{2};
case 'reply_to_message_id'
params.reply_to_message_id = varargin{2};
case 'reply_markup'
params.reply_markup = varargin{2};
case 'usepm'
usePM = varargin{2};
case 'responsetimeout'
ResponseTimeout = varargin{2};
otherwise
error(['Unexpected option: ' varargin{1}])
end %switch
varargin(1:2) = [];
end % while isempty
resp = sendMFD(obj, params, comand,...
'usepm', usePM, ...
'MediaType', 'application/json', ...
'ResponseTimeout', ResponseTimeout);
response = resp.Body.Data; %extract data from ansver of server
end % function sendMessage
%%
function response = forwardMessage(obj, chat_id, from_chat_id,...
message_id, varargin)
% forwardMessage Use this method to forward messages of any
% kind. On success, the sent Message is returned.
%
% chat_id Integer or String Required Unique identifier for the
% target chat or username of the target channel (in the format
% @channelusername)
%
% from_chat_id Integer or String Required Unique identifier for
% the chat where the original message was sent (or channel
% username in the format @channelusername)
%
% disable_notification Boolean Optional Sends the message
% silently. Users will receive a notification with no sound.
%
% message_id Integer Required Message identifier in the chat
% specified in from_chat_id
%
comand = 'forwardMessage';
params = struct;
usePM = false;
params.chat_id = (chat_id);
params.from_chat_id = (from_chat_id);
params.message_id = (message_id);
ResponseTimeout = Inf;
while ~isempty(varargin)
switch lower(varargin{1})
case 'disable_notification'
params.disable_notification = varargin{2};
case 'usepm'
usePM = varargin{2};
case 'responsetimeout'
ResponseTimeout = varargin{2};
otherwise
error(['Unexpected option: ' varargin{1}])
end %switch
varargin(1:2) = [];
end % while isempty
%send request
resp = sendMFD(obj, params, comand,...
'usepm', usePM, ...
'MediaType', 'application/json', ...
'ResponseTimeout', ResponseTimeout);
response = resp.Body.Data; %extract data from ansver of server
end % function forwardMessage
%%
function response = sendPhoto(obj, chat_id, varargin)
% sendPhoto - Use this method to send photos. On success,
% the sent Message is returned.
%
% Parameter Type Required Description
%
% chat_id -Integer or String - Required Unique
% identifier for the target chat or username of the
% target channel (in the format @channelusername)
%
% photo_file - upload file and send
% photo_url - send photo by url
% photo_id - send photo by 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.
%
% caption - String - Optional Photo caption (may also be
% used when resending photos by file_id), 0-1024 characters
% after entities parsing
%
% parse_mode - String - Optional Mode for parsing entities in
% the photo caption. See formatting options for more details.
%
% disable_notification - Boolean - Optional Sends the message
% silently. Users will receive a notification with no sound.
%
% reply_to_message_id - Integer - Optional If the message is a
% reply, ID of the original message
%
% reply_markup - InlineKeyboardMarkup or
% ReplyKeyboardMarkup or
% ReplyKeyboardRemove or
% ForceReply - 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.
%
comand = 'sendPhoto';
usePM = false;
ResponseTimeout = Inf;
params = struct;
params.chat_id = (chat_id);
while ~isempty(varargin)
switch lower(varargin{1})
case 'photo_id'
params.photo =(varargin{2});
case 'photo_url'
params.photo =(varargin{2});
case 'photo_file'
params.photo = ...
matlab.net.http.io.FileProvider(string(varargin{2}));
case 'caption'
params.caption = (varargin{2});
case 'parse_mode'
params.parse_mode = (varargin{2});
case 'disable_notification'
params.disable_notification =(varargin{2});
case 'reply_to_message_id'
params.reply_to_message_id =(varargin{2});
case 'reply_markup'
params.reply_markup =(varargin{2});
case 'usepm'
usePM = varargin{2};
case 'responsetimeout'
ResponseTimeout = varargin{2};
otherwise
error(['Unexpected option: ' varargin{1}])
end %switch
varargin(1:2) = [];
end % while isempty
%send request
resp = sendMFD(obj, params, comand,...
'usepm', usePM, ...
'ResponseTimeout', ResponseTimeout);
response = resp.Body.Data; %extract data from ansver of server
end % function sendPhoto
%%
function response = sendAudio(obj, chat_id, varargin)
% sendAudio
% 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.
%
% chat_id - Integer or String - Required Unique identifier for the
% target chat or username of the target channel (in the format
% @channelusername)
%
% audio_file
% audio_url
% audio_id - InputFile or String - Required 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 »
%
% caption - String - Optional. Audio caption, 0-1024
% characters after entities parsing
%
% parse_mode - String - Optional. Mode for parsing entities
% in the audio caption. See formatting options for more
% details.
%
% duration - Integer - Optional. Duration of the audio in
% seconds
%
% performer - String - Optional. Performer
%
% title - String - Optional. Track name
%
% thumbf - InputFile or
% thumbs - String - 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 »
%
% disable_notification - Boolean Optional. Sends the message
% silently. Users will receive a notification with no sound.
%
% reply_to_message_id - Integer Optional. If the message is a
% reply, ID of the original message
%
% reply_markup - InlineKeyboardMarkup or
% ReplyKeyboardMarkup or
% ReplyKeyboardRemove or
% ForceReply - 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.
%
comand = 'sendAudio';
usePM = false;
ResponseTimeout = Inf;
params = struct;
params.chat_id = (chat_id);
while ~isempty(varargin)
switch lower(varargin{1})
case 'audio_id'
params.audio =(varargin{2});
case 'audio_url'
params.audio =(varargin{2});
case 'audio_file'
params.audio = ...
matlab.net.http.io.FileProvider(string(varargin{2}));
case 'caption'
params.caption = (varargin{2});
case 'parse_mode'
params.parse_mode = (varargin{2});
case 'duration'
params.duration = (varargin{2});
case 'performer'
params.performer = (varargin{2});
case 'title'
params.title = (varargin{2});
case 'thumbf'
params.thumb = ...
matlab.net.http.io.FileProvider(string(varargin{2}));
case 'thumbs'
params.thumb = (varargin{2});
case 'disable_notification'
params.disable_notification = (varargin{2});
case 'reply_to_message_id'
params.reply_to_message_id = (varargin{2});
case 'reply_markup'
params.reply_markup = varargin{2};
case 'usepm'
usePM = varargin{2};
case 'responsetimeout'
ResponseTimeout = varargin{2};
otherwise
error(['Unexpected option: ' varargin{1}])
end %switch
varargin(1:2) = [];
end % while isempty
%send request
resp = sendMFD(obj, params, comand,...
'usepm', usePM, ...
'ResponseTimeout', ResponseTimeout);
response = resp.Body.Data; %extract data from ansver of server
end %% function sendAudio
%%
function response = sendDocument(obj, chat_id, varargin)
% sendDocument 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.
%
% chat_id - Integer or String - Required Unique identifier for the
% target chat or username of the target channel (in the format
% @channelusername)
%
% document_id,
% document_url,
% document_file - String - 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
%
% thumbf - InputFile (pass to file) or
% thumbs - String - 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 »
%
% caption - String - Optional. Audio caption, 0-1024
% characters after entities parsing
%
% parse_mode - String - Optional. Mode for parsing entities
% in the audio caption. See formatting options for more
% details.
%
% disable_notification - Boolean - Optional. Sends the message
% silently. Users will receive a notification with no sound.
%
% reply_to_message_id - Integer - Optional. If the message is a
% reply, ID of the original message
%
% reply_markup - InlineKeyboardMarkup or
% ReplyKeyboardMarkup or
% ReplyKeyboardRemove or
% ForceReply - 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.
%
comand = 'sendDocument';
usePM = false;
ResponseTimeout = Inf;
params = struct;
params.chat_id = (chat_id);
while ~isempty(varargin)
switch lower(varargin{1})
case 'document_id'
params.document =(varargin{2});
case 'document_url'
params.document =(varargin{2});
case 'document_file'
params.document = ...
matlab.net.http.io.FileProvider(string(varargin{2}));
case 'thumbf'
params.thumb = ...
matlab.net.http.io.FileProvider(string(varargin{2}));
case 'thumbs'
params.thumb = (varargin{2});
case 'caption'
params.caption = (varargin{2});
case 'parse_mode'
params.parse_mode = (varargin{2});
case 'disable_notification'
params.disable_notification = (varargin{2});
case 'reply_to_message_id'
params.reply_to_message_id = (varargin{2});
case 'reply_markup'
params.reply_markup = varargin{2};
case 'usepm'
usePM = varargin{2};
case 'responsetimeout'
ResponseTimeout = varargin{2};
otherwise
error(['Unexpected option: ' varargin{1}])
end %switch
varargin(1:2) = [];
end % while isempty
%send request
resp = sendMFD(obj, params, comand,...
'usepm', usePM, ...
'ResponseTimeout', ResponseTimeout);
response = resp.Body.Data; %extract data from ansver of server
end % function sendDocument
%%
function response = sendVideo(obj, chat_id, varargin)
% sendVideo - 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.
%
% chat_id - Integer or String - Required Unique identifier for the
% target chat or username of the target channel (in the format
% @channelusername)
%
% video_id, - InputFile or String - 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.
%
% video_id, video_url, video_file - String - video to send. Pass a
% video_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
%
% thumbf - InputFile or
% thumbs - String - 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 »
%
% caption - String - Optional. Audio caption, 0-1024
% characters after entities parsing
%
% parse_mode - String - Optional. Mode for parsing entities
% in the audio caption. See formatting options for more
% details.
%
% disable_notification - Boolean - Optional. Sends the message
% silently. Users will receive a notification with no sound.
%
% reply_to_message_id - Integer - Optional. If the message is a
% reply, ID of the original message
%
% reply_markup - InlineKeyboardMarkup or
% ReplyKeyboardMarkup or
% ReplyKeyboardRemove or
% ForceReply - 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.
%
% duration - Integer - Optional Duration of sent video in
%seconds
%
% width - Integer - Optional Video width
%
% height - Integer - Optional Video height
%
% supports_streaming Boolean Optional Pass True, if the
% uploaded video is suitable for streaming
%
comand = 'sendVideo';
usePM = false;
ResponseTimeout = Inf;
params = struct;
params.chat_id = (chat_id);
while ~isempty(varargin)
switch lower(varargin{1})
case 'video_id'
params.video =(varargin{2});
case 'video_url'
params.video =(varargin{2});
case 'video_file'
params.video = ...
matlab.net.http.io.FileProvider(string(varargin{2}));
case 'duration'
params.duration =(varargin{2});
case 'width'
params.width =(varargin{2});
case 'height'
params.height =(varargin{2});
case 'thumbf'
params.thumb = ...
matlab.net.http.io.FileProvider(string(varargin{2}));
case 'thumbs'
params.thumb = (varargin{2});
case 'caption'
params.caption = (varargin{2});
case 'parse_mode'
params.parse_mode = (varargin{2});
case 'supports_streaming'
params.supports_streaming = (varargin{2});
case 'disable_notification'
params.disable_notification = (varargin{2});
case 'reply_to_message_id'
params.reply_to_message_id = (varargin{2});
case 'reply_markup'
params.reply_markup = varargin{2};
case 'usepm'
usePM = varargin{2};
case 'responsetimeout'
ResponseTimeout = varargin{2};
otherwise
error(['Unexpected option: ' varargin{1}])
end %switch
varargin(1:2) = [];
end % while isempty
%send request
resp = sendMFD(obj, params, comand,...
'usepm', usePM, ...
'ResponseTimeout', ResponseTimeout);
response = resp.Body.Data; %extract data from ansver of server
end % function sendVideo
%%
function response = sendAnimation(obj, chat_id, varargin)
% sendAnimation - 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.
%
% chat_id - Integer or String - Required Unique identifier
% for the target chat or username of the target channel (in the
% format @channelusername)
%
% animation_id,
% animation_url,
% animation_file - String - 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
%
% duration Integer Optional Duration of sent animation in
% seconds
%
% width Integer Optional Animation width
%
% height Integer Optional Animation height
%
% thumbf - InputFile or
% thumbs - String - 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 »
%
% caption String Optional Animation caption (may also be
% used when resending animation by file_id), 0-1024 characters
% after entities parsing
%
% parse_mode String Optional Mode for parsing entities
% in the animation caption. See formatting options for more
% details.
%
% disable_notification Boolean Optional Sends the message
% silently. Users will receive a notification with no sound.
%
% reply_to_message_id Integer Optional If the message is a
% reply, ID of the original message
%
% reply_markup - InlineKeyboardMarkup or
% ReplyKeyboardMarkup or
% ReplyKeyboardRemove or
% ForceReply - 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.
%
comand = 'sendAnimation';
usePM = false;
ResponseTimeout = Inf;
params = struct;
params.chat_id = (chat_id);
while ~isempty(varargin)
switch lower(varargin{1})
case 'animation_id'
params.animation = (varargin{2});
case 'animation_url'
params.animation = (varargin{2});
case 'animation_file'
params.animation = ...
matlab.net.http.io.FileProvider(string(varargin{2}));
case 'duration'
params.duration = (varargin{2});
case 'width'
params.width = (varargin{2});
case 'height'
params.height = (varargin{2});
case 'thumbf'
params.thumb = ...
matlab.net.http.io.FileProvider(string(varargin{2}));
case 'thumbs'
params.thumb = (varargin{2});
case 'caption'
params.caption = (varargin{2});
case 'parse_mode'
params.parse_mode = (varargin{2});
case 'disable_notification'
params.disable_notification = (varargin{2});
case 'reply_to_message_id'
params.reply_to_message_id = (varargin{2});
case 'reply_markup'
params.reply_markup = varargin{2};
case 'usepm'
usePM = varargin{2};
case 'responsetimeout'
ResponseTimeout = varargin{2};
otherwise
error(['Unexpected option: ' varargin{1}])
end %switch
varargin(1:2) = [];
end % while isempty
%send request
resp = sendMFD(obj, params, comand,...
'usepm', usePM, ...
'ResponseTimeout', ResponseTimeout);
response = resp.Body.Data; %extract data from ansver of server
end % function sendAnimation
%%
function response = sendVoice(obj, chat_id, varargin)
% sendVoiceUse - 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.
%
% chat_id - Integer or String - Required Unique identifier for the
% target chat or username of the target channel (in the format
% @channelusername)
%
% voice_id,
% voice_url,
% voice_file - InputFile or String - Required 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 »
%
% caption - String - Optional. Audio caption, 0-1024
% characters after entities parsing
%
% parse_mode - String - Optional. Mode for parsing entities
% in the audio caption. See formatting options for more
% details.
%
% duration - Integer - Optional. Duration of the audio in
% seconds
%
% disable_notification - Boolean Optional. Sends the message
% silently. Users will receive a notification with no sound.
%
% reply_to_message_id - Integer Optional. If the message is a
% reply, ID of the original message
%
% reply_markup - InlineKeyboardMarkup or
% ReplyKeyboardMarkup or
% ReplyKeyboardRemove or
% ForceReply - 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.
%
usePM = false;
ResponseTimeout = Inf;
comand = 'sendVoice';
params = struct;
params.chat_id = (chat_id);
while ~isempty(varargin)
switch lower(varargin{1})
case 'voice_id'
params.voice =(varargin{2});
case 'voice_url'
params.voice =(varargin{2});
case 'voice_file'
params.voice = ...
matlab.net.http.io.FileProvider(string(varargin{2}));
case 'caption'
params.caption = (varargin{2});
case 'parse_mode'
params.parse_mode = (varargin{2});
case 'duration'
params.duration =(varargin{2});
case 'disable_notification'
params.disable_notification = (varargin{2});
case 'reply_to_message_id'
params.reply_to_message_id = (varargin{2});
case 'reply_markup'
params.reply_markup = varargin{2};
case 'usepm'
usePM = varargin{2};
case 'responsetimeout'
ResponseTimeout = varargin{2};
otherwise
error(['Unexpected option: ' varargin{1}])
end %switch
varargin(1:2) = [];
end % while isempty
%send request
resp = sendMFD(obj, params, comand,...
'usepm', usePM, ...
'ResponseTimeout', ResponseTimeout);
response = resp.Body.Data; %extract data from ansver of server
end % function sendVoice
%%
function response = sendVideoNote(obj, chat_id, varargin)
% sendVideoNoteAs 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.
%
% chat_id Integer or String Required Unique identifier for the
% target chat or username of the target channel (in the format
% @channelusername)
%
% video_note InputFile or String Required 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
%
% duration Integer Optional Duration of sent video in
% seconds
%
% length Integer Optional Video width and height, i.e.
% diameter of the video message
%
% thumbf - InputFile or
% thumbs - String - 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 »
%
% disable_notification - Boolean Optional. Sends the message
% silently. Users will receive a notification with no sound.
%
% reply_to_message_id - Integer Optional. If the message is a
% reply, ID of the original message
%
% reply_markup - InlineKeyboardMarkup or
% ReplyKeyboardMarkup or
% ReplyKeyboardRemove or
% ForceReply - 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.
%
comand = 'sendVideoNote';
usePM = false;
ResponseTimeout = Inf;
params = struct;
params.chat_id = (chat_id);
while ~isempty(varargin)
switch lower(varargin{1})
case 'video_note_id'
params.video_note =(varargin{2});
case 'video_note_url'
params.video_note =(varargin{2});
case 'video_note_file'