-
Notifications
You must be signed in to change notification settings - Fork 9
/
methods.lua
670 lines (445 loc) · 16.2 KB
/
methods.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
local curl = require 'cURL'
local URL = require 'socket.url'
local JSON = require 'dkjson'
local config = require 'config'
local clr = require 'term.colors'
local api_errors = require 'api_bad_requests'
local BASE_URL = 'https://api.telegram.org/bot' .. config.bot_api_key
local api = {}
local curl_context = curl.easy{verbose = config.bot_settings.debug_connections}
local function getCode(err)
for k,v in pairs(api_errors) do
if err:match(v) then
return k
end
end
return 7 --if unknown
end
local function performRequest(url)
local data = {}
-- if multithreading is made, this request must be in critical section
local c = curl_context:setopt_url(url)
:setopt_writefunction(table.insert, data)
:perform()
return table.concat(data), c:getinfo_response_code()
end
local function sendRequest(url)
local dat, code = performRequest(url)
local tab = JSON.decode(dat)
if not tab then
print(clr.red..'Error while parsing JSON'..clr.reset, code)
print(clr.yellow..'Data:'..clr.reset, dat)
api.sendAdmin(dat..'\n'..code)
--error('Incorrect response')
end
if code ~= 200 then
if code == 400 then
--error code 400 is general: try to specify
code = getCode(tab.description)
end
print(clr.red..code, tab.description..clr.reset)
db:hincrby('bot:errors', code, 1)
return false, code, tab.description
end
if not tab.ok then
api.sendAdmin('Not tab.ok')
return false, tab.description
end
return tab
end
local function log_error(method, code, extras, description)
if not method or not code then return end
local ignored_errors = {403, 429, 110, 111, 116, 131, 150, 118}
for _, ignored_code in pairs(ignored_errors) do
if tonumber(code) == tonumber(ignored_code) then return end
end
local text = 'Type: #badrequest\nMethod: #'..method..'\nCode: #n'..code
if description then
text = text..'\nDesc: '..description
end
if extras then
if next(extras) then
for i, extra in pairs(extras) do
text = text..'\n#more'..i..': '..extra
end
else
text = text..'\n#more: empty'
end
else
text = text..'\n#more: nil'
end
api.sendLog(text)
end
function api.getMe()
local url = BASE_URL .. '/getMe'
return sendRequest(url)
end
function api.getUpdates(offset)
local url = BASE_URL .. '/getUpdates?timeout=20'
if offset then
url = url .. '&offset=' .. offset
end
return sendRequest(url)
end
function api.firstUpdate()
local url = BASE_URL .. '/getUpdates?timeout=3600&limit=1&allowed_updates='..JSON.encode(config.allowed_updates)
return sendRequest(url)
end
function api.unbanChatMember(chat_id, user_id)
local url = BASE_URL .. '/unbanChatMember?chat_id=' .. chat_id .. '&user_id=' .. user_id
return sendRequest(url)
end
function api.kickChatMember(chat_id, user_id)
local url = BASE_URL .. '/kickChatMember?chat_id=' .. chat_id .. '&user_id=' .. user_id
local success, code, description = sendRequest(url)
if success then
db:srem(string.format('chat:%d:members', chat_id), user_id)
end
return success, code, description
end
local function code2text(code)
--the default error description can't be sent as output, so a translation is needed
if code == 101 or code == 105 or code == 107 then
return _("I'm not an admin, I can't kick people")
elseif code == 102 or code == 104 then
return _("I can't kick or ban an admin")
elseif code == 103 then
return _("There is no need to unban in a normal group")
elseif code == 106 or code == 134 then
return _("This user is not a chat member")
elseif code == 7 then
return false
end
return false
end
function api.banUser(chat_id, user_id)
local res, code = api.kickChatMember(chat_id, user_id) --try to kick. "code" is already specific
if res then --if the user has been kicked, then...
return res --return res and not the text
else ---else, the user haven't been kicked
local text = code2text(code)
return res, code, text --return the motivation too
end
end
function api.kickUser(chat_id, user_id)
local res, code = api.kickChatMember(chat_id, user_id) --try to kick
if res then --if the user has been kicked, then...
--unban
api.unbanChatMember(chat_id, user_id)
api.unbanChatMember(chat_id, user_id)
api.unbanChatMember(chat_id, user_id)
return res
else
local motivation = code2text(code)
return res, code, motivation
end
end
function api.unbanUser(chat_id, user_id)
local res, code = api.unbanChatMember(chat_id, user_id)
return true
end
function api.getChat(chat_id)
local url = BASE_URL .. '/getChat?chat_id=' .. chat_id
return sendRequest(url)
end
function api.getChatAdministrators(chat_id)
local url = BASE_URL .. '/getChatAdministrators?chat_id=' .. chat_id
local res, code, desc = sendRequest(url)
if not res and code then --if the request failed and a code is returned (not 403 and 429)
log_error('getChatAdministrators', code, nil, desc)
end
return res, code
end
function api.getChatMembersCount(chat_id)
local url = BASE_URL .. '/getChatMembersCount?chat_id=' .. chat_id
return sendRequest(url)
end
function api.getChatMember(chat_id, user_id)
local url = BASE_URL .. '/getChatMember?chat_id=' .. chat_id .. '&user_id=' .. user_id
local res, code, desc = sendRequest(url)
if not res and code then --if the request failed and a code is returned (not 403 and 429)
log_error('getChatMember', code, nil, desc)
end
return res, code
end
function api.leaveChat(chat_id)
local url = BASE_URL .. '/leaveChat?chat_id=' .. chat_id
local res, code = sendRequest(url)
if res then
db:srem(string.format('chat:%d:members', chat_id), bot.id)
end
if not res and code then --if the request failed and a code is returned (not 403 and 429)
log_error('leaveChat', code)
end
return res, code
end
function api.sendMessage(chat_id, text, parse_mode, reply_markup, reply_to_message_id, link_preview)
--print(text)
local url = BASE_URL .. '/sendMessage?chat_id=' .. chat_id .. '&text=' .. URL.escape(text)
if reply_to_message_id then
url = url .. '&reply_to_message_id=' .. reply_to_message_id
end
if parse_mode then
if type(parse_mode) == 'string' and parse_mode:lower() == 'html' then
url = url .. '&parse_mode=HTML'
else
url = url .. '&parse_mode=Markdown'
end
end
if reply_markup then
url = url..'&reply_markup='..URL.escape(JSON.encode(reply_markup))
end
if not link_preview then
url = url .. '&disable_web_page_preview=true'
end
local res, code, desc = sendRequest(url)
if not res and code then --if the request failed and a code is returned (not 403 and 429)
log_error('sendMessage', code, {text}, desc)
end
return res, code --return false, and the code
end
----
function api.sendMessageHTML(chat_id, text, use_html, reply_to_message_id, send_sound, disable_web)
--print(text)
local url = BASE_URL .. '/sendMessage?chat_id=' .. chat_id .. '&text=' .. URL.escape(text)
if not disable_web then
url = url .. '&disable_web_page_preview=true'
end
if reply_to_message_id then
url = url .. '&reply_to_message_id=' .. reply_to_message_id
end
if use_html then
url = url .. '&parse_mode=HTML'
end
if not send_sound then
url = url..'&disable_notification=true'--messages are silent by default
end
local res, code = sendRequest(url)
if not res and code then --if the request failed and a code is returned (not 403 and 429)
if code ~= 403 and code ~= 429 and code ~= 110 and code ~= 111 and code ~= 116 and code ~= 131 then
save_log('send_msg', code..'\n'..text)
end
end
return res, code --return false, and the code
end
---
function api.sendReply(msg, text, markd, reply_markup, link_preview)
return api.sendMessage(msg.chat.id, text, markd, reply_markup, msg.message_id, link_preview)
end
function api.editMessageText(chat_id, message_id, text, parse_mode, keyboard)
local url = BASE_URL .. '/editMessageText?chat_id=' .. chat_id .. '&message_id='..message_id..'&text=' .. URL.escape(text)
if parse_mode then
if type(parse_mode) == 'string' and parse_mode:lower() == 'html' then
url = url .. '&parse_mode=HTML'
else
url = url .. '&parse_mode=Markdown'
end
end
url = url .. '&disable_web_page_preview=true'
if keyboard then
url = url..'&reply_markup='..URL.escape(JSON.encode(keyboard))
end
local res, code, desc = sendRequest(url)
if not res and code then --if the request failed and a code is returned (not 403 and 429)
log_error('editMessageText', code, {text}, desc)
end
return res, code
end
function api.editMarkup(chat_id, message_id, reply_markup)
local url = BASE_URL .. '/editMessageReplyMarkup?chat_id=' .. chat_id ..
'&message_id='..message_id..
'&reply_markup='..URL.escape(JSON.encode(reply_markup))
return sendRequest(url)
end
function api.answerCallbackQuery(callback_query_id, text, show_alert, cache_time)
local url = BASE_URL .. '/answerCallbackQuery?callback_query_id=' .. callback_query_id .. '&text=' .. URL.escape(text)
if show_alert then
url = url..'&show_alert=true'
end
if cache_time then
local seconds = tonumber(cache_time) * 3600
url = url..'&cache_time='..seconds
end
return sendRequest(url)
end
function api.sendChatAction(chat_id, action)
-- Support actions are typing, upload_photo, record_video, upload_video, record_audio, upload_audio, upload_document, find_location
local url = BASE_URL .. '/sendChatAction?chat_id=' .. chat_id .. '&action=' .. action
return sendRequest(url)
end
function api.sendLocation(chat_id, latitude, longitude, reply_to_message_id)
local url = BASE_URL .. '/sendLocation?chat_id=' .. chat_id .. '&latitude=' .. latitude .. '&longitude=' .. longitude
if reply_to_message_id then
url = url .. '&reply_to_message_id=' .. reply_to_message_id
end
return sendRequest(url)
end
function api.forwardMessage(chat_id, from_chat_id, message_id)
local url = BASE_URL .. '/forwardMessage?chat_id=' .. chat_id .. '&from_chat_id=' .. from_chat_id .. '&message_id=' .. message_id
local res, code, desc = sendRequest(url)
if not res and code then --if the request failed and a code is returned (not 403 and 429)
log_error('forwardMessage', code, nil, desc)
end
return res, code
end
function api.getFile(file_id)
local url = BASE_URL .. '/getFile?file_id='..file_id
return sendRequest(url)
end
------------------------Inline methods-----------------------------------------
function api.answerInlineQuery(inline_query_id, results, cache_time, is_personal, switch_pm_text, switch_pm_parameter)
local url = BASE_URL .. '/answerInlineQuery?inline_query_id='..inline_query_id..'&results='..JSON.encode(results)
if cache_time then
url = url..'&cache_time='..cache_time
end
if is_personal then
url = url..'&is_personal=True'
end
if switch_pm_text then
url = url..'&switch_pm_text='..switch_pm_text
end
if switch_pm_parameter then
url = url..'&switch_pm_parameter='..switch_pm_parameter
end
return sendRequest(url)
end
----------------------------By Id----------------------------------------------
function api.sendMediaId(chat_id, file_id, media, reply_to_message_id)
local url = BASE_URL
if media == 'voice' then
url = url..'/sendVoice?chat_id='..chat_id..'&voice='
elseif media == 'video' then
url = url..'/sendVideo?chat_id='..chat_id..'&video='
elseif media == 'photo' then
url = url..'/sendPhoto?chat_id='..chat_id..'&photo='
else
return false, 'Media passed is not voice/video/photo'
end
url = url..file_id
if reply_to_message_id then
url = url..'&reply_to_message_id='..reply_to_message_id
end
return sendRequest(url)
end
function api.sendPhotoId(chat_id, file_id, reply_to_message_id)
local url = BASE_URL .. '/sendPhoto?chat_id=' .. chat_id .. '&photo=' .. file_id
if reply_to_message_id then
url = url..'&reply_to_message_id='..reply_to_message_id
end
return sendRequest(url)
end
function api.sendDocumentId(chat_id, file_id, reply_to_message_id, caption)
local url = BASE_URL .. '/sendDocument?chat_id=' .. chat_id .. '&document=' .. file_id
if reply_to_message_id then
url = url..'&reply_to_message_id='..reply_to_message_id
end
if caption then
url = url..'&caption='..URL.escape(caption)
end
return sendRequest(url)
end
----------------------------To curl--------------------------------------------
local function curlRequest(curl_command)
-- Use at your own risk. Will not check for success.
io.popen(curl_command)
end
function api.sendPhoto(chat_id, photo, caption, reply_to_message_id)
local url = BASE_URL .. '/sendPhoto'
local curl_command = 'curl "' .. url .. '" -F "chat_id=' .. chat_id .. '" -F "photo=@' .. photo .. '"'
if reply_to_message_id then
curl_command = curl_command .. ' -F "reply_to_message_id=' .. reply_to_message_id .. '"'
end
if caption then
curl_command = curl_command .. ' -F "caption=' .. caption .. '"'
end
return curlRequest(curl_command)
end
function api.sendDocument(chat_id, document, reply_to_message_id, caption)
local url = BASE_URL .. '/sendDocument'
local curl_command = 'curl "' .. url .. '" -F "chat_id=' .. chat_id .. '" -F "document=@' .. document .. '"'
if reply_to_message_id then
curl_command = curl_command .. ' -F "reply_to_message_id=' .. reply_to_message_id .. '"'
end
if caption then
curl_command = curl_command .. ' -F "caption=' .. caption .. '"'
end
return curlRequest(curl_command)
end
function api.sendSticker(chat_id, sticker, reply_to_message_id)
local url = BASE_URL .. '/sendSticker'
local curl_command = 'curl "' .. url .. '" -F "chat_id=' .. chat_id .. '" -F "sticker=@' .. sticker .. '"'
if reply_to_message_id then
curl_command = curl_command .. ' -F "reply_to_message_id=' .. reply_to_message_id .. '"'
end
return curlRequest(curl_command)
end
function api.sendStickerId(chat_id, file_id, reply_to_message_id)
local url = BASE_URL .. '/sendSticker?chat_id=' .. chat_id .. '&sticker=' .. file_id
if reply_to_message_id then
url = url..'&reply_to_message_id='..reply_to_message_id
end
return sendRequest(url)
end
function api.sendAudio(chat_id, audio, reply_to_message_id, duration, performer, title)
local url = BASE_URL .. '/sendAudio'
local curl_command = 'curl "' .. url .. '" -F "chat_id=' .. chat_id .. '" -F "audio=@' .. audio .. '"'
if reply_to_message_id then
curl_command = curl_command .. ' -F "reply_to_message_id=' .. reply_to_message_id .. '"'
end
if duration then
curl_command = curl_command .. ' -F "duration=' .. duration .. '"'
end
if performer then
curl_command = curl_command .. ' -F "performer=' .. performer .. '"'
end
if title then
curl_command = curl_command .. ' -F "title=' .. title .. '"'
end
return curlRequest(curl_command)
end
function api.sendVideo(chat_id, video, reply_to_message_id, duration, performer, title)
local url = BASE_URL .. '/sendVideo'
local curl_command = 'curl "' .. url .. '" -F "chat_id=' .. chat_id .. '" -F "video=@' .. video .. '"'
if reply_to_message_id then
curl_command = curl_command .. ' -F "reply_to_message_id=' .. reply_to_message_id .. '"'
end
if caption then
curl_command = curl_command .. ' -F "caption=' .. caption .. '"'
end
if duration then
curl_command = curl_command .. ' -F "duration=' .. duration .. '"'
end
return curlRequest(curl_command)
end
function api.sendVoice(chat_id, voice, reply_to_message_id)
local url = BASE_URL .. '/sendVoice'
local curl_command = 'curl "' .. url .. '" -F "chat_id=' .. chat_id .. '" -F "voice=@' .. voice .. '"'
if reply_to_message_id then
curl_command = curl_command .. ' -F "reply_to_message_id=' .. reply_to_message_id .. '"'
end
if duration then
curl_command = curl_command .. ' -F "duration=' .. duration .. '"'
end
return curlRequest(curl_command)
end
function api.sendAdmin(text, markdown)
return api.sendMessage(config.log.admin, text, markdown)
end
function api.sendLog(text, markdown)
return api.sendMessage(config.log.chat or config.log.admin, text, markdown)
end
function api.sendPhotoId(chat_id, file_id, caption, reply_to_message_id)
local url = BASE_URL .. '/sendPhoto?chat_id=' .. chat_id .. '&photo=' .. file_id
if caption then
url = url..'&caption='..caption
end
if reply_to_message_id then
url = url..'&reply_to_message_id='..reply_to_message_id
end
return sendRequest(url)
end
function api.getUserProfilePhotos(user_id)
local url = BASE_URL .. '/getUserProfilePhotos?user_id=' .. user_id
return sendRequest(url)
end
return api