-
Notifications
You must be signed in to change notification settings - Fork 97
/
glados.py
43 lines (41 loc) · 2.29 KB
/
glados.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
import requests,json,os
# -------------------------------------------------------------------------------------------
# github workflows
# -------------------------------------------------------------------------------------------
if __name__ == '__main__':
# pushplus秘钥 申请地址 http://www.pushplus.plus
sckey = os.environ.get("PUSHPLUS_TOKEN", "")
# 推送内容
sendContent = ''
# glados账号cookie 直接使用数组 如果使用环境变量需要字符串分割一下
cookies = os.environ.get("GLADOS_COOKIE", []).split("&")
if cookies[0] == "":
print('未获取到COOKIE变量')
cookies = []
exit(0)
url= "https://glados.rocks/api/user/checkin"
url2= "https://glados.rocks/api/user/status"
referer = 'https://glados.rocks/console/checkin'
origin = "https://glados.rocks"
useragent = "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36"
payload={
'token': 'glados.one'
}
for cookie in cookies:
checkin = requests.post(url,headers={'cookie': cookie ,'referer': referer,'origin':origin,'user-agent':useragent,'content-type':'application/json;charset=UTF-8'},data=json.dumps(payload))
state = requests.get(url2,headers={'cookie': cookie ,'referer': referer,'origin':origin,'user-agent':useragent})
#--------------------------------------------------------------------------------------------------------#
time = state.json()['data']['leftDays']
time = time.split('.')[0]
email = state.json()['data']['email']
if 'message' in checkin.text:
mess = checkin.json()['message']
print("签到成功") # 日志输出
# print(email+'----结果--'+mess+'----剩余('+time+')天') # 日志输出
sendContent += email+'----'+mess+'----剩余('+time+')天\n'
else:
requests.get('http://www.pushplus.plus/send?token=' + sckey + '&content='+email+'cookie已失效')
print('cookie已失效') # 日志输出
#--------------------------------------------------------------------------------------------------------#
if sckey != "":
requests.get('http://www.pushplus.plus/send?token=' + sckey + '&title='+email+'签到成功'+'&content='+sendContent)