2022-04-23 00:47:10 +00:00
|
|
|
|
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 Honkai2:
|
|
|
|
|
def __init__(self) -> None:
|
2022-04-28 06:29:18 +00:00
|
|
|
|
self.headers = setting.headers
|
2022-08-05 00:45:20 +00:00
|
|
|
|
self.headers['DS'] = tools.get_ds(web=True, web_old=False)
|
2022-05-01 02:34:19 +00:00
|
|
|
|
self.headers['Referer'] = 'https://webstatic.mihoyo.com/bbs/event/signin/bh2/index.html?bbs_auth_required' \
|
|
|
|
|
f'=true&act_id={setting.honkai2_Act_id}&bbs_presentation_style=fullscreen' \
|
2022-04-28 06:29:18 +00:00
|
|
|
|
'&utm_source=bbs&utm_medium=mys&utm_campaign=icon'
|
|
|
|
|
self.headers['Cookie'] = config.config["account"]["cookie"]
|
|
|
|
|
self.headers['x-rpc-device_id'] = tools.get_device_id()
|
2022-05-01 02:34:19 +00:00
|
|
|
|
self.account_list = get_account_list("bh2_cn", self.headers)
|
2022-04-23 00:47:10 +00:00
|
|
|
|
self.sign_day = 0
|
2022-05-01 02:34:19 +00:00
|
|
|
|
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.honkai2_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.honkai2_Is_signurl.format(setting.honkai2_Act_id, region, uid), headers=self.headers)
|
|
|
|
|
data = req.json()
|
|
|
|
|
if data["retcode"] != 0:
|
|
|
|
|
log.warning("获取账号签到信息失败!")
|
|
|
|
|
print(req.text)
|
|
|
|
|
config.config["games"]["cn"]["hokai2"]["auto_checkin"] = False
|
|
|
|
|
config.save_config()
|
|
|
|
|
raise CookieError("BBS Cookie Errror")
|
|
|
|
|
return data["data"]
|
|
|
|
|
|
|
|
|
|
# 签到
|
|
|
|
|
def sign_account(self) -> str:
|
|
|
|
|
return_data = "崩坏学园2: "
|
|
|
|
|
if len(self.account_list) != 0:
|
|
|
|
|
for i in self.account_list:
|
|
|
|
|
if i[1] in config.config["games"]["cn"]["hokai2"]["black_list"]:
|
|
|
|
|
continue
|
|
|
|
|
log.info(f"正在为崩坏2玩家: {i[0]}进行签到...")
|
|
|
|
|
time.sleep(random.randint(2, 8))
|
|
|
|
|
is_data = self.is_sign(region=i[2], uid=i[1])
|
2022-05-01 14:33:01 +00:00
|
|
|
|
# if not is_data["is_sub"]: # 这个字段不知道干啥的,就先塞这里了
|
|
|
|
|
if False: # 算了先改成false
|
2022-05-01 02:34:19 +00:00
|
|
|
|
log.warning(f"旅行者{i[0]}是第一次绑定米游社,请先手动签到一次")
|
|
|
|
|
else:
|
|
|
|
|
sign_days = is_data["total_sign_day"] - 1
|
|
|
|
|
ok = True
|
|
|
|
|
if is_data["is_sign"]:
|
|
|
|
|
log.info(f"崩坏2玩家:{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.honkai2_Sign_url, headers=self.headers,
|
|
|
|
|
json={'act_id': setting.honkai2_Act_id, 'region': i[2], 'uid': i[1]})
|
|
|
|
|
data = req.json()
|
|
|
|
|
if data["retcode"] == 0:
|
|
|
|
|
log.info(f"崩坏2玩家:{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"崩坏2玩家:{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("账号没有绑定任何崩坏学园2账号!")
|
|
|
|
|
return_data += "\n并没有绑定任何崩坏学园2账号"
|
|
|
|
|
return return_data
|