2022-07-31 05:25:02 +00:00
|
|
|
|
import datetime
|
|
|
|
|
import time
|
|
|
|
|
|
|
|
|
|
from genshin import Game, GenshinException, AlreadyClaimed, Client
|
|
|
|
|
from telegram import Update
|
2022-09-08 01:08:37 +00:00
|
|
|
|
from telegram.ext import CommandHandler, CallbackContext
|
|
|
|
|
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-09-08 01:08:37 +00:00
|
|
|
|
from core.baseplugin import BasePlugin
|
|
|
|
|
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-09-08 01:08:37 +00:00
|
|
|
|
class Sign(Plugin, BasePlugin):
|
2022-07-31 05:25:02 +00:00
|
|
|
|
"""每日签到"""
|
|
|
|
|
|
|
|
|
|
CHECK_SERVER, COMMAND_RESULT = range(10400, 10402)
|
|
|
|
|
|
2022-08-06 07:21:18 +00:00
|
|
|
|
def __init__(self, user_service: UserService = None, cookies_service: CookiesService = None,
|
2022-09-09 17:06:23 +00:00
|
|
|
|
sign_service: SignServices = None, bot_admin_service: BotAdminService = None):
|
|
|
|
|
self.bot_admin_service = bot_admin_service
|
2022-07-31 08:17:27 +00:00
|
|
|
|
self.cookies_service = cookies_service
|
|
|
|
|
self.user_service = user_service
|
2022-08-06 07:21:18 +00:00
|
|
|
|
self.sign_service = sign_service
|
2022-07-31 08:17:27 +00:00
|
|
|
|
|
2022-07-31 05:25:02 +00:00
|
|
|
|
@staticmethod
|
|
|
|
|
async def _start_sign(client: Client) -> str:
|
|
|
|
|
try:
|
|
|
|
|
rewards = await client.get_monthly_rewards(game=Game.GENSHIN, lang="zh-cn")
|
|
|
|
|
except GenshinException as error:
|
2022-09-08 01:08:37 +00:00
|
|
|
|
logger.error(f"UID {client.uid} 获取签到信息失败,API返回信息为 {str(error)}")
|
2022-07-31 05:25:02 +00:00
|
|
|
|
return f"获取签到信息失败,API返回信息为 {str(error)}"
|
|
|
|
|
try:
|
|
|
|
|
daily_reward_info = await client.get_reward_info(game=Game.GENSHIN, lang="zh-cn") # 获取签到信息失败
|
|
|
|
|
except GenshinException as error:
|
2022-09-08 01:08:37 +00:00
|
|
|
|
logger.error(f"UID {client.uid} 获取签到状态失败,API返回信息为 {str(error)}")
|
2022-07-31 05:25:02 +00:00
|
|
|
|
return f"获取签到状态失败,API返回信息为 {str(error)}"
|
|
|
|
|
if not daily_reward_info.signed_in:
|
|
|
|
|
try:
|
|
|
|
|
request_daily_reward = await client.request_daily_reward("sign", method="POST",
|
|
|
|
|
game=Game.GENSHIN, lang="zh-cn")
|
2022-09-08 01:08:37 +00:00
|
|
|
|
logger.info(f"UID {client.uid} 签到请求 {request_daily_reward}")
|
2022-08-12 05:55:12 +00:00
|
|
|
|
if request_daily_reward and request_daily_reward.get("success", 0) == 1:
|
2022-09-08 01:08:37 +00:00
|
|
|
|
logger.warning(f"UID {client.uid} 签到失败,触发验证码风控")
|
2022-08-12 05:55:12 +00:00
|
|
|
|
return f"UID {client.uid} 签到失败,触发验证码风控,请尝试重新签到。"
|
2022-07-31 05:25:02 +00:00
|
|
|
|
except AlreadyClaimed:
|
|
|
|
|
result = "今天旅行者已经签到过了~"
|
|
|
|
|
except GenshinException as error:
|
2022-09-08 01:08:37 +00:00
|
|
|
|
logger.error(f"UID {client.uid} 签到失败,API返回信息为 {str(error)}")
|
2022-07-31 05:25:02 +00:00
|
|
|
|
return f"获取签到状态失败,API返回信息为 {str(error)}"
|
|
|
|
|
else:
|
|
|
|
|
result = "OK"
|
|
|
|
|
else:
|
|
|
|
|
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
|
|
|
|
|
message = f"#### {today} (UTC+8) ####\n" \
|
|
|
|
|
f"UID: {client.uid}\n" \
|
|
|
|
|
f"今日奖励: {reward.name} × {reward.amount}\n" \
|
|
|
|
|
f"本月漏签次数:{missed_days}\n" \
|
|
|
|
|
f"签到结果: {result}"
|
|
|
|
|
return message
|
|
|
|
|
|
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
|
|
|
|
|
await self.sign_service.update(user)
|
|
|
|
|
return "修改自动签到通知对话成功"
|
|
|
|
|
elif method == "关闭":
|
|
|
|
|
return "您还没有开启自动签到"
|
|
|
|
|
elif method == "开启":
|
2022-09-02 07:32:17 +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)
|
|
|
|
|
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, "关闭")
|
|
|
|
|
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-07-31 05:25:02 +00:00
|
|
|
|
sign_text = await self._start_sign(client)
|
|
|
|
|
reply_message = await message.reply_text(sign_text, allow_sending_without_reply=True)
|
|
|
|
|
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-07-31 05:25:02 +00:00
|
|
|
|
reply_message = await message.reply_text("未查询到账号信息,请先私聊派蒙绑定账号")
|
|
|
|
|
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
|