mirror of
https://github.com/Sitoi/dailycheckin.git
synced 2024-11-17 21:58:03 +08:00
70 lines
2.8 KiB
Python
70 lines
2.8 KiB
Python
# -*- coding: utf-8 -*-
|
|
import json
|
|
import os
|
|
import re
|
|
|
|
import requests
|
|
import urllib3
|
|
from requests import utils
|
|
|
|
urllib3.disable_warnings()
|
|
|
|
|
|
class ZhiyooCheckIn:
|
|
def __init__(self, check_item):
|
|
self.check_item = check_item
|
|
|
|
@staticmethod
|
|
def sign(session):
|
|
response = session.get(url="http://bbs.zhiyoo.net/plugin.php?id=dsu_paulsign:sign", verify=False)
|
|
formhash = re.findall(r'<input type="hidden" name="formhash" value="(.*?)"', response.text)[0]
|
|
params = (
|
|
('id', 'dsu_paulsign:sign'),
|
|
('operation', 'qiandao'),
|
|
('infloat', '1'),
|
|
('inajax', '1'),
|
|
)
|
|
data = {
|
|
'formhash': formhash,
|
|
'qdxq': 'kx'
|
|
}
|
|
response = session.post(url="http://bbs.zhiyoo.net/plugin.php", params=params, data=data, verify=False)
|
|
user_rep = session.get(url="http://bbs.zhiyoo.net/home.php")
|
|
uid = re.findall(r"uid=(\d+)\"", user_rep.text)
|
|
uid = uid[0] if uid else "未获取到 UID"
|
|
if "今日已经签到" in response.text:
|
|
msg = f"用户信息: {uid}\n签到信息: 您今日已经签到,请明天再来!"
|
|
else:
|
|
check_msg = re.findall(r'恭喜你签到成功!获得随机奖励 金币 (\d+) 元.', response.text, re.S)
|
|
check_msg = check_msg[0].strip() if check_msg else "签到失败"
|
|
msg = f"用户信息: {uid}\n签到信息: 恭喜你签到成功!获得随机奖励 金币 {check_msg} 元."
|
|
return msg
|
|
|
|
def main(self):
|
|
zhiyoo_cookie = {
|
|
item.split("=")[0]: item.split("=")[1] for item in self.check_item.get("zhiyoo_cookie").split("; ")
|
|
}
|
|
session = requests.session()
|
|
requests.utils.add_dict_to_cookiejar(session.cookies, zhiyoo_cookie)
|
|
session.headers.update(
|
|
{
|
|
'Origin': 'http://bbs.zhiyoo.net',
|
|
'Content-Type': 'application/x-www-form-urlencoded',
|
|
'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.90 Safari/537.36 Edg/89.0.774.54',
|
|
'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9',
|
|
'Referer': 'http://bbs.zhiyoo.net/plugin.php?id=dsu_paulsign:sign',
|
|
'Accept-Language': 'zh-CN,zh;q=0.9,en;q=0.8',
|
|
}
|
|
)
|
|
msg = self.sign(session=session)
|
|
return msg
|
|
|
|
|
|
if __name__ == "__main__":
|
|
with open(
|
|
os.path.join(os.path.dirname(os.path.dirname(__file__)), "config/config.json"), "r", encoding="utf-8"
|
|
) as f:
|
|
datas = json.loads(f.read())
|
|
_check_item = datas.get("ZHIYOO_COOKIE_LIST", [])[0]
|
|
print(ZhiyooCheckIn(check_item=_check_item).main())
|