PamGram/modules/gacha_log/log.py

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

656 lines
27 KiB
Python
Raw Normal View History

import asyncio
2022-10-08 08:50:02 +00:00
import contextlib
import datetime
import json
from concurrent.futures import ThreadPoolExecutor
2022-10-08 08:50:02 +00:00
from pathlib import Path
from typing import Dict, List, Optional, Tuple, TYPE_CHECKING
2022-10-08 08:50:02 +00:00
import aiofiles
from simnet import StarRailClient, Region
from simnet.errors import AuthkeyTimeout, InvalidAuthkey
from simnet.models.starrail.wish import StarRailBannerType
from simnet.utils.player import recognize_starrail_server
2022-10-08 08:50:02 +00:00
from metadata.pool.pool import get_pool_by_id
2023-04-27 12:25:06 +00:00
from modules.gacha_log.const import GACHA_TYPE_LIST
from modules.gacha_log.error import (
GachaLogAccountNotFound,
GachaLogAuthkeyTimeout,
GachaLogException,
GachaLogFileError,
GachaLogInvalidAuthkey,
GachaLogMixedProvider,
GachaLogNotFound,
)
from modules.gacha_log.models import (
FiveStarItem,
FourStarItem,
GachaItem,
GachaLogInfo,
ImportType,
Pool,
2023-05-26 14:15:17 +00:00
SRGFInfo,
SRGFItem,
SRGFModel,
)
from utils.const import PROJECT_ROOT
from utils.uid import mask_number
if TYPE_CHECKING:
from core.dependence.assets import AssetsService
2023-04-27 12:25:06 +00:00
GACHA_LOG_PATH = PROJECT_ROOT.joinpath("data", "apihelper", "warp_log")
GACHA_LOG_PATH.mkdir(parents=True, exist_ok=True)
2022-10-08 08:50:02 +00:00
class GachaLog:
def __init__(self, gacha_log_path: Path = GACHA_LOG_PATH):
self.gacha_log_path = gacha_log_path
2022-10-08 08:50:02 +00:00
@staticmethod
async def load_json(path):
2022-10-09 03:18:49 +00:00
async with aiofiles.open(path, "r", encoding="utf-8") as f:
2022-10-08 08:50:02 +00:00
return json.loads(await f.read())
@staticmethod
async def save_json(path, data):
2022-10-09 03:18:49 +00:00
async with aiofiles.open(path, "w", encoding="utf-8") as f:
2022-10-08 08:50:02 +00:00
if isinstance(data, dict):
return await f.write(json.dumps(data, ensure_ascii=False, indent=4))
await f.write(data)
2022-10-09 03:18:49 +00:00
async def load_history_info(
self, user_id: str, uid: str, only_status: bool = False
2022-10-09 03:18:49 +00:00
) -> Tuple[Optional[GachaLogInfo], bool]:
2023-04-27 12:25:06 +00:00
"""读取历史跃迁记录数据
2022-10-08 08:50:02 +00:00
:param user_id: 用户id
:param uid: 原神uid
2022-10-08 15:40:15 +00:00
:param only_status: 是否只读取状态
2023-04-27 12:25:06 +00:00
:return: 跃迁记录数据
2022-10-08 08:50:02 +00:00
"""
file_path = self.gacha_log_path / f"{user_id}-{uid}.json"
2022-10-08 15:40:15 +00:00
if only_status:
return None, file_path.exists()
if not file_path.exists():
2022-10-09 03:18:49 +00:00
return GachaLogInfo(user_id=user_id, uid=uid, update_time=datetime.datetime.now()), False
2022-10-08 15:40:15 +00:00
try:
return GachaLogInfo.parse_obj(await self.load_json(file_path)), True
2022-10-08 15:40:15 +00:00
except json.decoder.JSONDecodeError:
return GachaLogInfo(user_id=user_id, uid=uid, update_time=datetime.datetime.now()), False
async def remove_history_info(self, user_id: str, uid: str) -> bool:
2023-04-27 12:25:06 +00:00
"""删除历史跃迁记录数据
2022-10-08 15:40:15 +00:00
:param user_id: 用户id
:param uid: 原神uid
:return: 是否删除成功
"""
file_path = self.gacha_log_path / f"{user_id}-{uid}.json"
file_bak_path = self.gacha_log_path / f"{user_id}-{uid}.json.bak"
file_export_path = self.gacha_log_path / f"{user_id}-{uid}-uigf.json"
2022-10-08 15:40:15 +00:00
with contextlib.suppress(Exception):
file_bak_path.unlink(missing_ok=True)
with contextlib.suppress(Exception):
file_export_path.unlink(missing_ok=True)
if file_path.exists():
try:
file_path.unlink()
except PermissionError:
return False
return True
return False
2022-10-08 08:50:02 +00:00
2023-12-16 10:01:27 +00:00
async def move_history_info(self, user_id: str, uid: str, new_user_id: str) -> bool:
"""移动历史抽卡记录数据
:param user_id: 用户id
:param uid: 原神uid
:param new_user_id: 新用户id
:return: 是否移动成功
"""
old_file_path = self.gacha_log_path / f"{user_id}-{uid}.json"
new_file_path = self.gacha_log_path / f"{new_user_id}-{uid}.json"
if (not old_file_path.exists()) or new_file_path.exists():
return False
try:
old_file_path.rename(new_file_path)
return True
except PermissionError:
return False
async def save_gacha_log_info(self, user_id: str, uid: str, info: GachaLogInfo):
2023-04-27 12:25:06 +00:00
"""保存跃迁记录数据
2022-10-08 08:50:02 +00:00
:param user_id: 用户id
:param uid: 玩家uid
2023-04-27 12:25:06 +00:00
:param info: 跃迁记录数据
2022-10-08 08:50:02 +00:00
"""
save_path = self.gacha_log_path / f"{user_id}-{uid}.json"
save_path_bak = self.gacha_log_path / f"{user_id}-{uid}.json.bak"
2022-10-08 08:50:02 +00:00
# 将旧数据备份一次
with contextlib.suppress(PermissionError):
if save_path.exists():
if save_path_bak.exists():
save_path_bak.unlink()
2022-10-09 03:18:49 +00:00
save_path.rename(save_path.parent / f"{save_path.name}.bak")
2022-10-08 08:50:02 +00:00
# 写入数据
await self.save_json(save_path, info.json())
2022-10-08 08:50:02 +00:00
2023-05-26 14:15:17 +00:00
async def gacha_log_to_srgf(self, user_id: str, uid: str) -> Optional[Path]:
"""跃迁日记转换为 SRGF 格式
2022-10-08 08:50:02 +00:00
:param user_id: 用户ID
:param uid: 游戏UID
2023-05-26 14:15:17 +00:00
:return: 转换是否成功转换信息SRGF 文件目录
2022-10-08 08:50:02 +00:00
"""
data, state = await self.load_history_info(user_id, uid)
2022-10-08 08:50:02 +00:00
if not state:
raise GachaLogNotFound
2023-05-26 14:15:17 +00:00
save_path = self.gacha_log_path / f"{user_id}-{uid}-srgf.json"
info = SRGFModel(info=SRGFInfo(uid=uid, export_app=ImportType.PaiGram.value, export_app_version="v3"), list=[])
2022-10-08 08:50:02 +00:00
for items in data.item_list.values():
for item in items:
info.list.append(
2023-05-26 14:15:17 +00:00
SRGFItem(
id=item.id,
name=item.name,
2023-05-26 14:15:17 +00:00
gacha_id=item.gacha_id,
gacha_type=item.gacha_type,
2023-05-26 14:15:17 +00:00
item_id=item.item_id,
item_type=item.item_type,
rank_type=item.rank_type,
time=item.time.strftime("%Y-%m-%d %H:%M:%S"),
)
2022-10-09 03:18:49 +00:00
)
2022-10-29 07:40:40 +00:00
await self.save_json(save_path, json.loads(info.json()))
return save_path
2022-10-08 08:50:02 +00:00
2022-10-08 15:40:15 +00:00
@staticmethod
async def verify_data(data: List[GachaItem]) -> bool:
2022-10-08 15:40:15 +00:00
try:
total = len(data)
five_star = len([i for i in data if i.rank_type == "5"])
four_star = len([i for i in data if i.rank_type == "4"])
if total > 50:
if total <= five_star * 15:
2024-03-16 10:43:20 +00:00
raise GachaLogFileError(
"检测到您将要导入的跃迁记录中五星数量过多,可能是由于文件错误导致的,请检查后重新导入。"
)
2022-10-08 15:40:15 +00:00
if four_star < five_star:
2024-03-16 10:43:20 +00:00
raise GachaLogFileError(
"检测到您将要导入的跃迁记录中五星数量过多,可能是由于文件错误导致的,请检查后重新导入。"
)
return True
2022-10-11 06:45:07 +00:00
except Exception as exc: # pylint: disable=W0703
raise GachaLogFileError from exc
2022-10-08 15:40:15 +00:00
@staticmethod
def import_data_backend(all_items: List[GachaItem], gacha_log: GachaLogInfo, temp_id_data: Dict) -> int:
new_num = 0
for item_info in all_items:
2023-04-27 12:25:06 +00:00
pool_name = GACHA_TYPE_LIST[StarRailBannerType(int(item_info.gacha_type))]
if pool_name not in temp_id_data:
temp_id_data[pool_name] = []
if pool_name not in gacha_log.item_list:
gacha_log.item_list[pool_name] = []
if item_info.id not in temp_id_data[pool_name]:
gacha_log.item_list[pool_name].append(item_info)
temp_id_data[pool_name].append(item_info.id)
new_num += 1
return new_num
async def import_gacha_log_data(self, user_id: int, player_id: int, data: dict, verify_uid: bool = True) -> int:
2022-10-08 08:50:02 +00:00
new_num = 0
try:
uid = data["info"]["uid"]
if not verify_uid:
uid = player_id
elif int(uid) != player_id:
raise GachaLogAccountNotFound
try:
import_type = ImportType(data["info"]["export_app"])
except ValueError:
import_type = ImportType.UNKNOWN
2022-10-08 15:40:15 +00:00
# 检查导入数据是否合法
all_items = [GachaItem(**i) for i in data["list"]]
await self.verify_data(all_items)
gacha_log, status = await self.load_history_info(str(user_id), uid)
# 将唯一 id 放入临时数据中,加快查找速度
temp_id_data = {
pool_name: [i.id for i in pool_data] for pool_name, pool_data in gacha_log.item_list.items()
}
# 使用新线程进行遍历,避免堵塞主线程
loop = asyncio.get_event_loop()
# 可以使用with语句来确保线程执行完成后及时被清理
with ThreadPoolExecutor() as executor:
new_num = await loop.run_in_executor(
executor, self.import_data_backend, all_items, gacha_log, temp_id_data
)
2022-10-08 08:50:02 +00:00
for i in gacha_log.item_list.values():
2022-10-08 15:40:15 +00:00
# 检查导入后的数据是否合法
await self.verify_data(i)
2022-10-08 08:50:02 +00:00
i.sort(key=lambda x: (x.time, x.id))
gacha_log.update_time = datetime.datetime.now()
gacha_log.import_type = import_type.value
await self.save_gacha_log_info(str(user_id), uid, gacha_log)
return new_num
except GachaLogAccountNotFound as e:
raise GachaLogAccountNotFound("导入失败,文件包含的祈愿记录所属 uid 与你当前绑定的 uid 不同") from e
except GachaLogMixedProvider as e:
raise GachaLogMixedProvider from e
except Exception as exc:
raise GachaLogException from exc
2022-10-08 08:50:02 +00:00
@staticmethod
def get_game_client(player_id: int) -> StarRailClient:
if recognize_starrail_server(player_id) in ["prod_gf_cn", "prod_qd_cn"]:
return StarRailClient(player_id=player_id, region=Region.CHINESE, lang="zh-cn")
else:
return StarRailClient(player_id=player_id, region=Region.OVERSEAS, lang="zh-cn")
async def get_gacha_log_data(self, user_id: int, player_id: int, authkey: str) -> int:
2023-04-27 12:25:06 +00:00
"""使用authkey获取跃迁记录数据并合并旧数据
2022-10-08 08:50:02 +00:00
:param user_id: 用户id
:param player_id: 玩家id
2022-10-08 08:50:02 +00:00
:param authkey: authkey
:return: 更新结果
"""
new_num = 0
gacha_log, _ = await self.load_history_info(str(user_id), str(player_id))
# 将唯一 id 放入临时数据中,加快查找速度
2023-05-26 14:15:17 +00:00
temp_id_data = {pool_name: {i.id: i for i in pool_data} for pool_name, pool_data in gacha_log.item_list.items()}
client = self.get_game_client(player_id)
2022-10-08 08:50:02 +00:00
try:
for pool_id, pool_name in GACHA_TYPE_LIST.items():
wish_history = await client.wish_history(pool_id.value, authkey=authkey)
for data in wish_history:
2022-10-08 08:50:02 +00:00
item = GachaItem(
id=str(data.id),
name=data.name,
2023-05-26 14:15:17 +00:00
gacha_id=str(data.banner_id),
2022-10-08 08:50:02 +00:00
gacha_type=str(data.banner_type.value),
2023-05-26 14:15:17 +00:00
item_id=str(data.item_id),
2022-10-08 08:50:02 +00:00
item_type=data.type,
rank_type=str(data.rarity),
2022-10-09 03:18:49 +00:00
time=datetime.datetime(
data.time.year,
data.time.month,
data.time.day,
data.time.hour,
data.time.minute,
data.time.second,
),
2022-10-08 08:50:02 +00:00
)
if pool_name not in temp_id_data:
temp_id_data[pool_name] = {}
if pool_name not in gacha_log.item_list:
gacha_log.item_list[pool_name] = []
2023-05-26 14:15:17 +00:00
if item.id not in temp_id_data[pool_name].keys():
2022-10-08 08:50:02 +00:00
gacha_log.item_list[pool_name].append(item)
2023-05-26 14:15:17 +00:00
temp_id_data[pool_name][item.id] = item
2022-10-08 08:50:02 +00:00
new_num += 1
2023-05-26 14:15:17 +00:00
else:
old_item: GachaItem = temp_id_data[pool_name][item.id]
old_item.gacha_id = item.gacha_id
old_item.item_id = item.item_id
except AuthkeyTimeout as exc:
raise GachaLogAuthkeyTimeout from exc
except InvalidAuthkey as exc:
raise GachaLogInvalidAuthkey from exc
finally:
await client.shutdown()
2022-10-08 08:50:02 +00:00
for i in gacha_log.item_list.values():
i.sort(key=lambda x: (x.time, x.id))
gacha_log.update_time = datetime.datetime.now()
2023-05-26 14:15:17 +00:00
gacha_log.import_type = ImportType.PaiGram.value
await self.save_gacha_log_info(str(user_id), str(player_id), gacha_log)
return new_num
2022-10-08 08:50:02 +00:00
@staticmethod
def check_avatar_up(name: str, gacha_time: datetime.datetime) -> bool:
2023-04-27 12:25:06 +00:00
if name in {"姬子", "瓦尔特", "布洛妮娅", "杰帕德", "克拉拉", "彦卿", "白露"}:
2022-10-08 08:50:02 +00:00
return False
return True
async def get_all_5_star_items(self, data: List[GachaItem], assets: "AssetsService", pool_name: str = "角色跃迁"):
2022-10-08 08:50:02 +00:00
"""
获取所有5星角色
2023-04-27 12:25:06 +00:00
:param data: 跃迁记录
2022-10-08 08:50:02 +00:00
:param assets: 资源服务
:param pool_name: 池子名称
:return: 5星角色列表
"""
count = 0
result = []
for item in data:
count += 1
2022-10-09 03:18:49 +00:00
if item.rank_type == "5":
2023-04-27 12:25:06 +00:00
if item.item_type == "角色" and pool_name in {"角色跃迁", "常驻跃迁", "新手跃迁"}:
if pool_name == "新手跃迁":
isUp, isBig = True, False
elif pool_name == "角色跃迁":
2023-04-28 12:03:38 +00:00
isUp, isBig = (
self.check_avatar_up(item.name, item.time),
(not result[-1].isUp) if result else False,
)
2023-04-27 12:25:06 +00:00
else:
isUp, isBig = False, False
2022-10-10 03:37:58 +00:00
data = {
"name": item.name,
2023-04-28 12:03:38 +00:00
"icon": assets.avatar.square(item.name).as_uri(),
2022-10-10 03:37:58 +00:00
"count": count,
"type": "角色",
2023-04-27 12:25:06 +00:00
"isUp": isUp,
"isBig": isBig,
2022-10-10 03:37:58 +00:00
"time": item.time,
}
result.append(FiveStarItem.construct(**data))
2023-04-27 12:25:06 +00:00
elif item.item_type == "光锥" and pool_name in {"光锥跃迁", "常驻跃迁"}:
2022-10-10 03:37:58 +00:00
data = {
"name": item.name,
2023-04-27 12:25:06 +00:00
"icon": assets.light_cone.icon(item.name).as_uri(),
2022-10-10 03:37:58 +00:00
"count": count,
2023-06-08 15:26:46 +00:00
"type": "光锥",
2022-10-10 03:37:58 +00:00
"isUp": False,
"isBig": False,
"time": item.time,
}
result.append(FiveStarItem.construct(**data))
2022-10-08 08:50:02 +00:00
count = 0
result.reverse()
return result, count
@staticmethod
async def get_all_4_star_items(data: List[GachaItem], assets: "AssetsService"):
2022-10-08 08:50:02 +00:00
"""
获取 no_fout_star
2023-04-27 12:25:06 +00:00
:param data: 跃迁记录
2022-10-08 08:50:02 +00:00
:param assets: 资源服务
:return: no_fout_star
"""
count = 0
result = []
for item in data:
count += 1
2022-10-09 03:18:49 +00:00
if item.rank_type == "4":
2022-10-08 08:50:02 +00:00
if item.item_type == "角色":
2022-10-10 03:37:58 +00:00
data = {
"name": item.name,
2023-04-28 12:03:38 +00:00
"icon": assets.avatar.square(item.name).as_uri(),
2022-10-10 03:37:58 +00:00
"count": count,
"type": "角色",
"time": item.time,
}
result.append(FourStarItem.construct(**data))
2023-04-27 12:25:06 +00:00
elif item.item_type == "光锥":
2022-10-10 03:37:58 +00:00
data = {
"name": item.name,
2023-04-27 12:25:06 +00:00
"icon": assets.light_cone.icon(item.name).as_uri(),
2022-10-10 03:37:58 +00:00
"count": count,
2023-04-27 12:25:06 +00:00
"type": "光锥",
2022-10-10 03:37:58 +00:00
"time": item.time,
}
result.append(FourStarItem.construct(**data))
2022-10-08 08:50:02 +00:00
count = 0
result.reverse()
return result, count
@staticmethod
2022-10-09 03:18:49 +00:00
def get_301_pool_data(total: int, all_five: List[FiveStarItem], no_five_star: int, no_four_star: int):
2022-10-08 08:50:02 +00:00
# 总共五星
five_star = len(all_five)
five_star_up = len([i for i in all_five if i.isUp])
five_star_big = len([i for i in all_five if i.isBig])
# 五星平均
five_star_avg = round((total - no_five_star) / five_star, 2) if five_star != 0 else 0
2022-10-08 08:50:02 +00:00
# 小保底不歪
2022-10-09 03:18:49 +00:00
small_protect = (
round((five_star_up - five_star_big) / (five_star - five_star_big) * 100.0, 1)
if five_star - five_star_big != 0
else "0.0"
)
2022-10-08 08:50:02 +00:00
# 五星常驻
five_star_const = five_star - five_star_up
# UP 平均
up_avg = (
round((total - no_five_star - (all_five[0].count if not all_five[0].isUp else 0)) / five_star_up, 2)
if five_star_up != 0
else 0
)
2022-10-08 08:50:02 +00:00
# UP 花费原石
up_cost = sum(i.count * 160 for i in all_five if i.isUp)
up_cost = f"{round(up_cost / 10000, 2)}w" if up_cost >= 10000 else up_cost
return [
[
{"num": no_five_star, "unit": "", "lable": "未出五星"},
{"num": five_star, "unit": "", "lable": "五星"},
{"num": five_star_avg, "unit": "", "lable": "五星平均"},
{"num": small_protect, "unit": "%", "lable": "小保底不歪"},
{"num": no_four_star, "unit": "", "lable": "未出四星"},
{"num": five_star_const, "unit": "", "lable": "五星常驻"},
{"num": up_avg, "unit": "", "lable": "UP平均"},
2023-04-27 12:25:06 +00:00
{"num": up_cost, "unit": "", "lable": "UP花费星琼"},
2022-10-09 03:18:49 +00:00
],
2022-10-08 08:50:02 +00:00
]
@staticmethod
2022-10-09 03:18:49 +00:00
def get_200_pool_data(
total: int, all_five: List[FiveStarItem], all_four: List[FourStarItem], no_five_star: int, no_four_star: int
2022-10-09 03:18:49 +00:00
):
2022-10-08 08:50:02 +00:00
# 总共五星
five_star = len(all_five)
# 五星平均
five_star_avg = round((total - no_five_star) / five_star, 2) if five_star != 0 else 0
2023-06-08 15:26:46 +00:00
# 五星光锥
2023-04-27 12:25:06 +00:00
five_star_weapon = len([i for i in all_five if i.type == "光锥"])
2022-10-08 08:50:02 +00:00
# 总共四星
four_star = len(all_four)
# 四星平均
four_star_avg = round((total - no_four_star) / four_star, 2) if four_star != 0 else 0
2022-10-08 08:50:02 +00:00
# 四星最多
four_star_name_list = [i.name for i in all_four]
four_star_max = max(four_star_name_list, key=four_star_name_list.count) if four_star_name_list else ""
2022-10-08 08:50:02 +00:00
four_star_max_count = four_star_name_list.count(four_star_max)
return [
[
{"num": no_five_star, "unit": "", "lable": "未出五星"},
{"num": five_star, "unit": "", "lable": "五星"},
{"num": five_star_avg, "unit": "", "lable": "五星平均"},
2023-04-27 12:25:06 +00:00
{"num": five_star_weapon, "unit": "", "lable": "五星光锥"},
2022-10-08 08:50:02 +00:00
{"num": no_four_star, "unit": "", "lable": "未出四星"},
{"num": four_star, "unit": "", "lable": "四星"},
{"num": four_star_avg, "unit": "", "lable": "四星平均"},
{"num": four_star_max_count, "unit": four_star_max, "lable": "四星最多"},
2022-10-09 03:18:49 +00:00
],
2022-10-08 08:50:02 +00:00
]
@staticmethod
2022-10-09 03:18:49 +00:00
def get_302_pool_data(
total: int, all_five: List[FiveStarItem], all_four: List[FourStarItem], no_five_star: int, no_four_star: int
2022-10-09 03:18:49 +00:00
):
2022-10-08 08:50:02 +00:00
# 总共五星
five_star = len(all_five)
# 五星平均
five_star_avg = round((total - no_five_star) / five_star, 2) if five_star != 0 else 0
2023-06-08 15:26:46 +00:00
# 四星光锥
2023-04-27 12:25:06 +00:00
four_star_weapon = len([i for i in all_four if i.type == "光锥"])
2022-10-08 08:50:02 +00:00
# 总共四星
four_star = len(all_four)
# 四星平均
four_star_avg = round((total - no_four_star) / four_star, 2) if four_star != 0 else 0
2022-10-08 08:50:02 +00:00
# 四星最多
four_star_name_list = [i.name for i in all_four]
four_star_max = max(four_star_name_list, key=four_star_name_list.count) if four_star_name_list else ""
2022-10-08 08:50:02 +00:00
four_star_max_count = four_star_name_list.count(four_star_max)
return [
[
{"num": no_five_star, "unit": "", "lable": "未出五星"},
{"num": five_star, "unit": "", "lable": "五星"},
{"num": five_star_avg, "unit": "", "lable": "五星平均"},
2023-04-27 12:25:06 +00:00
{"num": four_star_weapon, "unit": "", "lable": "四星光锥"},
2022-10-08 08:50:02 +00:00
{"num": no_four_star, "unit": "", "lable": "未出四星"},
{"num": four_star, "unit": "", "lable": "四星"},
{"num": four_star_avg, "unit": "", "lable": "四星平均"},
{"num": four_star_max_count, "unit": four_star_max, "lable": "四星最多"},
2022-10-09 03:18:49 +00:00
],
2022-10-08 08:50:02 +00:00
]
@staticmethod
def count_fortune(pool_name: str, summon_data, weapon: bool = False):
"""
2023-04-27 12:25:06 +00:00
角色 光锥
50以下 45以下
50-60 45-55
60-70 55-65
70以上 65以上
"""
data = [45, 55, 65] if weapon else [50, 60, 70]
for i in summon_data:
for j in i:
if j.get("lable") == "五星平均":
num = j.get("num", 0)
if num == 0:
return pool_name
if num <= data[0]:
return f"{pool_name} · 欧"
if num <= data[1]:
return f"{pool_name} · 吉"
if num <= data[2]:
return f"{pool_name} · 普通"
return f"{pool_name} · 非"
return pool_name
async def get_analysis(self, user_id: int, player_id: int, pool: StarRailBannerType, assets: "AssetsService"):
2022-10-08 08:50:02 +00:00
"""
2023-04-27 12:25:06 +00:00
获取跃迁记录分析数据
2022-10-08 08:50:02 +00:00
:param user_id: 用户id
:param player_id: 玩家id
2022-10-08 08:50:02 +00:00
:param pool: 池子类型
:param assets: 资源服务
:return: 分析数据
"""
gacha_log, status = await self.load_history_info(str(user_id), str(player_id))
2022-10-08 08:50:02 +00:00
if not status:
raise GachaLogNotFound
2022-10-08 08:50:02 +00:00
pool_name = GACHA_TYPE_LIST[pool]
if pool_name not in gacha_log.item_list:
raise GachaLogNotFound
2022-10-08 08:50:02 +00:00
data = gacha_log.item_list[pool_name]
total = len(data)
if total == 0:
raise GachaLogNotFound
all_five, no_five_star = await self.get_all_5_star_items(data, assets, pool_name)
all_four, no_four_star = await self.get_all_4_star_items(data, assets)
2022-10-08 08:50:02 +00:00
summon_data = None
2023-04-27 12:25:06 +00:00
if pool in [StarRailBannerType.CHARACTER, StarRailBannerType.NOVICE]:
summon_data = self.get_301_pool_data(total, all_five, no_five_star, no_four_star)
pool_name = self.count_fortune(pool_name, summon_data)
2023-04-27 12:25:06 +00:00
elif pool == StarRailBannerType.WEAPON:
summon_data = self.get_302_pool_data(total, all_five, all_four, no_five_star, no_four_star)
pool_name = self.count_fortune(pool_name, summon_data, True)
2023-04-27 12:25:06 +00:00
elif pool == StarRailBannerType.PERMANENT:
summon_data = self.get_200_pool_data(total, all_five, all_four, no_five_star, no_four_star)
pool_name = self.count_fortune(pool_name, summon_data)
2022-10-08 08:50:02 +00:00
last_time = data[0].time.strftime("%Y-%m-%d %H:%M")
first_time = data[-1].time.strftime("%Y-%m-%d %H:%M")
return {
"uid": mask_number(player_id),
2022-10-08 08:50:02 +00:00
"allNum": total,
"type": pool.value,
"typeName": pool_name,
"line": summon_data,
"firstTime": first_time,
"lastTime": last_time,
"fiveLog": all_five,
2023-08-29 07:09:18 +00:00
"fourLog": all_four[:36],
2022-10-08 08:50:02 +00:00
}
async def get_pool_analysis(
self, user_id: int, player_id: int, pool: StarRailBannerType, assets: "AssetsService", group: bool
) -> dict:
2023-04-27 12:25:06 +00:00
"""获取跃迁记录分析数据
2022-10-08 08:50:02 +00:00
:param user_id: 用户id
:param player_id: 玩家id
2022-10-08 08:50:02 +00:00
:param pool: 池子类型
:param assets: 资源服务
:param group: 是否群组
:return: 分析数据
"""
gacha_log, status = await self.load_history_info(str(user_id), str(player_id))
2022-10-08 08:50:02 +00:00
if not status:
raise GachaLogNotFound
2022-10-08 08:50:02 +00:00
pool_name = GACHA_TYPE_LIST[pool]
if pool_name not in gacha_log.item_list:
raise GachaLogNotFound
2022-10-08 08:50:02 +00:00
data = gacha_log.item_list[pool_name]
total = len(data)
if total == 0:
raise GachaLogNotFound
all_five, _ = await self.get_all_5_star_items(data, assets, pool_name)
all_four, _ = await self.get_all_4_star_items(data, assets)
2022-10-08 08:50:02 +00:00
pool_data = []
up_pool_data = [Pool(**i) for i in get_pool_by_id(pool.value)]
for up_pool in up_pool_data:
for item in all_five:
up_pool.parse(item)
for item in all_four:
up_pool.parse(item)
up_pool.count_item(data)
for up_pool in up_pool_data:
2022-10-09 03:18:49 +00:00
pool_data.append(
{
"count": up_pool.count,
"list": up_pool.to_list(),
"name": up_pool.name,
"start": up_pool.start.strftime("%Y-%m-%d"),
"end": up_pool.end.strftime("%Y-%m-%d"),
}
)
2022-10-08 08:50:02 +00:00
pool_data = [i for i in pool_data if i["count"] > 0]
return {
"uid": mask_number(player_id),
2022-10-08 08:50:02 +00:00
"typeName": pool_name,
"pool": pool_data[:6] if group else pool_data,
"hasMore": len(pool_data) > 6,
}
async def get_all_five_analysis(self, user_id: int, player_id: int, assets: "AssetsService") -> dict:
2023-04-27 12:25:06 +00:00
"""获取五星跃迁记录分析数据
:param user_id: 用户id
:param player_id: 玩家id
:param assets: 资源服务
:return: 分析数据
"""
gacha_log, status = await self.load_history_info(str(user_id), str(player_id))
if not status:
raise GachaLogNotFound
pools = []
for pool_name, items in gacha_log.item_list.items():
pool = Pool(
five=[pool_name],
four=[],
name=pool_name,
to=datetime.datetime.now().strftime("%Y-%m-%d %H:%M:%S"),
**{"from": "2020-09-28 00:00:00"},
)
all_five, _ = await self.get_all_5_star_items(items, assets, pool_name)
for item in all_five:
pool.parse(item)
pool.count_item(items)
pools.append(pool)
pool_data = [
{
"count": up_pool.count,
"list": up_pool.to_list(),
"name": up_pool.name,
"start": up_pool.start.strftime("%Y-%m-%d"),
"end": up_pool.end.strftime("%Y-%m-%d"),
}
for up_pool in pools
]
return {
"uid": mask_number(player_id),
"typeName": "五星列表",
"pool": pool_data,
"hasMore": False,
}