From d4349f1029b94b24a81767b1078d3d8df2607392 Mon Sep 17 00:00:00 2001 From: tema Date: Tue, 28 Mar 2023 11:15:03 +0300 Subject: [PATCH 1/2] Fix --- 1.patch | 47 ++++++++++++++++++++++++++++++++++++++++ filters/main.py | 2 +- handlers/private/main.py | 4 ++-- utils/bot_commands.py | 2 +- 4 files changed, 51 insertions(+), 4 deletions(-) create mode 100644 1.patch diff --git a/1.patch b/1.patch new file mode 100644 index 0000000..95ea5ab --- /dev/null +++ b/1.patch @@ -0,0 +1,47 @@ +diff --git a/filters/main.py b/filters/main.py +index 849e6de..7539de0 100644 +--- a/filters/main.py ++++ b/filters/main.py +@@ -28,7 +28,7 @@ class BotAdmin(BoundFilter): + self.admin = admin + + async def check(self, message: types.Message): +- if message.from_user.id in config.admin_user: ++ if message.from_user.id in [int(i) for i in config.admin_users.split(",")]: + return True + else: + await message.answer("Хорошая попытка, но ты не администратор!") +diff --git a/handlers/private/main.py b/handlers/private/main.py +index de03596..370218a 100644 +--- a/handlers/private/main.py ++++ b/handlers/private/main.py +@@ -45,7 +45,7 @@ async def get_replace(message: types.Message, state: FSMContext): + + link = ( + 'Проверьте замены тут' +- .format(config.bot("link")) ++ .format(config.link) + ) + logging.info("User: {user_id} - {username}".format( + user_id=str(message.from_user.id), +@@ -94,7 +94,7 @@ async def get_replace(message: types.Message, state: FSMContext): + async def get_link(message: types.Message): + msg = ( + 'Проверьте замены тут' +- .format(config.bot("link")) ++ .format(config.link) + ) + await bot.send_message( + message.chat.id, +diff --git a/utils/bot_commands.py b/utils/bot_commands.py +index b65bc62..3de6ed1 100644 +--- a/utils/bot_commands.py ++++ b/utils/bot_commands.py +@@ -7,6 +7,6 @@ async def set_commands(dp): + types.BotCommand("help", "информация"), + types.BotCommand("link", "получить ссылку на файл"), + types.BotCommand('timetable', "Розклад"), +- types.BotCommand('feedback', "Звязок з адміністратором") ++ types.BotCommand('feedback', "Звязок з адміністратором"), + types.BotCommand("reload", "только для администрации"), + ]) diff --git a/filters/main.py b/filters/main.py index 849e6de..7539de0 100644 --- a/filters/main.py +++ b/filters/main.py @@ -28,7 +28,7 @@ class BotAdmin(BoundFilter): self.admin = admin async def check(self, message: types.Message): - if message.from_user.id in config.admin_user: + if message.from_user.id in [int(i) for i in config.admin_users.split(",")]: return True else: await message.answer("Хорошая попытка, но ты не администратор!") diff --git a/handlers/private/main.py b/handlers/private/main.py index de03596..370218a 100644 --- a/handlers/private/main.py +++ b/handlers/private/main.py @@ -45,7 +45,7 @@ async def get_replace(message: types.Message, state: FSMContext): link = ( 'Проверьте замены тут' - .format(config.bot("link")) + .format(config.link) ) logging.info("User: {user_id} - {username}".format( user_id=str(message.from_user.id), @@ -94,7 +94,7 @@ async def get_replace(message: types.Message, state: FSMContext): async def get_link(message: types.Message): msg = ( 'Проверьте замены тут' - .format(config.bot("link")) + .format(config.link) ) await bot.send_message( message.chat.id, diff --git a/utils/bot_commands.py b/utils/bot_commands.py index b65bc62..3de6ed1 100644 --- a/utils/bot_commands.py +++ b/utils/bot_commands.py @@ -7,6 +7,6 @@ async def set_commands(dp): types.BotCommand("help", "информация"), types.BotCommand("link", "получить ссылку на файл"), types.BotCommand('timetable', "Розклад"), - types.BotCommand('feedback', "Звязок з адміністратором") + types.BotCommand('feedback', "Звязок з адміністратором"), types.BotCommand("reload", "только для администрации"), ]) -- 2.45.2 From 9ad88622e4954cd68be2813b0295d863a518e654 Mon Sep 17 00:00:00 2001 From: tema Date: Wed, 29 Mar 2023 16:39:51 +0300 Subject: [PATCH 2/2] Fix --- .gitignore | 1 + 1.patch | 47 ------------------------------------------ utils/announcements.py | 5 +++-- 3 files changed, 4 insertions(+), 49 deletions(-) delete mode 100644 1.patch diff --git a/.gitignore b/.gitignore index 75d34c5..5beaaea 100644 --- a/.gitignore +++ b/.gitignore @@ -17,5 +17,6 @@ __pycache__/ *.txt !requirements.txt test.py +engineering_works.py venv/ .vscode/ \ No newline at end of file diff --git a/1.patch b/1.patch deleted file mode 100644 index 95ea5ab..0000000 --- a/1.patch +++ /dev/null @@ -1,47 +0,0 @@ -diff --git a/filters/main.py b/filters/main.py -index 849e6de..7539de0 100644 ---- a/filters/main.py -+++ b/filters/main.py -@@ -28,7 +28,7 @@ class BotAdmin(BoundFilter): - self.admin = admin - - async def check(self, message: types.Message): -- if message.from_user.id in config.admin_user: -+ if message.from_user.id in [int(i) for i in config.admin_users.split(",")]: - return True - else: - await message.answer("Хорошая попытка, но ты не администратор!") -diff --git a/handlers/private/main.py b/handlers/private/main.py -index de03596..370218a 100644 ---- a/handlers/private/main.py -+++ b/handlers/private/main.py -@@ -45,7 +45,7 @@ async def get_replace(message: types.Message, state: FSMContext): - - link = ( - 'Проверьте замены тут' -- .format(config.bot("link")) -+ .format(config.link) - ) - logging.info("User: {user_id} - {username}".format( - user_id=str(message.from_user.id), -@@ -94,7 +94,7 @@ async def get_replace(message: types.Message, state: FSMContext): - async def get_link(message: types.Message): - msg = ( - 'Проверьте замены тут' -- .format(config.bot("link")) -+ .format(config.link) - ) - await bot.send_message( - message.chat.id, -diff --git a/utils/bot_commands.py b/utils/bot_commands.py -index b65bc62..3de6ed1 100644 ---- a/utils/bot_commands.py -+++ b/utils/bot_commands.py -@@ -7,6 +7,6 @@ async def set_commands(dp): - types.BotCommand("help", "информация"), - types.BotCommand("link", "получить ссылку на файл"), - types.BotCommand('timetable', "Розклад"), -- types.BotCommand('feedback', "Звязок з адміністратором") -+ types.BotCommand('feedback', "Звязок з адміністратором"), - types.BotCommand("reload", "только для администрации"), - ]) diff --git a/utils/announcements.py b/utils/announcements.py index f70541e..4e264de 100644 --- a/utils/announcements.py +++ b/utils/announcements.py @@ -1,3 +1,4 @@ + import datetime import asyncio import aioschedule as schedule @@ -15,8 +16,8 @@ async def announce(): except Exception: message = "Ошибка обновления данных!" if config.admin_users.split(',') is not None: - for user_id in config.admin_users.split(','): - if user_id in config.exclude: + for user_id in [int(i) for i in config.admin_users.split(',')]: + if user_id in [int(i) for i in config.exclude.split(",")]: continue await dp.bot.send_message(user_id, message) -- 2.45.2