This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
Telegram/modules/commands/application.py

100 lines
3.9 KiB
Python
Raw Normal View History

2022-12-05 19:49:51 +02:00
from datetime import datetime
2022-12-27 19:46:17 +02:00
from app import app
2022-12-05 19:49:51 +02:00
from pyrogram import filters
2022-12-15 15:32:17 +02:00
from pyrogram.enums.parse_mode import ParseMode
2022-12-27 14:36:54 +02:00
from pyrogram.types import Message
2022-12-15 15:32:17 +02:00
from pyrogram.errors import bad_request_400
2022-12-27 14:36:54 +02:00
from pyrogram.client import Client
2023-01-06 16:49:51 +02:00
from classes.errors.holo_user import UserNotFoundError
from classes.holo_user import HoloUser
2022-12-15 15:52:33 +02:00
from modules.utils import logWrite, locale, should_quote
2022-12-05 19:49:51 +02:00
from dateutil.relativedelta import relativedelta
2022-12-15 15:32:17 +02:00
from modules.database import col_applications
2022-12-27 19:46:17 +02:00
from modules import custom_filters
2022-12-05 19:49:51 +02:00
2023-03-09 17:25:06 +02:00
@app.on_message(
custom_filters.enabled_applications
& ~filters.scheduled
& filters.command(["application"], prefixes=["/"])
& custom_filters.admin
)
2022-12-27 14:36:54 +02:00
async def cmd_application(app: Client, msg: Message):
2022-12-27 19:46:17 +02:00
try:
2022-12-05 19:49:51 +02:00
try:
2022-12-27 19:46:17 +02:00
holo_user = HoloUser(int(msg.command[1]))
except (ValueError, UserNotFoundError):
2022-12-05 19:49:51 +02:00
try:
2022-12-27 19:46:17 +02:00
holo_user = HoloUser((await app.get_users(msg.command[1])).id)
2023-03-09 17:25:06 +02:00
except (
bad_request_400.UsernameInvalid,
bad_request_400.PeerIdInvalid,
bad_request_400.UsernameNotOccupied,
):
await msg.reply_text(
locale(
"no_user_application", "message", locale=msg.from_user
).format(msg.command[1]),
quote=should_quote(msg),
)
2022-12-27 19:46:17 +02:00
return
2022-12-15 15:32:17 +02:00
2022-12-27 19:46:17 +02:00
application = col_applications.find_one({"user": holo_user.id})
2022-12-15 15:32:17 +02:00
2022-12-27 19:46:17 +02:00
if application is None:
2023-03-09 17:25:06 +02:00
logWrite(
f"User {msg.from_user.id} requested application of {holo_user.id} but user does not exists"
)
await msg.reply_text(
locale("user_invalid", "message", locale=msg.from_user),
quote=should_quote(msg),
)
2022-12-27 19:46:17 +02:00
return
2022-12-15 15:32:17 +02:00
2022-12-27 19:46:17 +02:00
application_content = []
i = 1
2022-12-16 12:27:46 +02:00
2023-03-09 17:25:06 +02:00
for question in application["application"]:
2022-12-27 19:46:17 +02:00
if i == 2:
2023-03-09 17:25:06 +02:00
age = relativedelta(datetime.now(), application["application"]["2"])
application_content.append(
f"{locale(f'question{i}', 'message', 'question_titles', locale=msg.from_user)} {application['application']['2'].strftime('%d.%m.%Y')} ({age.years} р.)"
)
2022-12-27 19:46:17 +02:00
elif i == 3:
2023-03-09 17:25:06 +02:00
if application["application"]["3"]["countryCode"] == "UA":
application_content.append(
f"{locale(f'question{i}', 'message', 'question_titles', locale=msg.from_user)} {application['application']['3']['name']}"
)
2022-12-05 19:49:51 +02:00
else:
2023-03-09 17:25:06 +02:00
application_content.append(
f"{locale(f'question{i}', 'message', 'question_titles', locale=msg.from_user)} {application['application']['3']['name']} ({application['application']['3']['adminName1']}, {application['application']['3']['countryName']})"
)
2022-12-27 19:46:17 +02:00
else:
2023-03-09 17:25:06 +02:00
application_content.append(
f"{locale(f'question{i}', 'message', 'question_titles', locale=msg.from_user)} {application['application'][question]}"
)
2022-12-27 19:46:17 +02:00
i += 1
2022-12-15 15:32:17 +02:00
2023-03-09 17:25:06 +02:00
application_status = locale(
"application_status_accepted", "message", locale=msg.from_user
).format(
(await app.get_users(application["admin"])).first_name,
application["date"].strftime("%d.%m.%Y, %H:%M"),
)
2022-12-15 15:32:17 +02:00
2022-12-27 19:46:17 +02:00
logWrite(f"User {msg.from_user.id} requested application of {holo_user.id}")
2023-03-09 17:25:06 +02:00
await msg.reply_text(
locale("contact", "message", locale=msg.from_user).format(
holo_user.id, "\n".join(application_content), application_status
),
parse_mode=ParseMode.MARKDOWN,
quote=should_quote(msg),
)
2022-12-27 19:46:17 +02:00
except IndexError:
2023-03-09 17:25:06 +02:00
await msg.reply_text(
locale("application_invalid_syntax", "message", locale=msg.from_user),
quote=should_quote(msg),
)