mirror of
https://github.com/PaiGramTeam/PamGram.git
synced 2024-11-16 12:02:16 +00:00
67 lines
2.1 KiB
Python
67 lines
2.1 KiB
Python
|
from pathlib import Path
|
||
|
from typing import Optional, Dict, Union
|
||
|
|
||
|
import aiofiles
|
||
|
|
||
|
from utils.const import PROJECT_ROOT
|
||
|
|
||
|
import ujson as jsonlib
|
||
|
|
||
|
PLAYER_CARDS_PATH = PROJECT_ROOT.joinpath("data", "apihelper", "player_cards")
|
||
|
PLAYER_CARDS_PATH.mkdir(parents=True, exist_ok=True)
|
||
|
|
||
|
|
||
|
class PlayerCardsFile:
|
||
|
def __init__(self, player_cards_path: Path = PLAYER_CARDS_PATH):
|
||
|
self.player_cards_path = player_cards_path
|
||
|
|
||
|
@staticmethod
|
||
|
async def load_json(path):
|
||
|
async with aiofiles.open(path, "r", encoding="utf-8") as f:
|
||
|
return jsonlib.loads(await f.read())
|
||
|
|
||
|
@staticmethod
|
||
|
async def save_json(path, data: Dict):
|
||
|
async with aiofiles.open(path, "w", encoding="utf-8") as f:
|
||
|
return await f.write(jsonlib.dumps(data, ensure_ascii=False, indent=4))
|
||
|
|
||
|
def get_file_path(self, uid: Union[str, int]):
|
||
|
"""获取文件路径
|
||
|
:param uid: UID
|
||
|
:return: 文件路径
|
||
|
"""
|
||
|
return self.player_cards_path / f"{uid}.json"
|
||
|
|
||
|
async def load_history_info(
|
||
|
self,
|
||
|
uid: Union[str, int],
|
||
|
) -> Optional[Dict]:
|
||
|
"""读取历史记录数据
|
||
|
:param uid: uid
|
||
|
:return: 角色历史记录数据
|
||
|
"""
|
||
|
file_path = self.get_file_path(uid)
|
||
|
if not file_path.exists():
|
||
|
return None
|
||
|
try:
|
||
|
return await self.load_json(file_path)
|
||
|
except jsonlib.JSONDecodeError:
|
||
|
return None
|
||
|
|
||
|
async def merge_info(
|
||
|
self,
|
||
|
uid: Union[str, int],
|
||
|
data: Dict,
|
||
|
) -> Dict:
|
||
|
old_data = await self.load_history_info(uid)
|
||
|
if old_data is None:
|
||
|
await self.save_json(self.get_file_path(uid), data)
|
||
|
return data
|
||
|
data["avatarInfoList"] = data.get("avatarInfoList", [])
|
||
|
characters = [i.get("avatarId", 0) for i in data["avatarInfoList"]]
|
||
|
for i in old_data.get("avatarInfoList", []):
|
||
|
if i.get("avatarId", 0) not in characters:
|
||
|
data["avatarInfoList"].append(i)
|
||
|
await self.save_json(self.get_file_path(uid), data)
|
||
|
return data
|