2022-08-06 06:36:44 +00:00
|
|
|
|
import datetime
|
|
|
|
|
import time
|
2022-09-02 17:51:40 +00:00
|
|
|
|
import asyncio
|
2022-08-06 06:36:44 +00:00
|
|
|
|
|
|
|
|
|
from aiohttp import ClientConnectorError
|
|
|
|
|
from genshin import Game, GenshinException, AlreadyClaimed, InvalidCookies
|
2022-08-06 07:37:43 +00:00
|
|
|
|
from telegram.constants import ParseMode
|
2022-08-06 06:36:44 +00:00
|
|
|
|
from telegram.error import BadRequest, Forbidden
|
|
|
|
|
from telegram.ext import CallbackContext, JobQueue
|
|
|
|
|
|
|
|
|
|
from config import config
|
2022-08-06 12:37:41 +00:00
|
|
|
|
from core.cookies import CookiesService
|
|
|
|
|
from core.sign.models import SignStatusEnum
|
|
|
|
|
from core.sign.services import SignServices
|
|
|
|
|
from core.user import UserService
|
2022-08-06 06:36:44 +00:00
|
|
|
|
from logger import Log
|
|
|
|
|
from utils.helpers import get_genshin_client
|
|
|
|
|
from utils.job.manager import listener_jobs_class
|
2022-08-06 09:27:34 +00:00
|
|
|
|
from utils.service.inject import inject
|
2022-08-06 06:36:44 +00:00
|
|
|
|
|
|
|
|
|
|
2022-09-02 16:17:00 +00:00
|
|
|
|
class NeedChallenge(Exception):
|
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
2022-08-06 06:36:44 +00:00
|
|
|
|
@listener_jobs_class()
|
|
|
|
|
class SignJob:
|
|
|
|
|
|
|
|
|
|
@inject
|
|
|
|
|
def __init__(self, sign_service: SignServices = None, user_service: UserService = None,
|
|
|
|
|
cookies_service: CookiesService = None):
|
|
|
|
|
self.sign_service = sign_service
|
|
|
|
|
self.cookies_service = cookies_service
|
|
|
|
|
self.user_service = user_service
|
|
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
|
def build_jobs(cls, job_queue: JobQueue):
|
|
|
|
|
sign = cls()
|
2022-08-26 15:10:27 +00:00
|
|
|
|
if config.debug:
|
2022-08-06 06:36:44 +00:00
|
|
|
|
job_queue.run_once(sign.sign, 3, name="SignJobTest")
|
2022-08-06 07:21:18 +00:00
|
|
|
|
# 每天凌晨一点执行
|
2022-08-31 13:16:08 +00:00
|
|
|
|
job_queue.run_daily(sign.sign, datetime.time(hour=0, minute=1, second=0), name="SignJob")
|
2022-08-06 06:36:44 +00:00
|
|
|
|
|
|
|
|
|
async def sign(self, context: CallbackContext):
|
|
|
|
|
Log.info("正在执行自动签到")
|
|
|
|
|
sign_list = await self.sign_service.get_all()
|
|
|
|
|
for sign_db in sign_list:
|
|
|
|
|
if sign_db.status != SignStatusEnum.STATUS_SUCCESS:
|
|
|
|
|
continue
|
|
|
|
|
user_id = sign_db.user_id
|
|
|
|
|
try:
|
|
|
|
|
client = await get_genshin_client(user_id, self.user_service, self.cookies_service)
|
|
|
|
|
rewards = await client.get_monthly_rewards(game=Game.GENSHIN, lang="zh-cn")
|
|
|
|
|
daily_reward_info = await client.get_reward_info(game=Game.GENSHIN)
|
|
|
|
|
if not daily_reward_info.signed_in:
|
|
|
|
|
request_daily_reward = await client.request_daily_reward("sign", method="POST", game=Game.GENSHIN)
|
2022-09-02 16:17:00 +00:00
|
|
|
|
if request_daily_reward and request_daily_reward.get("success", 0) == 1:
|
|
|
|
|
Log.warning(f"UID {client.uid} 签到失败,触发验证码风控")
|
|
|
|
|
raise NeedChallenge
|
|
|
|
|
else:
|
|
|
|
|
Log.info(f"UID {client.uid} 签到请求 {request_daily_reward}")
|
|
|
|
|
result = "OK"
|
2022-08-06 06:36:44 +00:00
|
|
|
|
else:
|
|
|
|
|
result = "今天旅行者已经签到过了~"
|
|
|
|
|
reward = rewards[daily_reward_info.claimed_rewards - (1 if daily_reward_info.signed_in else 0)]
|
|
|
|
|
today = time.strftime("%Y-%m-%d %H:%M:%S", time.localtime())
|
|
|
|
|
cn_timezone = datetime.timezone(datetime.timedelta(hours=8))
|
|
|
|
|
now = datetime.datetime.now(cn_timezone)
|
|
|
|
|
missed_days = now.day - daily_reward_info.claimed_rewards
|
|
|
|
|
if not daily_reward_info.signed_in:
|
|
|
|
|
missed_days -= 1
|
|
|
|
|
text = f"########### 定时签到 ###########\n" \
|
|
|
|
|
f"#### {today} (UTC+8) ####\n" \
|
|
|
|
|
f"UID: {client.uid}\n" \
|
|
|
|
|
f"今日奖励: {reward.name} × {reward.amount}\n" \
|
|
|
|
|
f"本月漏签次数:{missed_days}\n" \
|
|
|
|
|
f"签到结果: {result}"
|
|
|
|
|
except InvalidCookies:
|
|
|
|
|
text = "自动签到执行失败,Cookie无效"
|
|
|
|
|
sign_db.status = SignStatusEnum.INVALID_COOKIES
|
|
|
|
|
except AlreadyClaimed:
|
|
|
|
|
text = "今天旅行者已经签到过了~"
|
|
|
|
|
sign_db.status = SignStatusEnum.ALREADY_CLAIMED
|
|
|
|
|
except GenshinException as exc:
|
|
|
|
|
text = f"自动签到执行失败,API返回信息为 {str(exc)}"
|
|
|
|
|
sign_db.status = SignStatusEnum.GENSHIN_EXCEPTION
|
|
|
|
|
except ClientConnectorError:
|
|
|
|
|
text = "签到失败了呜呜呜 ~ 服务器连接超时 服务器熟啦 ~ "
|
|
|
|
|
sign_db.status = SignStatusEnum.TIMEOUT_ERROR
|
2022-09-02 16:17:00 +00:00
|
|
|
|
except NeedChallenge:
|
|
|
|
|
text = f"签到失败,触发验证码风控,自动签到自动关闭"
|
|
|
|
|
sign_db.status = SignStatusEnum.NEED_CHALLENGE
|
2022-08-06 06:36:44 +00:00
|
|
|
|
except BaseException as exc:
|
2022-08-06 09:21:58 +00:00
|
|
|
|
Log.error(f"执行自动签到时发生错误 用户UID[{user_id}]", exc)
|
2022-09-02 16:17:00 +00:00
|
|
|
|
text = "签到失败了呜呜呜 ~ 执行自动签到时发生错误"
|
2022-08-06 07:37:43 +00:00
|
|
|
|
if sign_db.chat_id < 0:
|
|
|
|
|
text = f"<a href=\"tg://user?id={sign_db.user_id}\">NOTICE {sign_db.user_id}</a>\n\n{text}"
|
2022-08-06 06:36:44 +00:00
|
|
|
|
try:
|
2022-08-06 07:37:43 +00:00
|
|
|
|
await context.bot.send_message(sign_db.chat_id, text, parse_mode=ParseMode.HTML)
|
2022-09-02 17:51:40 +00:00
|
|
|
|
await asyncio.sleep(5) # 回复延迟5S避免触发洪水防御
|
2022-08-06 06:36:44 +00:00
|
|
|
|
except BadRequest as exc:
|
2022-08-06 09:21:58 +00:00
|
|
|
|
Log.error(f"执行自动签到时发生错误 用户UID[{user_id}]", exc)
|
2022-08-06 06:36:44 +00:00
|
|
|
|
sign_db.status = SignStatusEnum.BAD_REQUEST
|
|
|
|
|
except Forbidden as exc:
|
2022-08-06 09:21:58 +00:00
|
|
|
|
Log.error(f"执行自动签到时发生错误 用户UID[{user_id}]", exc)
|
2022-08-06 06:36:44 +00:00
|
|
|
|
sign_db.status = SignStatusEnum.FORBIDDEN
|
|
|
|
|
except BaseException as exc:
|
2022-08-06 09:21:58 +00:00
|
|
|
|
Log.error(f"执行自动签到时发生错误 用户UID[{user_id}]", exc)
|
2022-08-06 06:36:44 +00:00
|
|
|
|
continue
|
|
|
|
|
sign_db.time_updated = datetime.datetime.now()
|
|
|
|
|
await self.sign_service.update(sign_db)
|
|
|
|
|
Log.info("执行自动签到完成")
|