2024-08-25 18:04:34 +03:00
|
|
|
from aiogram import Bot, Dispatcher, types
|
|
|
|
|
|
|
|
import yaml
|
2024-11-13 17:35:23 +03:00
|
|
|
import asyncio
|
2024-10-29 20:05:50 +03:00
|
|
|
import requests
|
2024-08-25 22:16:23 +03:00
|
|
|
|
2023-12-31 12:43:45 +03:00
|
|
|
import hashlib
|
2024-08-25 18:04:34 +03:00
|
|
|
import json
|
2024-10-29 20:05:50 +03:00
|
|
|
|
|
|
|
from http import HTTPStatus
|
2024-11-13 17:35:23 +03:00
|
|
|
import re
|
2024-10-29 20:05:50 +03:00
|
|
|
|
2024-08-25 18:04:34 +03:00
|
|
|
from function.convert import Converter
|
2024-08-26 11:18:54 +03:00
|
|
|
from function.format_number import format_number
|
2023-03-08 13:31:45 +03:00
|
|
|
|
2023-09-29 21:12:44 +03:00
|
|
|
dp = Dispatcher()
|
2024-11-13 17:35:23 +03:00
|
|
|
config = yaml.safe_load(open('config.yaml'))
|
2023-03-08 13:31:45 +03:00
|
|
|
|
2023-09-29 21:12:44 +03:00
|
|
|
@dp.inline_query()
|
2024-11-13 17:35:23 +03:00
|
|
|
async def currency(query: types.InlineQuery) -> None:
|
2024-10-29 18:14:28 +03:00
|
|
|
global result, from_currency, conv_currency
|
2023-03-08 13:31:45 +03:00
|
|
|
|
|
|
|
try:
|
2024-11-13 17:35:23 +03:00
|
|
|
text = query.query.lower()
|
2024-08-29 16:54:52 +03:00
|
|
|
args = text.split()
|
|
|
|
result_id = hashlib.md5(text.encode()).hexdigest()
|
2024-11-13 17:35:23 +03:00
|
|
|
|
2024-08-29 16:54:52 +03:00
|
|
|
conv = Converter()
|
|
|
|
|
2024-11-13 17:35:23 +03:00
|
|
|
if len(args) < 2:
|
|
|
|
return await reply(result_id,
|
|
|
|
[("2 or 3 arguments are required.",
|
|
|
|
'@shirino_bot USD RUB \n'
|
|
|
|
'@shirino_bot 12 USD RUB')],
|
|
|
|
query)
|
|
|
|
|
|
|
|
if len(args) == 3:
|
2024-08-29 16:54:52 +03:00
|
|
|
conv.amount = float(args[0])
|
2024-11-13 17:35:23 +03:00
|
|
|
from_currency = args[1]
|
|
|
|
conv_currency = args[2]
|
2023-12-31 12:43:45 +03:00
|
|
|
elif len(args) == 2:
|
2024-11-13 17:35:23 +03:00
|
|
|
from_currency = args[0]
|
|
|
|
conv_currency = args[1]
|
2024-08-29 16:54:52 +03:00
|
|
|
else:
|
2024-11-13 17:35:23 +03:00
|
|
|
return await reply(result_id, [('The source and target currency could not be determined.')], query)
|
2024-08-29 16:54:52 +03:00
|
|
|
|
|
|
|
if not from_currency or not conv_currency:
|
2024-11-13 17:35:23 +03:00
|
|
|
return await reply(result_id, [('The currency exchange rate could not be found.')], query)
|
2024-08-29 16:54:52 +03:00
|
|
|
|
|
|
|
conv.from_currency = from_currency.upper()
|
|
|
|
conv.conv_currency = conv_currency.upper()
|
|
|
|
conv.convert()
|
|
|
|
|
2024-11-13 17:35:23 +03:00
|
|
|
req_chart = requests.get(f'{config['kekkai_instance']}/api/getChart/week/', {
|
2024-10-29 20:05:50 +03:00
|
|
|
'from_currency': from_currency,
|
|
|
|
'conv_currency': conv_currency
|
|
|
|
}, timeout=3)
|
|
|
|
|
2024-11-13 17:35:23 +03:00
|
|
|
if not HTTPStatus(req_chart.status_code).is_success:
|
|
|
|
req_chart = None
|
2024-10-29 20:05:50 +03:00
|
|
|
else:
|
2024-11-13 17:35:23 +03:00
|
|
|
req_chart = req_chart.json().get('message', None)
|
2024-10-29 20:05:50 +03:00
|
|
|
|
2024-11-13 17:35:23 +03:00
|
|
|
await reply(result_id,
|
|
|
|
[
|
|
|
|
(
|
|
|
|
f'{format_number(conv.amount)} {conv.from_currency} = {conv.conv_amount} {conv.conv_currency}' \
|
|
|
|
f'\n{f'[График]({req_chart})' if req_chart else ''}',
|
|
|
|
None,
|
|
|
|
req_chart
|
|
|
|
),
|
|
|
|
(
|
|
|
|
f'{format_number(conv.amount)} {conv.from_currency} = {conv.conv_amount} {conv.conv_currency}',
|
|
|
|
None,
|
|
|
|
None
|
|
|
|
)
|
|
|
|
],
|
|
|
|
query)
|
2024-08-29 16:54:52 +03:00
|
|
|
|
|
|
|
except Exception as e:
|
|
|
|
print(e)
|
|
|
|
|
|
|
|
|
2024-11-13 17:35:23 +03:00
|
|
|
async def reply(result_id: str, args: list, query: types.InlineQuery) -> None:
|
|
|
|
if not args:
|
|
|
|
return
|
|
|
|
|
|
|
|
articles = []
|
|
|
|
|
|
|
|
for idx, arg in enumerate(args):
|
|
|
|
title = arg[0]
|
|
|
|
description = arg[1] if arg[1] else None
|
|
|
|
img = arg[2] if arg[2] else None
|
|
|
|
|
|
|
|
|
|
|
|
article = types.InlineQueryResultArticle(
|
|
|
|
id=f"{result_id}_{idx}",
|
|
|
|
title=remove_markdown(title).replace('График', ''),
|
|
|
|
thumbnail_url=img,
|
|
|
|
description=description,
|
2024-08-29 16:54:52 +03:00
|
|
|
input_message_content=types.InputTextMessageContent(
|
2024-10-29 20:05:50 +03:00
|
|
|
message_text=title,
|
|
|
|
parse_mode='markdown'
|
2024-08-29 16:54:52 +03:00
|
|
|
)
|
2023-12-31 12:43:45 +03:00
|
|
|
)
|
2023-05-30 11:51:20 +03:00
|
|
|
|
2024-11-13 17:35:23 +03:00
|
|
|
articles.append(article)
|
|
|
|
|
|
|
|
await query.answer(
|
|
|
|
results=articles,
|
|
|
|
parse_mode='markdown',
|
|
|
|
cache_time=0,
|
|
|
|
is_personal=True
|
|
|
|
)
|
|
|
|
|
|
|
|
def remove_markdown(text: str) -> str:
|
|
|
|
text = re.sub(r'\*([^\*]+)\*', r'\1', text)
|
|
|
|
text = re.sub(r'\_([^\_]+)\_', r'\1', text)
|
|
|
|
text = re.sub(r'\[([^\[]+)\]\([^\)]+\)', r'\1', text)
|
|
|
|
text = re.sub(r'[`]+([^`]+)`+', r'\1', text)
|
|
|
|
text = re.sub(r'~~([^~]+)~~', r'\1', text)
|
|
|
|
text = re.sub(r'\[([^\[]+)\]\([^\)]+\)', '', text)
|
|
|
|
return text
|
|
|
|
|
2023-03-08 13:31:45 +03:00
|
|
|
|
2023-09-29 21:12:44 +03:00
|
|
|
async def main() -> None:
|
2024-06-14 14:02:10 +03:00
|
|
|
bot = Bot(config['telegram_token'])
|
2023-09-29 21:12:44 +03:00
|
|
|
await dp.start_polling(bot)
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
asyncio.run(main())
|