-
Notifications
You must be signed in to change notification settings - Fork 36
/
lua-bot-api.lua
1136 lines (837 loc) · 31.6 KB
/
lua-bot-api.lua
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
--[[
lua-bot-api.lua - A Lua library to the Telegram Bot API
(https://core.telegram.org/bots/api)
Copyright (C) 2016 @cosmonawt
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
]]
-- Import Libraries
local https = require("ssl.https")
local ltn12 = require("ltn12")
local encode = require("multipart.multipart-post").encode
local JSON = require("JSON")
local M = {} -- Main Bot Framework
local E = {} -- Extension Framework
local C = {} -- Configure Constructor
-- JSON Error handlers
function JSON:onDecodeError(message, text, location, etc)
if text then
if location then
message = string.format("%s at char %d of: %s", message, location, text)
else
message = string.format("%s: %s", message, text)
end
end
--print((os.date("%x %X")), "Error while decoding JSON:\n", message)
local datefile = os.date("%d-%m-%Y.txt")
print((os.date("%x %X")), "Error: decode JSON, logged in ".. datefile)
local log = io.open("errors/" .. datefile,"a+") -- open log
log:write((os.date("%x %X")), "Error while decoding JSON:\n", message .. "\n") -- write in log
log:close()
end
function JSON:onDecodeOfHTMLError(message, text, _nil, etc)
if text then
if location then
message = string.format("%s at char %d of: %s", message, location, text)
else
message = string.format("%s: %s", message, text)
end
end
--print((os.date("%x %X")), "Error while decoding JSON [HTML]:\n", message)
local datefile = os.date("%d-%m-%Y.txt")
print((os.date("%x %X")), "Error: decode JSON [HTML], logged in ".. datefile)
local log = io.open("errors/" .. datefile,"a+") -- open log
log:write((os.date("%x %X")), "Error while decoding JSON [HTML]:\n", message .. "\n") -- write in log
log:close()
end
function JSON:onDecodeOfNilError(message, _nil, _nil, etc)
if text then
if location then
message = string.format("%s at char %d of: %s", message, location, text)
else
message = string.format("%s: %s", message, text)
end
end
print((os.date("%x %X")), "Error while decoding JSON [nil]:\n", message)
end
function JSON:onEncodeError(message, etc)
print((os.date("%x %X")), "Error while encoding JSON:\n", message)
end
-- configure and initialize bot
local function configure(token)
if (token == "") then
token = nil
end
M.token = assert(token, "No token specified!")
local bot_info = M.getMe()
if (bot_info) then
M.id = bot_info.result.id
M.username = bot_info.result.username
M.first_name = bot_info.result.first_name
end
return M, E
end
C.configure = configure
local function makeRequest(method, request_body)
local response = {}
local body, boundary = encode(request_body)
local success, code, headers, status = https.request{
url = "https://api.telegram.org/bot" .. M.token .. "/" .. method,
method = "POST",
headers = {
["Content-Type"] = "multipart/form-data; boundary=" .. boundary,
["Content-Length"] = string.len(body),
},
source = ltn12.source.string(body),
sink = ltn12.sink.table(response),
}
local r = {
success = success or "false",
code = code or "0",
headers = table.concat(headers or {"no headers"}),
status = status or "0",
body = table.concat(response or {"no response"}),
}
return r
end
-- Helper functions
local function downloadFile(file_id, download_path)
if not file_id then return nil, "file_id not specified" end
if not download_path then return nil, "download_path not specified" end
local response = {}
local file_info = getFile(file_id)
local download_file_path = download_path or "downloads/" .. file_info.result.file_path
local download_file = io.open(download_file_path, "w")
if not download_file then return nil, "download_file could not be created"
else
local success, code, headers, status = https.request{
url = "https://api.telegram.org/file/bot" .. M.token .. "/" .. file_info.result.file_path,
--source = ltn12.source.string(body),
sink = ltn12.sink.file(download_file),
}
local r = {
success = true,
download_path = download_file_path,
file = file_info.result
}
return r
end
end
M.downloadFile = downloadFile
local function generateReplyKeyboardMarkup(keyboard, resize_keyboard, one_time_keyboard, selective)
if not keyboard then return nil, "keyboard not specified" end
if #keyboard < 1 then return nil, "keyboard is empty" end
local response = {}
response.keyboard = keyboard
response.resize_keyboard = resize_keyboard
response.one_time_keyboard = one_time_keyboard
response.selective = selective
local responseString = JSON:encode(response)
return responseString
end
M.generateReplyKeyboardMarkup = generateReplyKeyboardMarkup
local function generateReplyKeyboardHide(hide_keyboard, selective)
local response = {}
response.hide_keyboard = true
response.selective = selective
local responseString = JSON:encode(response)
return responseString
end
M.generateReplyKeyboardHide = generateReplyKeyboardHide
local function generateForceReply(force_reply, selective)
local response = {}
response.force_reply = true
response.selective = selective
local responseString = JSON:encode(response)
return responseString
end
M.generateForceReply = generateForceReply
-- Bot API 1.0
local function getUpdates(offset, limit, timeout, allowed_updates)
local request_body = {}
request_body.offset = offset
request_body.limit = limit
request_body.timeout = timeout or 0
request_body.allowed_updates = allowed_updates or nil
local response = makeRequest("getUpdates", request_body)
if (response.success == 1) then
return JSON:decode(response.body)
else
return nil, "Request Error"
end
end
M.getUpdates = getUpdates
local function getMe()
local request_body = {""}
local response = makeRequest("getMe",request_body)
if (response.success == 1) then
return JSON:decode(response.body)
else
return nil, "Request Error"
end
end
M.getMe = getMe
local function sendMessage(chat_id, text, parse_mode, disable_web_page_preview, disable_notification, reply_to_message_id, reply_markup)
if not chat_id then return nil, "chat_id not specified" end
if not text then return nil, "text not specified" end
local allowed_parse_mode = {
["Markdown"] = true,
["HTML"] = true
}
if (not allowed_parse_mode[parse_mode]) then parse_mode = "" end
local request_body = {}
request_body.chat_id = chat_id
request_body.text = tostring(text)
request_body.parse_mode = parse_mode
request_body.disable_web_page_preview = tostring(disable_web_page_preview)
request_body.disable_notification = tostring(disable_notification)
request_body.reply_to_message_id = tonumber(reply_to_message_id)
request_body.reply_markup = reply_markup or ""
local response = makeRequest("sendMessage",request_body)
if (response.success == 1) then
return JSON:decode(response.body)
else
return nil, "Request Error"
end
end
M.sendMessage = sendMessage
local function forwardMessage(chat_id, from_chat_id, disable_notification, message_id)
if not chat_id then return nil, "chat_id not specified" end
if not from_chat_id then return nil, "from_chat_id not specified" end
if not message_id then return nil, "message_id not specified" end
local request_body = {""}
request_body.chat_id = chat_id
request_body.from_chat_id = from_chat_id
request_body.disable_notification = tostring(disable_notification)
request_body.message_id = tonumber(message_id)
local response = makeRequest("forwardMessage",request_body)
if (response.success == 1) then
return JSON:decode(response.body)
else
return nil, "Request Error"
end
end
M.forwardMessage = forwardMessage
local function sendPhoto(chat_id, photo, caption, disable_notification, reply_to_message_id, reply_markup)
if not chat_id then return nil, "chat_id not specified" end
if not photo then return nil, "photo not specified" end
local request_body = {""}
local file_id = ""
local photo_data = {}
if not(string.find(photo, "%.")) then
file_id = photo
else
file_id = nil
local photo_file = io.open(photo, "r")
photo_data.filename = photo
photo_data.data = photo_file:read("*a")
photo_data.content_type = "image"
photo_file:close()
end
request_body.chat_id = chat_id
request_body.photo = file_id or photo_data
request_body.caption = caption
request_body.disable_notification = tostring(disable_notification)
request_body.reply_to_message_id = tonumber(reply_to_message_id)
request_body.reply_markup = reply_markup
local response = makeRequest("sendPhoto",request_body)
if (response.success == 1) then
return JSON:decode(response.body)
else
return nil, "Request Error"
end
end
M.sendPhoto = sendPhoto
local function sendAudio(chat_id, audio, caption, duration, performer, title, disable_notification, reply_to_message_id, reply_markup)
if not chat_id then return nil, "chat_id not specified" end
if not audio then return nil, "audio not specified" end
local request_body = {}
local file_id = ""
local audio_data = {}
if not(string.find(audio, "%.mp3")) then
file_id = audio
else
file_id = nil
local audio_file = io.open(audio, "r")
audio_data.filename = audio
audio_data.data = audio_file:read("*a")
audio_data.content_type = "audio/mpeg"
audio_file:close()
end
request_body.chat_id = chat_id
request_body.audio = file_id or audio_data
request_body.duration = duration
request_body.caption = caption
request_body.performer = performer
request_body.title = title
request_body.disable_notification = tostring(disable_notification)
request_body.reply_to_message_id = tonumber(reply_to_message_id)
request_body.reply_markup = reply_markup
local response = makeRequest("sendAudio",request_body)
if (response.success == 1) then
return JSON:decode(response.body)
else
return nil, "Request Error"
end
end
M.sendAudio = sendAudio
local function sendDocument(chat_id, document, caption, disable_notification, reply_to_message_id, reply_markup)
if not chat_id then return nil, "chat_id not specified" end
if not document then return nil, "document not specified" end
local request_body = {}
local file_id = ""
local document_data = {}
if not(string.find(document, "%.")) then
file_id = document
else
file_id = nil
local document_file = io.open(document, "r")
document_data.filename = document
document_data.data = document_file:read("*a")
document_file:close()
end
request_body.chat_id = chat_id
request_body.document = file_id or document_data
request_body.caption = caption
request_body.disable_notification = tostring(disable_notification)
request_body.reply_to_message_id = tonumber(reply_to_message_id)
request_body.reply_markup = reply_markup
local response = makeRequest("sendDocument",request_body)
if (response.success == 1) then
return JSON:decode(response.body)
else
return nil, "Request Error"
end
end
M.sendDocument = sendDocument
local function sendSticker(chat_id, sticker, disable_notification, reply_to_message_id, reply_markup)
if not chat_id then return nil, "chat_id not specified" end
if not sticker then return nil, "sticker not specified" end
local request_body = {}
local file_id = ""
local sticker_data = {}
if not(string.find(sticker, "%.webp")) then
file_id = sticker
else
file_id = nil
local sticker_file = io.open(sticker, "r")
sticker_data.filename = sticker
sticker_data.data = sticker_file:read("*a")
sticker_data.content_type = "image/webp"
sticker_file:close()
end
request_body.chat_id = chat_id
request_body.sticker = file_id or sticker_data
request_body.disable_notification = tostring(disable_notification)
request_body.reply_to_message_id = tonumber(reply_to_message_id)
request_body.reply_markup = reply_markup
local response = makeRequest("sendSticker",request_body)
if (response.success == 1) then
return JSON:decode(response.body)
else
return nil, "Request Error"
end
end
M.sendSticker = sendSticker
local function sendVideo(chat_id, video, duration, caption, disable_notification, reply_to_message_id, reply_markup)
if not chat_id then return nil, "chat_id not specified" end
if not video then return nil, "video not specified" end
local request_body = {}
local file_id = ""
local video_data = {}
if not(string.find(video, "%.")) then
file_id = video
else
file_id = nil
local video_file = io.open(video, "r")
video_data.filename = video
video_data.data = video_file:read("*a")
video_data.content_type = "video"
video_file:close()
end
request_body.chat_id = chat_id
request_body.video = file_id or video_data
request_body.duration = duration
request_body.caption = caption
request_body.disable_notification = tostring(disable_notification)
request_body.reply_to_message_id = tonumber(reply_to_message_id)
request_body.reply_markup = reply_markup
local response = makeRequest("sendVideo",request_body)
if (response.success == 1) then
return JSON:decode(response.body)
else
return nil, "Request Error"
end
end
M.sendVideo = sendVideo
local function sendVoice(chat_id, voice, caption, duration, disable_notification, reply_to_message_id, reply_markup)
if not chat_id then return nil, "chat_id not specified" end
if not voice then return nil, "voice not specified" end
local request_body = {}
local file_id = ""
local voice_data = {}
if not(string.find(voice, "%.ogg")) then
file_id = voice
else
file_id = nil
local voice_file = io.open(voice, "r")
voice_data.filename = voice
voice_data.data = voice_file:read("*a")
voice_data.content_type = "audio/ogg"
voice_file:close()
end
request_body.chat_id = chat_id
request_body.voice = file_id or voice_data
request_body.duration = duration
request_body.caption = caption
request_body.disable_notification = tostring(disable_notification)
request_body.reply_to_message_id = tonumber(reply_to_message_id)
request_body.reply_markup = reply_markup
local response = makeRequest("sendVoice",request_body)
if (response.success == 1) then
return JSON:decode(response.body)
else
return nil, "Request Error"
end
end
M.sendVoice = sendVoice
local function sendLocation(chat_id, latitude, longitude, disable_notification, reply_to_message_id, reply_markup)
if not chat_id then return nil, "chat_id not specified" end
if not latitude then return nil, "latitude not specified" end
if not longitude then return nil, "longitude not specified" end
local request_body = {}
request_body.chat_id = chat_id
request_body.latitude = tonumber(latitude)
request_body.longitude = tonumber(longitude)
request_body.disable_notification = tostring(disable_notification)
request_body.reply_to_message_id = tonumber(reply_to_message_id)
request_body.reply_markup = reply_markup
local response = makeRequest("sendLocation",request_body)
if (response.success == 1) then
return JSON:decode(response.body)
else
return nil, "Request Error"
end
end
M.sendLocation = sendLocation
local function sendChatAction(chat_id, action)
if not chat_id then return nil, "chat_id not specified" end
if not action then return nil, "action not specified" end
local request_body = {}
local allowedAction = {
["typing"] = true,
["upload_photo"] = true,
["record_video"] = true,
["upload_video"] = true,
["record_audio"] = true,
["upload_audio"] = true,
["upload_document"] = true,
["find_location"] = true,
}
if (not allowedAction[action]) then action = "typing" end
request_body.chat_id = chat_id
request_body.action = action
local response = makeRequest("sendChatAction",request_body)
if (response.success == 1) then
return JSON:decode(response.body)
else
return nil, "Request Error"
end
end
M.sendChatAction = sendChatAction
local function getUserProfilePhotos(user_id, offset, limit)
if not user_id then return nil, "user_id not specified" end
local request_body = {}
request_body.user_id = tonumber(user_id)
request_body.offset = offset
request_body.limit = limit
local response = makeRequest("getUserProfilePhotos",request_body)
if (response.success == 1) then
return JSON:decode(response.body)
else
return nil, "Request Error"
end
end
M.getUserProfilePhotos = getUserProfilePhotos
local function getFile(file_id)
if not file_id then return nil, "file_id not specified" end
local request_body = {}
request_body.file_id = file_id
local response = makeRequest("getFile",request_body)
if (response.success == 1) then
return JSON:decode(response.body)
else
return nil, "Request Error"
end
end
M.getFile = getFile
local function answerInlineQuery(inline_query_id, results, cache_time, is_personal, next_offset, switch_pm_text, switch_pm_parameter)
if not inline_query_id then return nil, "inline_query_id not specified" end
if not results then return nil, "results not specified" end
local request_body = {}
request_body.inline_query_id = tostring(inline_query_id)
request_body.results = JSON:encode(results)
request_body.cache_time = tonumber(cache_time)
request_body.is_personal = tostring(is_personal)
request_body.next_offset = tostring(next_offset)
request_body.switch_pm_text = tostring(switch_pm_text)
request_body.switch_pm_parameter = tostring(switch_pm_text)
local response = makeRequest("answerInlineQuery",request_body)
if (response.success == 1) then
return JSON:decode(response.body)
else
return nil, "Request Error"
end
end
M.answerInlineQuery = answerInlineQuery
-- Bot API 2.0
local function sendVenue(chat_id, latitude, longitude, title, adress, foursquare_id, disable_notification, reply_to_message_id, reply_markup)
if not chat_id then return nil, "chat_id not specified" end
if not latitude then return nil, "latitude not specified" end
if not longitude then return nil, "longitude not specified" end
if not title then return nil, "title not specified" end
if not adress then return nil, "adress not specified" end
local request_body = {}
request_body.chat_id = chat_id
request_body.latitude = tonumber(latitude)
request_body.longitude = tonumber(longitude)
request_body.title = title
request_body.adress = adress
request_body.foursquare_id = foursquare_id
request_body.disable_notification = tostring(disable_notification)
request_body.reply_to_message_id = tonumber(reply_to_message_id)
request_body.reply_markup = reply_markup
local response = makeRequest("sendVenue",request_body)
if (response.success == 1) then
return JSON:decode(response.body)
else
return nil, "Request Error"
end
end
M.sendVenue = sendVenue
local function sendContact(chat_id, phone_number, first_name, last_name, disable_notification, reply_to_message_id, reply_markup)
if not chat_id then return nil, "chat_id not specified" end
if not phone_number then return nil, "phone_number not specified" end
if not first_name then return nil, "first_name not specified" end
request_body.chat_id = chat_id
request_body.phone_number = tostring(phone_number)
request_body.first_name = tostring(first_name)
request_body.last_name = tostring(last_name)
request_body.disable_notification = tostring(disable_notification)
request_body.reply_to_message_id = tonumber(reply_to_message_id)
request_body.reply_markup = reply_markup
local response = makeRequest("sendContact",request_body)
if (response.success == 1) then
return JSON:decode(response.body)
else
return nil, "Request Error"
end
end
M.sendContact = sendContact
local function kickChatMember(chat_id, user_id)
if not chat_id then return nil, "chat_id not specified" end
if not user_id then return nil, "user_id not specified" end
local request_body = {}
request_body.chat_id = chat_id
request_body.user_id = tonumber(user_id)
local response = makeRequest("kickChatMember",request_body)
if (response.success == 1) then
return JSON:decode(response.body)
else
return nil, "Request Error"
end
end
M.kickChatMember = kickChatMember
local function unbanChatMember(chat_id, user_id)
if not chat_id then return nil, "chat_id not specified" end
if not user_id then return nil, "user_id not specified" end
local request_body = {}
request_body.chat_id = chat_id
request_body.user_id = tonumber(user_id)
local response = makeRequest("unbanChatMember",request_body)
if (response.success == 1) then
return JSON:decode(response.body)
else
return nil, "Request Error"
end
end
M.unbanChatMember = unbanChatMember
local function answerCallbackQuery(callback_query_id, text, show_alert, cache_time)
if not callback_query_id then return nil, "callback_query_id not specified" end
local request_body = {}
request_body.callback_query_id = tostring(callback_query_id)
request_body.text = tostring(text)
request_body.show_alert = tostring(show_alert)
request_body.cache_time = tostring(cache_time)
local response = makeRequest("answerCallbackQuery",request_body)
if (response.success == 1) then
return JSON:decode(response.body)
else
return nil, "Request Error"
end
end
M.answerCallbackQuery = answerCallbackQuery
local function editMessageText(chat_id, message_id, inline_message_id, text, parse_mode, disable_web_page_preview, reply_markup)
if not chat_id and not inline_message_id then return nil, "chat_id not specified" end
if not message_id and not inline_message_id then return nil, "message_id not specified" end
if not inline_message_id and not (chat_id and message_id) then return nil, "inline_message_id not specified" end
if not text then return nil, "text not specified" end
local request_body = {}
request_body.chat_id = chat_id
request_body.message_id = tonumber(message_id)
request_body.inline_message_id = tostring(inline_message_id)
request_body.text = tostring(text)
request_body.parse_mode = tostring(parse_mode)
request_body.disable_web_page_preview = disable_web_page_preview
request_body.reply_markup = reply_markup
local response = makeRequest("editMessageText",request_body)
if (response.success == 1) then
return JSON:decode(response.body)
else
return nil, "Request Error"
end
end
M.editMessageText = editMessageText
local function editMessageCaption(chat_id, message_id, inline_message_id, caption, reply_markup)
if not chat_id and not inline_message_id then return nil, "chat_id not specified" end
if not message_id and not inline_message_id then return nil, "message_id not specified" end
if not inline_message_id and not (chat_id and message_id) then return nil, "inline_message_id not specified" end
if not caption then return nil, "caption not specified" end
local request_body = {}
request_body.chat_id = chat_id
request_body.message_id = tonumber(message_id)
request_body.inline_message_id = tostring(inline_message_id)
request_body.caption = tostring(caption)
request_body.reply_markup = reply_markup
local response = makeRequest("editMessageCaption",request_body)
if (response.success == 1) then
return JSON:decode(response.body)
else
return nil, "Request Error"
end
end
M.editMessageCaption = editMessageCaption
local function editMessageReplyMarkup(chat_id, message_id, inline_message_id, reply_markup)
if not chat_id and not inline_message_id then return nil, "chat_id not specified" end
if not message_id and not inline_message_id then return nil, "message_id not specified" end
if not inline_message_id and not (chat_id and message_id) then return nil, "inline_message_id not specified" end
local request_body = {}
request_body.chat_id = chat_id
request_body.message_id = tonumber(message_id)
request_body.inline_message_id = tostring(inline_message_id)
request_body.reply_markup = reply_markup
local response = makeRequest("editMessageReplyMarkup",request_body)
if (response.success == 1) then
return JSON:decode(response.body)
else
return nil, "Request Error"
end
end
M.editMessageReplyMarkup = editMessageReplyMarkup
-- Bot API 2.1
local function getChat(chat_id)
if not chat_id then return nil, "chat_id not specified" end
local request_body = {}
request_body.chat_id = chat_id
local response = makeRequest("getChat", request_body)
if (response.success == 1) then
return JSON:decode(response.body)
else
return nil, "Request Error"
end
end
M.getChat = getChat
local function leaveChat(chat_id)
if not chat_id then return nil, "chat_id not specified" end
local request_body = {}
request_body.chat_id = chat_id
local response = makeRequest("leaveChat", request_body)
if (response.success == 1) then
return JSON:decode(response.body)
else
return nil, "Request Error"
end
end
M.leaveChat = leaveChat
local function getChatAdministrators(chat_id)
if not chat_id then return nil, "chat_id not specified" end
local request_body = {}
request_body.chat_id = chat_id
local response = makeRequest("getChatAdministrators", request_body)
if (response.success == 1) then
return JSON:decode(response.body)
else
return nil, "Request Error"
end
end
M.getChatAdministrators = getChatAdministrators
local function getChatMembersCount(chat_id)
if not chat_id then return nil, "chat_id not specified" end
local request_body = {}
request_body.chat_id = chat_id
local response = makeRequest("getChatMembersCount", request_body)
if (response.success == 1) then
return JSON:decode(response.body)
else
return nil, "Request Error"
end
end
M.getChatMembersCount = getChatMembersCount
local function getChatMember(chat_id, user_id)
if not chat_id then return nil, "chat_id not specified" end
if not user_id then return nil, "user_id not specified" end
local request_body = {}
request_body.chat_id = chat_id
request_body.user_id = user_id
local response = makeRequest("getChatMember", request_body)
if (response.success == 1) then
return JSON:decode(response.body)
else
return nil, "Request Error"
end
end
M.getChatMember = getChatMember
-- Extension Framework
local function onUpdateReceive(update) end
E.onUpdateReceive = onUpdateReceive
local function onTextReceive(message) end
E.onMessageReceive = onMessageReceive
local function onPhotoReceive(message) end
E.onPhotoReceive = onPhotoReceive
local function onAudioReceive(message) end
E.onAudioReceive = onAudioReceive
local function onDocumentReceive(message) end
E.onDocumentReceive = onDocumentReceive
local function onStickerReceive(message) end
E.onStickerReceive = onStickerReceive
local function onVideoReceive(message) end
E.onVideoReceive = onVideoReceive
local function onVoiceReceive(message) end
E.onVoiceReceive = onVoiceReceive
local function onContactReceive(message) end
E.onContactReceive = onContactReceive
local function onLocationReceive(message) end