93 lines
4.5 KiB
Python
93 lines
4.5 KiB
Python
import time
|
|
import tools
|
|
import config
|
|
import random
|
|
import setting
|
|
from request import http
|
|
from loghelper import log
|
|
from error import CookieError
|
|
from account import get_account_list
|
|
|
|
|
|
class Tears_of_themis:
|
|
def __init__(self) -> None:
|
|
self.headers = {}
|
|
self.headers.update(setting.headers)
|
|
self.headers['DS'] = tools.get_ds(web=True)
|
|
self.headers['Referer'] = 'https://webstatic.mihoyo.com/bbs/event/signin/nxx/index.html?bbs_auth_required' \
|
|
'=true&bbs_presentation_style=fullscreen' \
|
|
f'act_id={setting.tearsofthemis_Act_id}'
|
|
self.headers['Cookie'] = config.config["account"]["cookie"]
|
|
self.headers['x-rpc-device_id'] = tools.get_device_id()
|
|
self.headers['User-Agent'] = tools.get_useragent()
|
|
self.account_list = get_account_list("nxx_cn", self.headers)
|
|
self.sign_day = 0
|
|
if len(self.account_list) != 0:
|
|
self.checkin_rewards = self.get_checkin_rewards()
|
|
|
|
def get_checkin_rewards(self) -> list:
|
|
log.info("正在获取签到奖励列表...")
|
|
req = http.get(setting.tearsofthemis_checkin_rewards, headers=self.headers)
|
|
data = req.json()
|
|
if data["retcode"] != 0:
|
|
log.warning("获取签到奖励列表失败")
|
|
print(req.text)
|
|
return data["data"]["awards"]
|
|
|
|
# 判断签到
|
|
def is_sign(self, region: str, uid: str) -> dict:
|
|
req = http.get(setting.tearsofthemis_Is_signurl.format(setting.tearsofthemis_Act_id, region, uid),
|
|
headers=self.headers)
|
|
data = req.json()
|
|
if data["retcode"] != 0:
|
|
log.warning("获取账号签到信息失败!")
|
|
print(req.text)
|
|
config.config["games"]["cn"]["tears_of_themis"]["auto_checkin"] = False
|
|
config.save_config()
|
|
raise CookieError("BBS Cookie Errror")
|
|
return data["data"]
|
|
|
|
# 签到
|
|
def sign_account(self) -> str:
|
|
return_data = "未定事件簿: "
|
|
if len(self.account_list) != 0:
|
|
for i in self.account_list:
|
|
if i[1] in config.config["games"]["cn"]["tears_of_themis"]["black_list"]:
|
|
continue
|
|
log.info(f"正在为未定事件簿玩家: {i[0]}进行签到...")
|
|
time.sleep(random.randint(2, 8))
|
|
is_data = self.is_sign(region=i[2], uid=i[1])
|
|
# if not is_data["is_sub"]: # 这个字段不知道干啥的,就先塞这里了
|
|
if False: # 算了先改成false
|
|
log.warning(f"旅行者{i[0]}是第一次绑定米游社,请先手动签到一次")
|
|
else:
|
|
sign_days = is_data["total_sign_day"] - 1
|
|
ok = True
|
|
if is_data["is_sign"]:
|
|
log.info(
|
|
f"未定事件簿玩家:{i[0]}今天已经签到过了~\r\n今天获得的奖励是{tools.get_item(self.checkin_rewards[sign_days])}")
|
|
sign_days += 1
|
|
else:
|
|
time.sleep(random.randint(2, 8))
|
|
req = http.post(url=setting.tearsofthemis_Sign_url, headers=self.headers,
|
|
json={'act_id': setting.tearsofthemis_Act_id, 'region': i[2], 'uid': i[1]})
|
|
data = req.json()
|
|
if data["retcode"] == 0:
|
|
log.info(f"未定事件簿玩家:{i[0]}签到成功~\r\n今天获得的奖励是"
|
|
f"{tools.get_item(self.checkin_rewards[0 if sign_days == 0 else sign_days + 1])}")
|
|
sign_days += 2
|
|
elif data["retcode"] == -5003:
|
|
log.info(
|
|
f"未定事件簿玩家:{i[0]}今天已经签到过了~\r\n今天获得的奖励是{tools.get_item(self.checkin_rewards[sign_days])}")
|
|
else:
|
|
log.warning("账号签到失败!")
|
|
ok = False
|
|
if ok:
|
|
return_data += f"\n{i[0]}已连续签到{sign_days}天\n今天获得的奖励是{tools.get_item(self.checkin_rewards[sign_days - 1])}"
|
|
else:
|
|
return_data += f"\n{i[0]},本次签到失败"
|
|
else:
|
|
log.warning("账号没有绑定任何未定事件簿账号!")
|
|
return_data += "\n并没有绑定任何未定事件簿账号"
|
|
return return_data
|