2022-04-14 07:18:45 +00:00
|
|
|
|
import os
|
|
|
|
|
import random
|
|
|
|
|
|
|
|
|
|
import genshin
|
|
|
|
|
from telegram import Update, InlineKeyboardButton, InlineKeyboardMarkup
|
|
|
|
|
from telegram.constants import ChatAction
|
|
|
|
|
from telegram.ext import CallbackContext, ConversationHandler
|
|
|
|
|
|
|
|
|
|
from logger import Log
|
|
|
|
|
from model.base import ServiceEnum
|
|
|
|
|
from model.helpers import url_to_file
|
|
|
|
|
from plugins.base import BasePlugins
|
|
|
|
|
from service import BaseService
|
|
|
|
|
from service.base import UserInfoData
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class GetUserCommandData:
|
|
|
|
|
user_info: UserInfoData = UserInfoData()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class GetUser(BasePlugins):
|
|
|
|
|
COMMAND_RESULT, = range(10200, 10201)
|
|
|
|
|
|
|
|
|
|
def __init__(self, service: BaseService):
|
|
|
|
|
super().__init__(service)
|
|
|
|
|
self.current_dir = os.getcwd()
|
|
|
|
|
|
2022-04-30 07:45:05 +00:00
|
|
|
|
async def _start_get_user_info(self, user_info: UserInfoData, service: ServiceEnum) -> bytes:
|
|
|
|
|
if service == ServiceEnum.MIHOYOBBS:
|
|
|
|
|
client = genshin.ChineseClient(cookies=user_info.mihoyo_cookie)
|
|
|
|
|
uid = user_info.mihoyo_game_uid
|
2022-04-14 07:18:45 +00:00
|
|
|
|
else:
|
2022-04-30 07:45:05 +00:00
|
|
|
|
client = genshin.GenshinClient(cookies=user_info.hoyoverse_cookie, lang="zh-cn")
|
|
|
|
|
uid = user_info.hoyoverse_game_uid
|
2022-04-14 07:18:45 +00:00
|
|
|
|
user_info = await client.get_user(int(uid))
|
|
|
|
|
record_card_info = await client.get_record_card()
|
|
|
|
|
user_avatar = user_info.characters[0].icon
|
|
|
|
|
user_data = {
|
|
|
|
|
"name": record_card_info.nickname,
|
|
|
|
|
"uid": record_card_info.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.anemoculi,
|
|
|
|
|
"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,
|
|
|
|
|
"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.percentage,
|
|
|
|
|
"offerings": [],
|
|
|
|
|
"icon": await url_to_file(exploration.icon)
|
|
|
|
|
}
|
|
|
|
|
for offering in exploration.offerings:
|
|
|
|
|
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_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.service.template.render('genshin/info', "info.html", user_data,
|
|
|
|
|
{"width": 1024, "height": 1024})
|
2022-04-30 07:45:05 +00:00
|
|
|
|
await client.close()
|
|
|
|
|
return png_data
|
|
|
|
|
|
|
|
|
|
async def command_start(self, update: Update, context: CallbackContext) -> int:
|
|
|
|
|
user = update.effective_user
|
|
|
|
|
Log.info(f"用户 {user.full_name}[{user.id}] 查询游戏用户命令请求")
|
|
|
|
|
get_user_command_data: GetUserCommandData = context.chat_data.get("get_user_command_data")
|
|
|
|
|
if get_user_command_data is None:
|
|
|
|
|
get_user_command_data = GetUserCommandData()
|
|
|
|
|
context.chat_data["get_user_command_data"] = get_user_command_data
|
|
|
|
|
user_info = await self.service.user_service_db.get_user_info(user.id)
|
|
|
|
|
if user_info.user_id == 0:
|
|
|
|
|
await update.message.reply_text("未查询到账号信息")
|
|
|
|
|
return ConversationHandler.END
|
|
|
|
|
if user_info.service == ServiceEnum.NULL:
|
|
|
|
|
reply_text = "请选择你要查询的类别"
|
|
|
|
|
keyboard = [
|
|
|
|
|
[
|
|
|
|
|
InlineKeyboardButton("米游社", callback_data="米游社"),
|
|
|
|
|
InlineKeyboardButton("HoYoLab", callback_data="HoYoLab")
|
|
|
|
|
]
|
|
|
|
|
]
|
|
|
|
|
get_user_command_data.user_info = user_info
|
|
|
|
|
await update.message.reply_text(reply_text, reply_markup=InlineKeyboardMarkup(keyboard))
|
|
|
|
|
return self.COMMAND_RESULT
|
|
|
|
|
else:
|
|
|
|
|
await update.message.reply_chat_action(ChatAction.FIND_LOCATION)
|
|
|
|
|
png_data = await self._start_get_user_info(user_info, user_info.service)
|
|
|
|
|
await update.message.reply_chat_action(ChatAction.UPLOAD_PHOTO)
|
|
|
|
|
await update.message.reply_photo(png_data, filename=f"{user_info.user_id}.png",
|
|
|
|
|
allow_sending_without_reply=True)
|
|
|
|
|
|
|
|
|
|
return ConversationHandler.END
|
|
|
|
|
|
|
|
|
|
async def command_result(self, update: Update, context: CallbackContext) -> int:
|
|
|
|
|
user = update.effective_user
|
|
|
|
|
get_user_command_data: GetUserCommandData = context.chat_data["get_user_command_data"]
|
|
|
|
|
query = update.callback_query
|
|
|
|
|
await query.answer()
|
|
|
|
|
await query.delete_message()
|
|
|
|
|
if query.data == "米游社":
|
|
|
|
|
service = ServiceEnum.MIHOYOBBS
|
|
|
|
|
elif query.data == "HoYoLab":
|
|
|
|
|
service = ServiceEnum.HOYOLAB
|
|
|
|
|
else:
|
|
|
|
|
return ConversationHandler.END
|
|
|
|
|
# Log.info(f"用户 {user.full_name}[{user.id}] 查询角色命令请求 || 参数 UID {uid}")
|
|
|
|
|
png_data = await self._start_get_user_info(get_user_command_data.user_info, service)
|
2022-04-14 07:18:45 +00:00
|
|
|
|
await query.message.reply_chat_action(ChatAction.UPLOAD_PHOTO)
|
2022-04-30 07:45:05 +00:00
|
|
|
|
await query.message.reply_photo(png_data, filename=f"{get_user_command_data.user_info.user_id}.png",
|
2022-04-14 07:18:45 +00:00
|
|
|
|
allow_sending_without_reply=True)
|
|
|
|
|
return ConversationHandler.END
|