-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcore.py
More file actions
503 lines (440 loc) · 19.1 KB
/
core.py
File metadata and controls
503 lines (440 loc) · 19.1 KB
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
# coding=utf-8
from organizer import chat
from colours import colour
import logging
import requests
import json
import os
import mimetypes
import configparser as cfg
class telegram_bot_api():
def __init__(self, config_file):
self.token = self.read_config(config_file)
self.base = f"https://api.telegram.org/bot{self.token}/"
def read_config(self, config_file):
config = cfg.ConfigParser()
config.read(config_file)
token = config.get("bot", "token")
if token == "bot token here" or token == "":
while True:
token = input(f"\
{colour.RED}You did not enter a bot token{colour.reset}\n\
please put your bot token in {colour.yellow}config.cfg{colour.reset} under {colour.blue}[bot] > [token]{colour.reset}\n\
The bot token you enter now will not be saved\n\
Enter bot token > $ ")
if token == ":q":
print(f"{colour.GREEN}quit{colour.reset}\n")
os._exit(1)
else:
break
return token
def check_ok(self, fed_json):
ok = fed_json["ok"]
if str(ok).lower() == "false":
print(f"\nFrom {colour.BLUE}Telegram Bot API{colour.reset}:\n{colour.WARNING}{fed_json}{colour.reset}\n")
return False
else:
return True
def send_chat_action(self, chat_id, action):
url = f"{self.base}sendChatAction?chat_id={chat_id}&action={action}"
try:
r = requests.get(url, timeout=5)
fed = json.loads(r.content)
if self.check_ok(fed):
return True
else:
return False
except requests.exceptions.ConnectionError as error:
print(f"\ncouldn't connect to server, more imformation:\n\n{error}\n\n")
return False
except Exception as error:
print(f"\nsomething went wrong, more imformation:\n\n{error}\n\n")
return False
def send_document(self, chat_id, document_location=None, document_id=None, text=None, is_markdown=False, reply_to_message_id=None):
if document_location is not None:
files = {'document': open(document_location, "rb")}
elif document_id is None and document_location is None:
print(f"{colour.WARNING}no file passed in(document_location, document_id){colour.reset}")
elif document_id is not None and document_location is not None:
print(f"{colour.WARNING}there can only be one file type(document_location, document_id){colour.reset}")
else:
pass
if text is not None:
caption = f"&caption={text}"
if is_markdown:
markdown = f"&parse_mode=MarkdownV2"
else:
markdown = ""
else:
caption = ""
markdown = ""
if reply_to_message_id is not None:
reply_to_message = f"&reply_to_message_id={reply_to_message_id}"
else:
reply_to_message = ""
if document_id is not None:
document = f"&document={document_id}"
else:
document = ""
url = f"{self.base}sendDocument?chat_id={chat_id}{document}{caption}{reply_to_message}{markdown}"
try:
if document_location is not None:
r = requests.post(url, files = files, timeout=5)
else:
r = requests.get(url, timeout=5)
fed = json.loads(r.content)
if self.check_ok(fed):
return True
else:
return False
except requests.exceptions.ConnectionError as error:
print(f"\ncouldn't connect to server, more imformation:\n\n{error}\n\n")
return False
except Exception as error:
print(f"\nsomething went wrong, more imformation:\n\n{error}\n\n")
return False
def send_photo(self, chat_id, photo_location=None, photo_id=None, text=None, is_markdown=False, reply_to_message_id=None):
if photo_location is not None:
files = {'photo': open(photo_location, "rb")}
elif photo_id is None and photo_location is None:
print(f"{colour.WARNING}no file passed in(photo_location, photo_id){colour.reset}")
elif photo_id is not None and photo_location is not None:
print(f"{colour.WARNING}there can only be one file type(photo_location, photo_id){colour.reset}")
else:
pass
if text is not None:
caption = f"&caption={text}"
if is_markdown:
markdown = f"&parse_mode=MarkdownV2"
else:
markdown = ""
else:
caption = ""
markdown = ""
if reply_to_message_id is not None:
reply_to_message = f"&reply_to_message_id={reply_to_message_id}"
else:
reply_to_message = ""
if photo_id is not None:
photo = f"&photo={photo_id}"
else:
photo = ""
url = f"{self.base}sendPhoto?chat_id={chat_id}{photo}{caption}{reply_to_message}{markdown}"
try:
if photo_location is not None:
r = requests.post(url, files = files, timeout=5)
else:
r = requests.get(url, timeout=5)
fed = json.loads(r.content)
if self.check_ok(fed):
return True
else:
return False
except requests.exceptions.ConnectionError as error:
print(f"\ncouldn't connect to server, more imformation:\n\n{error}\n\n")
return False
except Exception as error:
print(f"\nsomething went wrong, more imformation:\n\n{error}\n\n")
return False
def send_audio(self, chat_id, audio_location=None, audio_id=None, text=None, is_markdown=False, reply_to_message_id=None):
if audio_location is not None:
files = {'audio': open(audio_location, "rb")}
elif audio_id is None and audio_location is None:
print(f"{colour.WARNING}no file passed in(audio_location, audio_id){colour.reset}")
elif audio_id is not None and audio_location is not None:
print(f"{colour.WARNING}there can only be one file type(audio_location, audio_id){colour.reset}")
else:
pass
if text is not None:
caption = f"&caption={text}"
if is_markdown:
markdown = f"&parse_mode=MarkdownV2"
else:
markdown = ""
else:
caption = ""
markdown = ""
if reply_to_message_id is not None:
reply_to_message = f"&reply_to_message_id={reply_to_message_id}"
else:
reply_to_message = ""
if audio_id is not None:
audio = f"&audio={audio_id}"
else:
audio = ""
url = f"{self.base}sendAudio?chat_id={chat_id}{audio}{caption}{reply_to_message}{markdown}"
try:
if audio_location is not None:
r = requests.post(url, files = files, timeout=5)
else:
r = requests.get(url, timeout=5)
fed = json.loads(r.content)
if self.check_ok(fed):
return True
else:
return False
except requests.exceptions.ConnectionError as error:
print(f"\ncouldn't connect to server, more imformation:\n\n{error}\n\n")
return False
except Exception as error:
print(f"\nsomething went wrong, more imformation:\n\n{error}\n\n")
return False
def send_video(self, chat_id, video_location=None, video_id=None, text=None, is_markdown=False, reply_to_message_id=None):
if video_location is not None:
files = {'video': open(video_location, "rb")}
elif video_id is None and video_location is None:
print(f"{colour.WARNING}no file passed in(video_location, video_id){colour.reset}")
elif video_id is not None and video_location is not None:
print(f"{colour.WARNING}there can only be one file type(video_location, video_id){colour.reset}")
else:
pass
if text is not None:
caption = f"&caption={text}"
if is_markdown:
markdown = f"&parse_mode=MarkdownV2"
else:
markdown = ""
else:
caption = ""
markdown = ""
if reply_to_message_id is not None:
reply_to_message = f"&reply_to_message_id={reply_to_message_id}"
else:
reply_to_message = ""
if video_id is not None:
video = f"&video={video_id}"
else:
video = ""
url = f"{self.base}sendVideo?chat_id={chat_id}{video}{caption}{reply_to_message}{markdown}"
try:
if video_location is not None:
r = requests.post(url, files = files, timeout=5)
else:
r = requests.get(url, timeout=5)
fed = json.loads(r.content)
if self.check_ok(fed):
return True
else:
return False
except requests.exceptions.ConnectionError as error:
print(f"\ncouldn't connect to server, more imformation:\n\n{error}\n\n")
return False
except Exception as error:
print(f"\nsomething went wrong, more imformation:\n\n{error}\n\n")
return False
def send_animation(self, chat_id, animation_location=None, animation_id=None, text=None, is_markdown=False, reply_to_message_id=None):
if animation_location is not None:
files = {'animation': open(animation_location, "rb")}
elif animation_id is None and animation_location is None:
print(f"{colour.WARNING}no file passed in(animation_location, animation_id){colour.reset}")
elif animation_id is not None and animation_location is not None:
print(f"{colour.WARNING}there can only be one file type(animation_location, animation_id){colour.reset}")
else:
pass
if text is not None:
caption = f"&caption={text}"
if is_markdown:
markdown = f"&parse_mode=MarkdownV2"
else:
markdown = ""
else:
caption = ""
markdown = ""
if reply_to_message_id is not None:
reply_to_message = f"&reply_to_message_id={reply_to_message_id}"
else:
reply_to_message = ""
if animation_id is not None:
animation = f"&animation={animation_id}"
else:
animation = ""
url = f"{self.base}sendAnimation?chat_id={chat_id}{animation}{caption}{reply_to_message}{markdown}"
try:
if animation_location is not None:
r = requests.post(url, files = files, timeout=5)
else:
r = requests.get(url, timeout=5)
fed = json.loads(r.content)
if self.check_ok(fed):
return True
else:
return False
except requests.exceptions.ConnectionError as error:
print(f"\ncouldn't connect to server, more imformation:\n\n{error}\n\n")
return False
except Exception as error:
print(f"\nsomething went wrong, more imformation:\n\n{error}\n\n")
return False
def send_message(self, chat_id, message_content, reply_to_message_id=None, is_markdown=False):
if reply_to_message_id is not None:
reply = f"&reply_to_message_id={reply_to_message_id}"
else:
reply = ""
if is_markdown:
markdown = "&parse_mode=MarkdownV2"
else:
markdown = ""
url = f"{self.base}sendMessage?chat_id={chat_id}&text={message_content}{reply}{markdown}"
if message_content is not None:
try:
r = requests.get(url, timeout=5)
fed = json.loads(r.content)
if self.check_ok(fed):
return True
else:
return False
except requests.exceptions.ConnectionError as error:
print(f"couldn't connect to server, more imformation:\n{error}")
return False
except Exception as error:
print(f"something went wrong, more imformation:\n{error}")
return False
def forward_message(self, chat_id, from_chat_id, message_id):
url = f"{self.base}forwardMessage?chat_id={chat_id}&from_chat_id={from_chat_id}&message_id={message_id}"
try:
r = requests.get(url, timeout=5)
fed = json.loads(r.content)
if self.check_ok(fed):
return True
else:
return False
except requests.exceptions.ConnectionError as error:
print(f"\ncouldn't connect to server, more imformation:\n\n{error}\n\n")
return False
except Exception as error:
print(f"\nsomething went wrong, more imformation:\n\n{error}\n\n")
return False
def send_sticker(self, chat_id, sticker_id, reply_to_message_id=None):
reply = ""
if reply_to_message_id is not None:
reply = f"&reply_to_message_id={reply_to_message_id}"
else:
pass
url = f"{self.base}sendSticker?chat_id={chat_id}&sticker={sticker_id}{reply}"
if sticker_id is not None:
try:
r = requests.get(url, timeout=5)
fed = json.loads(r.content)
if self.check_ok(fed):
return True
else:
return False
except requests.exceptions.ConnectionError as error:
print(f"\ncouldn't connect to server, more imformation:\n\n{error}\n\n")
return False
except Exception as error:
print(f"\nsomething went wrong, more imformation:\n\n{error}\n\n")
return False
def delete_message(self, chat_id, message_id):
url = f"{self.base}deleteMessage?chat_id={chat_id}&message_id={message_id}"
if message_id is not None and chat_id is not None:
try:
r = requests.get(url, timeout=5)
fed = json.loads(r.content)
if self.check_ok(fed):
return True
else:
return False
except requests.exceptions.ConnectionError as error:
print(f"\ncouldn't connect to server, more imformation:\n\n{error}\n\n")
return False
except Exception as error:
print(f"\nsomething went wrong, more imformation:\n\n{error}\n\n")
return False
def get_updates(self, offset):
url = f"{self.base}getUpdates?timeout=0"
if offset is not None:
url = f"{url}&offset={int(offset) + 1}"
try:
r = requests.get(url, timeout=5)
update = json.loads(r.content)
if self.check_ok(update):
return update
else:
return False
except requests.exceptions.ConnectionError as error:
print(f"\ncouldn't connect to server, more imformation:\n\n{error}\n\n")
return False
except Exception as error:
print(f"\nsomething went wrong, more imformation:\n\n{error}\n\n")
return False
def leave_chat(self, chat_id):
url = f"{self.base}leaveChat?chat_id={chat_id}"
if chat_id is not None:
try:
r = requests.get(url, timeout=5)
fed = json.loads(r.content)
if self.check_ok(fed):
return True
else:
return False
except requests.exceptions.ConnectionError as error:
print(f"\ncouldn't connect to server, more imformation:\n\n{error}\n\n")
return False
except Exception as error:
print(f"\nsomething went wrong, more imformation:\n\n{error}\n\n")
return False
def get_me(self):
url = f"{self.base}getMe"
try:
r = requests.get(url, timeout=5)
bot_info = json.loads(r.content)
if self.check_ok(bot_info):
return bot_info
else:
return False
except requests.exceptions.ConnectionError as error:
print(f"\ncouldn't connect to server, more imformation:\n\n{error}\n\n")
return False
except Exception as error:
print(f"\nsomething went wrong, more imformation:\n\n{error}\n\n")
return False
def get_chat(self, chat_id):
url = f"{self.base}getChat?chat_id={chat_id}"
try:
r = requests.get(url, timeout=5)
chat_info = json.loads(r.content)
if self.check_ok(chat_info):
return chat_info
else:
return False
except requests.exceptions.ConnectionError as error:
print(f"\ncouldn't connect to server, more imformation:\n\n{error}\n\n")
return False
except Exception as error:
print(f"\nsomething went wrong, more imformation:\n\n{error}\n\n")
return False
def is_downloadable(self, url):
h = requests.head(url, allow_redirects=True, timeout=5)
header = h.headers
content_type = header.get('content-type')
if 'text' in content_type.lower():
return False
if 'html' in content_type.lower():
return False
return True
def get_file(self, file_id):
url = f"{self.base}getFile?file_id={file_id}"
try:
r = requests.get(url, timeout=5)
output = json.loads(r.content)
if self.check_ok(output):
return output["result"]["file_path"]
else:
return False
except requests.exceptions.ConnectionError as error:
print(f"\ncouldn't connect to server, more imformation:\n\n{error}\n\n")
return False
except Exception as error:
print(f"\nsomething went wrong, more imformation:\n\n{error}\n\n")
return False
def file_dl(self, file_id):
path = self.get_file(file_id)
url = f"https://api.telegram.org/file/bot{self.token}/{path}"
file_name = url[int(url.rfind("/") + 1):]
if self.is_downloadable(url):
r = requests.get(url, allow_redirects=True, timeout=5)
with open(file_name, "wb") as file:
file.write(r.content)
return file_name
return None