2022-11-23 14:56:07 +00:00
|
|
|
|
import asyncio
|
2023-03-14 01:27:22 +00:00
|
|
|
|
from typing import Awaitable, Dict, List, cast
|
2022-08-06 09:07:47 +00:00
|
|
|
|
from uuid import uuid4
|
|
|
|
|
|
2022-12-04 11:56:39 +00:00
|
|
|
|
from telegram import (
|
2023-03-14 01:27:22 +00:00
|
|
|
|
InlineQuery,
|
2022-12-04 11:56:39 +00:00
|
|
|
|
InlineQueryResultArticle,
|
2023-03-14 01:27:22 +00:00
|
|
|
|
InlineQueryResultCachedPhoto,
|
2023-04-26 08:48:05 +00:00
|
|
|
|
InlineQueryResultCachedDocument,
|
2022-12-04 11:56:39 +00:00
|
|
|
|
InputTextMessageContent,
|
|
|
|
|
Update,
|
2023-09-09 14:59:27 +00:00
|
|
|
|
InlineQueryResultsButton,
|
2022-12-04 11:56:39 +00:00
|
|
|
|
)
|
2022-08-06 09:07:47 +00:00
|
|
|
|
from telegram.constants import ParseMode
|
|
|
|
|
from telegram.error import BadRequest
|
2023-05-11 15:09:39 +00:00
|
|
|
|
from telegram.ext import CallbackContext
|
2022-08-06 09:07:47 +00:00
|
|
|
|
|
2023-05-02 16:16:14 +00:00
|
|
|
|
from core.dependence.assets import AssetsService
|
2023-10-19 10:58:51 +00:00
|
|
|
|
from core.plugin import Plugin, handler
|
2023-03-14 01:27:22 +00:00
|
|
|
|
from core.services.search.services import SearchServices
|
|
|
|
|
from core.services.wiki.services import WikiService
|
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,
|
2023-05-02 16:16:14 +00:00
|
|
|
|
asset_service: AssetsService,
|
2023-03-14 01:27:22 +00:00
|
|
|
|
search_service: SearchServices,
|
2023-05-02 16:16:14 +00:00
|
|
|
|
wiki_service: WikiService,
|
2022-11-23 14:56:07 +00:00
|
|
|
|
):
|
2023-05-02 16:16:14 +00:00
|
|
|
|
self.asset_service = asset_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]] = []
|
2023-05-02 16:16:14 +00:00
|
|
|
|
self.characters_material_list: List[Dict[str, str]] = []
|
2023-08-29 06:03:21 +00:00
|
|
|
|
self.characters_guide_list: List[Dict[str, str]] = []
|
2023-05-02 16:16:14 +00:00
|
|
|
|
self.light_cone_list: List[Dict[str, str]] = []
|
2023-05-22 14:32:37 +00:00
|
|
|
|
self.relics_list: List[Dict[str, str]] = []
|
2022-11-23 14:56:07 +00:00
|
|
|
|
self.refresh_task: List[Awaitable] = []
|
2022-12-04 11:56:39 +00:00
|
|
|
|
self.search_service = search_service
|
2022-11-23 14:56:07 +00:00
|
|
|
|
|
2023-03-14 01:27:22 +00:00
|
|
|
|
async def initialize(self):
|
2023-05-02 16:16:14 +00:00
|
|
|
|
async def task_light_cone():
|
|
|
|
|
logger.info("Inline 模块正在获取光锥列表")
|
|
|
|
|
light_cone_datas: Dict[str, str] = {}
|
2023-12-24 11:24:45 +00:00
|
|
|
|
light_cone_datas_name: Dict[str, str] = {}
|
2023-05-02 16:16:14 +00:00
|
|
|
|
for light_cone in self.asset_service.light_cone.data:
|
|
|
|
|
light_cone_datas[light_cone.name] = light_cone.icon_
|
2023-12-24 11:24:45 +00:00
|
|
|
|
light_cone_datas_name[str(light_cone.id)] = light_cone.name
|
2023-05-02 16:16:14 +00:00
|
|
|
|
# 光锥列表
|
2023-12-24 11:24:45 +00:00
|
|
|
|
for lid in self.wiki_service.raider.all_light_cone_raiders:
|
|
|
|
|
if lid not in light_cone_datas_name:
|
|
|
|
|
continue
|
|
|
|
|
light_cone = light_cone_datas_name[lid]
|
2023-05-02 16:16:14 +00:00
|
|
|
|
if light_cone in light_cone_datas:
|
|
|
|
|
self.light_cone_list.append({"name": light_cone, "icon": light_cone_datas[light_cone]})
|
|
|
|
|
else:
|
|
|
|
|
logger.warning(f"未找到光锥 {light_cone} 的图标,inline 不显示此光锥")
|
|
|
|
|
logger.success("Inline 模块获取光锥列表完成")
|
|
|
|
|
|
2023-05-22 14:32:37 +00:00
|
|
|
|
async def task_relics():
|
|
|
|
|
logger.info("Inline 模块正在获取遗器列表")
|
|
|
|
|
relics_datas: Dict[str, str] = {}
|
2023-12-24 11:24:45 +00:00
|
|
|
|
relics_datas_name: Dict[str, str] = {}
|
2023-05-22 14:32:37 +00:00
|
|
|
|
for relics in self.wiki_service.relic.all_relics:
|
|
|
|
|
relics_datas[relics.name] = relics.icon
|
2023-12-24 11:24:45 +00:00
|
|
|
|
relics_datas_name[str(relics.id)] = relics.name
|
|
|
|
|
for rid in self.wiki_service.raider.all_relic_raiders:
|
|
|
|
|
if rid not in relics_datas_name:
|
|
|
|
|
continue
|
|
|
|
|
relics = relics_datas_name[rid]
|
2023-05-22 14:32:37 +00:00
|
|
|
|
if relics in relics_datas:
|
|
|
|
|
self.relics_list.append({"name": relics, "icon": relics_datas[relics]})
|
|
|
|
|
else:
|
|
|
|
|
logger.warning(f"未找到遗器 {relics} 的图标,inline 不显示此遗器")
|
|
|
|
|
logger.success("Inline 模块获取遗器列表完成")
|
|
|
|
|
|
2022-11-23 14:56:07 +00:00
|
|
|
|
async def task_characters():
|
|
|
|
|
logger.info("Inline 模块正在获取角色列表")
|
2023-04-26 08:48:05 +00:00
|
|
|
|
datas: Dict[str, str] = {}
|
2023-12-24 11:24:45 +00:00
|
|
|
|
datas_name: Dict[str, str] = {}
|
2023-05-02 16:16:14 +00:00
|
|
|
|
for character in self.asset_service.avatar.data:
|
|
|
|
|
datas[character.name] = character.square or character.normal
|
2023-12-24 11:24:45 +00:00
|
|
|
|
datas_name[str(character.id)] = character.name
|
|
|
|
|
|
|
|
|
|
def get_character(_cid: str) -> str:
|
|
|
|
|
if _cid in datas_name:
|
|
|
|
|
return datas_name[_cid]
|
|
|
|
|
|
2023-05-02 16:16:14 +00:00
|
|
|
|
# 角色攻略
|
2023-12-24 11:24:45 +00:00
|
|
|
|
for cid in self.wiki_service.raider.all_role_raiders:
|
|
|
|
|
character = get_character(cid)
|
|
|
|
|
if not character:
|
|
|
|
|
continue
|
2023-04-26 08:48:05 +00:00
|
|
|
|
if character in datas:
|
|
|
|
|
self.characters_list.append({"name": character, "icon": datas[character]})
|
|
|
|
|
else:
|
|
|
|
|
for key, value in datas.items():
|
2023-05-03 12:54:26 +00:00
|
|
|
|
if character.startswith(key) or character.endswith(key):
|
2023-04-26 08:48:05 +00:00
|
|
|
|
self.characters_list.append({"name": character, "icon": value})
|
|
|
|
|
break
|
2023-08-29 06:03:21 +00:00
|
|
|
|
# 角色攻略
|
2023-12-24 11:24:45 +00:00
|
|
|
|
for cid in self.wiki_service.raider.all_guide_for_role_raiders:
|
|
|
|
|
character = get_character(cid)
|
|
|
|
|
if not character:
|
|
|
|
|
continue
|
2023-08-29 06:03:21 +00:00
|
|
|
|
if character in datas:
|
|
|
|
|
self.characters_guide_list.append({"name": character, "icon": datas[character]})
|
|
|
|
|
else:
|
|
|
|
|
for key, value in datas.items():
|
|
|
|
|
if character.startswith(key) or character.endswith(key):
|
|
|
|
|
self.characters_guide_list.append({"name": character, "icon": value})
|
|
|
|
|
break
|
2022-11-23 14:56:07 +00:00
|
|
|
|
logger.success("Inline 模块获取角色列表成功")
|
|
|
|
|
|
|
|
|
|
self.refresh_task.append(asyncio.create_task(task_characters()))
|
2023-05-02 16:16:14 +00:00
|
|
|
|
self.refresh_task.append(asyncio.create_task(task_light_cone()))
|
2023-05-22 14:32:37 +00:00
|
|
|
|
self.refresh_task.append(asyncio.create_task(task_relics()))
|
2022-08-06 09:07:47 +00:00
|
|
|
|
|
2023-05-02 16:16:14 +00:00
|
|
|
|
@handler.inline_query(block=False)
|
2023-03-14 01:27:22 +00:00
|
|
|
|
async def inline_query(self, update: Update, _: CallbackContext) -> None:
|
2022-08-06 09:07:47 +00:00
|
|
|
|
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] == "":
|
2023-05-22 14:32:37 +00:00
|
|
|
|
temp_data = [
|
|
|
|
|
("光锥图鉴查询", "输入光锥名称即可查询光锥图鉴"),
|
|
|
|
|
("角色攻略查询", "输入角色名即可查询角色攻略图鉴"),
|
2023-08-29 06:03:21 +00:00
|
|
|
|
("角色图鉴查询", "输入角色名即可查询角色图鉴"),
|
|
|
|
|
("角色培养素材查询", "输入角色名即可查询角色培养素材图鉴"),
|
2023-05-22 14:32:37 +00:00
|
|
|
|
("遗器套装查询", "输入遗器套装名称即可查询遗器套装图鉴"),
|
|
|
|
|
]
|
2023-05-02 16:16:14 +00:00
|
|
|
|
for i in temp_data:
|
|
|
|
|
results_list.append(
|
|
|
|
|
InlineQueryResultArticle(
|
|
|
|
|
id=str(uuid4()),
|
|
|
|
|
title=i[0],
|
|
|
|
|
description=i[1],
|
|
|
|
|
input_message_content=InputTextMessageContent(i[0]),
|
|
|
|
|
)
|
2022-12-04 11:56:39 +00:00
|
|
|
|
)
|
2023-12-18 16:51:36 +00:00
|
|
|
|
elif args[0] == "cookies_export":
|
|
|
|
|
return
|
2022-08-06 09:07:47 +00:00
|
|
|
|
else:
|
2023-08-29 06:03:21 +00:00
|
|
|
|
if args[0] in ["查看角色攻略列表并查询", "查看角色图鉴列表并查询", "查看光锥列表并查询", "查看遗器套装列表并查询", "查看角色培养素材列表并查询"]:
|
2023-05-02 16:16:14 +00:00
|
|
|
|
temp_data = {
|
|
|
|
|
"查看角色攻略列表并查询": (self.characters_list, "角色攻略查询"),
|
2023-08-29 06:03:21 +00:00
|
|
|
|
"查看角色图鉴列表并查询": (self.characters_guide_list, "角色图鉴查询"),
|
2023-05-02 16:16:14 +00:00
|
|
|
|
"查看角色培养素材列表并查询": (self.characters_material_list, "角色培养素材查询"),
|
2023-08-29 06:03:21 +00:00
|
|
|
|
"查看光锥列表并查询": (self.light_cone_list, "光锥图鉴查询"),
|
2023-05-22 14:32:37 +00:00
|
|
|
|
"查看遗器套装列表并查询": (self.relics_list, "遗器套装查询"),
|
2023-05-02 16:16:14 +00:00
|
|
|
|
}[args[0]]
|
|
|
|
|
for character in temp_data[0]:
|
2022-11-23 14:56:07 +00:00
|
|
|
|
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,
|
2023-05-02 16:16:14 +00:00
|
|
|
|
description=f"{args[0]} {name}",
|
2023-09-09 14:59:27 +00:00
|
|
|
|
thumbnail_url=icon,
|
2022-08-06 09:07:47 +00:00
|
|
|
|
input_message_content=InputTextMessageContent(
|
2023-05-02 16:16:14 +00:00
|
|
|
|
f"{temp_data[1]}{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-12-04 11:56:39 +00:00
|
|
|
|
else:
|
|
|
|
|
simple_search_results = await self.search_service.search(args[0])
|
|
|
|
|
if simple_search_results:
|
|
|
|
|
results_list.append(
|
|
|
|
|
InlineQueryResultArticle(
|
|
|
|
|
id=str(uuid4()),
|
|
|
|
|
title=f"当前查询内容为 {args[0]}",
|
|
|
|
|
description="如果无查看图片描述 这是正常的 客户端问题",
|
2023-09-09 14:59:27 +00:00
|
|
|
|
thumbnail_url="https://www.miyoushe.com/_nuxt/img/game-sr.4f80911.jpg",
|
2022-12-04 11:56:39 +00:00
|
|
|
|
input_message_content=InputTextMessageContent(f"当前查询内容为 {args[0]}\n如果无查看图片描述 这是正常的 客户端问题"),
|
|
|
|
|
)
|
|
|
|
|
)
|
|
|
|
|
for simple_search_result in simple_search_results:
|
2023-04-26 08:48:05 +00:00
|
|
|
|
description = simple_search_result.description
|
|
|
|
|
if len(description) >= 10:
|
|
|
|
|
description = description[:10]
|
|
|
|
|
item = None
|
2022-12-04 11:56:39 +00:00
|
|
|
|
if simple_search_result.photo_file_id:
|
2023-04-26 08:48:05 +00:00
|
|
|
|
item = InlineQueryResultCachedPhoto(
|
|
|
|
|
id=str(uuid4()),
|
|
|
|
|
title=simple_search_result.title,
|
|
|
|
|
photo_file_id=simple_search_result.photo_file_id,
|
|
|
|
|
description=description,
|
|
|
|
|
caption=simple_search_result.caption,
|
|
|
|
|
parse_mode=simple_search_result.parse_mode,
|
2022-12-04 11:56:39 +00:00
|
|
|
|
)
|
2023-04-26 08:48:05 +00:00
|
|
|
|
elif simple_search_result.document_file_id:
|
|
|
|
|
item = InlineQueryResultCachedDocument(
|
|
|
|
|
id=str(uuid4()),
|
|
|
|
|
title=simple_search_result.title,
|
|
|
|
|
document_file_id=simple_search_result.document_file_id,
|
|
|
|
|
description=description,
|
|
|
|
|
caption=simple_search_result.caption,
|
|
|
|
|
parse_mode=simple_search_result.parse_mode,
|
|
|
|
|
)
|
|
|
|
|
if item:
|
|
|
|
|
results_list.append(item)
|
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="好像找不到问题呢",
|
2023-04-26 08:48:05 +00:00
|
|
|
|
description="这个问题我也不知道。",
|
|
|
|
|
input_message_content=InputTextMessageContent("这个问题我也不知道。"),
|
2022-08-06 09:07:47 +00:00
|
|
|
|
)
|
2022-10-10 11:07:28 +00:00
|
|
|
|
)
|
2022-08-06 09:07:47 +00:00
|
|
|
|
try:
|
|
|
|
|
await ilq.answer(
|
|
|
|
|
results=results_list,
|
|
|
|
|
cache_time=0,
|
|
|
|
|
auto_pagination=True,
|
2023-09-09 14:59:27 +00:00
|
|
|
|
button=InlineQueryResultsButton(
|
|
|
|
|
text=switch_pm_text,
|
|
|
|
|
start_parameter="inline_message",
|
|
|
|
|
),
|
2022-08-06 09:07:47 +00:00
|
|
|
|
)
|
|
|
|
|
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=[],
|
2023-09-09 14:59:27 +00:00
|
|
|
|
button=InlineQueryResultsButton(
|
|
|
|
|
text="糟糕,发生错误了。",
|
|
|
|
|
start_parameter="inline_message",
|
|
|
|
|
),
|
2022-08-06 09:07:47 +00:00
|
|
|
|
)
|