2022-10-30 13:35:53 +00:00
|
|
|
|
from telegram import Update, ReplyKeyboardRemove, Message, User
|
2022-10-30 08:46:07 +00:00
|
|
|
|
from telegram.constants import ChatAction
|
2022-09-08 01:08:37 +00:00
|
|
|
|
from telegram.ext import CallbackContext, CommandHandler
|
2022-07-26 10:07:31 +00:00
|
|
|
|
from telegram.helpers import escape_markdown
|
|
|
|
|
|
2022-10-30 13:35:53 +00:00
|
|
|
|
from core.base.redisdb import RedisDB
|
2022-11-12 12:59:42 +00:00
|
|
|
|
from core.cookies import CookiesService
|
2022-10-30 08:46:07 +00:00
|
|
|
|
from core.cookies.error import CookiesNotFoundError
|
2022-09-08 01:08:37 +00:00
|
|
|
|
from core.plugin import handler, Plugin
|
2022-11-12 12:59:42 +00:00
|
|
|
|
from core.user import UserService
|
2022-10-30 08:46:07 +00:00
|
|
|
|
from core.user.error import UserNotFoundError
|
2022-11-12 12:59:42 +00:00
|
|
|
|
from modules.apihelper.hyperion import Verification
|
2022-10-30 13:35:53 +00:00
|
|
|
|
from plugins.genshin.sign import SignSystem, NeedChallenge
|
2022-11-12 12:59:42 +00:00
|
|
|
|
from plugins.genshin.verification import VerificationSystem
|
2022-07-26 10:07:31 +00:00
|
|
|
|
from utils.decorators.restricts import restricts
|
2022-10-30 08:46:07 +00:00
|
|
|
|
from utils.helpers import get_genshin_client
|
2022-10-30 13:35:53 +00:00
|
|
|
|
from utils.log import logger
|
2022-11-12 12:59:42 +00:00
|
|
|
|
from utils.models.base import RegionEnum
|
2022-07-26 10:07:31 +00:00
|
|
|
|
|
|
|
|
|
|
2022-09-08 01:08:37 +00:00
|
|
|
|
class StartPlugin(Plugin):
|
2022-11-12 12:59:42 +00:00
|
|
|
|
def __init__(self, user_service: UserService = None, cookies_service: CookiesService = None, redis: RedisDB = None):
|
|
|
|
|
self.cookies_service = cookies_service
|
|
|
|
|
self.user_service = user_service
|
2022-10-30 13:35:53 +00:00
|
|
|
|
self.sign_system = SignSystem(redis)
|
2022-11-12 12:59:42 +00:00
|
|
|
|
self.verification_system = VerificationSystem(redis)
|
2022-10-30 13:35:53 +00:00
|
|
|
|
|
2022-09-08 01:08:37 +00:00
|
|
|
|
@handler(CommandHandler, command="start", block=False)
|
|
|
|
|
@restricts()
|
|
|
|
|
async def start(self, update: Update, context: CallbackContext) -> None:
|
|
|
|
|
user = update.effective_user
|
|
|
|
|
message = update.effective_message
|
|
|
|
|
args = context.args
|
2022-10-12 09:35:59 +00:00
|
|
|
|
if args is not None and len(args) >= 1:
|
|
|
|
|
if args[0] == "inline_message":
|
|
|
|
|
await message.reply_markdown_v2(
|
|
|
|
|
f"你好 {user.mention_markdown_v2()} {escape_markdown('!我是派蒙 !')}\n"
|
|
|
|
|
f"{escape_markdown('发送 /help 命令即可查看命令帮助')}"
|
|
|
|
|
)
|
|
|
|
|
elif args[0] == "set_cookie":
|
|
|
|
|
await message.reply_markdown_v2(
|
|
|
|
|
f"你好 {user.mention_markdown_v2()} {escape_markdown('!我是派蒙 !')}\n"
|
|
|
|
|
f"{escape_markdown('发送 /setcookie 命令进入绑定账号流程')}"
|
|
|
|
|
)
|
|
|
|
|
elif args[0] == "set_uid":
|
|
|
|
|
await message.reply_markdown_v2(
|
|
|
|
|
f"你好 {user.mention_markdown_v2()} {escape_markdown('!我是派蒙 !')}\n"
|
|
|
|
|
f"{escape_markdown('发送 /setuid 或 /setcookie 命令进入绑定账号流程')}"
|
|
|
|
|
)
|
2022-11-12 12:59:42 +00:00
|
|
|
|
elif args[0] == "verify_verification":
|
|
|
|
|
await message.reply_markdown_v2(
|
|
|
|
|
f"你好 {user.mention_markdown_v2()} {escape_markdown('!我是派蒙 !')}\n"
|
|
|
|
|
f"{escape_markdown('发送 /verify 命令进入认证流程')}"
|
|
|
|
|
)
|
2022-10-30 11:37:57 +00:00
|
|
|
|
elif args[0] == "sign":
|
2022-10-30 13:35:53 +00:00
|
|
|
|
await self.gen_sign_button(message, user)
|
2022-10-30 08:46:07 +00:00
|
|
|
|
elif args[0].startswith("challenge_"):
|
2022-11-12 12:59:42 +00:00
|
|
|
|
_data = args[0].split("_")
|
|
|
|
|
_command = _data[1]
|
|
|
|
|
_challenge = _data[2]
|
|
|
|
|
if _command == "sign":
|
|
|
|
|
await self.process_sign_validate(message, user, _challenge)
|
|
|
|
|
elif _command == "verify":
|
|
|
|
|
await self.process_validate(message, user, _challenge)
|
2022-10-22 13:54:04 +00:00
|
|
|
|
else:
|
|
|
|
|
await message.reply_html(f"你好 {user.mention_html()} !我是派蒙 !\n请点击 /{args[0]} 命令进入对应流程")
|
|
|
|
|
return
|
2022-09-08 01:08:37 +00:00
|
|
|
|
await message.reply_markdown_v2(f"你好 {user.mention_markdown_v2()} {escape_markdown('!我是派蒙 !')}")
|
|
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
|
@restricts()
|
|
|
|
|
async def unknown_command(update: Update, _: CallbackContext) -> None:
|
|
|
|
|
await update.effective_message.reply_text("前面的区域,以后再来探索吧!")
|
|
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
|
@restricts()
|
|
|
|
|
async def emergency_food(update: Update, _: CallbackContext) -> None:
|
|
|
|
|
await update.effective_message.reply_text("派蒙才不是应急食品!")
|
|
|
|
|
|
|
|
|
|
@handler(CommandHandler, command="ping", block=False)
|
|
|
|
|
@restricts()
|
|
|
|
|
async def ping(self, update: Update, _: CallbackContext) -> None:
|
|
|
|
|
await update.effective_message.reply_text("online! ヾ(✿゚▽゚)ノ")
|
|
|
|
|
|
|
|
|
|
@handler(CommandHandler, command="reply_keyboard_remove", block=False)
|
|
|
|
|
@restricts()
|
|
|
|
|
async def reply_keyboard_remove(self, update: Update, _: CallbackContext) -> None:
|
|
|
|
|
await update.message.reply_text("移除远程键盘成功", reply_markup=ReplyKeyboardRemove())
|
2022-10-30 13:35:53 +00:00
|
|
|
|
|
|
|
|
|
async def gen_sign_button(self, message: Message, user: User):
|
|
|
|
|
try:
|
|
|
|
|
client = await get_genshin_client(user.id)
|
|
|
|
|
await message.reply_chat_action(ChatAction.TYPING)
|
|
|
|
|
button = await self.sign_system.gen_challenge_button(client.uid, user.id)
|
|
|
|
|
if not button:
|
|
|
|
|
await message.reply_text("验证请求已过期。", allow_sending_without_reply=True)
|
|
|
|
|
return
|
|
|
|
|
await message.reply_text("请尽快点击下方按钮进行验证。", allow_sending_without_reply=True, reply_markup=button)
|
|
|
|
|
except (UserNotFoundError, CookiesNotFoundError):
|
2022-11-12 12:59:42 +00:00
|
|
|
|
logger.warning("用户 %s[%s] 账号信息未找到", user.full_name, user.id)
|
2022-10-30 13:35:53 +00:00
|
|
|
|
|
|
|
|
|
async def process_sign_validate(self, message: Message, user: User, validate: str):
|
|
|
|
|
try:
|
|
|
|
|
client = await get_genshin_client(user.id)
|
|
|
|
|
await message.reply_chat_action(ChatAction.TYPING)
|
|
|
|
|
headers = await self.sign_system.gen_challenge_header(client.uid, validate)
|
|
|
|
|
if not headers:
|
|
|
|
|
await message.reply_text("验证请求已过期。", allow_sending_without_reply=True)
|
|
|
|
|
return
|
|
|
|
|
sign_text = await self.sign_system.start_sign(client, headers=headers)
|
|
|
|
|
await message.reply_text(sign_text, allow_sending_without_reply=True)
|
|
|
|
|
except (UserNotFoundError, CookiesNotFoundError):
|
2022-11-12 12:59:42 +00:00
|
|
|
|
logger.warning("用户 %s[%s] 账号信息未找到", user.full_name, user.id)
|
2022-10-30 13:35:53 +00:00
|
|
|
|
except NeedChallenge:
|
|
|
|
|
await message.reply_text("回调错误,请重新签到", allow_sending_without_reply=True)
|
2022-11-12 12:59:42 +00:00
|
|
|
|
|
|
|
|
|
async def process_validate(self, message: Message, user: User, validate: str):
|
|
|
|
|
user_info = await self.user_service.get_user_by_id(user.id)
|
|
|
|
|
if user_info.region != RegionEnum.HYPERION:
|
|
|
|
|
await message.reply_text("非法用户")
|
|
|
|
|
return
|
|
|
|
|
uid = user_info.yuanshen_uid
|
|
|
|
|
cookie = await self.cookies_service.get_cookies(user.id, RegionEnum.HYPERION)
|
|
|
|
|
client = Verification(cookie=cookie.cookies)
|
|
|
|
|
_, challenge = await self.verification_system.get_challenge(uid)
|
|
|
|
|
if challenge:
|
|
|
|
|
await client.verify(challenge, validate)
|
|
|
|
|
await message.reply_text("验证成功")
|
|
|
|
|
else:
|
|
|
|
|
await message.reply_text("验证失效")
|