uploader-bot/app/bot/routers/tonconnect.py

106 lines
4.2 KiB
Python

import json
from aiogram import types, Router, F
from aiogram.filters import Command
from app.core._keyboards import get_inline_keyboard
from app.core._utils.tg_process_template import tg_process_template
from app.core.logger import make_log
from app.core.models._blockchain.ton.connect import TonConnect, unpack_wallet_info
from app.core.models.wallet_connection import WalletConnection
from app.bot.routers.home import send_connect_wallets_list
router = Router()
async def pause_ton_connection(ton_connect: TonConnect):
if ton_connect.connected:
ton_connect._sdk_client.pause_connection()
async def t_tonconnect_dev_menu(message: types.Message, memory=None, user=None, db_session=None, chat_wrap=None, **extra):
try:
command_args = message.text.split(" ")[1:]
except BaseException as e:
command_args = []
make_log("TonConnect_DevMenu", f"Command args: {command_args}", level='info')
wallet_app_name = 'tonkeeper'
if len(command_args) > 0:
wallet_app_name = command_args[0].lower()
keyboard = []
ton_connect, ton_connection = TonConnect.by_user(db_session, user, callback_fn=())
make_log("TonConnect_DevMenu", f"Available wallets: {ton_connect._sdk_client.get_wallets()}", level='debug')
await ton_connect.restore_connection()
make_log("TonConnect_DevMenu", f"SDK connected?: {ton_connect.connected}", level='info')
if not ton_connect.connected:
if ton_connection:
make_log("TonConnect_DevMenu", f"Invalidating old connection", level='debug')
ton_connection.invalidated = True
db_session.commit()
message_text = f"""<b>Wallet is not connected</b>
Use /dev_tonconnect <code>{wallet_app_name}</code> for connect to wallet."""
connection_link = await ton_connect.new_connection(wallet_app_name)
ton_connect.connected
make_log("TonConnect_DevMenu", f"New connection link for {wallet_app_name}: {connection_link}", level='debug')
keyboard.append([
{
'text': 'Connect',
'url': connection_link
}
])
else:
wallet_info_text = json.dumps(unpack_wallet_info(ton_connect._sdk_client._wallet), indent=4, ensure_ascii=False)
message_text = f"""<b>Wallet is connected</b>
<pre>{wallet_info_text}</pre>"""
memory.add_task(pause_ton_connection, ton_connect, delay_s=60 * 3)
return await tg_process_template(
chat_wrap, message_text,
keyboard=get_inline_keyboard(keyboard) if keyboard else None
)
async def t_callback_init_tonconnect(query: types.CallbackQuery, memory=None, user=None, db_session=None, chat_wrap=None, **extra):
wallet_app_name = query.data.split("_")[1]
ton_connect, ton_connection = TonConnect.by_user(db_session, user)
await ton_connect.restore_connection()
connection_link = await ton_connect.new_connection(wallet_app_name)
ton_connect.connected
memory.add_task(pause_ton_connection, ton_connect, delay_s=60 * 3)
make_log("TonConnect_Init", f"New connection link for {wallet_app_name}: {connection_link}", level='debug')
message_text = user.translated("tonconnectInit_menu")
return await tg_process_template(
chat_wrap, message_text,
keyboard=get_inline_keyboard([
[
{
'text': 'Connect',
'url': connection_link
}
]
]), message_id=query.message.message_id
)
async def t_callback_disconnect_wallet(query: types.CallbackQuery, memory=None, user=None, db_session=None, chat_wrap=None, **extra):
wallet_connections = db_session.query(WalletConnection).filter(
WalletConnection.user_id == user.id,
WalletConnection.invalidated == False
).all()
for wallet_connection in wallet_connections:
wallet_connection.invalidated = True
db_session.commit()
return await send_connect_wallets_list(db_session, chat_wrap, user)
router.message.register(t_tonconnect_dev_menu, Command('dev_tonconnect'))
router.callback_query.register(t_callback_init_tonconnect, F.data.startswith('initTonconnect_'))
router.callback_query.register(t_callback_disconnect_wallet, F.data == 'disconnectWallet')