mirror of https://github.com/yuxian158/check.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
89 lines
3.4 KiB
89 lines
3.4 KiB
3 years ago
|
# -*- coding: utf-8 -*-
|
||
|
"""
|
||
|
new Env('V2EX 论坛');
|
||
|
"""
|
||
|
import re
|
||
|
|
||
|
import requests
|
||
|
import urllib3
|
||
|
from requests import utils
|
||
|
|
||
|
from utils import check
|
||
|
|
||
|
urllib3.disable_warnings()
|
||
|
|
||
|
|
||
|
class V2ex:
|
||
|
name = "V2EX 论坛"
|
||
|
|
||
|
def __init__(self, check_item):
|
||
|
self.check_item = check_item
|
||
|
|
||
|
@staticmethod
|
||
|
def sign(session):
|
||
|
msg = []
|
||
|
response = session.get(url="https://www.v2ex.com/mission/daily", verify=False)
|
||
|
pattern = (
|
||
|
r"<input type=\"button\" class=\"super normal button\""
|
||
|
r" value=\".*?\" onclick=\"location\.href = \'(.*?)\';\" />"
|
||
|
)
|
||
|
urls = re.findall(pattern=pattern, string=response.text)
|
||
|
url = urls[0] if urls else None
|
||
|
if url is None:
|
||
|
return "cookie 可能过期"
|
||
|
elif url != "/balance":
|
||
|
headers = {"Referer": "https://www.v2ex.com/mission/daily"}
|
||
|
data = {"once": url.split("=")[-1]}
|
||
|
_ = session.get(url="https://www.v2ex.com" + url, verify=False, headers=headers, params=data)
|
||
|
response = session.get(url="https://www.v2ex.com/balance", verify=False)
|
||
|
total = re.findall(
|
||
|
pattern=r"<td class=\"d\" style=\"text-align: right;\">(\d+\.\d+)</td>", string=response.text
|
||
|
)
|
||
|
total = total[0] if total else "签到失败"
|
||
|
today = re.findall(pattern=r'<td class="d"><span class="gray">(.*?)</span></td>', string=response.text)
|
||
|
today = today[0] if today else "签到失败"
|
||
|
username = re.findall(pattern=r"<a href=\"/member/.*?\" class=\"top\">(.*?)</a>", string=response.text)
|
||
|
username = username[0] if username else "用户名获取失败"
|
||
|
msg += [
|
||
|
{"name": "帐号信息", "value": username},
|
||
|
{"name": "今日签到", "value": today},
|
||
|
{"name": "帐号余额", "value": total},
|
||
|
]
|
||
|
response = session.get(url="https://www.v2ex.com/mission/daily", verify=False)
|
||
|
data = re.findall(pattern=r"<div class=\"cell\">(.*?)天</div>", string=response.text)
|
||
|
data = data[0] + "天" if data else "获取连续签到天数失败"
|
||
|
msg += [
|
||
|
{"name": "签到天数", "value": data},
|
||
|
]
|
||
|
return msg
|
||
|
|
||
|
def main(self):
|
||
|
cookie = {item.split("=")[0]: item.split("=")[1] for item in self.check_item.get("cookie").split("; ")}
|
||
|
session = requests.session()
|
||
|
if self.check_item.get("proxy", ""):
|
||
|
proxies = {
|
||
|
"http": self.check_item.get("proxy", ""),
|
||
|
"https": self.check_item.get("proxy", ""),
|
||
|
}
|
||
|
session.proxies.update(proxies)
|
||
|
requests.utils.add_dict_to_cookiejar(session.cookies, cookie)
|
||
|
session.headers.update(
|
||
|
{
|
||
|
"user-agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36 Edg/87.0.664.66",
|
||
|
"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",
|
||
|
"accept-language": "zh-CN,zh;q=0.9,en;q=0.8",
|
||
|
}
|
||
|
)
|
||
|
msg = self.sign(session=session)
|
||
|
msg = "\n".join([f"{one.get('name')}: {one.get('value')}" for one in msg])
|
||
|
return msg
|
||
|
|
||
|
|
||
|
@check(run_script_name="V2EX 论坛", run_script_expression="V2EX")
|
||
|
def main(*args, **kwargs):
|
||
|
return V2ex(check_item=kwargs.get("value")).main()
|
||
|
|
||
|
|
||
|
if __name__ == "__main__":
|
||
|
main()
|