PaiGram/plugins/genshin/strategy.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

84 lines
3.8 KiB
Python
Raw Normal View History

from telegram import InlineKeyboardButton, InlineKeyboardMarkup
from telegram import Update
from telegram.constants import ChatAction
from telegram.constants import ParseMode
from telegram.ext import CommandHandler, CallbackContext
from telegram.ext import MessageHandler, filters
2022-07-31 07:38:31 +00:00
from core.baseplugin import BasePlugin
from core.game.services import GameStrategyService
from core.plugin import Plugin, handler
2022-12-04 11:56:39 +00:00
from core.search.models import StrategyEntry
from core.search.services import SearchServices
from metadata.shortname import roleToName, roleToTag
2022-12-01 02:27:27 +00:00
from utils.bot import get_args
2022-07-31 07:38:31 +00:00
from utils.decorators.error import error_callable
from utils.decorators.restricts import restricts
from utils.helpers import url_to_file
from utils.log import logger
2022-07-31 07:38:31 +00:00
class StrategyPlugin(Plugin, BasePlugin):
2022-07-31 07:38:31 +00:00
"""角色攻略查询"""
KEYBOARD = [[InlineKeyboardButton(text="查看角色攻略列表并查询", switch_inline_query_current_chat="查看角色攻略列表并查询")]]
2022-12-04 11:56:39 +00:00
def __init__(
self,
game_strategy_service: GameStrategyService = None,
search_service: SearchServices = None,
):
2022-07-31 07:38:31 +00:00
self.game_strategy_service = game_strategy_service
2022-12-04 11:56:39 +00:00
self.search_service = search_service
2022-07-31 07:38:31 +00:00
@handler(CommandHandler, command="strategy", block=False)
@handler(MessageHandler, filters=filters.Regex("^角色攻略查询(.*)"), block=False)
@restricts()
2022-07-31 07:38:31 +00:00
@error_callable
async def command_start(self, update: Update, context: CallbackContext) -> None:
message = update.effective_message
2022-07-31 07:38:31 +00:00
user = update.effective_user
2022-12-01 02:27:27 +00:00
args = get_args(context)
2022-07-31 07:38:31 +00:00
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(context, message.chat_id, message.message_id)
self._add_delete_message_job(context, reply_message.chat_id, reply_message.message_id)
return
2022-09-09 15:50:10 +00:00
character_name = roleToName(character_name)
2022-07-31 07:38:31 +00:00
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)
)
2022-07-31 07:38:31 +00:00
if filters.ChatType.GROUPS.filter(reply_message):
self._add_delete_message_job(context, message.chat_id, message.message_id)
self._add_delete_message_job(context, reply_message.chat_id, reply_message.message_id)
return
logger.info(f"用户 {user.full_name}[{user.id}] 查询角色攻略命令请求 || 参数 {character_name}")
2022-07-31 07:38:31 +00:00
await message.reply_chat_action(ChatAction.UPLOAD_PHOTO)
file_path = await url_to_file(url, return_path=True)
2022-12-04 11:56:39 +00:00
caption = f"From 米游社 西风驿站 查看<a href='{url}'>原图</a>"
reply_photo = await message.reply_photo(
2022-07-31 07:38:31 +00:00
photo=open(file_path, "rb"),
caption=caption,
filename=f"{character_name}.png",
allow_sending_without_reply=True,
2022-12-04 11:56:39 +00:00
parse_mode=ParseMode.HTML,
2022-07-31 07:38:31 +00:00
)
2022-12-04 11:56:39 +00:00
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)