from telegram import InlineKeyboardButton, InlineKeyboardMarkup, Update from telegram.constants import ChatAction, ParseMode from telegram.ext import CallbackContext, filters from core.plugin import Plugin, handler from core.services.game.services import GameStrategyService from core.services.search.models import StrategyEntry from core.services.search.services import SearchServices from metadata.shortname import roleToName, roleToTag from utils.log import logger class StrategyPlugin(Plugin): """角色攻略查询""" KEYBOARD = [ [InlineKeyboardButton(text="查看角色攻略列表并查询", switch_inline_query_current_chat="查看角色攻略列表并查询")] ] def __init__( self, game_strategy_service: GameStrategyService = None, search_service: SearchServices = None, ): self.game_strategy_service = game_strategy_service self.search_service = search_service @handler.command(command="strategy", block=False) @handler.message(filters=filters.Regex("^角色攻略查询(.*)"), block=False) async def command_start(self, update: Update, context: CallbackContext) -> None: message = update.effective_message args = self.get_args(context) if len(args) >= 1: character_name = args[0] else: reply_message = await message.reply_text( "请回复你要查询的攻略的角色名", reply_markup=InlineKeyboardMarkup(self.KEYBOARD) ) if filters.ChatType.GROUPS.filter(reply_message): self.add_delete_message_job(message) self.add_delete_message_job(reply_message) return character_name = roleToName(character_name) url = await self.game_strategy_service.get_strategy(character_name) if url == "": reply_message = await message.reply_text( f"没有找到 {character_name} 的攻略", reply_markup=InlineKeyboardMarkup(self.KEYBOARD) ) if filters.ChatType.GROUPS.filter(reply_message): self.add_delete_message_job(message) self.add_delete_message_job(reply_message) return self.log_user(update, logger.info, "查询角色攻略命令请求 || 参数 %s", character_name) await message.reply_chat_action(ChatAction.UPLOAD_PHOTO) file_path = await self.download_resource(url, return_path=True) caption = f"From 米游社 西风驿站 查看原图" reply_photo = await message.reply_photo( photo=open(file_path, "rb"), caption=caption, filename=f"{character_name}.png", allow_sending_without_reply=True, parse_mode=ParseMode.HTML, ) if reply_photo.photo: tags = roleToTag(character_name) photo_file_id = reply_photo.photo[0].file_id entry = StrategyEntry( key=f"plugin:strategy:{character_name}", title=character_name, description=f"{character_name} 角色攻略", tags=tags, caption=caption, parse_mode="HTML", photo_file_id=photo_file_id, ) await self.search_service.add_entry(entry)