记录使用python实现GLADOS自动签到获取时长

文章目录

  • 前言
  • 一、GLADOS自动签到
  • 二、使用步骤
    • 1.代码如下
    • 2.运行


前言

不知道GLADOS的朋友可以百度,就不解释了,总之是个好东西,而且提供的有签到服务,就很nice!但是手动签到太麻烦了,所以我们可以写个python脚本放在服务器上定时运行,岂不一举两得。
借鉴了 Hennessey大佬的代码,很感谢!!! 但是大佬关闭了GitHub公开仓库,所以我就不贴出来了。


一、GLADOS自动签到

glaods:https://glados.rocks/

二、使用步骤

1.代码如下

#!/usr/bin/env python3
# -*- coding: utf-8 -*-

"""
File: checkin.py(GLaDOS签到)
cron: 40 0 * * *
new Env('GLaDOS签到');
Update: 2024/1/21
"""


import requests
import json
import os
import sys
import time

# 获取GlaDOS账号Cookie
def get_cookies():
    if os.environ.get("GR_COOKIE"):
        print("已获取并使用Env环境 Cookie")
        if '&' in os.environ["GR_COOKIE"]:
            cookies = os.environ["GR_COOKIE"].split('&')
        elif '\n' in os.environ["GR_COOKIE"]:
            cookies = os.environ["GR_COOKIE"].split('\n')
        else:
            cookies = [os.environ["GR_COOKIE"]]
    else:
        cookies = [
    'koa:sess=eyJ1c2VySWQiOjMxNzgyMCwiX2V4cGlyZSI6MTcxNjczNzUzNDg4MCwiX21heEFnZSI6MjU5MjAwMDAwMDB9;  koa:sess.sig=P_YiAqPni3ri0zRG2J4Ywa9lx5g;', #cookie1
    #'koa:sess=XXXXXXXXXXXXXXXXXXXX; koa:sess.sig=XXXXXXXXXX;', #cookie2
    ]

        if len(cookies) == 0:
            print("未获取到正确的GlaDOS账号Cookie")
            return
    print(f"共获取到{len(cookies)}个GlaDOS账号Cookie\n")
    print(f"脚本执行时间(北京时区): {time.strftime('%Y/%m/%d %H:%M:%S', time.localtime())}\n")
    return cookies


# 加载通知服务
# def load_send():
#     cur_path = os.path.abspath(os.path.dirname(__file__))
#     sys.path.append(cur_path)
#     if os.path.exists(cur_path + "/sendNotify.py"):
#         try:
#             from sendNotify import send
#             return send
#         except Exception as e:
#             print(f"加载通知服务失败:{e}")
#             return None
#     else:
#         print("加载通知服务失败")
#         return None


# GlaDOS签到
def checkin(cookie):
    checkin_url= "https://glados.rocks/api/user/checkin"
    state_url= "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/86.0.4240.75 Safari/537.36"
    payload={
        'token': 'glados.one'
    }
    try:
        checkin = requests.post(checkin_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(state_url,headers={
            'cookie': cookie ,
            'referer': referer,
            'origin':origin,
            'user-agent':useragent})
    except Exception as e:
        print(f"签到失败,请检查网络:{e}")
        return None, None, None
    
    try:
        mess = checkin.json()['message']
        mail = state.json()['data']['email']
        time = state.json()['data']['leftDays'].split('.')[0]
    except Exception as e:
        print(f"解析登录结果失败:{e}")
        return None, None, None
    
    return mess, time, mail


# 执行签到任务
def run_checkin():
    contents = []
    cookies = get_cookies()
    if not cookies:
        return ""

    for cookie in cookies:
        ret, remain, email = checkin(cookie)
        if not ret:
            continue
            
        content = f"账号:{email}\n签到结果:{ret}\n剩余天数:{remain}\n"
        print(content)
        contents.append(content)

    contents_str = "".join(contents)
    return contents_str


if __name__ == '__main__':
    title = "GlaDOS签到通知"
    contents = run_checkin()
    # send_notify = load_send()
    # if send_notify:
    #     if contents =='':
    #         contents=f'签到失败,请检查账户信息以及网络环境'
    #         print(contents)
    #     send_notify(title, contents)

2.运行

记录使用python实现GLADOS自动签到获取时长_第1张图片

代码部分的 #‘koa:sess=XXXXXXXXXXXXXXXXXXXX; koa:sess.sig=XXXXXXXXXX;’, 需要打开浏览器F12抓包一下。

你可能感兴趣的:(python学习,python,开发语言)