2022-07-31 05:16:38 +00:00
|
|
|
|
import os
|
|
|
|
|
import random
|
2022-08-06 06:22:37 +00:00
|
|
|
|
from typing import Optional
|
2022-07-31 05:16:38 +00:00
|
|
|
|
|
2022-09-10 03:47:13 +00:00
|
|
|
|
from genshin import GenshinException, Client
|
2022-07-31 05:16:38 +00:00
|
|
|
|
from telegram import Update
|
|
|
|
|
from telegram.constants import ChatAction
|
|
|
|
|
from telegram.ext import CallbackContext, CommandHandler, MessageHandler, ConversationHandler, filters
|
|
|
|
|
|
2022-09-08 01:08:37 +00:00
|
|
|
|
from core.baseplugin import BasePlugin
|
|
|
|
|
from core.cookies.error import CookiesNotFoundError
|
|
|
|
|
from core.plugin import Plugin, handler
|
2022-08-06 12:37:41 +00:00
|
|
|
|
from core.template.services import TemplateService
|
2022-09-08 01:08:37 +00:00
|
|
|
|
from core.user.error import UserNotFoundError
|
2022-07-31 05:16:38 +00:00
|
|
|
|
from utils.decorators.error import error_callable
|
|
|
|
|
from utils.decorators.restricts import restricts
|
2022-09-08 01:08:37 +00:00
|
|
|
|
from utils.helpers import url_to_file, get_genshin_client, get_public_genshin_client
|
|
|
|
|
from utils.log import logger
|
2022-07-31 05:16:38 +00:00
|
|
|
|
|
|
|
|
|
|
2022-09-08 01:08:37 +00:00
|
|
|
|
class TeapotUnlocked(Exception):
|
|
|
|
|
"""尘歌壶未解锁"""
|
|
|
|
|
|
2022-07-31 05:16:38 +00:00
|
|
|
|
|
2022-09-08 01:08:37 +00:00
|
|
|
|
class UserStatsPlugins(Plugin, BasePlugin):
|
|
|
|
|
"""玩家统计查询"""
|
2022-07-31 05:16:38 +00:00
|
|
|
|
|
2022-09-08 01:08:37 +00:00
|
|
|
|
def __init__(self, template_service: TemplateService = None):
|
2022-07-31 05:16:38 +00:00
|
|
|
|
self.template_service = template_service
|
|
|
|
|
self.current_dir = os.getcwd()
|
|
|
|
|
|
|
|
|
|
async def _start_get_user_info(self, client: Client, uid: int = -1) -> bytes:
|
|
|
|
|
if uid == -1:
|
2022-09-02 14:54:57 +00:00
|
|
|
|
_uid = client.uid
|
|
|
|
|
else:
|
|
|
|
|
_uid = uid
|
2022-07-31 05:16:38 +00:00
|
|
|
|
try:
|
2022-09-02 14:54:57 +00:00
|
|
|
|
user_info = await client.get_genshin_user(_uid)
|
2022-09-08 01:08:37 +00:00
|
|
|
|
except GenshinException as exc:
|
|
|
|
|
raise exc
|
2022-07-31 05:16:38 +00:00
|
|
|
|
if user_info.teapot is None:
|
2022-09-08 01:08:37 +00:00
|
|
|
|
raise TeapotUnlocked
|
2022-09-10 03:47:13 +00:00
|
|
|
|
nickname = user_info.info.nickname
|
|
|
|
|
user_uid = _uid
|
2022-07-31 05:16:38 +00:00
|
|
|
|
user_avatar = user_info.characters[0].icon
|
|
|
|
|
user_data = {
|
|
|
|
|
"name": nickname,
|
|
|
|
|
"uid": user_uid,
|
|
|
|
|
"user_avatar": await url_to_file(user_avatar),
|
|
|
|
|
"action_day_number": user_info.stats.days_active,
|
|
|
|
|
"achievement_number": user_info.stats.achievements,
|
|
|
|
|
"avatar_number": user_info.stats.characters,
|
|
|
|
|
"spiral_abyss": user_info.stats.spiral_abyss,
|
|
|
|
|
"way_point_number": user_info.stats.unlocked_waypoints,
|
|
|
|
|
"domain_number": user_info.stats.unlocked_domains,
|
|
|
|
|
"luxurious_number": user_info.stats.luxurious_chests,
|
|
|
|
|
"precious_chest_number": user_info.stats.precious_chests,
|
|
|
|
|
"exquisite_chest_number": user_info.stats.exquisite_chests,
|
|
|
|
|
"common_chest_number": user_info.stats.common_chests,
|
|
|
|
|
"magic_chest_number": user_info.stats.remarkable_chests,
|
|
|
|
|
"anemoculus_number": user_info.stats.anemoculi,
|
|
|
|
|
"geoculus_number": user_info.stats.geoculi,
|
|
|
|
|
"electroculus_number": user_info.stats.electroculi,
|
2022-09-02 14:43:39 +00:00
|
|
|
|
"dendroculi_number": user_info.stats.dendroculi,
|
2022-07-31 05:16:38 +00:00
|
|
|
|
"world_exploration_list": [],
|
|
|
|
|
"teapot_level": user_info.teapot.level,
|
|
|
|
|
"teapot_comfort_num": user_info.teapot.comfort,
|
|
|
|
|
"teapot_item_num": user_info.teapot.items,
|
|
|
|
|
"teapot_visit_num": user_info.teapot.visitors,
|
|
|
|
|
"teapot_list": []
|
|
|
|
|
}
|
|
|
|
|
for exploration in user_info.explorations:
|
|
|
|
|
exploration_data = {
|
|
|
|
|
"name": exploration.name,
|
|
|
|
|
"exploration_percentage": exploration.explored,
|
|
|
|
|
"offerings": [],
|
|
|
|
|
"icon": await url_to_file(exploration.icon)
|
|
|
|
|
}
|
|
|
|
|
for offering in exploration.offerings:
|
|
|
|
|
# 修复上游奇怪的问题
|
|
|
|
|
offering_name = offering.name
|
|
|
|
|
if offering_name == "Reputation":
|
|
|
|
|
offering_name = "声望等级"
|
|
|
|
|
offering_data = {
|
|
|
|
|
"data": f"{offering_name}:{offering.level}级"
|
|
|
|
|
}
|
|
|
|
|
exploration_data["offerings"].append(offering_data)
|
|
|
|
|
user_data["world_exploration_list"].append(exploration_data)
|
|
|
|
|
for teapot in user_info.teapot.realms:
|
|
|
|
|
teapot_icon = teapot.icon
|
|
|
|
|
# 修复 国际服绘绮庭 图标 地址请求 为404
|
|
|
|
|
if "UI_HomeworldModule_4_Pic.png" in teapot_icon:
|
|
|
|
|
teapot_icon = "https://upload-bbs.mihoyo.com/game_record/genshin/home/UI_HomeworldModule_4_Pic.png"
|
|
|
|
|
teapot_data = {
|
|
|
|
|
"icon": await url_to_file(teapot_icon),
|
|
|
|
|
"name": teapot.name
|
|
|
|
|
}
|
|
|
|
|
user_data["teapot_list"].append(teapot_data)
|
|
|
|
|
background_image = random.choice(os.listdir(f"{self.current_dir}/resources/background/vertical"))
|
|
|
|
|
user_data[
|
|
|
|
|
"background_image"] = f"file://{self.current_dir}/resources/background/vertical/{background_image}"
|
|
|
|
|
png_data = await self.template_service.render('genshin/info', "info.html", user_data,
|
|
|
|
|
{"width": 1024, "height": 1024})
|
|
|
|
|
return png_data
|
|
|
|
|
|
2022-09-08 01:08:37 +00:00
|
|
|
|
@handler(CommandHandler, command="stats", block=False)
|
|
|
|
|
@handler(MessageHandler, filters=filters.Regex("^玩家统计查询(.*)"), block=False)
|
2022-07-31 05:16:38 +00:00
|
|
|
|
@restricts(return_data=ConversationHandler.END)
|
2022-09-08 01:08:37 +00:00
|
|
|
|
@error_callable
|
2022-08-06 06:22:37 +00:00
|
|
|
|
async def command_start(self, update: Update, context: CallbackContext) -> Optional[int]:
|
2022-07-31 05:16:38 +00:00
|
|
|
|
user = update.effective_user
|
2022-09-08 01:08:37 +00:00
|
|
|
|
message = update.effective_message
|
|
|
|
|
logger.info(f"用户 {user.full_name}[{user.id}] 查询游戏用户命令请求")
|
2022-07-31 05:16:38 +00:00
|
|
|
|
uid: int = -1
|
|
|
|
|
try:
|
|
|
|
|
args = context.args
|
2022-08-06 06:22:37 +00:00
|
|
|
|
if args is not None and len(args) >= 1:
|
|
|
|
|
uid = int(args[0])
|
2022-09-08 01:08:37 +00:00
|
|
|
|
except ValueError as exc:
|
|
|
|
|
logger.error("获取 uid 发生错误! 错误信息为")
|
|
|
|
|
logger.exception(exc)
|
2022-07-31 05:16:38 +00:00
|
|
|
|
await message.reply_text("输入错误")
|
|
|
|
|
return ConversationHandler.END
|
|
|
|
|
try:
|
2022-09-08 01:08:37 +00:00
|
|
|
|
try:
|
|
|
|
|
client = await get_genshin_client(user.id)
|
|
|
|
|
except CookiesNotFoundError:
|
|
|
|
|
client, _uid = await get_public_genshin_client(user.id)
|
|
|
|
|
if uid == -1:
|
|
|
|
|
uid = _uid
|
2022-07-31 05:16:38 +00:00
|
|
|
|
png_data = await self._start_get_user_info(client, uid)
|
|
|
|
|
except UserNotFoundError:
|
|
|
|
|
reply_message = await message.reply_text("未查询到账号信息,请先私聊派蒙绑定账号")
|
|
|
|
|
if filters.ChatType.GROUPS.filter(message):
|
|
|
|
|
self._add_delete_message_job(context, reply_message.chat_id, reply_message.message_id, 30)
|
2022-08-06 06:22:37 +00:00
|
|
|
|
|
2022-07-31 05:16:38 +00:00
|
|
|
|
self._add_delete_message_job(context, message.chat_id, message.message_id, 30)
|
|
|
|
|
return
|
2022-09-08 01:08:37 +00:00
|
|
|
|
except TeapotUnlocked:
|
2022-08-06 06:22:37 +00:00
|
|
|
|
await message.reply_text("角色尘歌壶未解锁 如果想要查看具体数据 嗯...... 咕咕咕~")
|
|
|
|
|
return ConversationHandler.END
|
2022-07-31 05:16:38 +00:00
|
|
|
|
except AttributeError as exc:
|
2022-09-08 01:08:37 +00:00
|
|
|
|
logger.warning("角色数据有误", exc)
|
2022-07-31 05:16:38 +00:00
|
|
|
|
await message.reply_text("角色数据有误 估计是派蒙晕了")
|
|
|
|
|
return ConversationHandler.END
|
|
|
|
|
await message.reply_chat_action(ChatAction.UPLOAD_PHOTO)
|
|
|
|
|
await message.reply_photo(png_data, filename=f"{client.uid}.png", allow_sending_without_reply=True)
|