2022-11-23 14:56:07 +00:00
|
|
|
import asyncio
|
|
|
|
from typing import cast, Dict, Awaitable, List
|
2022-08-06 09:07:47 +00:00
|
|
|
from uuid import uuid4
|
|
|
|
|
|
|
|
from telegram import InlineQueryResultArticle, InputTextMessageContent, Update, InlineQuery
|
|
|
|
from telegram.constants import ParseMode
|
|
|
|
from telegram.error import BadRequest
|
2022-09-08 01:08:37 +00:00
|
|
|
from telegram.ext import CallbackContext, InlineQueryHandler
|
2022-08-06 09:07:47 +00:00
|
|
|
|
2022-11-23 14:56:07 +00:00
|
|
|
from core.base.assets import AssetsService, AssetsCouldNotFound
|
2022-09-08 01:08:37 +00:00
|
|
|
from core.plugin import handler, Plugin
|
2022-08-06 12:37:41 +00:00
|
|
|
from core.wiki import WikiService
|
2022-10-17 10:17:46 +00:00
|
|
|
from utils.decorators.error import error_callable
|
2022-09-08 01:08:37 +00:00
|
|
|
from utils.log import logger
|
2022-08-06 09:07:47 +00:00
|
|
|
|
|
|
|
|
2022-09-08 01:08:37 +00:00
|
|
|
class Inline(Plugin):
|
2022-08-06 09:07:47 +00:00
|
|
|
"""Inline模块"""
|
|
|
|
|
2022-11-23 14:56:07 +00:00
|
|
|
def __init__(
|
|
|
|
self,
|
|
|
|
wiki_service: WikiService = None,
|
|
|
|
assets_service: AssetsService = None,
|
|
|
|
):
|
|
|
|
self.assets_service = assets_service
|
2022-08-06 09:07:47 +00:00
|
|
|
self.wiki_service = wiki_service
|
2022-11-23 14:56:07 +00:00
|
|
|
self.weapons_list: List[Dict[str, str]] = []
|
|
|
|
self.characters_list: List[Dict[str, str]] = []
|
|
|
|
self.refresh_task: List[Awaitable] = []
|
|
|
|
|
|
|
|
async def __async_init__(self):
|
|
|
|
# todo: 整合进 wiki 或者单独模块 从Redis中读取
|
|
|
|
async def task_weapons():
|
|
|
|
logger.info("Inline 模块正在获取武器列表")
|
|
|
|
weapons_list = await self.wiki_service.get_weapons_name_list()
|
|
|
|
for weapons_name in weapons_list:
|
|
|
|
try:
|
|
|
|
icon = await self.assets_service.weapon(weapons_name).get_link("icon")
|
|
|
|
except AssetsCouldNotFound:
|
|
|
|
continue
|
2022-11-23 15:02:34 +00:00
|
|
|
except Exception as exc:
|
|
|
|
logger.error("获取武器信息失败 %s", str(exc))
|
|
|
|
continue
|
2022-11-23 14:56:07 +00:00
|
|
|
data = {"name": weapons_name, "icon": icon}
|
|
|
|
self.weapons_list.append(data)
|
|
|
|
logger.success("Inline 模块获取武器列表成功")
|
|
|
|
|
|
|
|
async def task_characters():
|
|
|
|
logger.info("Inline 模块正在获取角色列表")
|
|
|
|
characters_list = await self.wiki_service.get_characters_name_list()
|
|
|
|
for character_name in characters_list:
|
|
|
|
try:
|
|
|
|
icon = await self.assets_service.avatar(character_name).get_link("icon")
|
|
|
|
except AssetsCouldNotFound:
|
|
|
|
continue
|
2022-11-23 15:02:34 +00:00
|
|
|
except Exception as exc:
|
|
|
|
logger.error("获取角色信息失败 %s", str(exc))
|
|
|
|
continue
|
2022-11-23 14:56:07 +00:00
|
|
|
data = {"name": character_name, "icon": icon}
|
|
|
|
self.characters_list.append(data)
|
|
|
|
logger.success("Inline 模块获取角色列表成功")
|
|
|
|
|
|
|
|
self.refresh_task.append(asyncio.create_task(task_weapons()))
|
|
|
|
self.refresh_task.append(asyncio.create_task(task_characters()))
|
2022-08-06 09:07:47 +00:00
|
|
|
|
2022-09-08 01:08:37 +00:00
|
|
|
@handler(InlineQueryHandler, block=False)
|
2022-10-17 10:17:46 +00:00
|
|
|
@error_callable
|
2022-08-06 09:07:47 +00:00
|
|
|
async def inline_query(self, update: Update, _: CallbackContext) -> None:
|
|
|
|
user = update.effective_user
|
|
|
|
ilq = cast(InlineQuery, update.inline_query)
|
|
|
|
query = ilq.query
|
2022-11-23 14:56:07 +00:00
|
|
|
logger.info("用户 %s[%s] inline_query 查询\nquery[%s]", user.full_name, user.id, query)
|
2022-08-06 09:07:47 +00:00
|
|
|
switch_pm_text = "需要帮助嘛?"
|
|
|
|
results_list = []
|
|
|
|
args = query.split(" ")
|
|
|
|
if args[0] == "":
|
|
|
|
pass
|
|
|
|
else:
|
|
|
|
if "查看武器列表并查询" == args[0]:
|
2022-11-23 14:56:07 +00:00
|
|
|
for weapon in self.weapons_list:
|
|
|
|
name = weapon["name"]
|
|
|
|
icon = weapon["icon"]
|
2022-08-06 09:07:47 +00:00
|
|
|
results_list.append(
|
|
|
|
InlineQueryResultArticle(
|
|
|
|
id=str(uuid4()),
|
2022-11-23 14:56:07 +00:00
|
|
|
title=name,
|
|
|
|
description=f"查看武器列表并查询 {name}",
|
|
|
|
thumb_url=icon,
|
2022-08-06 09:07:47 +00:00
|
|
|
input_message_content=InputTextMessageContent(
|
2022-11-23 14:56:07 +00:00
|
|
|
f"武器查询{name}", parse_mode=ParseMode.MARKDOWN_V2
|
2022-10-10 11:07:28 +00:00
|
|
|
),
|
2022-08-06 09:07:47 +00:00
|
|
|
)
|
2022-10-10 11:07:28 +00:00
|
|
|
)
|
2022-08-06 09:07:47 +00:00
|
|
|
elif "查看角色攻略列表并查询" == args[0]:
|
2022-11-23 14:56:07 +00:00
|
|
|
for character in self.characters_list:
|
|
|
|
name = character["name"]
|
|
|
|
icon = character["icon"]
|
2022-08-06 09:07:47 +00:00
|
|
|
results_list.append(
|
|
|
|
InlineQueryResultArticle(
|
|
|
|
id=str(uuid4()),
|
2022-11-23 14:56:07 +00:00
|
|
|
title=name,
|
|
|
|
description=f"查看角色攻略列表并查询 {name}",
|
|
|
|
thumb_url=icon,
|
2022-08-06 09:07:47 +00:00
|
|
|
input_message_content=InputTextMessageContent(
|
2022-11-23 14:56:07 +00:00
|
|
|
f"角色攻略查询{name}", parse_mode=ParseMode.MARKDOWN_V2
|
2022-10-10 11:07:28 +00:00
|
|
|
),
|
2022-08-06 09:07:47 +00:00
|
|
|
)
|
2022-10-10 11:07:28 +00:00
|
|
|
)
|
2022-08-31 06:48:15 +00:00
|
|
|
elif "查看角色培养素材列表并查询" == args[0]:
|
|
|
|
characters_list = await self.wiki_service.get_characters_name_list()
|
|
|
|
for role_name in characters_list:
|
|
|
|
results_list.append(
|
|
|
|
InlineQueryResultArticle(
|
|
|
|
id=str(uuid4()),
|
|
|
|
title=role_name,
|
|
|
|
description=f"查看角色培养素材列表并查询 {role_name}",
|
|
|
|
input_message_content=InputTextMessageContent(
|
|
|
|
f"角色培养素材查询{role_name}", parse_mode=ParseMode.MARKDOWN_V2
|
2022-10-10 11:07:28 +00:00
|
|
|
),
|
2022-08-31 06:48:15 +00:00
|
|
|
)
|
2022-10-10 11:07:28 +00:00
|
|
|
)
|
2022-08-06 09:07:47 +00:00
|
|
|
|
2022-08-31 06:48:15 +00:00
|
|
|
if not results_list:
|
2022-08-06 09:07:47 +00:00
|
|
|
results_list.append(
|
|
|
|
InlineQueryResultArticle(
|
|
|
|
id=str(uuid4()),
|
|
|
|
title="好像找不到问题呢",
|
|
|
|
description="这个问题我也不知道,因为我就是个应急食品。",
|
|
|
|
input_message_content=InputTextMessageContent("这个问题我也不知道,因为我就是个应急食品。"),
|
|
|
|
)
|
2022-10-10 11:07:28 +00:00
|
|
|
)
|
2022-08-06 09:07:47 +00:00
|
|
|
try:
|
|
|
|
await ilq.answer(
|
|
|
|
results=results_list,
|
|
|
|
switch_pm_text=switch_pm_text,
|
|
|
|
switch_pm_parameter="inline_message",
|
|
|
|
cache_time=0,
|
|
|
|
auto_pagination=True,
|
|
|
|
)
|
|
|
|
except BadRequest as exc:
|
|
|
|
if "Query is too old" in exc.message: # 过时请求全部忽略
|
2022-11-23 14:56:07 +00:00
|
|
|
logger.warning("用户 %s[%s] inline_query 请求过时", user.full_name, user.id)
|
2022-08-06 09:07:47 +00:00
|
|
|
return
|
|
|
|
if "can't parse entities" not in exc.message:
|
|
|
|
raise exc
|
2022-09-08 01:08:37 +00:00
|
|
|
logger.warning("inline_query发生BadRequest错误", exc_info=exc)
|
2022-08-06 09:07:47 +00:00
|
|
|
await ilq.answer(
|
|
|
|
results=[],
|
|
|
|
switch_pm_text="糟糕,发生错误了。",
|
|
|
|
switch_pm_parameter="inline_message",
|
|
|
|
)
|