2022-10-30 13:35:53 +00:00
|
|
|
|
import asyncio
|
2022-07-31 05:25:02 +00:00
|
|
|
|
import datetime
|
2022-10-10 06:34:04 +00:00
|
|
|
|
import json
|
2022-10-30 13:35:53 +00:00
|
|
|
|
import random
|
2022-10-10 07:46:39 +00:00
|
|
|
|
import re
|
|
|
|
|
import time
|
2022-10-10 05:34:06 +00:00
|
|
|
|
from json import JSONDecodeError
|
2022-10-30 08:46:07 +00:00
|
|
|
|
from typing import Optional, Dict, Tuple
|
2022-07-31 05:25:02 +00:00
|
|
|
|
|
|
|
|
|
from genshin import Game, GenshinException, AlreadyClaimed, Client
|
2022-10-30 13:35:53 +00:00
|
|
|
|
from genshin.utility import recognize_genshin_server
|
2022-10-10 07:46:39 +00:00
|
|
|
|
from httpx import AsyncClient, TimeoutException
|
2022-10-12 09:35:59 +00:00
|
|
|
|
from telegram import Update, InlineKeyboardButton, InlineKeyboardMarkup
|
2022-10-10 05:34:06 +00:00
|
|
|
|
from telegram.constants import ChatAction
|
2022-10-30 11:37:57 +00:00
|
|
|
|
from telegram.ext import CommandHandler, CallbackContext, CallbackQueryHandler
|
2022-09-08 01:08:37 +00:00
|
|
|
|
from telegram.ext import MessageHandler, filters
|
2022-07-31 05:25:02 +00:00
|
|
|
|
|
2022-09-09 17:06:23 +00:00
|
|
|
|
from core.admin.services import BotAdminService
|
2022-10-30 08:46:07 +00:00
|
|
|
|
from core.base.redisdb import RedisDB
|
2022-09-08 01:08:37 +00:00
|
|
|
|
from core.baseplugin import BasePlugin
|
2022-10-30 08:46:07 +00:00
|
|
|
|
from core.bot import bot
|
2022-10-10 05:34:06 +00:00
|
|
|
|
from core.config import config
|
2022-09-08 01:08:37 +00:00
|
|
|
|
from core.cookies.error import CookiesNotFoundError
|
2022-08-06 12:37:41 +00:00
|
|
|
|
from core.cookies.services import CookiesService
|
2022-09-08 01:08:37 +00:00
|
|
|
|
from core.plugin import Plugin, handler
|
2022-08-06 12:37:41 +00:00
|
|
|
|
from core.sign.models import Sign as SignUser, SignStatusEnum
|
|
|
|
|
from core.sign.services import SignServices
|
2022-09-08 01:08:37 +00:00
|
|
|
|
from core.user.error import UserNotFoundError
|
2022-08-06 12:37:41 +00:00
|
|
|
|
from core.user.services import UserService
|
2022-08-06 07:21:18 +00:00
|
|
|
|
from utils.bot import get_all_args
|
2022-07-31 05:25:02 +00:00
|
|
|
|
from utils.decorators.error import error_callable
|
|
|
|
|
from utils.decorators.restricts import restricts
|
|
|
|
|
from utils.helpers import get_genshin_client
|
2022-09-08 01:08:37 +00:00
|
|
|
|
from utils.log import logger
|
2022-07-31 05:25:02 +00:00
|
|
|
|
|
|
|
|
|
|
2022-10-30 13:35:53 +00:00
|
|
|
|
class NeedChallenge(Exception):
|
|
|
|
|
def __init__(self, uid: int, gt: str = "", challenge: str = ""):
|
|
|
|
|
super().__init__()
|
|
|
|
|
self.uid = uid
|
|
|
|
|
self.gt = gt
|
|
|
|
|
self.challenge = challenge
|
2022-10-30 08:46:07 +00:00
|
|
|
|
|
2022-10-30 13:35:53 +00:00
|
|
|
|
|
|
|
|
|
class SignSystem:
|
|
|
|
|
def __init__(self, redis: RedisDB):
|
|
|
|
|
self.cache = redis.client
|
|
|
|
|
self.qname = "plugin:sign:"
|
|
|
|
|
|
|
|
|
|
async def get_challenge(self, uid: int) -> Tuple[Optional[str], Optional[str]]:
|
|
|
|
|
data = await self.cache.get(f"{self.qname}{uid}")
|
2022-10-30 11:37:57 +00:00
|
|
|
|
if not data:
|
|
|
|
|
return None, None
|
|
|
|
|
data = data.decode("utf-8").split("|")
|
|
|
|
|
return data[0], data[1]
|
2022-10-30 08:46:07 +00:00
|
|
|
|
|
2022-10-30 13:35:53 +00:00
|
|
|
|
async def set_challenge(self, uid: int, gt: str, challenge: str):
|
|
|
|
|
await self.cache.set(f"{self.qname}{uid}", f"{gt}|{challenge}")
|
|
|
|
|
await self.cache.expire(f"{self.qname}{uid}", 10 * 60)
|
2022-10-30 08:46:07 +00:00
|
|
|
|
|
2022-10-30 13:35:53 +00:00
|
|
|
|
async def gen_challenge_header(self, uid: int, validate: str) -> Optional[Dict]:
|
|
|
|
|
_, challenge = await self.get_challenge(uid)
|
|
|
|
|
if not challenge or not validate:
|
|
|
|
|
return
|
|
|
|
|
return {
|
|
|
|
|
"x-rpc-challenge": challenge,
|
|
|
|
|
"x-rpc-validate": validate,
|
|
|
|
|
"x-rpc-seccode": f"{validate}|jordan",
|
|
|
|
|
}
|
2022-07-31 05:25:02 +00:00
|
|
|
|
|
2022-11-12 13:38:28 +00:00
|
|
|
|
async def get_challenge_button(
|
|
|
|
|
self, uid: int, user_id: int, gt: Optional[str] = None, challenge: Optional[str] = None,
|
|
|
|
|
callback: bool = True
|
2022-10-30 13:35:53 +00:00
|
|
|
|
) -> Optional[InlineKeyboardMarkup]:
|
|
|
|
|
if not config.pass_challenge_user_web:
|
|
|
|
|
return None
|
2022-11-12 13:38:28 +00:00
|
|
|
|
if not challenge or not gt:
|
|
|
|
|
gt, challenge = await self.get_challenge(uid)
|
|
|
|
|
if not challenge or not gt:
|
|
|
|
|
return None
|
|
|
|
|
if callback:
|
2022-10-30 13:35:53 +00:00
|
|
|
|
await self.set_challenge(uid, gt, challenge)
|
|
|
|
|
data = f"sign|{user_id}|{uid}"
|
|
|
|
|
return InlineKeyboardMarkup([[InlineKeyboardButton("请尽快点我进行手动验证", callback_data=data)]])
|
2022-11-12 13:38:28 +00:00
|
|
|
|
else:
|
|
|
|
|
url = f"{config.pass_challenge_user_web}?username={bot.app.bot.username}>={gt}&challenge={challenge}&uid={uid}"
|
|
|
|
|
return InlineKeyboardMarkup([[InlineKeyboardButton("请尽快点我进行手动验证", url=url)]])
|
2022-07-31 08:17:27 +00:00
|
|
|
|
|
2022-10-10 05:34:06 +00:00
|
|
|
|
@staticmethod
|
|
|
|
|
async def pass_challenge(gt: str, challenge: str, referer: str = None) -> Optional[Dict]:
|
2022-10-10 07:46:39 +00:00
|
|
|
|
"""尝试自动通过验证,感谢项目 AutoMihoyoBBS 的贡献者 和 @coolxitech 大佬提供的方案
|
|
|
|
|
|
|
|
|
|
https://github.com/Womsxd/AutoMihoyoBBS
|
2022-10-10 05:34:06 +00:00
|
|
|
|
|
|
|
|
|
https://github.com/coolxitech/mihoyo
|
|
|
|
|
"""
|
|
|
|
|
if not gt or not challenge:
|
|
|
|
|
return None
|
|
|
|
|
if not referer:
|
|
|
|
|
referer = (
|
|
|
|
|
"https://webstatic.mihoyo.com/bbs/event/signin-ys/index.html?"
|
|
|
|
|
"bbs_auth_required=true&act_id=e202009291139501&utm_source=bbs&utm_medium=mys&utm_campaign=icon"
|
|
|
|
|
)
|
|
|
|
|
header = {
|
|
|
|
|
"Accept": "*/*",
|
|
|
|
|
"X-Requested-With": "com.mihoyo.hyperion",
|
|
|
|
|
"User-Agent": "Mozilla/5.0 (Linux; Android 12; Unspecified Device) AppleWebKit/537.36 (KHTML, like Gecko) "
|
2022-11-12 13:38:28 +00:00
|
|
|
|
"Version/4.0 Chrome/103.0.5060.129 Mobile Safari/537.36 miHoYoBBS/2.37.1",
|
2022-10-10 05:34:06 +00:00
|
|
|
|
"Referer": referer,
|
|
|
|
|
"Accept-Language": "zh-CN,zh;q=0.9,en-US;q=0.8,en;q=0.7",
|
|
|
|
|
}
|
|
|
|
|
# ajax auto pass
|
2022-10-10 07:46:39 +00:00
|
|
|
|
try:
|
|
|
|
|
async with AsyncClient() as client:
|
2022-10-10 05:34:06 +00:00
|
|
|
|
# gt={gt}&challenge={challenge}&lang=zh-cn&pt=3
|
|
|
|
|
# client_type=web_mobile&callback=geetest_{int(time.time() * 1000)}
|
|
|
|
|
req = await client.get(
|
|
|
|
|
"https://api.geetest.com/ajax.php",
|
|
|
|
|
params={
|
|
|
|
|
"gt": gt,
|
|
|
|
|
"challenge": challenge,
|
|
|
|
|
"lang": "zh-cn",
|
|
|
|
|
"pt": 3,
|
|
|
|
|
"client_type": "web_mobile",
|
|
|
|
|
"callback": f"geetest_{int(time.time() * 1000)}",
|
|
|
|
|
},
|
|
|
|
|
headers=header,
|
2022-10-12 03:45:06 +00:00
|
|
|
|
timeout=30,
|
2022-10-10 05:34:06 +00:00
|
|
|
|
)
|
2022-10-10 07:46:39 +00:00
|
|
|
|
text = req.text
|
|
|
|
|
logger.debug(f"ajax 返回:{text}")
|
|
|
|
|
if req.status_code != 200:
|
|
|
|
|
raise RuntimeError
|
|
|
|
|
text = re.findall(r"^.*?\((\{.*?)\)$", text)[0]
|
|
|
|
|
data = json.loads(text)
|
|
|
|
|
if "success" in data["status"] and "success" in data["data"]["result"]:
|
2022-10-12 03:45:06 +00:00
|
|
|
|
logger.info("签到 ajax 请求成功")
|
2022-10-10 07:46:39 +00:00
|
|
|
|
return {
|
|
|
|
|
"x-rpc-challenge": challenge,
|
|
|
|
|
"x-rpc-validate": data["data"]["validate"],
|
|
|
|
|
"x-rpc-seccode": f'{data["data"]["validate"]}|jordan',
|
|
|
|
|
}
|
|
|
|
|
except JSONDecodeError:
|
2022-10-11 04:00:55 +00:00
|
|
|
|
logger.warning("签到 ajax 请求 JSON 解析失败")
|
2022-10-12 03:45:06 +00:00
|
|
|
|
except TimeoutException as exc:
|
2022-10-11 04:00:55 +00:00
|
|
|
|
logger.warning("签到 ajax 请求超时")
|
2022-10-12 03:45:06 +00:00
|
|
|
|
if not config.pass_challenge_api:
|
|
|
|
|
raise exc
|
2022-10-10 07:46:39 +00:00
|
|
|
|
except (KeyError, IndexError):
|
2022-10-11 04:00:55 +00:00
|
|
|
|
logger.warning("签到 ajax 请求数据错误")
|
2022-10-10 07:46:39 +00:00
|
|
|
|
except RuntimeError:
|
2022-10-11 04:00:55 +00:00
|
|
|
|
logger.warning("签到 ajax 请求错误")
|
|
|
|
|
logger.warning("签到 ajax 请求失败")
|
2022-10-10 05:34:06 +00:00
|
|
|
|
if not config.pass_challenge_api:
|
|
|
|
|
return None
|
|
|
|
|
pass_challenge_params = {
|
|
|
|
|
"gt": gt,
|
|
|
|
|
"challenge": challenge,
|
|
|
|
|
"referer": referer,
|
|
|
|
|
}
|
|
|
|
|
if config.pass_challenge_app_key:
|
|
|
|
|
pass_challenge_params["appkey"] = config.pass_challenge_app_key
|
|
|
|
|
# custom api auto pass
|
2022-10-10 07:46:39 +00:00
|
|
|
|
try:
|
|
|
|
|
async with AsyncClient() as client:
|
2022-10-10 05:34:06 +00:00
|
|
|
|
resp = await client.post(
|
|
|
|
|
config.pass_challenge_api,
|
|
|
|
|
params=pass_challenge_params,
|
2022-10-12 03:45:06 +00:00
|
|
|
|
timeout=60,
|
2022-10-10 05:34:06 +00:00
|
|
|
|
)
|
2022-10-12 03:45:06 +00:00
|
|
|
|
logger.debug(f"签到 recognize 请求返回:{resp.text}")
|
2022-10-10 07:46:39 +00:00
|
|
|
|
data = resp.json()
|
|
|
|
|
status = data.get("status")
|
2022-10-11 04:00:55 +00:00
|
|
|
|
if status is not None and status != 0:
|
2022-10-12 03:45:06 +00:00
|
|
|
|
logger.error(f"签到 recognize 请求解析错误:{data.get('msg')}")
|
2022-10-10 07:46:39 +00:00
|
|
|
|
if data.get("code", 0) != 0:
|
|
|
|
|
raise RuntimeError
|
2022-10-12 03:45:06 +00:00
|
|
|
|
logger.info("签到 recognize 请求 解析成功")
|
2022-10-10 07:46:39 +00:00
|
|
|
|
return {
|
|
|
|
|
"x-rpc-challenge": data["data"]["challenge"],
|
|
|
|
|
"x-rpc-validate": data["data"]["validate"],
|
|
|
|
|
"x-rpc-seccode": f'{data["data"]["validate"]}|jordan',
|
|
|
|
|
}
|
|
|
|
|
except JSONDecodeError:
|
2022-10-12 03:45:06 +00:00
|
|
|
|
logger.warning("签到 recognize 请求 JSON 解析失败")
|
|
|
|
|
except TimeoutException as exc:
|
|
|
|
|
logger.warning("签到 recognize 请求超时")
|
|
|
|
|
raise exc
|
2022-10-10 07:46:39 +00:00
|
|
|
|
except KeyError:
|
2022-10-12 03:45:06 +00:00
|
|
|
|
logger.warning("签到 recognize 请求数据错误")
|
2022-10-10 07:46:39 +00:00
|
|
|
|
except RuntimeError:
|
2022-10-12 03:45:06 +00:00
|
|
|
|
logger.warning("签到 recognize 请求失败")
|
2022-10-10 05:34:06 +00:00
|
|
|
|
return None
|
|
|
|
|
|
2022-10-30 11:37:57 +00:00
|
|
|
|
async def start_sign(
|
2022-10-30 13:35:53 +00:00
|
|
|
|
self,
|
|
|
|
|
client: Client,
|
|
|
|
|
headers: Optional[Dict] = None,
|
|
|
|
|
is_sleep: bool = False,
|
|
|
|
|
is_raise: bool = False,
|
|
|
|
|
title: Optional[str] = "签到结果",
|
|
|
|
|
) -> str:
|
|
|
|
|
if is_sleep:
|
|
|
|
|
if recognize_genshin_server(client.uid) in ("cn_gf01", "cn_qd01"):
|
|
|
|
|
await asyncio.sleep(random.randint(10, 300)) # nosec
|
|
|
|
|
else:
|
|
|
|
|
await asyncio.sleep(random.randint(0, 3)) # nosec
|
2022-07-31 05:25:02 +00:00
|
|
|
|
try:
|
|
|
|
|
rewards = await client.get_monthly_rewards(game=Game.GENSHIN, lang="zh-cn")
|
|
|
|
|
except GenshinException as error:
|
2022-09-20 06:46:06 +00:00
|
|
|
|
logger.warning(f"UID {client.uid} 获取签到信息失败,API返回信息为 {str(error)}")
|
2022-10-30 13:35:53 +00:00
|
|
|
|
if is_raise:
|
|
|
|
|
raise error
|
|
|
|
|
return f"获取签到信息失败,API返回信息为 {str(error)}"
|
2022-07-31 05:25:02 +00:00
|
|
|
|
try:
|
|
|
|
|
daily_reward_info = await client.get_reward_info(game=Game.GENSHIN, lang="zh-cn") # 获取签到信息失败
|
|
|
|
|
except GenshinException as error:
|
2022-09-20 06:46:06 +00:00
|
|
|
|
logger.warning(f"UID {client.uid} 获取签到状态失败,API返回信息为 {str(error)}")
|
2022-10-30 13:35:53 +00:00
|
|
|
|
if is_raise:
|
|
|
|
|
raise error
|
|
|
|
|
return f"获取签到状态失败,API返回信息为 {str(error)}"
|
2022-07-31 05:25:02 +00:00
|
|
|
|
if not daily_reward_info.signed_in:
|
|
|
|
|
try:
|
2022-10-10 05:34:06 +00:00
|
|
|
|
request_daily_reward = await client.request_daily_reward(
|
2022-10-30 08:46:07 +00:00
|
|
|
|
"sign",
|
|
|
|
|
method="POST",
|
|
|
|
|
game=Game.GENSHIN,
|
|
|
|
|
lang="zh-cn",
|
|
|
|
|
headers=headers,
|
2022-10-10 05:34:06 +00:00
|
|
|
|
)
|
2022-08-12 05:55:12 +00:00
|
|
|
|
if request_daily_reward and request_daily_reward.get("success", 0) == 1:
|
2022-10-30 13:35:53 +00:00
|
|
|
|
# 尝试通过 ajax 请求绕过签到
|
|
|
|
|
headers = await self.pass_challenge(
|
2022-10-10 05:34:06 +00:00
|
|
|
|
request_daily_reward.get("gt", ""),
|
|
|
|
|
request_daily_reward.get("challenge", ""),
|
|
|
|
|
)
|
|
|
|
|
request_daily_reward = await client.request_daily_reward(
|
|
|
|
|
"sign",
|
|
|
|
|
method="POST",
|
|
|
|
|
game=Game.GENSHIN,
|
|
|
|
|
lang="zh-cn",
|
|
|
|
|
headers=headers,
|
|
|
|
|
)
|
|
|
|
|
if request_daily_reward and request_daily_reward.get("success", 0) == 1:
|
2022-10-30 13:35:53 +00:00
|
|
|
|
# 如果绕过失败 抛出异常 相关信息写入
|
|
|
|
|
raise NeedChallenge(
|
|
|
|
|
uid=client.uid,
|
|
|
|
|
gt=request_daily_reward.get("gt", ""),
|
|
|
|
|
challenge=request_daily_reward.get("challenge", ""),
|
2022-10-30 08:46:07 +00:00
|
|
|
|
)
|
2022-10-11 04:00:55 +00:00
|
|
|
|
logger.info(f"UID {client.uid} 签到成功")
|
2022-10-30 13:35:53 +00:00
|
|
|
|
except TimeoutException as error:
|
|
|
|
|
if is_raise:
|
|
|
|
|
raise error
|
|
|
|
|
return "签到失败了呜呜呜 ~ 服务器连接超时 服务器熟啦 ~ "
|
|
|
|
|
except AlreadyClaimed as error:
|
2022-09-20 06:46:06 +00:00
|
|
|
|
logger.info(f"UID {client.uid} 已经签到")
|
2022-10-30 13:35:53 +00:00
|
|
|
|
if is_raise:
|
|
|
|
|
raise error
|
2022-07-31 05:25:02 +00:00
|
|
|
|
result = "今天旅行者已经签到过了~"
|
|
|
|
|
except GenshinException as error:
|
2022-09-20 06:46:06 +00:00
|
|
|
|
logger.warning(f"UID {client.uid} 签到失败,API返回信息为 {str(error)}")
|
2022-10-30 13:35:53 +00:00
|
|
|
|
if is_raise:
|
|
|
|
|
raise error
|
|
|
|
|
return f"获取签到状态失败,API返回信息为 {str(error)}"
|
2022-07-31 05:25:02 +00:00
|
|
|
|
else:
|
2022-09-20 06:46:06 +00:00
|
|
|
|
logger.info(f"UID {client.uid} 签到成功")
|
2022-07-31 05:25:02 +00:00
|
|
|
|
result = "OK"
|
|
|
|
|
else:
|
2022-09-20 06:46:06 +00:00
|
|
|
|
logger.info(f"UID {client.uid} 已经签到")
|
2022-07-31 05:25:02 +00:00
|
|
|
|
result = "今天旅行者已经签到过了~"
|
2022-09-08 01:08:37 +00:00
|
|
|
|
logger.info(f"UID {client.uid} 签到结果 {result}")
|
2022-07-31 05:25:02 +00:00
|
|
|
|
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
|
2022-10-10 05:34:06 +00:00
|
|
|
|
message = (
|
2022-10-30 13:35:53 +00:00
|
|
|
|
f"#### {title} ####\n"
|
|
|
|
|
f"时间:{today} (UTC+8)\n"
|
2022-10-10 05:34:06 +00:00
|
|
|
|
f"UID: {client.uid}\n"
|
|
|
|
|
f"今日奖励: {reward.name} × {reward.amount}\n"
|
|
|
|
|
f"本月漏签次数:{missed_days}\n"
|
|
|
|
|
f"签到结果: {result}"
|
|
|
|
|
)
|
2022-10-30 13:35:53 +00:00
|
|
|
|
return message
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class Sign(Plugin, BasePlugin):
|
|
|
|
|
"""每日签到"""
|
|
|
|
|
|
|
|
|
|
CHECK_SERVER, COMMAND_RESULT = range(10400, 10402)
|
|
|
|
|
|
|
|
|
|
def __init__(
|
|
|
|
|
self,
|
|
|
|
|
redis: RedisDB = None,
|
|
|
|
|
user_service: UserService = None,
|
|
|
|
|
cookies_service: CookiesService = None,
|
|
|
|
|
sign_service: SignServices = None,
|
|
|
|
|
bot_admin_service: BotAdminService = None,
|
|
|
|
|
):
|
|
|
|
|
self.bot_admin_service = bot_admin_service
|
|
|
|
|
self.cookies_service = cookies_service
|
|
|
|
|
self.user_service = user_service
|
|
|
|
|
self.sign_service = sign_service
|
|
|
|
|
self.system = SignSystem(redis)
|
2022-07-31 05:25:02 +00:00
|
|
|
|
|
2022-08-06 07:21:18 +00:00
|
|
|
|
async def _process_auto_sign(self, user_id: int, chat_id: int, method: str) -> str:
|
|
|
|
|
try:
|
2022-09-08 01:08:37 +00:00
|
|
|
|
await get_genshin_client(user_id)
|
|
|
|
|
except (UserNotFoundError, CookiesNotFoundError):
|
2022-08-06 07:21:18 +00:00
|
|
|
|
return "未查询到账号信息,请先私聊派蒙绑定账号"
|
|
|
|
|
user: SignUser = await self.sign_service.get_by_user_id(user_id)
|
|
|
|
|
if user:
|
|
|
|
|
if method == "关闭":
|
|
|
|
|
await self.sign_service.remove(user)
|
|
|
|
|
return "关闭自动签到成功"
|
|
|
|
|
elif method == "开启":
|
|
|
|
|
if user.chat_id == chat_id:
|
|
|
|
|
return "自动签到已经开启过了"
|
|
|
|
|
user.chat_id = chat_id
|
2022-10-12 13:22:41 +00:00
|
|
|
|
user.status = SignStatusEnum.STATUS_SUCCESS
|
2022-08-06 07:21:18 +00:00
|
|
|
|
await self.sign_service.update(user)
|
|
|
|
|
return "修改自动签到通知对话成功"
|
|
|
|
|
elif method == "关闭":
|
|
|
|
|
return "您还没有开启自动签到"
|
|
|
|
|
elif method == "开启":
|
2022-10-10 05:34:06 +00:00
|
|
|
|
user = SignUser(
|
|
|
|
|
user_id=user_id,
|
|
|
|
|
chat_id=chat_id,
|
|
|
|
|
time_created=datetime.datetime.now(),
|
|
|
|
|
status=SignStatusEnum.STATUS_SUCCESS,
|
|
|
|
|
)
|
2022-08-06 07:21:18 +00:00
|
|
|
|
await self.sign_service.add(user)
|
|
|
|
|
return "开启自动签到成功"
|
|
|
|
|
|
2022-09-08 01:08:37 +00:00
|
|
|
|
@handler(CommandHandler, command="sign", block=False)
|
|
|
|
|
@handler(MessageHandler, filters=filters.Regex("^每日签到(.*)"), block=False)
|
|
|
|
|
@restricts()
|
2022-07-31 05:25:02 +00:00
|
|
|
|
@error_callable
|
|
|
|
|
async def command_start(self, update: Update, context: CallbackContext) -> None:
|
|
|
|
|
user = update.effective_user
|
2022-09-08 01:08:37 +00:00
|
|
|
|
message = update.effective_message
|
2022-08-06 07:21:18 +00:00
|
|
|
|
args = get_all_args(context)
|
2022-10-30 13:35:53 +00:00
|
|
|
|
validate: Optional[str] = None
|
2022-08-06 07:21:18 +00:00
|
|
|
|
if len(args) >= 1:
|
|
|
|
|
msg = None
|
|
|
|
|
if args[0] == "开启自动签到":
|
2022-09-09 17:06:23 +00:00
|
|
|
|
admin_list = await self.bot_admin_service.get_admin_list()
|
|
|
|
|
if user.id in admin_list:
|
|
|
|
|
msg = await self._process_auto_sign(user.id, message.chat_id, "开启")
|
|
|
|
|
else:
|
|
|
|
|
msg = await self._process_auto_sign(user.id, user.id, "开启")
|
2022-08-06 07:21:18 +00:00
|
|
|
|
elif args[0] == "关闭自动签到":
|
|
|
|
|
msg = await self._process_auto_sign(user.id, message.chat_id, "关闭")
|
2022-10-30 08:46:07 +00:00
|
|
|
|
else:
|
|
|
|
|
validate = args[0]
|
2022-08-06 07:21:18 +00:00
|
|
|
|
if msg:
|
2022-09-08 01:08:37 +00:00
|
|
|
|
logger.info(f"用户 {user.full_name}[{user.id}] 自动签到命令请求 || 参数 {args[0]}")
|
2022-08-06 07:21:18 +00:00
|
|
|
|
reply_message = await message.reply_text(msg)
|
|
|
|
|
if filters.ChatType.GROUPS.filter(message):
|
|
|
|
|
self._add_delete_message_job(context, reply_message.chat_id, reply_message.message_id, 30)
|
|
|
|
|
self._add_delete_message_job(context, message.chat_id, message.message_id, 30)
|
|
|
|
|
return
|
2022-09-08 01:08:37 +00:00
|
|
|
|
logger.info(f"用户 {user.full_name}[{user.id}] 每日签到命令请求")
|
2022-07-31 05:25:02 +00:00
|
|
|
|
if filters.ChatType.GROUPS.filter(message):
|
|
|
|
|
self._add_delete_message_job(context, message.chat_id, message.message_id)
|
|
|
|
|
try:
|
2022-09-08 01:08:37 +00:00
|
|
|
|
client = await get_genshin_client(user.id)
|
2022-10-10 05:34:06 +00:00
|
|
|
|
await message.reply_chat_action(ChatAction.TYPING)
|
2022-10-30 13:35:53 +00:00
|
|
|
|
headers = await self.system.gen_challenge_header(client.uid, validate)
|
|
|
|
|
sign_text = await self.system.start_sign(client, headers)
|
|
|
|
|
reply_message = await message.reply_text(sign_text, allow_sending_without_reply=True)
|
2022-07-31 05:25:02 +00:00
|
|
|
|
if filters.ChatType.GROUPS.filter(reply_message):
|
|
|
|
|
self._add_delete_message_job(context, reply_message.chat_id, reply_message.message_id)
|
2022-09-08 01:08:37 +00:00
|
|
|
|
except (UserNotFoundError, CookiesNotFoundError):
|
2022-10-22 13:54:04 +00:00
|
|
|
|
buttons = [[InlineKeyboardButton("点我绑定账号", url=f"https://t.me/{context.bot.username}?start=set_cookie")]]
|
2022-07-31 05:25:02 +00:00
|
|
|
|
if filters.ChatType.GROUPS.filter(message):
|
2022-10-12 09:35:59 +00:00
|
|
|
|
reply_message = await message.reply_text(
|
|
|
|
|
"未查询到您所绑定的账号信息,请先私聊派蒙绑定账号", reply_markup=InlineKeyboardMarkup(buttons)
|
|
|
|
|
)
|
2022-07-31 05:25:02 +00:00
|
|
|
|
self._add_delete_message_job(context, reply_message.chat_id, reply_message.message_id, 30)
|
2022-10-12 09:35:59 +00:00
|
|
|
|
|
2022-07-31 05:25:02 +00:00
|
|
|
|
self._add_delete_message_job(context, message.chat_id, message.message_id, 30)
|
2022-10-12 09:35:59 +00:00
|
|
|
|
else:
|
2022-10-22 13:54:04 +00:00
|
|
|
|
await message.reply_text("未查询到您所绑定的账号信息,请先绑定账号", reply_markup=InlineKeyboardMarkup(buttons))
|
2022-10-30 13:35:53 +00:00
|
|
|
|
except NeedChallenge as exc:
|
2022-11-12 13:38:28 +00:00
|
|
|
|
button = await self.system.get_challenge_button(
|
2022-10-30 13:35:53 +00:00
|
|
|
|
exc.uid,
|
|
|
|
|
user.id,
|
|
|
|
|
exc.gt,
|
|
|
|
|
exc.challenge,
|
2022-11-12 13:38:28 +00:00
|
|
|
|
not filters.ChatType.PRIVATE.filter(message)
|
2022-10-30 13:35:53 +00:00
|
|
|
|
)
|
|
|
|
|
reply_message = await message.reply_text(
|
|
|
|
|
f"UID {exc.uid} 签到失败,触发验证码风控,请尝试点击下方按钮重新签到", allow_sending_without_reply=True, reply_markup=button
|
|
|
|
|
)
|
|
|
|
|
if filters.ChatType.GROUPS.filter(reply_message):
|
|
|
|
|
self._add_delete_message_job(context, reply_message.chat_id, reply_message.message_id)
|
2022-10-30 11:37:57 +00:00
|
|
|
|
|
|
|
|
|
@handler(CallbackQueryHandler, pattern=r"^sign\|", block=False)
|
|
|
|
|
@restricts(restricts_time_of_groups=20, without_overlapping=True)
|
|
|
|
|
@error_callable
|
|
|
|
|
async def sign_gen_link(self, update: Update, _: CallbackContext) -> None:
|
|
|
|
|
callback_query = update.callback_query
|
|
|
|
|
user = callback_query.from_user
|
|
|
|
|
|
|
|
|
|
async def get_sign_callback(callback_query_data: str) -> Tuple[int, int]:
|
|
|
|
|
_data = callback_query_data.split("|")
|
|
|
|
|
_user_id = int(_data[1])
|
|
|
|
|
_uid = int(_data[2])
|
2022-10-30 13:35:53 +00:00
|
|
|
|
logger.debug(f"get_sign_callback 函数返回 user_id[{_user_id}] uid[{_uid}]")
|
2022-10-30 11:37:57 +00:00
|
|
|
|
return _user_id, _uid
|
|
|
|
|
|
|
|
|
|
user_id, uid = await get_sign_callback(callback_query.data)
|
|
|
|
|
if user.id != user_id:
|
2022-10-30 13:41:52 +00:00
|
|
|
|
await callback_query.answer(text="这不是你的按钮!\n" "再乱点再按我叫西风骑士团、千岩军、天领奉行和教令院了!", show_alert=True)
|
2022-10-30 11:37:57 +00:00
|
|
|
|
return
|
2022-10-30 13:35:53 +00:00
|
|
|
|
_, challenge = await self.system.get_challenge(uid)
|
2022-10-30 11:37:57 +00:00
|
|
|
|
if not challenge:
|
|
|
|
|
await callback_query.answer(text="验证请求已经过期,请重新发起签到!", show_alert=True)
|
|
|
|
|
return
|
|
|
|
|
url = f"t.me/{bot.app.bot.username}?start=sign"
|
|
|
|
|
await callback_query.answer(url=url)
|