-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbot.py
779 lines (629 loc) · 38.3 KB
/
bot.py
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
import parser
import config
from telebot.types import InlineKeyboardButton, InlineKeyboardMarkup
from telebot import types
import telebot
import pytz
import os
from datetime import datetime, timedelta
import sqlite3
import threading
import ast
import json
import requests
import os
import re
bot = telebot.TeleBot(config.API) # создание бота
# глобальные переменные
SCRIPT_DIR = os.path.dirname(os.path.abspath(__file__))
VERSION = "1.0.6"
DB_NAME = 'database.db'
DB_PATH = f"{SCRIPT_DIR}/{DB_NAME}"
YEAR = 25
COMPLEX_LINKS = {
"Российская 23": "https://pronew.chenk.ru/blocks/manage_groups/website/list.php?id=3",
"Блюхера 91": "https://pronew.chenk.ru/blocks/manage_groups/website/list.php?id=1"
}
DAYS = ["Понедельник", "Вторник", "Среда", "Четверг", "Пятница", "Суббота"]
LOG = "Логи: "
README_PATH = os.path.join(SCRIPT_DIR, 'README.md')
commands = [ # КОМАНДЫ
telebot.types.BotCommand("start", "Перезапуск"),
telebot.types.BotCommand("today", "Расписание на сегодня"),
telebot.types.BotCommand("tomorrow", "Расписание на завтра"),
telebot.types.BotCommand("week", "Расписание на всю неделю"),
telebot.types.BotCommand("info", "Дополнительная информация"),
]
# КНОПКИ
btn_return_complex = InlineKeyboardButton(text="< Назад", callback_data="back_complex")
btn_ros23 = InlineKeyboardButton(text="Российская 23", callback_data="complex_Российская 23")
btn_blux91 = InlineKeyboardButton(text="Блюхера 91", callback_data="complex_Блюхера 91")
btn_select_teachers = InlineKeyboardButton(text="Я преподаватель", callback_data='teachers_select')
btn_day = InlineKeyboardButton(text="День", callback_data="select_day")
btn_week = InlineKeyboardButton(text="Неделя", callback_data="select_week")
btn_change_group = InlineKeyboardButton(text="Изменить группу", callback_data="back_courses")
btn_return_main = InlineKeyboardButton(text="< Назад", callback_data="back_main")
days_buttons = [InlineKeyboardButton(text=day, callback_data=f"day_{day.lower()}") for day in DAYS]
btn_dayback = InlineKeyboardButton(text="< Назад", callback_data="select_day")
back = InlineKeyboardButton(text="< Назад", callback_data="back_courses")
btn_back_info = InlineKeyboardButton(text="Назад", callback_data="back_info")
btn_github = InlineKeyboardButton(text="Репозиторий на Github", url="https://github.com/pinghoyk/schedule")
btn_readme = InlineKeyboardButton(text="Описание", callback_data='readme')
btn_what_new = InlineKeyboardButton(text="Что нового?", callback_data='what_new')
btn_return_in_info = InlineKeyboardButton(text="< Назад", callback_data='back_in_info')
btn_admin = InlineKeyboardButton(text="Администратор", callback_data='admin')
btn_stat = InlineKeyboardButton(text="Статистика", callback_data='stat')
btn_bd_download = InlineKeyboardButton(text="База данных", callback_data='bd_download')
btn_restart = InlineKeyboardButton(text="Перезапустить", callback_data='back_complex')
btn_share_schedule = InlineKeyboardButton("Поделится расписанием", switch_inline_query="")
# КЛАВИАТУРЫ
keyboard_complex = InlineKeyboardMarkup(row_width=1)
keyboard_complex.add(btn_ros23, btn_blux91)
keyboard_week = InlineKeyboardMarkup(row_width=2)
keyboard_week.add(btn_return_main, btn_share_schedule)
keyboard_days = InlineKeyboardMarkup(row_width=2)
keyboard_days.add(*days_buttons, btn_return_main)
keyboard_day_back = InlineKeyboardMarkup(row_width=2)
keyboard_day_back.add(btn_dayback, btn_share_schedule)
keyboard_error = InlineKeyboardMarkup()
keyboard_error.add(btn_change_group)
keyboard_info = InlineKeyboardMarkup(row_width=2)
keyboard_info.add(btn_github)
keyboard_info.add(btn_readme, btn_what_new)
keyboard_info.add(btn_return_main)
keyboard_btn_info = InlineKeyboardMarkup(row_width=2)
keyboard_btn_info.add(btn_back_info)
keyboard_return_info = InlineKeyboardMarkup()
keyboard_return_info.add(btn_return_in_info)
keyboard_admin = InlineKeyboardMarkup(row_width=2)
keyboard_admin.add(btn_stat, btn_bd_download, btn_return_main)
keyboard_restart = InlineKeyboardMarkup(row_width=2)
keyboard_restart.add(btn_restart)
# ПРОВЕРКИ
if os.path.exists(DB_PATH):
print(f'{LOG}бд есть!')
else:
connect = sqlite3.connect(DB_PATH)
cursor = connect.cursor()
cursor.execute("""
CREATE TABLE users (
id INTEGER,
message INTEGER,
groups TEXT,
time_registration TIME,
complex TEXT,
username TEXT,
last_call INTEGER
)
""")
connect.commit()
connect.close()
print(f"{LOG}бд создана")
# ФУНКЦИИ
def SQL_request(request, params=()): # sql запросы
connect = sqlite3.connect(DB_PATH)
cursor = connect.cursor()
if request.strip().lower().startswith('select'):
cursor.execute(request, params)
result = cursor.fetchone()
return result
else:
cursor.execute(request, params)
connect.commit()
connect.close()
def now_time(): # функция получения текущего времени по мск
now = datetime.now()
tz = pytz.timezone('Europe/Moscow')
now_moscow = now.astimezone(tz)
current_time = now_moscow.strftime("%H:%M")
current_date = now_moscow.strftime("%m.%d.%Y")
date = f"{current_date} {current_time}"
return date
def now_day(day = None):
today = datetime.today().weekday()
if day == "tomorrow":
today += 1
if today >= 6:
today = 0
return DAYS[today]
def markup_text(schedule, is_teacher_format=False): # Добавление markdown символов
# Сортируем расписание по порядку дней недели
sorted_schedule = sorted(schedule.items(), key=lambda x: DAYS.index(x[0].split(", ")[-1]))
result = []
for key, lessons in sorted_schedule:
result.append(f"*{key}*\n————————————————")
# Сортируем уроки по времени начала, пропуская невалидные значения
lessons.sort(key=lambda lesson: (
int(lesson['time_start'].replace('.', '').replace(':', '')) if lesson['time_start'] != '???' else float('inf')
))
for i, lesson in enumerate(lessons, start=1):
time_start = lesson['time_start']
time_finish = lesson['time_finish']
lesson_info = f"\n{i}. _{time_start} - {time_finish}_\n"
if is_teacher_format:
group = lesson['group']
lesson_name = lesson['lesson_name']
classroom = lesson['classroom'] if lesson['classroom'] else ''
lesson_info += f"*Предмет*: {lesson_name}\n_*Группа:* {group}_ *{classroom}*\n"
else:
for l in lesson['lessons']:
lesson_info += f"*Предмет: *{l['name']}\n"
for data in l["data"]:
teacher_name = f"*Преподаватель: * {data['teacher']}".replace("отмена", "").strip()
lesson_info += f"_{teacher_name}_ *{data['classroom']}*\n"
result.append(lesson_info)
result.append("\n\n")
result = ''.join(result) # Объединяем список в строку
result = tg_markdown(result) # Применяем функцию для обработки markdown в Telegram
result = result.replace("???", "**???**") # Подсвечиваем "???", если время неизвестно
return result
def tg_markdown(text): # экранирование только для телеграма
special_characters = r'[]()>#+-=|{}.!'
escaped_text = ''
for char in text:
if char in special_characters:
escaped_text += f'\\{char}'
else:
escaped_text += char
return escaped_text
def get_week_schedule(complex_choice, user_group): # получение расписания на неделю
courses = parser.table_courses(COMPLEX_LINKS[complex_choice])
year_start = int(user_group.split('-')[2])
course = YEAR - year_start
groups = courses.get(f'{course} курс', None)
if not groups or user_group not in groups:
return None
url = groups[user_group]
schedule_week = parser.schedule(f'https://pronew.chenk.ru/blocks/manage_groups/website/{url}')
return schedule_week
def get_day_schedule(complex_choice, user_group, selected_day): # получение расписания на выбранный день
schedule_week = get_week_schedule(complex_choice, user_group)
if schedule_week != None:
day_schedule = {}
for key in schedule_week.keys():
if selected_day.lower() in key.lower():
day_schedule[key] = schedule_week[key]
else: day_schedule = 'Не удалось получить расписание'
return day_schedule
def keyboard_courses(courses): # создание клавиатуры с курсами
buttons = []
for i in range(len(courses)):
button = InlineKeyboardButton(text=f"{i+1} курс", callback_data=f"select_course_{i+1}")
buttons.append(button)
keyboard = InlineKeyboardMarkup(row_width=2)
keyboard.add(*buttons, btn_select_teachers)
keyboard.add(btn_return_complex)
return keyboard
def day_commads(message, tomorrow = None): # команда для получения расписания на указанный день
bot.delete_message(message.chat.id, message.message_id)
user_id = message.chat.id
user = SQL_request("SELECT * FROM users WHERE id = ?", (int(user_id),))
if user[4] == None:
bot.edit_message_text(chat_id=message.chat.id, message_id=user[1], text="Сначала выберите корпус!", reply_markup=keyboard_complex)
elif user[2] == None:
courses = parser.table_courses(COMPLEX_LINKS[user[4]])
keyboard = keyboard_courses(courses)
bot.edit_message_text(chat_id=message.chat.id, message_id=user[1], text="Сначала выберите группу!", reply_markup=keyboard)
else:
bot.edit_message_text(chat_id=message.chat.id, message_id=user[1], text="Загрузка расписания...")
complex_choice = user[4]
group = user[2]
day = now_day(tomorrow)
if group.split(":")[0] == "teacher":
try:
text = get_day_teacher(complex_choice, group.split(":")[1], day)
text = markup_text(text, is_teacher_format=True)
bot.edit_message_text(chat_id=message.chat.id, message_id=user[1], text=text, reply_markup=keyboard_day_back, parse_mode="MarkdownV2")
except Exception as e:
print(f"Ошибка: {e}")
bot.edit_message_text(chat_id=message.chat.id, message_id=user[1], text="Расписание не найдено", reply_markup=keyboard_day_back)
else:
schedule = get_day_schedule(complex_choice, group, day)
if schedule != "Не удалось получить расписание":
text = markup_text(schedule)
bot.edit_message_text(chat_id=message.chat.id, message_id=user[1], text=text, reply_markup=keyboard_day_back, parse_mode="MarkdownV2")
else:
bot.edit_message_text(chat_id=message.chat.id, message_id=user[1], text=schedule, reply_markup=keyboard_day_back)
def save_teacher_schedule(x): # сохранение данных для преподавателей
teacher_schedule = parser.get_teacher_schedule(COMPLEX_LINKS[x])
# Получаем текущее время
current_time = datetime.now()
# Форматируем данные для записи в файл
file_content = f"Обновлено: {current_time.strftime('%Y-%m-%d %H:%M:%S')}\n{teacher_schedule}"
# Сохраняем данные в файл с именем x.txt
with open(f"{SCRIPT_DIR}/{x}.txt", "w", encoding="utf-8") as file:
file.write(file_content)
print(f"Расписание для {x} сохранено.")
def check_and_update_schedule(x): # проверка, нужно ли обновлять расписание
file_name = f"{x}.txt"
# Проверяем, существует ли файл
if os.path.exists(f"{SCRIPT_DIR}/{file_name}"):
with open(f"{SCRIPT_DIR}/{file_name}", "r", encoding="utf-8") as file:
first_line = file.readline().strip()
if first_line.startswith("Обновлено:"):
last_update_time_str = first_line.split(": ")[1]
last_update_time = datetime.strptime(last_update_time_str, '%Y-%m-%d %H:%M:%S')
# Проверяем, прошло ли 6 часов с последнего обновления
if (datetime.now() - last_update_time).total_seconds() < 6 * 3600:
print("Данные уже обновлены в течение последних 6 часов.")
return # Обновление не требуется
# Если файл не существует или прошло больше 6 часов, обновляем данные
save_teacher_schedule(x)
def get_week_teacher(complex_choice, teacher): # получение расписания, для выбранного преподавателя из большого списка
with open(f"{SCRIPT_DIR}/{complex_choice}.txt", "r", encoding="utf-8") as file:
lines = file.readlines()
data = lines[1:]
data_text = ''.join(data)
data_dict = json.loads(data_text.replace("'", "\""))
x = (data_dict[teacher])
return x
def get_day_teacher(complex_choice, teacher, selected_day): # получение расписания на день
schedule_week = get_week_teacher(complex_choice, teacher)
day_schedule = {}
for key in schedule_week.keys():
if selected_day.lower() in key.lower():
day_schedule[key] = schedule_week[key]
return day_schedule
def send_week_schedule(chat_id, message_id, user_id, is_button_click=False): # отправка расписания на неделю
user_id = chat_id
user = SQL_request("SELECT * FROM users WHERE id = ?", (int(user_id),))
bot.edit_message_text(chat_id=chat_id, message_id=user[1], text="Загрузка расписания...")
if user[4] == None:
bot.edit_message_text(chat_id=chat_id, message_id=user[1], text="Сначала выберите корпус!", reply_markup=keyboard_complex)
if user[4] == None:
bot.edit_message_text(chat_id=chat_id, message_id=user[1], text="Сначала выберите корпус!", reply_markup=keyboard_complex)
elif user[2] == None:
courses = parser.table_courses(COMPLEX_LINKS[user[4]])
keyboard = keyboard_courses(courses)
bot.edit_message_text(chat_id=chat_id, message_id=user[1], text="Сначала выберите группу!", reply_markup=keyboard)
else:
user = SQL_request("SELECT * FROM users WHERE id = ?", (int(user_id),))
complex_choice = user[4]
group = user[2]
if group.split(":")[0] == "teacher":
try:
text = get_week_teacher(complex_choice, group.split(":")[1])
text = markup_text(text, is_teacher_format=True)
bot.edit_message_text(chat_id=chat_id, message_id=user[1], text=text, reply_markup=keyboard_week, parse_mode="MarkdownV2")
except Exception as e:
print(f"Ошибка: {e}")
bot.edit_message_text(chat_id=chat_id, message_id=user[1], text="Расписание не найдено", reply_markup=keyboard_week)
else:
weekly_schedule = get_week_schedule(complex_choice, group)
if weekly_schedule:
text = markup_text(weekly_schedule)
bot.edit_message_text(chat_id=chat_id, message_id=user[1], text=text, reply_markup=keyboard_week, parse_mode="MarkdownV2")
else:
bot.edit_message_text(chat_id=chat_id, message_id=user[1], text="Не удалось получить расписание", reply_markup=keyboard_week)
def get_latest_release_text(repo_url): # получение описание последнего обновления
if 'github.com' not in repo_url:
raise ValueError("Укажите корректный URL репозитория GitHub")
parts = repo_url.split('/')
if len(parts) < 5:
raise ValueError("Укажите полный URL репозитория, например: https://github.com/user/repo")
repo_name = f"{parts[3]}/{parts[4]}"
api_url = f"https://api.github.com/repos/{repo_name}/releases/latest"
response = requests.get(api_url)
if response.status_code == 200:
release_data = response.json()
return release_data.get('body', 'Нет описания для последнего релиза')
else:
raise Exception(f"Ошибка при получении данных: {response.status_code} - {response.text}")
def mini_notification(text, all_user=None, show=False): # отправка мини уведомлений
if all_user == None:
conn = sqlite3.connect(f'{SCRIPT_DIR}/{DB_NAME}')
cursor = conn.cursor()
cursor.execute("SELECT last_call FROM users")
users = [row[0] for row in cursor.fetchall()]
conn.close()
for call_id in users:
try:
bot.answer_callback_query(callback_query_id=call_id, show_alert=show, text=text)
except: pass
else:
bot.answer_callback_query(callback_query_id=all_user, show_alert=show, text=text)
def format_markdown_for_telegram(text): # форматирует текст с Markdown-разметкой для корректного отображения в Telegram
text = re.sub(r'(?<!\*)\*(?!\*)(.*?)\*', r'_\1_', text) # Форматируем курсив *text* -> _text_
text = re.sub(r'(?m)^#{1,6}\s*(.+)', r'*\1*', text) # Преобразуем заголовки (#) в жирный текст
text = re.sub(r'(?m)^\s*-\s+', '• ', text) # Преобразуем "-" в "•"
text = re.sub(r'(?m)^\s*\*\s+', '• ', text) # Преобразуем "*" в "•"
text = re.sub(r'\*\*(.*?)\*\*', r'*\1*', text) # Форматируем выделение текста **text** -> *text* (жирный)
text = re.sub(r'[ \t]+', ' ', text) # Убираем дублирующиеся пробелы, оставляя один
return text
# КОМАНДЫ
@bot.message_handler(commands=['start']) # обработка команды start
def start(message):
user_id = message.chat.id
message_id = message.message_id
times = now_time()
user = SQL_request("SELECT 0 FROM users WHERE id = ?", (user_id,))
if user is None:
SQL_request("""INSERT INTO users (id, message, time_registration)
VALUES (?, ?, ?)""", (user_id, message_id+1, times))
print(f"{LOG}зарегистрирован новый пользователь")
else:
menu_id = SQL_request("SELECT message FROM users WHERE id = ?", (user_id,)) # получение id меню
try: bot.delete_message(message.chat.id, menu_id[0]) # обработка ошибки, если чат пустой, но пользователь есть в базе
except Exception as e: print(f"Ошибка: {e}") # вывод текста ошибки
SQL_request("""UPDATE users SET message = ? WHERE id = ?""", (message_id+1, user_id)) # добавление id нового меню
print(f"{LOG}пользователь уже существует")
bot.send_message(message.chat.id, text="Выберите комплекс:", reply_markup=keyboard_complex)
bot.delete_message(message.chat.id, message_id)
@bot.message_handler(commands=['today']) # обработка команды today
def send_today_schedule(message):
day_commads(message)
@bot.message_handler(commands=['tomorrow']) # обработка команды toworrow
def send_tomorrow_schedule(message):
day_commads(message, "tomorrow")
@bot.message_handler(commands=['week'])
def handle_week_command(message):
bot.delete_message(message.chat.id, message.message_id)
send_week_schedule(message.chat.id, message.message_id, message.chat.id)
@bot.message_handler(commands=['info'])
def handle_week_command(message):
user_id = message.chat.id
bot.delete_message(user_id, message.message_id)
user = SQL_request("SELECT * FROM users WHERE id = ?", (int(user_id),))
text = f"*Текущая версия:* {VERSION}\n\nВыберите нужный результат"
text = tg_markdown(text)
bot.edit_message_text(chat_id=user_id, message_id=user[1], text=text, reply_markup=keyboard_info, parse_mode="MarkdownV2")
# INLINE КОМАНДЫ
@bot.inline_handler(lambda query: query.query == '')
def default_query(inline_query):
user_id = inline_query.from_user.id
user = SQL_request("SELECT * FROM users WHERE id = ?", (int(user_id),))
if not user:
bot.answer_inline_query(
inline_query.id,
[
types.InlineQueryResultArticle(
id='no_user',
title='Переход к боту',
thumbnail_url = "https://falbue.github.io/classroom-code/icons/registr.png",
description='Пожалуйста, зарегистрируйтесь для доступа к inline командам',
input_message_content=types.InputTextMessageContent("Вы не зарегистрированы. Перейдите по ссылке, для регистрации"),
reply_markup=types.InlineKeyboardMarkup().add(
types.InlineKeyboardButton(
text='Перейти',
url='https://t.me/schedule_chenk_bot'
)
)
)
],
cache_time=1,
switch_pm_text="Регистрация",
switch_pm_parameter="start"
)
return
elif user[4] is not None and user[2] is None:
bot.answer_inline_query(
inline_query.id,
[types.InlineQueryResultArticle(
id='no_group',
title='Группа не найдена',
thumbnail_url = "https://falbue.github.io/classroom-code/icons/danger.png",
description='Расписание на выбранную группу не найдено...',
input_message_content=types.InputTextMessageContent("Расписание на выбранную группу не найдено!")
)
],
cache_time=1,
switch_pm_text="Группа не выбрана",
switch_pm_parameter="start"
)
else:
teacher = False
complex_choice = user[4]
group = user[2]
today_day = now_day()
tomorrow_day = now_day("tomorrow")
if group.split(":")[0] == "teacher":
group = group.split(":")[1]
teacher = True
week = get_week_teacher(complex_choice, group)
today = get_day_teacher(complex_choice, group, today_day)
tomorrow = get_day_teacher(complex_choice, group, tomorrow_day)
else:
week = get_week_schedule(complex_choice, group)
today = get_day_schedule(complex_choice, group, today_day)
tomorrow = get_day_schedule(complex_choice, group, tomorrow_day)
week = markup_text(week, is_teacher_format=teacher)
today = markup_text(today, is_teacher_format=teacher)
tomorrow = markup_text(tomorrow, is_teacher_format=teacher)
commands = [
types.InlineQueryResultArticle(
id='1', title='Сегодня', description='Расписание на сегодняшний день',
thumbnail_url = "https://falbue.github.io/classroom-code/icons/today.png",
input_message_content=types.InputTextMessageContent(today, parse_mode="MarkdownV2")
),
types.InlineQueryResultArticle(
id='2', title='Завтра', description='Расписание на завтрашний день',
thumbnail_url = "https://falbue.github.io/classroom-code/icons/toworrow.png",
input_message_content=types.InputTextMessageContent(tomorrow, parse_mode="MarkdownV2")
),
types.InlineQueryResultArticle(
id='3', title='Неделя', description='Расписание на неделю',
thumbnail_url = "https://falbue.github.io/classroom-code/icons/week.png",
input_message_content=types.InputTextMessageContent(week, parse_mode="MarkdownV2")
)
]
bot.answer_inline_query(
inline_query.id,
commands,
cache_time=1,
switch_pm_text=group,
switch_pm_parameter="start"
)
# ОБРАБОТКА ВЫЗОВОВ
@bot.callback_query_handler(func=lambda call: True)
def callback_query(call): # работа с вызовами inline кнопок
user_id = call.message.chat.id
print(f"{user_id}: {call.data}")
username = call.from_user.username
data = call.data
SQL_request("UPDATE users SET username = ?, last_call = ?, message = ? WHERE id = ?", (username, now_time(), call.message.message_id, user_id))
if (call.data).split("_")[0] == "complex": # выбор комплекса
bot.edit_message_text(chat_id=call.message.chat.id, message_id=call.message.message_id, text="Получение курсов...")
complex_choice = (call.data).split("_")[1]
SQL_request("UPDATE users SET complex = ? WHERE id = ?", (complex_choice, user_id))
courses = parser.table_courses(COMPLEX_LINKS[complex_choice])
if courses != {}:
keyboard = keyboard_courses(courses)
bot.edit_message_text(chat_id=call.message.chat.id, message_id=call.message.message_id, text="Выберите курс:", reply_markup=keyboard)
else:
bot.edit_message_text(chat_id=call.message.chat.id, message_id=call.message.message_id, text="Не удалось получить актуальные курсы", reply_markup=keyboard_restart)
if call.data.startswith("select_course_"): # выбор курса
bot.edit_message_text(chat_id=call.message.chat.id, message_id=call.message.message_id, text="Получение групп...")
course_number = call.data.split("_")[-1]
user = SQL_request("SELECT * FROM users WHERE id = ?", (int(user_id),))
complex_choice = user[4]
try:
x = parser.table_courses(COMPLEX_LINKS[complex_choice])
groups = x[f'{course_number} курс']
keys = list(groups.keys())
buttons = []
for group in keys:
button = InlineKeyboardButton(text=f"{group}", callback_data=f"select_group_{group}")
buttons.append(button)
back = InlineKeyboardButton(text="< Назад", callback_data="back_courses")
keyboard_groups = InlineKeyboardMarkup(row_width=3)
keyboard_groups.add(*buttons)
keyboard_groups.add(back)
bot.edit_message_text(chat_id=call.message.chat.id, message_id=call.message.message_id, text="Выберите группу:", reply_markup=keyboard_groups)
except:
bot.edit_message_text(chat_id=call.message.chat.id, message_id=call.message.message_id, text="Выбранный курс не найден :(", reply_markup=keyboard_error)
if (call.data).split("_")[0] == "select" and (call.data).split("_")[1] == "group": # выбор группы
groups = call.data.split('_')[2]
SQL_request("UPDATE users SET groups = ? WHERE id = ?", (groups, user_id))
print(f"{LOG}записана группа пользователя")
keyboard_main = InlineKeyboardMarkup(row_width=2)
keyboard_main.add(btn_day, btn_week, btn_change_group)
if call.message.chat.id == 1210146115 or call.message.chat.id == 926001057 or call.message.chat.id == 1052870878:
keyboard_main.add(btn_admin)
bot.edit_message_text(chat_id=call.message.chat.id, message_id=call.message.message_id, text=f"Группа: *{tg_markdown(groups)}*\n\nВыберите расписание:", reply_markup=keyboard_main, parse_mode="MarkdownV2")
if call.data == "select_week": # расписание на неделю
send_week_schedule(call.message.chat.id, call.message.message_id, call.message.chat.id, is_button_click=True)
if call.data == "select_day": # выбор дня недели
bot.edit_message_text(chat_id=call.message.chat.id, message_id=call.message.message_id, text=f"Сегодня: *{tg_markdown(now_day(DAYS))}*\n\nВыберите день недели:", reply_markup=keyboard_days, parse_mode="MarkdownV2")
if call.data.startswith("day_"): # обработка выбора конкретного дня
bot.edit_message_text(chat_id=call.message.chat.id, message_id=call.message.message_id, text="Загрузка расписания...")
selected_day = call.data.split("_")[1]
user = SQL_request("SELECT * FROM users WHERE id = ?", (int(user_id),))
complex_choice = user[4]
group = user[2]
if group.split(":")[0] == "teacher":
try:
text = get_day_teacher(complex_choice, group.split(":")[1], selected_day)
text = markup_text(text, is_teacher_format=True)
bot.edit_message_text(chat_id=call.message.chat.id, message_id=call.message.message_id, text=text, reply_markup=keyboard_day_back, parse_mode="MarkdownV2")
except Exception as e:
print(f"Ошибка: {e}")
bot.edit_message_text(chat_id=call.message.chat.id, message_id=call.message.message_id, text="Расписание не найдено", reply_markup=keyboard_day_back)
else:
day_schedule = get_day_schedule(complex_choice, group, selected_day)
if day_schedule != "Не удалось получить расписание":
text = markup_text(day_schedule)
bot.edit_message_text(chat_id=call.message.chat.id, message_id=call.message.message_id, text=text, reply_markup=keyboard_day_back, parse_mode="MarkdownV2")
else: bot.edit_message_text(chat_id=call.message.chat.id, message_id=call.message.message_id, text=day_schedule, reply_markup=keyboard_day_back)
if call.data == "teachers_select": # получение списка преподавателей
user = SQL_request("SELECT * FROM users WHERE id = ?", (int(user_id),))
complex_choice = user[4]
back = InlineKeyboardButton(text="< Назад", callback_data="back_courses")
with open(f"{SCRIPT_DIR}/{complex_choice}.txt", 'r', encoding='utf-8') as file:
data = file.read()
data_dict_str = data.split("Обновлено:")[1].strip()
data_dict_str = data_dict_str[data_dict_str.index('{'):]
data_dict = ast.literal_eval(data_dict_str)
fio_list = [fio for fio in data_dict.keys() if not fio.endswith('\nотмена')]
fio_list = sorted(fio_list)
buttons = []
for i in range(len(fio_list)):
button = InlineKeyboardButton(text=fio_list[i], callback_data=f"teacher:{fio_list[i]}")
buttons.append(button)
keyboard = InlineKeyboardMarkup(row_width=3)
keyboard.add(*buttons)
keyboard.add(back)
bot.edit_message_text(chat_id=call.message.chat.id, message_id=call.message.message_id, text="Выберите нужного преподавателя", reply_markup=keyboard)
if (call.data).split(":")[0] == "teacher": # выбор нужного преподавателся
teacher_name = (call.data).split(":")[1]
SQL_request("UPDATE users SET groups = ? WHERE id = ?", (f"teacher:{teacher_name}", user_id))
print(f"{LOG}Выбран преподаватель {teacher_name}")
keyboard_main = InlineKeyboardMarkup(row_width=2)
keyboard_main.add(btn_day, btn_week, btn_change_group)
if call.message.chat.id == 1210146115 or call.message.chat.id == 926001057 or call.message.chat.id == 1052870878:
keyboard_main.add(btn_admin)
bot.edit_message_text(chat_id=call.message.chat.id, message_id=call.message.message_id, text=f"Преподаватель: *{tg_markdown(teacher_name)}*\n\nВыберите расписание:", reply_markup=keyboard_main, parse_mode="MarkdownV2")
if call.data == 'readme':
with open(README_PATH, 'r', encoding='utf-8') as file:
data = file.read()
data = format_markdown_for_telegram(data) # Преобразуем Markdown-разметку в Telegram-разметку
bot.edit_message_text(chat_id=user_id, message_id=call.message.message_id, text=data, parse_mode='Markdown', reply_markup=keyboard_return_info)
if call.data == 'what_new': # получение текста последнего обновления
text = get_latest_release_text("https://github.com/pinghoyk/schedule")
formatted_text = format_markdown_for_telegram(text) # Форматируем текст под Telegram-разметку
bot.edit_message_text(chat_id=call.message.chat.id, message_id=call.message.message_id, text=formatted_text, parse_mode='Markdown', reply_markup=keyboard_return_info)
# администратор
if call.data == 'admin':
text = 'Панель администратора'
bot.edit_message_text(chat_id=call.message.chat.id, message_id=call.message.message_id, text=text, reply_markup=keyboard_admin)
if call.data == 'stat':
conn = sqlite3.connect(f'{SCRIPT_DIR}/{DB_NAME}')
cursor = conn.cursor()
cursor.execute('SELECT COUNT(*) FROM users')
user_count = cursor.fetchone()[0]
conn.close()
text = f"Статистика:\n\nКол-во пользователей: {user_count}"
mini_notification(text, call.id, True)
if call.data == 'bd_download':
with open(f'{SCRIPT_DIR}/{DB_NAME}', 'rb') as file:
bot.send_document(call.message.chat.id, file)
# кнопки возврата
if call.data == "back_complex": # возврат в комплексы
bot.edit_message_text(chat_id=call.message.chat.id, message_id=call.message.message_id, text="Выберите комплекс:", reply_markup=keyboard_complex)
if call.data == "back_courses": # возврат в курсы
bot.edit_message_text(chat_id=call.message.chat.id, message_id=call.message.message_id, text="Получение курсов...")
user = SQL_request("SELECT * FROM users WHERE id = ?", (int(user_id),))
complex_choice = user[4]
courses = parser.table_courses(COMPLEX_LINKS[complex_choice])
keyboard = keyboard_courses(courses)
if courses != {}:
keyboard = keyboard_courses(courses)
bot.edit_message_text(chat_id=call.message.chat.id, message_id=call.message.message_id, text="Выберите курс:", reply_markup=keyboard)
else:
bot.edit_message_text(chat_id=call.message.chat.id, message_id=call.message.message_id, text="Не удалось получить актуальные курсы", reply_markup=keyboard_restart)
if call.data == "back_main": # возврат на главную
user_data = SQL_request("SELECT groups FROM users WHERE id = ?", (user_id,))
groups = user_data[0] if user_data else "не выбрана"
keyboard_main = InlineKeyboardMarkup(row_width=2)
keyboard_main.add(btn_day, btn_week, btn_change_group)
if call.message.chat.id == 1210146115 or call.message.chat.id == 926001057 or call.message.chat.id == 1052870878:
keyboard_main.add(btn_admin)
if groups.split(":")[0] == "teacher":
teacher_name = groups.split(":")[1]
bot.edit_message_text(chat_id=call.message.chat.id, message_id=call.message.message_id, text=f"Преподаватель: *{tg_markdown(teacher_name)}*\n\nВыберите расписание:", reply_markup=keyboard_main, parse_mode="MarkdownV2")
else:
bot.edit_message_text(chat_id=call.message.chat.id, message_id=call.message.message_id, text=f"Группа: *{tg_markdown(groups)}*\n\nВыберите расписание:", reply_markup=keyboard_main, parse_mode="MarkdownV2")
if call.data == 'back_in_info':
text = f"*Текущая версия:* {VERSION}\n\nВыберите нужный результат"
text = tg_markdown(text)
bot.edit_message_text(chat_id=call.message.chat.id, message_id=call.message.message_id, text=text, reply_markup=keyboard_info, parse_mode="MarkdownV2")
@bot.message_handler(func=lambda message: True)
def handle_text_message(message): # удаляет сообщения от пользователя
bot.delete_message(message.chat.id, message.message_id)
# запуск, обновления расписания для преподавателей
thread1 = threading.Thread(target=check_and_update_schedule, args=("Российская 23",))
thread2 = threading.Thread(target=check_and_update_schedule, args=("Блюхера 91",))
thread1.start()
thread2.start()
notification_thread = threading.Thread(target=mini_notification, args=("Бот перезапущен", None, False))
notification_thread.start()
bot.set_my_commands(commands)
print(f"бот запущен...")
def start_polling():
while True:
try:
bot.polling(none_stop=True, timeout=60) # Установите таймаут для перезапуска
except Exception as e:
print(f"Ошибка при подключении: {e}")
if __name__ == "__main__":
start_polling()
# bot.polling(none_stop=True, timeout=60) # что бы бот не перезапускался, при ошибках