-
Notifications
You must be signed in to change notification settings - Fork 1
/
tg.py
541 lines (450 loc) · 23.2 KB
/
tg.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
# -*- coding: utf-8 -*-
# Copyright (C) 2021-2023 Ilya Bezrukov, Stepan Chizhov, Artem Grishin
#
# This file is part of math_bot.
#
# math_bot 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
# any later version.
#
# math_bot 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, see <https://www.gnu.org/licenses/>.
from io import StringIO
import telebot
from telebot.types import ReplyKeyboardMarkup, KeyboardButton, ReplyKeyboardRemove,\
InlineKeyboardMarkup, InlineKeyboardButton
from telebot.apihelper import ApiTelegramException
from git import Repo
from config import *
from logic import build_table
from matrix import Matrix, SizesMatchError, SquareMatrixRequired, NonInvertibleMatrix
from rings import *
from safe_eval import safe_eval, CalculationLimitError
from shunting_yard import InvalidSyntax, InvalidName, InvalidArguments
from statistics import log_function_call
from models import User, get_db, close_db, ReportRecord
bot = telebot.TeleBot(Config.BOT_TOKEN)
menu = ReplyKeyboardMarkup(resize_keyboard=True, row_width=3) # this markup is bot menu
menu.add(KeyboardButton("/help"))
menu.add(KeyboardButton("/det"))
menu.add(KeyboardButton("/ref"))
menu.add(KeyboardButton("/m_inverse"))
menu.add(KeyboardButton("/factorize"))
menu.add(KeyboardButton("/euclid"))
menu.add(KeyboardButton("/idempotents"))
menu.add(KeyboardButton("/nilpotents"))
menu.add(KeyboardButton("/inverse"))
menu.add(KeyboardButton("/logic"))
menu.add(KeyboardButton("/calc"))
menu.add(KeyboardButton("/about"))
hide_menu = ReplyKeyboardRemove() # sending this as reply_markup will close menu
def get_report_menu(user_id):
mk = InlineKeyboardMarkup(row_width=1)
mk.add(InlineKeyboardButton(text="Сообщить об ошибке!", callback_data="report"))
if user_id in Config.ADMINS:
mk.add(InlineKeyboardButton(text="Посмотреть ошибки", callback_data="view_reports"))
return mk
def get_cancel_menu():
mk = InlineKeyboardMarkup(row_width=1)
mk.add(InlineKeyboardButton(text="Назад", callback_data="cancel"))
return mk
def get_type_report_menu(user_id):
mk = InlineKeyboardMarkup(row_width=1)
new_reports_button = InlineKeyboardButton(text="Новые ошибки", callback_data="report_status_NEW")
accepted_reports_button = InlineKeyboardButton(text="Принятые ошибки", callback_data="report_status_ACCEPTED")
rejected_reports_button = InlineKeyboardButton(text="Отклоненные ошибки", callback_data="report_status_REJECTED")
closed_reports_button = InlineKeyboardButton(text="Закрытые ошибки", callback_data="report_status_CLOSED")
back_button = InlineKeyboardButton(text="Назад", callback_data="back_button")
if user_id in Config.ADMINS:
mk.add(new_reports_button, accepted_reports_button, rejected_reports_button, closed_reports_button, back_button)
return mk
def get_admin_menu(call):
mk = InlineKeyboardMarkup(row_width=1)
if call.data not in ["report_status_CLOSED", "report_status_REJECTED"] and call.from_user.id in Config.ADMINS:
if call.data not in ["report_status_ACCEPTED"]:
accept_report_button = InlineKeyboardButton(text="Принять ошибку", callback_data="accept_report")
mk.add(accept_report_button)
reject_report_button = InlineKeyboardButton(text="Отклонить ошибку", callback_data="reject_report")
close_report_button = InlineKeyboardButton(text="Закрыть ошибку", callback_data="close_report")
mk.add(reject_report_button, close_report_button)
return mk
@bot.message_handler(commands=["start"])
def start_message(message):
send_mess = (
f"<b>Привет{ ', ' + message.from_user.first_name if message.from_user.first_name is not None else ''}!</b>\n"
f"Используй клавиатуру или команды для вызова нужной фишки\n"
f"/help - вызов помощи\n"
f"/about - информация о боте\n"
f"Наш канал: {Config.CHANNEL_LINK}\n"
)
bot.send_message(message.chat.id, send_mess, parse_mode="html", reply_markup=menu)
# User first-time creation
db = get_db()
User.get_or_create(db, message.from_user.id, message.from_user.last_name,
message.from_user.first_name, message.from_user.username)
close_db()
@bot.message_handler(commands=["help"])
def send_help(message):
inline_menu = get_report_menu(message.from_user.id)
bot.send_message(message.chat.id,
("<b>Работа с матрицами</b>\n"
"/det - определитель матрицы.\n"
"/ref - ступенчатый вид матрицы (верхне-треугольный).\n"
"/m_inverse - обратная матрица.\n"
"\n<b>Теория чисел и дискретная математика</b>\n"
"/factorize - разложение натурального числа в простые.\n"
"/euclid - НОД двух чисел и решение Диофантового уравнения.\n"
"/idempotents - идемпотентные элементы в Z/n.\n"
"/nilpotents - нильпотентные элементы в Z/n.\n"
"/inverse - обратный элемент в Z/n.\n"
"/logic - таблица истинности выражения.\n"
"\n<b>Калькуляторы</b>\n"
"/calc - калькулятор математических выражений.\n"
"\n<b>Об этом боте</b> /about\n"
),
parse_mode="html", reply_markup=inline_menu)
@bot.message_handler(commands=["det"])
def det(message):
m = bot.send_message(message.chat.id, "Введите матрицу: (одним сообщением)", reply_markup=hide_menu)
bot.register_next_step_handler(m, matrix_input, action="det")
@log_function_call("det")
def calc_det(message, action, matrix):
try:
result = matrix.det()
except SquareMatrixRequired:
bot.reply_to(message, "Невозможно рассчитать определитель для не квадратной матрицы!", reply_markup=menu)
else:
answer = str(result)
bot.reply_to(message, answer, reply_markup=menu)
return answer
@bot.message_handler(commands=["ref"])
def ref_input(message):
m = bot.send_message(message.chat.id, "Введите матрицу: (одним сообщением)", reply_markup=hide_menu)
bot.register_next_step_handler(m, matrix_input, action="ref")
@log_function_call("ref")
def calc_ref(message, action, matrix):
result = matrix.ref()
answer = f"Матрица в ступенчатом виде:\n<code>{str(result)}</code>"
bot.send_message(message.chat.id, answer, parse_mode="html", reply_markup=menu)
return answer
@bot.message_handler(commands=["m_inverse"])
def inv_input(message):
m = bot.send_message(message.chat.id, "Введите матрицу: (одним сообщением)", reply_markup=hide_menu)
bot.register_next_step_handler(m, matrix_input, action="m_inverse")
@log_function_call("m_inverse")
def calc_inv(message, action, matrix):
try:
result = matrix.inverse()
except NonInvertibleMatrix:
bot.send_message(message.chat.id, "Обратной матрицы не существует!", reply_markup=menu)
return
else:
answer = f"Обратная матрица:\n<code>{str(result)}</code>"
bot.send_message(message.chat.id, answer, parse_mode="html", reply_markup=menu)
return answer
action_mapper = {
"det": calc_det,
"ref": calc_ref,
"m_inverse": calc_inv
}
def matrix_input(message, action):
try:
lst = [[float(x) for x in row.split()] for row in message.text.split("\n")]
matrix = Matrix.from_list(lst)
except SizesMatchError:
bot.reply_to(message,
"Несовпадение размеров строк или столбцов. Матрица должна быть <b>прямоугольной</b>.",
reply_markup=menu,
parse_mode="html")
except ValueError:
bot.reply_to(message,
"Необходимо вводить <b>числовую</b> квадратную матрицу",
reply_markup=menu,
parse_mode="html")
else:
if matrix.n > Config.MAX_MATRIX:
bot.reply_to(message, f"Ввод матрицы имеет ограничение в {Config.MAX_MATRIX}x{Config.MAX_MATRIX}!",
reply_markup=menu)
else:
next_handler = action_mapper[action]
next_handler(message, action=action, matrix=matrix)
@bot.message_handler(commands=["logic"])
def logic_input(message):
m = bot.send_message(message.chat.id, "Введите логическое выражение:", # TODO: make logic operators description
reply_markup=hide_menu,
parse_mode="html")
bot.register_next_step_handler(m, logic_output)
@log_function_call("logic")
def logic_output(message):
try:
table, variables = build_table(message.text)
out = StringIO() # abstract file (file-object)
print(*variables, "F", file=out, sep=" " * 2)
for row in table:
print(*row, file=out, sep=" " * 2)
answer = f"<code>{out.getvalue()}</code>"
bot.send_message(message.chat.id, answer, parse_mode="html", reply_markup=menu)
return answer
except InvalidSyntax:
bot.send_message(message.chat.id, "Синтаксическая ошибка в выражении", reply_markup=menu)
except InvalidName:
bot.send_message(message.chat.id, "Встречена неизвестная переменная", reply_markup=menu)
except InvalidArguments:
bot.send_message(message.chat.id, "Неправильное использование функции", reply_markup=menu)
except CalculationLimitError:
bot.send_message(message.chat.id, "Достигнут лимит возможной сложности вычислений", reply_markup=menu)
except ValueError:
bot.send_message(message.chat.id, "Не удалось распознать значение. Допустимые: 0, 1", reply_markup=menu)
@bot.message_handler(commands=["idempotents", "nilpotents"])
def ring_input(message):
m = bot.send_message(message.chat.id, "Введите модуль кольца:")
bot.register_next_step_handler(m, ring_output, command=message.text[1:])
@log_function_call("ring")
def ring_output(message, command):
try:
n = int(message.text.strip())
except ValueError:
bot.send_message(message.chat.id, "Ошибка ввода данных", reply_markup=menu)
return
if n >= Config.MAX_MODULO or n < 2:
bot.send_message(message.chat.id, f"Ограничение: 2 <= n < {Config.MAX_MODULO:E}", reply_markup=menu)
return
if command == "idempotents":
result = [f"{row} -> {el}" for row, el in find_idempotents(n)]
title = "Идемпотенты"
elif command == "nilpotents":
result = find_nilpotents(n)
title = "Нильпотенты"
else:
return
if len(result) > Config.MAX_ELEMENTS:
s = "Элементов слишком много чтобы их вывести..."
else:
s = "\n".join([str(x) for x in result])
answer = (f"<b> {title} в Z/{n}</b>\n"
f"Количество: {len(result)}\n\n"
f"{s}\n")
bot.send_message(
message.chat.id,
answer,
reply_markup=menu,
parse_mode="html"
)
return answer
@bot.message_handler(commands=["inverse"])
def inverse_input_ring(message):
m = bot.send_message(message.chat.id, "Введите модуль кольца:")
bot.register_next_step_handler(m, inverse_input_element)
def inverse_input_element(message):
try:
n = int(message.text.strip())
except ValueError:
bot.send_message(message.chat.id, "Ошибка ввода данных", reply_markup=menu)
return
if n >= Config.MAX_MODULO or n < 2:
bot.send_message(message.chat.id, f"Ограничение: 2 <= n < {Config.MAX_MODULO:E}", reply_markup=menu)
return
m = bot.send_message(message.chat.id, "Введите элемент, для которого требуется найти обратный:")
bot.register_next_step_handler(m, inverse_output, modulo=n)
@log_function_call("inverse")
def inverse_output(message, modulo):
try:
n = int(message.text.strip())
except ValueError:
bot.send_message(message.chat.id, "Ошибка ввода данных", reply_markup=menu)
return
n = n % modulo
try:
result = find_inverse(n, modulo)
except ArithmeticError:
answer = (f"У {n} <b>нет</b> обратного в кольце Z/{modulo}\n"
f"Так как НОД({n}, {modulo}) > 1")
bot.send_message(message.chat.id, answer, parse_mode="html")
return answer
else:
answer = str(result)
bot.send_message(message.chat.id, answer)
return answer
@bot.message_handler(commands=["factorize"])
def factorize_input(message):
m = bot.send_message(message.chat.id, "Введите число:")
bot.register_next_step_handler(m, factorize_output)
@log_function_call("factorize")
def factorize_output(message):
try:
n = int(message.text.strip())
except ValueError:
bot.send_message(message.chat.id, "Ошибка ввода данных", reply_markup=menu)
return
if n < 2 or n > Config.FACTORIZE_MAX:
bot.send_message(
message.chat.id,
f"Разложение доступно для положительных целых чисел n: 2 <= n <= {Config.FACTORIZE_MAX:E}"
)
else:
fn = factorize(n)
answer = f"{n} = " + factorize_str(fn)
bot.send_message(message.chat.id, answer)
return answer
@bot.message_handler(commands=["euclid"])
def euclid_input(message):
m = bot.send_message(message.chat.id, "Введите два числа через пробел:")
bot.register_next_step_handler(m, euclid_output)
@log_function_call("euclid")
def euclid_output(message):
try:
a, b = map(int, message.text.strip().split(" "))
except ValueError:
bot.send_message(message.chat.id, "Ошибка ввода данных", reply_markup=menu)
return
d, x, y = ext_gcd(a, b)
answer = (f"НОД({a}, {b}) = {d}\n\n"
f"<u>Решение уравнения:</u>\n{a}*x + {b if b >= 0 else f'({b})'}*y <b>= {d}</b>\n"
f"x = {x}\ny = {y}\n\n"
f"<u>Внимание</u>\n"
f"<b>Обращайте внимание на вид уравнения!</b>\n"
f"Решается уравнение вида ax + by = НОД(a, b)!")
bot.send_message(message.chat.id, answer, parse_mode="html")
return answer
@bot.message_handler(commands=["calc"])
def calc_input(message):
m = bot.send_message(message.chat.id, "Введите выражение:", parse_mode="html")
bot.register_next_step_handler(m, calc_output)
@log_function_call("calc")
def calc_output(message):
try:
answer = str(safe_eval(message.text))
except InvalidSyntax:
bot.send_message(message.chat.id, "Синтаксическая ошибка в выражении", reply_markup=menu)
except InvalidName:
bot.send_message(message.chat.id, "Встречена неизвестная переменная", reply_markup=menu)
except InvalidArguments:
bot.send_message(message.chat.id, "Неправильное использование функции")
except CalculationLimitError:
bot.send_message(message.chat.id, "Достигнут лимит возможной сложности вычислений", reply_markup=menu)
except ZeroDivisionError:
bot.send_message(message.chat.id, "Во время выполнения встречено деление на 0", reply_markup=menu)
except ArithmeticError:
bot.send_message(message.chat.id, "Арифметическая ошибка", reply_markup=menu)
except ValueError:
bot.send_message(message.chat.id, "Не удалось распознать значение", reply_markup=menu)
else:
bot.send_message(message.chat.id, answer, parse_mode="html", reply_markup=menu)
return answer
@bot.message_handler(commands=["broadcast", "bc"])
def broadcast_input(message):
if message.from_user.id not in Config.ADMINS:
return
m = bot.send_message(message.chat.id, "Сообщение для рассылки:")
bot.register_next_step_handler(m, broadcast)
def broadcast(message):
db = get_db()
blocked_count = 0
for user in db.query(User).all():
try:
bot.send_message(user.id, message.text)
except ApiTelegramException:
blocked_count += 1
bot.send_message(message.chat.id, "Рассылка успешно завершена!\n"
f"Не получили рассылку: {blocked_count}")
close_db()
@bot.message_handler(commands=["about"])
def send_about(message):
repo = Repo("./")
version = next((tag for tag in repo.tags if tag.commit == repo.head.commit), None)
warning = ""
if not version:
version = repo.head.commit.hexsha
warning = " (<u>нестабильная</u>)"
bot.send_message(message.chat.id,
f"Версия{warning}: <b>{version}</b>\n"
f"Наш канал: {Config.CHANNEL_LINK}\n"
f"\nCopyright (C) 2021-2023 Ilya Bezrukov, Stepan Chizhov, Artem Grishin\n"
f"GitHub: {Config.GITHUB_LINK}\n"
f"<b>Под лицензией GNU-GPL 2.0-or-latter</b>",
parse_mode="html")
@bot.callback_query_handler(func=lambda call: call.data == "report")
def callback_inline(call):
mk = get_cancel_menu()
m = bot.send_message(call.message.chat.id, "Опишите что именно пошло не так", reply_markup=mk)
bot.register_next_step_handler(m, report_handling)
def report_handling(message):
db = get_db()
user = User.get_or_create(db, message.from_user.id, message.from_user.last_name,
message.from_user.first_name, message.from_user.username)
rec = ReportRecord.new(user, message.text)
db.add(rec)
db.commit()
close_db()
bot.send_message(message.chat.id, "Спасибо, что сообщаете нам о проблемах!")
@bot.callback_query_handler(func=lambda call: call.data == "cancel")
def cancel_report(call):
bot.delete_message(chat_id=call.message.chat.id, message_id=call.message.message_id)
bot.clear_step_handler_by_chat_id(call.message.chat.id)
@bot.callback_query_handler(func=lambda call: call.data == "view_reports")
def choose_report_types(call):
mk = get_type_report_menu(call.from_user.id)
bot.edit_message_reply_markup(chat_id=call.message.chat.id, message_id=call.message.message_id,
reply_markup=mk)
@bot.callback_query_handler(func=lambda call: call.data in ("report_status_NEW", "report_status_REJECTED",
"report_status_ACCEPTED", "report_status_CLOSED"))
def list_reports(call):
db = get_db()
reports = ReportRecord.get_reports(db, call.data)
close_db()
mk = get_admin_menu(call)
for report in reports:
bot.send_message(chat_id=call.message.chat.id, text=f"Report id: {report.id}\nUser id: {report.user_id}\n"
f"Timestamp: {report.timestamp}\n\n"
f"Problem statement:\n{report.text}\n\n"
f"Status: <b>{report.status}</b>\nLink: {report.link}",
parse_mode="html", reply_markup=mk)
@bot.callback_query_handler(func=lambda call: call.data in ("accept_report", "reject_report", "close_report"))
def change_report_status(call):
db = get_db()
id = call.message.text.split()[2]
if call.data == "accept_report":
m = bot.send_message(call.message.chat.id, "Предоставьте ссылку на Github Issue")
bot.register_next_step_handler(m, link_handling, id)
if call.data == "close_report":
if ReportRecord.get_report_by_id(db, id).status == "ACCEPTED":
ReportRecord.change_status(db, id, call.data)
bot.send_message(call.message.chat.id, "Ошибка закрыта")
else:
bot.send_message(call.message.chat.id, "Ошибка еще не подтверждена!")
if call.data == "reject_report":
ReportRecord.change_status(db, id, call.data)
bot.send_message(call.message.chat.id, "Ошибка отклонена")
close_db()
def link_handling(message, id):
mk = InlineKeyboardMarkup(row_width=1)
mk.add(InlineKeyboardButton(text="Подтвердить", callback_data=f"accept_link {id}"),
InlineKeyboardButton(text="Отклонить", callback_data=f"reject_link {id}"))
bot.send_message(message.chat.id, text=f"<b>Верно ли указана ссылка?</b>\n<b>Link:</b> {message.text}",
parse_mode="html", reply_markup=mk)
@bot.callback_query_handler(func=lambda call: call.data.split()[0] in ("accept_link", "reject_link"))
def accept_link(call):
db = get_db()
id = int(call.data.split()[1])
if call.data.split()[0] == "accept_link":
ReportRecord.change_status(db, id, "accept_report", call.message.text.split('\n')[1].split()[1])
bot.send_message(call.message.chat.id, "Ошибка подтверждена")
else:
bot.send_message(call.message.chat.id, text="Укажите ссылку еще раз")
bot.register_next_step_handler(call.message, link_handling, id)
close_db()
@bot.callback_query_handler(func=lambda call: call.data == "back_button")
def back_func(call):
mk = get_report_menu(call.from_user.id)
bot.edit_message_reply_markup(chat_id=call.message.chat.id, message_id=call.message.message_id,
reply_markup=mk)
if __name__ == "__main__":
print("Copyright (C) 2021-2023 Ilya Bezrukov, Stepan Chizhov, Artem Grishin")
print("Licensed under GNU GPL-2.0-or-later")
bot.infinity_polling() # should be infinity to avoid exceptions (#47)