├── .python-version
├── .gitignore
├── requirements.txt
├── pyproject.toml
├── .github
└── workflows
│ ├── MirrorSync.yml
│ ├── AutoCheckin.yml.disabled
│ └── KeepAlive.yml.disabled
├── config.example.yml
├── README.md
├── private-policy.md
├── scf.py
├── uv.lock
├── main.py
└── LICENSE
/.python-version:
--------------------------------------------------------------------------------
1 | 3.11
2 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | config.yml
2 | venv
--------------------------------------------------------------------------------
/requirements.txt:
--------------------------------------------------------------------------------
1 | sentry-sdk
2 | pyyaml
3 | httpx
4 |
--------------------------------------------------------------------------------
/pyproject.toml:
--------------------------------------------------------------------------------
1 | [project]
2 | name = "mhyy"
3 | version = "0.1.0"
4 | description = "Add your description here"
5 | readme = "README.md"
6 | requires-python = ">=3.11"
7 | dependencies = [
8 | "httpx>=0.28.1",
9 | "pyyaml>=6.0.2",
10 | "sentry-sdk>=2.32.0",
11 | ]
12 |
--------------------------------------------------------------------------------
/.github/workflows/MirrorSync.yml:
--------------------------------------------------------------------------------
1 | name: 'SyncMirror'
2 |
3 | on:
4 | workflow_dispatch:
5 | push:
6 |
7 | jobs:
8 | sync:
9 | runs-on: ubuntu-latest
10 | steps:
11 | - name: 'Checkout codes'
12 | uses: actions/checkout@v2
13 |
14 | - name: 'Sync'
15 | id: commit
16 | run: |
17 | git fetch --unshallow
18 | git checkout master
19 | git remote add gitea https://${{ secrets.GITEA_USERNAME }}:${{ secrets.GITEA_PASSWORD }}@git.bili33.top/GamerNoTitle/MHYY.git
20 | git push gitea master
21 |
--------------------------------------------------------------------------------
/.github/workflows/AutoCheckin.yml.disabled:
--------------------------------------------------------------------------------
1 | name: AutoCheckin
2 |
3 | on:
4 | workflow_dispatch:
5 | release:
6 | types: [published]
7 | push:
8 | tags:
9 | - 'v*'
10 | # branches:
11 | # - master
12 | schedule:
13 | - cron: "0 2 * * *"
14 | watch:
15 | types: [started]
16 |
17 | jobs:
18 | build:
19 | runs-on: ubuntu-latest
20 | # if: github.event.repository.owner.id == github.event.sender.id # 自己点的 start
21 | steps:
22 | - name: Checkout
23 | uses: actions/checkout@master
24 | - name: Set up Python #安装python
25 | uses: actions/setup-python@v4
26 | with:
27 | python-version: '3.10'
28 | - name: Install requirements #安装轮子
29 | run: |
30 | pip install -r requirements.txt
31 | - name: Run script
32 | env:
33 | MHYY_CONFIG: ${{ secrets.MHYY_SECRET }}
34 | run: |
35 | python3 main.py
36 |
--------------------------------------------------------------------------------
/.github/workflows/KeepAlive.yml.disabled:
--------------------------------------------------------------------------------
1 | name: 'KeepActionAlive'
2 |
3 | on:
4 | workflow_dispatch:
5 | schedule:
6 | - cron: '0 0 1 * *'
7 |
8 | jobs:
9 | auto_renew:
10 | runs-on: ubuntu-latest
11 | steps:
12 | - name: 'Checkout codes'
13 | uses: actions/checkout@v2
14 |
15 | - name: 'Avoid Github Workflow being suspended'
16 | run: echo $(cat /proc/sys/kernel/random/uuid) > UUID.txt
17 |
18 | - name: 'Commit Files'
19 | id: commit
20 | run: |
21 | git config --local user.email "action@github.com"
22 | git config --local user.name "GitHub Action"
23 | git add .
24 | git diff --quiet && git diff --staged --quiet || git commit -am '是否继续白嫖:[是] —— 继续白嫖成功!'
25 | echo ::set-output name=status::success
26 |
27 | - name: 'GitHub Push'
28 | if: steps.commit.output.status != 'success'
29 | uses: ad-m/github-push-action@v0.6.0
30 | with:
31 | github_token: ${{ secrets.GITHUB_TOKEN }}
32 | branch: ${{ github.ref }}
--------------------------------------------------------------------------------
/config.example.yml:
--------------------------------------------------------------------------------
1 | # 使用前请阅读文档:https://bili33.top/posts/MHYY-AutoCheckin-Manual-Gen2/
2 | # 有问题请前往Github开启issue:https://github.com/GamerNoTitle/MHYY/issues
3 |
4 | proxy:
5 |
6 | notifications:
7 | # Server酱
8 | serverchan:
9 | key: ""
10 | # 钉钉机器人
11 | # 安全关键词需要包含 `MHYY`,否则会被钉钉机器人拒绝
12 | dingtalk:
13 | webhook_url: "https://oapi.dingtalk.com/robot/send?access_token=2b350a189512e1484d54e8b588c163f787ec9c2798725490f92f63d42b1e2b17"
14 | # Telegram机器人
15 | telegram:
16 | bot_token: "6689586847:AAH0lg1uuXiZMsou9WNYif7qqrbCSdZWWj0"
17 | chat_id: "1762053255"
18 | # PushPlus推送加,https://www.pushplus.plus/
19 | pushplus:
20 | key: ""
21 |
22 | ######## 以下为账号配置项,可以多账号,详情请参考文档 ########
23 | accounts:
24 | # 第一个账号
25 | - token:
26 | # 关于type:如果你在安卓版的云·原神里面抓的话type应该是2
27 | # 如果你是网页版抓的,那type应该是16
28 | # 此处仅供参考,具体以你抓的为准
29 | type:
30 | # sysver:如果你是安卓版抓的,这个应该会显示你的安卓版本(鸿蒙不清楚,手上没设备)
31 | # 如果你是网页版抓的,这个应该是你的系统版本(注:Windows 10和Windows 11都是写的Windows 10)
32 | sysver:
33 | # deviceid:手机抓的会有这个,抓到什么填什么
34 | # 如果是网页版抓的,那也是抓到什么填什么
35 | deviceid:
36 | # devicename: 手机抓的话就是手机的入网型号,如红米K40为M2012K11AC,红米K50为22021211RC
37 | # 如果是网页版抓的,填Unknown
38 | devicename:
39 | # devicemodel: 手机抓的填抓出来的手机型号,大概为手机厂商+上面的deviceid,如红米K40为Xiaomi M2012K11AC
40 | # 如果是网页版抓的,填Unknown
41 | devicemodel:
42 | # appid: 国服手机抓的固定填1953439974,网页版抓的留空;国际服手机抓的填600493
43 | appid:
44 | # region(可选): 账号所处的地区,国服填cn,国际服填os,不填或非法值按国服处理
45 | region: cn
46 | # 第二个账号,不需要的话把下面删掉,如果需要更多就在下面再加
47 | - token:
48 | # 关于type:如果你在安卓版的云·原神里面抓的话type应该是2
49 | # 如果你是网页版抓的,那type应该是16
50 | # 此处仅供参考,具体以你抓的为准
51 | type:
52 | # sysver:如果你是安卓版抓的,这个应该会显示你的安卓版本(鸿蒙不清楚,手上没设备)
53 | # 如果你是网页版抓的,这个应该是你的系统版本(注:Windows 10和Windows 11都是写的Windows 10)
54 | sysver:
55 | # deviceid:手机抓的会有这个,抓到什么填什么
56 | # 如果是网页版抓的,那也是抓到什么填什么
57 | deviceid:
58 | # devicename: 手机抓的话就是手机的入网型号,如红米K40为M2012K11AC,红米K50为22021211RC
59 | # 如果是网页版抓的,填Unknown
60 | devicename:
61 | # devicemodel: 手机抓的填抓出来的手机型号,大概为手机厂商+上面的deviceid,如红米K40为Xiaomi M2012K11AC
62 | # 如果是网页版抓的,填Unknown
63 | devicemodel:
64 | # appid: 国服手机抓的固定填1953439974,网页版抓的留空;国际服手机抓的填600493
65 | appid:
66 | # region(可选): 账号所处的地区,国服填cn,国际服填os,不填或非法值按国服处理
67 | region: os
68 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # MHYY-AutoCheckin
2 |
3 | 
4 |
5 | [米哈云游(云原神)](https://mhyy.mihoyo.com/)自动签到脚本
6 |
7 | **⚠️请不要进行宣传,谢谢!一旦发现宣传就删库跑路!使用过程中如果出现bug可能会使用您的日志进行错误追踪,详情请见[隐私政策](https://github.com/ElainaMoe/MHYY-AutoCheckin/blob/master/private-policy.md)**
8 |
9 | **要用Action跑请不要点Fork,点Use this template后在自己的号下创建一个仓库来跑,用Fork跑的时间会积累到本仓库,会导致本仓库被封!!!**
10 |
11 | 这是一个可以帮助你每天自动进行米忽悠云原神签到的脚本,自动获取每日的15分钟(600分钟后无法获取,这是米忽悠定下的规矩,无法突破)
12 |
13 | > [!important]
14 | > ## 孪生项目
15 | > 云·星穹铁道自动签到脚本 https://github.com/GamerNoTitle/SRCloud-AutoCheckin (Archived)
16 | >
17 | > 云·绝区零自动签到脚本 https://github.com/GamerNoTitle/ZZZCloud-AutoCheckin
18 |
19 | ## 快速开始
20 |
21 | 请参阅[文档](https://bili33.top/posts/MHYY-AutoCheckin-Manual-Gen2/)进行配置,有问题请在issue中提出。
22 |
23 | 如果本仓库被封了就来这里找https://git.bili33.top/GamerNoTitle/MHYY
24 |
25 | **要是真的不会用就别不好意思开issue问啦,我在Sentry的后台看到了一堆不知道怎么形容的Bug**
26 |
27 | ## 赞助
28 | 点击下面的Badge其中一个就可以跳转到相应页面,感谢老板的支持!
29 |
30 |
31 |
32 | ## 免责声明
33 |
34 | 一旦你fork了本仓库则代表你同意以下内容:
35 |
36 | - 所有账号被封禁的情况由使用者自行承担
37 | - 一切由使用本脚本造成的后果由使用者自行承担
38 |
39 | ## 友链
40 |
41 | [Node.js版的云原神15分钟获取器 带邮件发送日志功能 需自备服务器 HuanLinMaster/GenshinCloudPlayHelper](https://github.com/HuanLinMaster/GenshinCloudPlayHelper)
42 |
43 | ## Contributions
44 |
45 | 
46 |
47 |
48 | ## Stargazers over time
49 |
50 | [](https://starchart.cc/GamerNoTitle/MHYY)
51 |
--------------------------------------------------------------------------------
/private-policy.md:
--------------------------------------------------------------------------------
1 | # 隐私政策
2 |
3 | 更新日期:**2022/11/11**
4 |
5 | 生效日期:**2022/11/11**
6 |
7 | ## 导言
8 |
9 | _MHYY-AutoCheckin_ 是一款由 _GamerNoTitle_ (以下简称“我们”)提供的产品。 您在使用我们的服务时,我们可能会收集和使用您的相关信息。我们希望通过本《隐私政策》向您说明,在使用我们的服务时,我们如何收集、使用、储存和分享这些信息,以及我们为您提供的访问、更新、控制和保护这些信息的方式。 本《隐私政策》与您所使用的 _MHYY-AutoCheckin_ 服务息息相关,希望您仔细阅读,在需要时,按照本《隐私政策》的指引,作出您认为适当的选择。本《隐私政策》中涉及的相关技术词汇,我们尽量以简明扼要的表述,并提供进一步说明的链接,以便您的理解。
10 |
11 | **您使用或继续使用我们的服务,即意味着同意我们按照本《隐私政策》收集、使用、储存和分享您的相关信息。**
12 |
13 | 如对本《隐私政策》或相关事宜有任何问题,请通过 **GamerNoTitle@outlook.com** 与我们联系。
14 |
15 | ## 1\. 我们收集的信息
16 |
17 | 我们或我们的第三方合作伙伴提供服务时,可能会收集、储存和使用下列与您有关的信息。如果您不提供相关信息,可能无法注册成为我们的用户或无法享受我们提供的某些服务,或者无法达到相关服务拟达到的效果。
18 |
19 | * **日志信息**,指您使用我们的服务时,系统可能通过cookies、标识符及相关技术收集的信息,包括您的**设备信息**、**浏览信息**、**点击信息**,并将该等信息储存为日志信息,为您提供个性化的用户体验、保障服务安全。您可以通过浏览器设置拒绝或管理cookie、标识符或相关技术的使用。
20 |
21 | ## 2\. 信息的存储
22 |
23 | **2.1 信息存储的方式和期限**
24 |
25 | * 我们会通过安全的方式存储您的信息,包括本地存储(例如利用APP进行数据缓存)、数据库和服务器日志。
26 | * 一般情况下,我们只会在为实现服务目的所必需的时间内或法律法规规定的条件下存储您的个人信息。
27 |
28 | **2.2 信息存储的地域**
29 |
30 | * 我们会按照法律法规规定,将境内收集的用户个人信息存储于中国境内。
31 | * 目前我们不会跨境传输或存储您的个人信息。将来如需跨境传输或存储的,我们会向您告知信息出境的目的、接收方、安全保证措施和安全风险,并征得您的同意。
32 |
33 | **2.3 产品或服务停止运营时的通知**
34 |
35 | * 当我们的产品或服务发生停止运营的情况时,我们将以推送通知、公告等形式通知您,并在合理期限内删除您的个人信息或进行匿名化处理,法律法规另有规定的除外。
36 |
37 | ## 3\. 信息安全
38 |
39 | 我们使用各种安全技术和程序,以防信息的丢失、不当使用、未经授权阅览或披露。例如,在某些服务中,我们将利用加密技术(例如SSL)来保护您提供的个人信息。但请您理解,由于技术的限制以及可能存在的各种恶意手段,在互联网行业,即便竭尽所能加强安全措施,也不可能始终保证信息百分之百的安全。您需要了解,您接入我们的服务所用的系统和通讯网络,有可能因我们可控范围外的因素而出现问题。
40 |
41 | ## 4\. 我们如何使用信息
42 |
43 | 我们可能将在向您提供服务的过程之中所收集的信息用作下列用途:
44 |
45 | * 向您提供服务;
46 | * 在我们提供服务时,用于身份验证、客户服务、安全防范、诈骗监测、存档和备份用途,确保我们向您提供的产品和服务的安全性;
47 | * 帮助我们设计新服务,改善我们现有服务;
48 | * 使我们更加了解您如何接入和使用我们的服务,从而针对性地回应您的个性化需求,例如语言设定、位置设定、个性化的帮助服务和指示,或对您和其他用户作出其他方面的回应;
49 | * 向您提供与您更加相关的广告以替代普遍投放的广告;
50 | * 评估我们服务中的广告和其他促销及推广活动的效果,并加以改善;
51 | * 软件认证或管理软件升级;
52 | * 让您参与有关我们产品和服务的调查。
53 |
54 | ## 5\. 信息共享
55 |
56 | 目前,我们不会主动共享或转让您的个人信息至第三方,如存在其他共享或转让您的个人信息或您需要我们将您的个人信息共享或转让至第三方情形时,我们会直接或确认第三方征得您对上述行为的明示同意。
57 |
58 | 为了投放广告,评估、优化广告投放效果等目的,我们需要向广告主及其代理商等第三方合作伙伴共享您的部分数据,要求其严格遵守我们关于数据隐私保护的措施与要求,包括但不限于根据数据保护协议、承诺书及相关数据处理政策进行处理,避免识别出个人身份,保障隐私安全。
59 |
60 | 我们不会向合作伙伴分享可用于识别您个人身份的信息(例如您的姓名或电子邮件地址),除非您明确授权。
61 |
62 | 我们不会对外公开披露所收集的个人信息,如必须公开披露时,我们会向您告知此次公开披露的目的、披露信息的类型及可能涉及的敏感信息,并征得您的明示同意。
63 |
64 | 随着我们业务的持续发展,我们有可能进行合并、收购、资产转让等交易,我们将告知您相关情形,按照法律法规及不低于本《隐私政策》所要求的标准继续保护或要求新的控制者继续保护您的个人信息。
65 |
66 | 另外,根据相关法律法规及国家标准,以下情形中,我们可能会共享、转让、公开披露个人信息无需事先征得您的授权同意:
67 |
68 | * 与国家安全、国防安全直接相关的;
69 | * 与公共安全、公共卫生、重大公共利益直接相关的;
70 | * 犯罪侦查、起诉、审判和判决执行等直接相关的;
71 | * 出于维护个人信息主体或其他个人的生命、财产等重大合法权益但又很难得到本人同意的;
72 | * 个人信息主体自行向社会公众公开个人信息的;
73 | * 从合法公开披露的信息中收集个人信息的,如合法的新闻报道、政府信息公开等渠道。
74 |
75 | ## 6\. 您的权利
76 |
77 | 在您使用我们的服务期间,我们可能会视产品具体情况为您提供相应的操作设置,以便您可以查询、删除、更正或撤回您的相关个人信息,您可参考相应的具体指引进行操作。此外,我们还设置了投诉举报渠道,您的意见将会得到及时的处理。如果您无法通过上述途径和方式行使您的个人信息主体权利,您可以通过本《隐私政策》中提供的联系方式提出您的请求,我们会按照法律法规的规定予以反馈。
78 |
79 | ## 7\. 变更
80 |
81 | 我们可能适时修订本《隐私政策》的条款。当变更发生时,我们会在版本更新时向您提示新的《隐私政策》,并向您说明生效日期。请您仔细阅读变更后的《隐私政策》内容,**若您继续使用我们的服务,即表示您同意我们按照更新后的《隐私政策》处理您的个人信息。**
82 |
83 | ## 8\. 未成年人保护
84 |
85 | 我们鼓励父母或监护人指导未满十八岁的未成年人使用我们的服务。我们建议未成年人鼓励他们的父母或监护人阅读本《隐私政策》,并建议未成年人在提交的个人信息之前寻求父母或监护人的同意和指导。
86 |
--------------------------------------------------------------------------------
/scf.py:
--------------------------------------------------------------------------------
1 | import httpx
2 | import json
3 | import os
4 | import re
5 | import sentry_sdk
6 | import random
7 | import time
8 | import yaml
9 | import logging
10 |
11 | # 配置 Sentry
12 | sentry_sdk.init(
13 | "https://425d7b4536f94c9fa540fe34dd6609a2@o361988.ingest.sentry.io/6352584",
14 | traces_sample_rate=1.0,
15 | )
16 |
17 | # 配置日志级别
18 | loglevel_env = os.environ.get("MHYY_LOGLEVEL", "INFO").upper()
19 | loglevel = getattr(logging, loglevel_env, logging.INFO)
20 |
21 | # 配置日志
22 | logging.basicConfig(
23 | level=loglevel,
24 | format="%(asctime)s [%(levelname)s]: %(message)s",
25 | datefmt="%Y-%m-%d %H:%M:%S",
26 | )
27 |
28 | logger = logging.getLogger()
29 |
30 | # 配置数据写入脚本
31 | config_datas = """
32 | accounts:
33 | - token: your_token_here
34 | type: 2
35 | sysver: your_sysver
36 | deviceid: your_deviceid
37 | devicename: your_devicename
38 | devicemodel: your_devicemodel
39 | appid: 1953439974
40 | region: cn
41 | """
42 |
43 | class RunError(Exception):
44 | pass
45 |
46 | def handler(*args):
47 | """
48 | 云函数入口函数。
49 | """
50 | # 读取配置
51 | conf_data = yaml.load(config_datas, Loader=yaml.FullLoader)
52 | if not conf_data or "accounts" not in conf_data:
53 | logger.error("请正确配置账户信息后再运行本脚本!")
54 | return {"statusCode": 1, "message": "配置错误,请检查账户信息。"}
55 |
56 | conf = conf_data["accounts"]
57 | if not conf:
58 | logger.error("账户配置为空!")
59 | return {"statusCode": 1, "message": "账户配置为空,请添加账户信息。"}
60 |
61 | logger.info(f"检测到 {len(conf)} 个账号,正在进行任务……")
62 |
63 | # 获取 SCT 通知配置
64 | sct_status = os.environ.get("sct") # https://sct.ftqq.com/
65 | sct_key = os.environ.get("sct_key")
66 | sct_url = f"https://sctapi.ftqq.com/{sct_key}.send?title=MHYY-AutoCheckin 自动推送" if sct_key else None
67 |
68 | sct_msg = ""
69 |
70 | try:
71 | # 随机等待时间以避免被封禁
72 | debug_mode = os.environ.get("MHYY_DEBUG", "False").upper() == "TRUE"
73 | if not debug_mode:
74 | wait_time = random.randint(10, 60)
75 | logger.info(f"为了避免同一时间签到人数太多导致被官方怀疑,开始休眠 {wait_time} 秒")
76 | time.sleep(wait_time)
77 |
78 | # 获取最新版本号
79 | try:
80 | ver_info = httpx.get(
81 | "https://hyp-api.mihoyo.com/hyp/hyp-connect/api/getGameBranches?game_ids[]=1Z8W5NHUQb&launcher_id=jGHBHlcOq1",
82 | timeout=60,
83 | verify=False,
84 | ).text
85 | version = json.loads(ver_info)["data"]["game_branches"][0]["main"]["tag"]
86 | logger.info(f"从官方API获取到云·原神最新版本号:{version}")
87 | except Exception as e:
88 | version = "5.0.0"
89 | logger.warning(f"获取版本号失败,使用默认版本:{version}")
90 |
91 | # 遍历每个账户进行任务
92 | for idx, config in enumerate(conf, start=1):
93 | if not config:
94 | raise RunError("账户配置为空,请添加账户信息。")
95 |
96 | # 提取账户配置
97 | token = config.get("token")
98 | client_type = config.get("type")
99 | sysver = config.get("sysver")
100 | deviceid = config.get("deviceid")
101 | devicename = config.get("devicename")
102 | devicemodel = config.get("devicemodel")
103 | appid = config.get("appid")
104 | region = config.get("region", "cn")
105 |
106 | if not all([token, client_type, sysver, deviceid, devicename, devicemodel, appid]):
107 | logger.error(f"第 {idx} 个账户配置不完整,请检查配置。")
108 | sct_msg += f"第 {idx} 个账户配置不完整,请检查配置。\n"
109 | continue
110 |
111 | # 构建请求头
112 | headers = {
113 | "x-rpc-combo_token": token,
114 | "x-rpc-client_type": str(client_type),
115 | "x-rpc-app_version": str(version),
116 | "x-rpc-sys_version": str(sysver),
117 | "x-rpc-channel": "cyydmihoyo",
118 | "x-rpc-device_id": deviceid,
119 | "x-rpc-device_name": devicename,
120 | "x-rpc-device_model": devicemodel,
121 | "x-rpc-vendor_id": "1",
122 | "x-rpc-cg_game_biz": "hk4e_cn",
123 | "x-rpc-op_biz": "clgm_cn",
124 | "x-rpc-language": "zh-cn",
125 | "Host": "api-cloudgame.mihoyo.com",
126 | "Connection": "Keep-Alive",
127 | "Accept-Encoding": "gzip",
128 | "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36 Edg/121.0.0.0",
129 | }
130 |
131 | # 处理国际服
132 | if region == "os":
133 | headers.update({
134 | "x-rpc-channel": "mihoyo",
135 | "x-rpc-cg_game_biz": "hk4e_global",
136 | "x-rpc-op_biz": "clgm_global",
137 | "x-rpc-cg_game_id": "9000254",
138 | "x-rpc-app_id": "600493",
139 | "User-Agent": "okhttp/4.10.0",
140 | "Host": "sg-cg-api.hoyoverse.com",
141 | })
142 | NotificationURL = "https://sg-cg-api.hoyoverse.com/hk4e_global/cg/gamer/api/listNotifications?status=NotificationStatusUnread&type=NotificationTypePopup&is_sort=true"
143 | WalletURL = "https://sg-cg-api.hoyoverse.com/hk4e_global/cg/wallet/wallet/get"
144 | AnnouncementURL = "https://sg-cg-api.hoyoverse.com/hk4e_global/cg/gamer/api/getAnnouncementInfo"
145 | else:
146 | NotificationURL = "https://api-cloudgame.mihoyo.com/hk4e_cg_cn/gamer/api/listNotifications?status=NotificationStatusUnread&type=NotificationTypePopup&is_sort=true"
147 | WalletURL = "https://api-cloudgame.mihoyo.com/hk4e_cg_cn/wallet/wallet/get"
148 | AnnouncementURL = "https://api-cloudgame.mihoyo.com/hk4e_cg_cn/gamer/api/getAnnouncementInfo"
149 |
150 | logger.info(f"正在进行第 {idx} 个账号,服务器为{'GLOBAL' if region == 'os' else 'CN'}……")
151 |
152 | try:
153 | # 获取钱包信息
154 | wallet_response = httpx.get(WalletURL, headers=headers, timeout=60, verify=False)
155 | wallet_data = wallet_response.json()
156 | logger.debug(wallet_data)
157 |
158 | if wallet_data == {
159 | "data": None,
160 | "message": "登录已失效,请重新登录",
161 | "retcode": -100,
162 | }:
163 | logger.error(f"账号 {idx} 登录已过期,请重新登陆!返回为:{wallet_response.text}")
164 | sct_msg += f"账号 {idx} 登录已过期,请重新登陆!返回为:{wallet_response.text}\n"
165 | continue
166 | else:
167 | free_time = wallet_data['data']['free_time']['free_time']
168 | play_card_status = wallet_data['data']['play_card']['short_msg']
169 | coin_num = wallet_data['data']['coin']['coin_num']
170 | logger.info(
171 | f"账号 {idx}: 你当前拥有免费时长 {free_time} 分钟,畅玩卡状态为 {play_card_status},拥有原点 {coin_num} 点({int(coin_num)/10}分钟)"
172 | )
173 | sct_msg += (
174 | f"账号 {idx}: 你当前拥有免费时长 {free_time} 分钟,"
175 | f"畅玩卡状态为 {play_card_status},拥有原点 {coin_num} 点({int(coin_num)/10}分钟)\n"
176 | )
177 |
178 | # 获取公告信息
179 | announcement_response = httpx.get(AnnouncementURL, headers=headers, timeout=60, verify=False)
180 | announcement_data = announcement_response.json()
181 | logger.debug(f'获取到公告列表:{announcement_data["data"]}')
182 |
183 | # 获取签到通知
184 | notification_response = httpx.get(NotificationURL, headers=headers, timeout=60, verify=False)
185 | notification_data = notification_response.json()
186 | logger.debug(notification_data)
187 |
188 | # 解析签到状态
189 | success, Signed, Over = False, False, False
190 | try:
191 | notifications = notification_data["data"]["list"]
192 | if not notifications:
193 | success = True
194 | Signed = True
195 | Over = False
196 | else:
197 | last_msg = json.loads(notifications[-1]["msg"])
198 | if last_msg.get("msg") == "每日登录奖励":
199 | success = True
200 | Signed = False
201 | Over = False
202 | elif last_msg.get("over_num", 0) > 0:
203 | success = True
204 | Signed = False
205 | Over = True
206 | else:
207 | success = False
208 | except (IndexError, json.JSONDecodeError, KeyError) as e:
209 | logger.warning(f"解析签到状态时出错: {e}")
210 | success = False
211 |
212 | if success:
213 | if Signed:
214 | logger.info(f"账号 {idx}: 获取签到情况成功!今天是否已经签到过了呢?")
215 | sct_msg += f"账号 {idx}: 获取签到情况成功!今天是否已经签到过了呢?\n"
216 | logger.debug(f"完整返回体为:{notification_response.text}")
217 | elif not Signed and Over:
218 | last_msg = json.loads(notifications[-1]["msg"])
219 | logger.info(
220 | f"账号 {idx}: 获取签到情况成功!当前免费时长已经达到上限!签到情况为{last_msg}"
221 | )
222 | sct_msg += (
223 | f"账号 {idx}: 获取签到情况成功!当前免费时长已经达到上限!签到情况为{last_msg}\n"
224 | )
225 | else:
226 | logger.info(f"账号 {idx}: 已经签到过了!")
227 | sct_msg += f"账号 {idx}: 已经签到过了!\n"
228 | else:
229 | logger.info(f"账号 {idx}: 当前没有签到!请稍后再试!")
230 | sct_msg += f"账号 {idx}: 当前没有签到!请稍后再试!\n"
231 |
232 | # 发送 SCT 通知
233 | if sct_url:
234 | try:
235 | sct_response = httpx.get(sct_url, params={"desp": sct_msg}, timeout=30)
236 | if sct_response.status_code == 200:
237 | logger.info("SCT 推送完成!")
238 | else:
239 | logger.warning(f"SCT 无法推送,状态码:{sct_response.status_code}, 响应:{sct_response.text}")
240 | except Exception as e:
241 | logger.error(f"SCT 推送时出错:{e}")
242 |
243 | except Exception as e:
244 | logger.error(f"账号 {idx} 执行过程中出错:{str(e)}")
245 | sct_msg += f"账号 {idx} 执行过程中出错:{str(e)}\n"
246 | if sct_url:
247 | try:
248 | httpx.get(sct_url, params={"desp": sct_msg}, timeout=30)
249 | except Exception as notify_error:
250 | logger.error(f"SCT 推送时出错:{notify_error}")
251 | continue
252 |
253 | logger.info("所有任务已经执行完毕!")
254 | return {"statusCode": 0, "message": "所有任务已经执行完毕!", "details": sct_msg}
255 |
256 | except RunError as re:
257 | logger.error(f"运行错误:{str(re)}")
258 | if sct_url:
259 | try:
260 | httpx.get(sct_url, params={"desp": f"运行错误:{str(re)}"}, timeout=30)
261 | except Exception as notify_error:
262 | logger.error(f"SCT 推送时出错:{notify_error}")
263 | return {"statusCode": 1, "message": f"运行错误:{str(re)}"}
264 |
265 | except Exception as e:
266 | logger.error(f"未知错误:{str(e)}")
267 | if sct_url:
268 | try:
269 | httpx.get(sct_url, params={"desp": f"未知错误:{str(e)}"}, timeout=30)
270 | except Exception as notify_error:
271 | logger.error(f"SCT 推送时出错:{notify_error}")
272 | return {"statusCode": 1, "message": f"未知错误:{str(e)}"}
273 |
--------------------------------------------------------------------------------
/uv.lock:
--------------------------------------------------------------------------------
1 | version = 1
2 | revision = 2
3 | requires-python = ">=3.11"
4 |
5 | [[package]]
6 | name = "anyio"
7 | version = "4.9.0"
8 | source = { registry = "https://pypi.org/simple" }
9 | dependencies = [
10 | { name = "idna" },
11 | { name = "sniffio" },
12 | { name = "typing-extensions", marker = "python_full_version < '3.13'" },
13 | ]
14 | sdist = { url = "https://files.pythonhosted.org/packages/95/7d/4c1bd541d4dffa1b52bd83fb8527089e097a106fc90b467a7313b105f840/anyio-4.9.0.tar.gz", hash = "sha256:673c0c244e15788651a4ff38710fea9675823028a6f08a5eda409e0c9840a028", size = 190949, upload_time = "2025-03-17T00:02:54.77Z" }
15 | wheels = [
16 | { url = "https://files.pythonhosted.org/packages/a1/ee/48ca1a7c89ffec8b6a0c5d02b89c305671d5ffd8d3c94acf8b8c408575bb/anyio-4.9.0-py3-none-any.whl", hash = "sha256:9f76d541cad6e36af7beb62e978876f3b41e3e04f2c1fbf0884604c0a9c4d93c", size = 100916, upload_time = "2025-03-17T00:02:52.713Z" },
17 | ]
18 |
19 | [[package]]
20 | name = "certifi"
21 | version = "2025.6.15"
22 | source = { registry = "https://pypi.org/simple" }
23 | sdist = { url = "https://files.pythonhosted.org/packages/73/f7/f14b46d4bcd21092d7d3ccef689615220d8a08fb25e564b65d20738e672e/certifi-2025.6.15.tar.gz", hash = "sha256:d747aa5a8b9bbbb1bb8c22bb13e22bd1f18e9796defa16bab421f7f7a317323b", size = 158753, upload_time = "2025-06-15T02:45:51.329Z" }
24 | wheels = [
25 | { url = "https://files.pythonhosted.org/packages/84/ae/320161bd181fc06471eed047ecce67b693fd7515b16d495d8932db763426/certifi-2025.6.15-py3-none-any.whl", hash = "sha256:2e0c7ce7cb5d8f8634ca55d2ba7e6ec2689a2fd6537d8dec1296a477a4910057", size = 157650, upload_time = "2025-06-15T02:45:49.977Z" },
26 | ]
27 |
28 | [[package]]
29 | name = "h11"
30 | version = "0.16.0"
31 | source = { registry = "https://pypi.org/simple" }
32 | sdist = { url = "https://files.pythonhosted.org/packages/01/ee/02a2c011bdab74c6fb3c75474d40b3052059d95df7e73351460c8588d963/h11-0.16.0.tar.gz", hash = "sha256:4e35b956cf45792e4caa5885e69fba00bdbc6ffafbfa020300e549b208ee5ff1", size = 101250, upload_time = "2025-04-24T03:35:25.427Z" }
33 | wheels = [
34 | { url = "https://files.pythonhosted.org/packages/04/4b/29cac41a4d98d144bf5f6d33995617b185d14b22401f75ca86f384e87ff1/h11-0.16.0-py3-none-any.whl", hash = "sha256:63cf8bbe7522de3bf65932fda1d9c2772064ffb3dae62d55932da54b31cb6c86", size = 37515, upload_time = "2025-04-24T03:35:24.344Z" },
35 | ]
36 |
37 | [[package]]
38 | name = "httpcore"
39 | version = "1.0.9"
40 | source = { registry = "https://pypi.org/simple" }
41 | dependencies = [
42 | { name = "certifi" },
43 | { name = "h11" },
44 | ]
45 | sdist = { url = "https://files.pythonhosted.org/packages/06/94/82699a10bca87a5556c9c59b5963f2d039dbd239f25bc2a63907a05a14cb/httpcore-1.0.9.tar.gz", hash = "sha256:6e34463af53fd2ab5d807f399a9b45ea31c3dfa2276f15a2c3f00afff6e176e8", size = 85484, upload_time = "2025-04-24T22:06:22.219Z" }
46 | wheels = [
47 | { url = "https://files.pythonhosted.org/packages/7e/f5/f66802a942d491edb555dd61e3a9961140fd64c90bce1eafd741609d334d/httpcore-1.0.9-py3-none-any.whl", hash = "sha256:2d400746a40668fc9dec9810239072b40b4484b640a8c38fd654a024c7a1bf55", size = 78784, upload_time = "2025-04-24T22:06:20.566Z" },
48 | ]
49 |
50 | [[package]]
51 | name = "httpx"
52 | version = "0.28.1"
53 | source = { registry = "https://pypi.org/simple" }
54 | dependencies = [
55 | { name = "anyio" },
56 | { name = "certifi" },
57 | { name = "httpcore" },
58 | { name = "idna" },
59 | ]
60 | sdist = { url = "https://files.pythonhosted.org/packages/b1/df/48c586a5fe32a0f01324ee087459e112ebb7224f646c0b5023f5e79e9956/httpx-0.28.1.tar.gz", hash = "sha256:75e98c5f16b0f35b567856f597f06ff2270a374470a5c2392242528e3e3e42fc", size = 141406, upload_time = "2024-12-06T15:37:23.222Z" }
61 | wheels = [
62 | { url = "https://files.pythonhosted.org/packages/2a/39/e50c7c3a983047577ee07d2a9e53faf5a69493943ec3f6a384bdc792deb2/httpx-0.28.1-py3-none-any.whl", hash = "sha256:d909fcccc110f8c7faf814ca82a9a4d816bc5a6dbfea25d6591d6985b8ba59ad", size = 73517, upload_time = "2024-12-06T15:37:21.509Z" },
63 | ]
64 |
65 | [[package]]
66 | name = "idna"
67 | version = "3.10"
68 | source = { registry = "https://pypi.org/simple" }
69 | sdist = { url = "https://files.pythonhosted.org/packages/f1/70/7703c29685631f5a7590aa73f1f1d3fa9a380e654b86af429e0934a32f7d/idna-3.10.tar.gz", hash = "sha256:12f65c9b470abda6dc35cf8e63cc574b1c52b11df2c86030af0ac09b01b13ea9", size = 190490, upload_time = "2024-09-15T18:07:39.745Z" }
70 | wheels = [
71 | { url = "https://files.pythonhosted.org/packages/76/c6/c88e154df9c4e1a2a66ccf0005a88dfb2650c1dffb6f5ce603dfbd452ce3/idna-3.10-py3-none-any.whl", hash = "sha256:946d195a0d259cbba61165e88e65941f16e9b36ea6ddb97f00452bae8b1287d3", size = 70442, upload_time = "2024-09-15T18:07:37.964Z" },
72 | ]
73 |
74 | [[package]]
75 | name = "mhyy"
76 | version = "0.1.0"
77 | source = { virtual = "." }
78 | dependencies = [
79 | { name = "httpx" },
80 | { name = "pyyaml" },
81 | { name = "sentry-sdk" },
82 | ]
83 |
84 | [package.metadata]
85 | requires-dist = [
86 | { name = "httpx", specifier = ">=0.28.1" },
87 | { name = "pyyaml", specifier = ">=6.0.2" },
88 | { name = "sentry-sdk", specifier = ">=2.32.0" },
89 | ]
90 |
91 | [[package]]
92 | name = "pyyaml"
93 | version = "6.0.2"
94 | source = { registry = "https://pypi.org/simple" }
95 | sdist = { url = "https://files.pythonhosted.org/packages/54/ed/79a089b6be93607fa5cdaedf301d7dfb23af5f25c398d5ead2525b063e17/pyyaml-6.0.2.tar.gz", hash = "sha256:d584d9ec91ad65861cc08d42e834324ef890a082e591037abe114850ff7bbc3e", size = 130631, upload_time = "2024-08-06T20:33:50.674Z" }
96 | wheels = [
97 | { url = "https://files.pythonhosted.org/packages/f8/aa/7af4e81f7acba21a4c6be026da38fd2b872ca46226673c89a758ebdc4fd2/PyYAML-6.0.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:cc1c1159b3d456576af7a3e4d1ba7e6924cb39de8f67111c735f6fc832082774", size = 184612, upload_time = "2024-08-06T20:32:03.408Z" },
98 | { url = "https://files.pythonhosted.org/packages/8b/62/b9faa998fd185f65c1371643678e4d58254add437edb764a08c5a98fb986/PyYAML-6.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:1e2120ef853f59c7419231f3bf4e7021f1b936f6ebd222406c3b60212205d2ee", size = 172040, upload_time = "2024-08-06T20:32:04.926Z" },
99 | { url = "https://files.pythonhosted.org/packages/ad/0c/c804f5f922a9a6563bab712d8dcc70251e8af811fce4524d57c2c0fd49a4/PyYAML-6.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5d225db5a45f21e78dd9358e58a98702a0302f2659a3c6cd320564b75b86f47c", size = 736829, upload_time = "2024-08-06T20:32:06.459Z" },
100 | { url = "https://files.pythonhosted.org/packages/51/16/6af8d6a6b210c8e54f1406a6b9481febf9c64a3109c541567e35a49aa2e7/PyYAML-6.0.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5ac9328ec4831237bec75defaf839f7d4564be1e6b25ac710bd1a96321cc8317", size = 764167, upload_time = "2024-08-06T20:32:08.338Z" },
101 | { url = "https://files.pythonhosted.org/packages/75/e4/2c27590dfc9992f73aabbeb9241ae20220bd9452df27483b6e56d3975cc5/PyYAML-6.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3ad2a3decf9aaba3d29c8f537ac4b243e36bef957511b4766cb0057d32b0be85", size = 762952, upload_time = "2024-08-06T20:32:14.124Z" },
102 | { url = "https://files.pythonhosted.org/packages/9b/97/ecc1abf4a823f5ac61941a9c00fe501b02ac3ab0e373c3857f7d4b83e2b6/PyYAML-6.0.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:ff3824dc5261f50c9b0dfb3be22b4567a6f938ccce4587b38952d85fd9e9afe4", size = 735301, upload_time = "2024-08-06T20:32:16.17Z" },
103 | { url = "https://files.pythonhosted.org/packages/45/73/0f49dacd6e82c9430e46f4a027baa4ca205e8b0a9dce1397f44edc23559d/PyYAML-6.0.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:797b4f722ffa07cc8d62053e4cff1486fa6dc094105d13fea7b1de7d8bf71c9e", size = 756638, upload_time = "2024-08-06T20:32:18.555Z" },
104 | { url = "https://files.pythonhosted.org/packages/22/5f/956f0f9fc65223a58fbc14459bf34b4cc48dec52e00535c79b8db361aabd/PyYAML-6.0.2-cp311-cp311-win32.whl", hash = "sha256:11d8f3dd2b9c1207dcaf2ee0bbbfd5991f571186ec9cc78427ba5bd32afae4b5", size = 143850, upload_time = "2024-08-06T20:32:19.889Z" },
105 | { url = "https://files.pythonhosted.org/packages/ed/23/8da0bbe2ab9dcdd11f4f4557ccaf95c10b9811b13ecced089d43ce59c3c8/PyYAML-6.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:e10ce637b18caea04431ce14fabcf5c64a1c61ec9c56b071a4b7ca131ca52d44", size = 161980, upload_time = "2024-08-06T20:32:21.273Z" },
106 | { url = "https://files.pythonhosted.org/packages/86/0c/c581167fc46d6d6d7ddcfb8c843a4de25bdd27e4466938109ca68492292c/PyYAML-6.0.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:c70c95198c015b85feafc136515252a261a84561b7b1d51e3384e0655ddf25ab", size = 183873, upload_time = "2024-08-06T20:32:25.131Z" },
107 | { url = "https://files.pythonhosted.org/packages/a8/0c/38374f5bb272c051e2a69281d71cba6fdb983413e6758b84482905e29a5d/PyYAML-6.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:ce826d6ef20b1bc864f0a68340c8b3287705cae2f8b4b1d932177dcc76721725", size = 173302, upload_time = "2024-08-06T20:32:26.511Z" },
108 | { url = "https://files.pythonhosted.org/packages/c3/93/9916574aa8c00aa06bbac729972eb1071d002b8e158bd0e83a3b9a20a1f7/PyYAML-6.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1f71ea527786de97d1a0cc0eacd1defc0985dcf6b3f17bb77dcfc8c34bec4dc5", size = 739154, upload_time = "2024-08-06T20:32:28.363Z" },
109 | { url = "https://files.pythonhosted.org/packages/95/0f/b8938f1cbd09739c6da569d172531567dbcc9789e0029aa070856f123984/PyYAML-6.0.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9b22676e8097e9e22e36d6b7bda33190d0d400f345f23d4065d48f4ca7ae0425", size = 766223, upload_time = "2024-08-06T20:32:30.058Z" },
110 | { url = "https://files.pythonhosted.org/packages/b9/2b/614b4752f2e127db5cc206abc23a8c19678e92b23c3db30fc86ab731d3bd/PyYAML-6.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:80bab7bfc629882493af4aa31a4cfa43a4c57c83813253626916b8c7ada83476", size = 767542, upload_time = "2024-08-06T20:32:31.881Z" },
111 | { url = "https://files.pythonhosted.org/packages/d4/00/dd137d5bcc7efea1836d6264f049359861cf548469d18da90cd8216cf05f/PyYAML-6.0.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:0833f8694549e586547b576dcfaba4a6b55b9e96098b36cdc7ebefe667dfed48", size = 731164, upload_time = "2024-08-06T20:32:37.083Z" },
112 | { url = "https://files.pythonhosted.org/packages/c9/1f/4f998c900485e5c0ef43838363ba4a9723ac0ad73a9dc42068b12aaba4e4/PyYAML-6.0.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8b9c7197f7cb2738065c481a0461e50ad02f18c78cd75775628afb4d7137fb3b", size = 756611, upload_time = "2024-08-06T20:32:38.898Z" },
113 | { url = "https://files.pythonhosted.org/packages/df/d1/f5a275fdb252768b7a11ec63585bc38d0e87c9e05668a139fea92b80634c/PyYAML-6.0.2-cp312-cp312-win32.whl", hash = "sha256:ef6107725bd54b262d6dedcc2af448a266975032bc85ef0172c5f059da6325b4", size = 140591, upload_time = "2024-08-06T20:32:40.241Z" },
114 | { url = "https://files.pythonhosted.org/packages/0c/e8/4f648c598b17c3d06e8753d7d13d57542b30d56e6c2dedf9c331ae56312e/PyYAML-6.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:7e7401d0de89a9a855c839bc697c079a4af81cf878373abd7dc625847d25cbd8", size = 156338, upload_time = "2024-08-06T20:32:41.93Z" },
115 | { url = "https://files.pythonhosted.org/packages/ef/e3/3af305b830494fa85d95f6d95ef7fa73f2ee1cc8ef5b495c7c3269fb835f/PyYAML-6.0.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:efdca5630322a10774e8e98e1af481aad470dd62c3170801852d752aa7a783ba", size = 181309, upload_time = "2024-08-06T20:32:43.4Z" },
116 | { url = "https://files.pythonhosted.org/packages/45/9f/3b1c20a0b7a3200524eb0076cc027a970d320bd3a6592873c85c92a08731/PyYAML-6.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:50187695423ffe49e2deacb8cd10510bc361faac997de9efef88badc3bb9e2d1", size = 171679, upload_time = "2024-08-06T20:32:44.801Z" },
117 | { url = "https://files.pythonhosted.org/packages/7c/9a/337322f27005c33bcb656c655fa78325b730324c78620e8328ae28b64d0c/PyYAML-6.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0ffe8360bab4910ef1b9e87fb812d8bc0a308b0d0eef8c8f44e0254ab3b07133", size = 733428, upload_time = "2024-08-06T20:32:46.432Z" },
118 | { url = "https://files.pythonhosted.org/packages/a3/69/864fbe19e6c18ea3cc196cbe5d392175b4cf3d5d0ac1403ec3f2d237ebb5/PyYAML-6.0.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:17e311b6c678207928d649faa7cb0d7b4c26a0ba73d41e99c4fff6b6c3276484", size = 763361, upload_time = "2024-08-06T20:32:51.188Z" },
119 | { url = "https://files.pythonhosted.org/packages/04/24/b7721e4845c2f162d26f50521b825fb061bc0a5afcf9a386840f23ea19fa/PyYAML-6.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:70b189594dbe54f75ab3a1acec5f1e3faa7e8cf2f1e08d9b561cb41b845f69d5", size = 759523, upload_time = "2024-08-06T20:32:53.019Z" },
120 | { url = "https://files.pythonhosted.org/packages/2b/b2/e3234f59ba06559c6ff63c4e10baea10e5e7df868092bf9ab40e5b9c56b6/PyYAML-6.0.2-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:41e4e3953a79407c794916fa277a82531dd93aad34e29c2a514c2c0c5fe971cc", size = 726660, upload_time = "2024-08-06T20:32:54.708Z" },
121 | { url = "https://files.pythonhosted.org/packages/fe/0f/25911a9f080464c59fab9027482f822b86bf0608957a5fcc6eaac85aa515/PyYAML-6.0.2-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:68ccc6023a3400877818152ad9a1033e3db8625d899c72eacb5a668902e4d652", size = 751597, upload_time = "2024-08-06T20:32:56.985Z" },
122 | { url = "https://files.pythonhosted.org/packages/14/0d/e2c3b43bbce3cf6bd97c840b46088a3031085179e596d4929729d8d68270/PyYAML-6.0.2-cp313-cp313-win32.whl", hash = "sha256:bc2fa7c6b47d6bc618dd7fb02ef6fdedb1090ec036abab80d4681424b84c1183", size = 140527, upload_time = "2024-08-06T20:33:03.001Z" },
123 | { url = "https://files.pythonhosted.org/packages/fa/de/02b54f42487e3d3c6efb3f89428677074ca7bf43aae402517bc7cca949f3/PyYAML-6.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:8388ee1976c416731879ac16da0aff3f63b286ffdd57cdeb95f3f2e085687563", size = 156446, upload_time = "2024-08-06T20:33:04.33Z" },
124 | ]
125 |
126 | [[package]]
127 | name = "sentry-sdk"
128 | version = "2.32.0"
129 | source = { registry = "https://pypi.org/simple" }
130 | dependencies = [
131 | { name = "certifi" },
132 | { name = "urllib3" },
133 | ]
134 | sdist = { url = "https://files.pythonhosted.org/packages/10/59/eb90c45cb836cf8bec973bba10230ddad1c55e2b2e9ffa9d7d7368948358/sentry_sdk-2.32.0.tar.gz", hash = "sha256:9016c75d9316b0f6921ac14c8cd4fb938f26002430ac5be9945ab280f78bec6b", size = 334932, upload_time = "2025-06-27T08:10:02.89Z" }
135 | wheels = [
136 | { url = "https://files.pythonhosted.org/packages/01/a1/fc4856bd02d2097324fb7ce05b3021fb850f864b83ca765f6e37e92ff8ca/sentry_sdk-2.32.0-py2.py3-none-any.whl", hash = "sha256:6cf51521b099562d7ce3606da928c473643abe99b00ce4cb5626ea735f4ec345", size = 356122, upload_time = "2025-06-27T08:10:01.424Z" },
137 | ]
138 |
139 | [[package]]
140 | name = "sniffio"
141 | version = "1.3.1"
142 | source = { registry = "https://pypi.org/simple" }
143 | sdist = { url = "https://files.pythonhosted.org/packages/a2/87/a6771e1546d97e7e041b6ae58d80074f81b7d5121207425c964ddf5cfdbd/sniffio-1.3.1.tar.gz", hash = "sha256:f4324edc670a0f49750a81b895f35c3adb843cca46f0530f79fc1babb23789dc", size = 20372, upload_time = "2024-02-25T23:20:04.057Z" }
144 | wheels = [
145 | { url = "https://files.pythonhosted.org/packages/e9/44/75a9c9421471a6c4805dbf2356f7c181a29c1879239abab1ea2cc8f38b40/sniffio-1.3.1-py3-none-any.whl", hash = "sha256:2f6da418d1f1e0fddd844478f41680e794e6051915791a034ff65e5f100525a2", size = 10235, upload_time = "2024-02-25T23:20:01.196Z" },
146 | ]
147 |
148 | [[package]]
149 | name = "typing-extensions"
150 | version = "4.14.0"
151 | source = { registry = "https://pypi.org/simple" }
152 | sdist = { url = "https://files.pythonhosted.org/packages/d1/bc/51647cd02527e87d05cb083ccc402f93e441606ff1f01739a62c8ad09ba5/typing_extensions-4.14.0.tar.gz", hash = "sha256:8676b788e32f02ab42d9e7c61324048ae4c6d844a399eebace3d4979d75ceef4", size = 107423, upload_time = "2025-06-02T14:52:11.399Z" }
153 | wheels = [
154 | { url = "https://files.pythonhosted.org/packages/69/e0/552843e0d356fbb5256d21449fa957fa4eff3bbc135a74a691ee70c7c5da/typing_extensions-4.14.0-py3-none-any.whl", hash = "sha256:a1514509136dd0b477638fc68d6a91497af5076466ad0fa6c338e44e359944af", size = 43839, upload_time = "2025-06-02T14:52:10.026Z" },
155 | ]
156 |
157 | [[package]]
158 | name = "urllib3"
159 | version = "2.5.0"
160 | source = { registry = "https://pypi.org/simple" }
161 | sdist = { url = "https://files.pythonhosted.org/packages/15/22/9ee70a2574a4f4599c47dd506532914ce044817c7752a79b6a51286319bc/urllib3-2.5.0.tar.gz", hash = "sha256:3fc47733c7e419d4bc3f6b3dc2b4f890bb743906a30d56ba4a5bfa4bbff92760", size = 393185, upload_time = "2025-06-18T14:07:41.644Z" }
162 | wheels = [
163 | { url = "https://files.pythonhosted.org/packages/a7/c2/fe1e52489ae3122415c51f387e221dd0773709bad6c6cdaa599e8a2c5185/urllib3-2.5.0-py3-none-any.whl", hash = "sha256:e6b01673c0fa6a13e374b50871808eb3bf7046c4b125b216f6bf1cc604cff0dc", size = 129795, upload_time = "2025-06-18T14:07:40.39Z" },
164 | ]
165 |
--------------------------------------------------------------------------------
/main.py:
--------------------------------------------------------------------------------
1 | import httpx
2 | import json
3 | import os
4 | import re
5 | import sentry_sdk
6 | import random
7 | import time
8 | import yaml
9 | import logging
10 |
11 | # --- Logging Setup ---
12 | if os.environ.get("MHYY_LOGLEVEL", "").upper() == "DEBUG":
13 | loglevel = logging.DEBUG
14 | elif os.environ.get("MHYY_LOGLEVEL", "").upper() == "WARNING":
15 | loglevel = logging.WARNING
16 | elif os.environ.get("MHYY_LOGLEVEL", "").upper() == "ERROR":
17 | loglevel = logging.ERROR
18 | else:
19 | loglevel = logging.INFO
20 |
21 | logging.basicConfig(
22 | level=loglevel,
23 | format="%(asctime)s [%(levelname)s]: %(message)s",
24 | datefmt="%Y-%m-%d %H:%M:%S",
25 | )
26 |
27 | logger = logging.getLogger()
28 |
29 |
30 | # --- Config Reading Function ---
31 | def ReadConf(variable_name, default_value=None):
32 | """
33 | Reads YAML configuration from environment variable or config.yml.
34 | Assumes the variable_name contains the full YAML content.
35 | """
36 | env_value = os.environ.get(variable_name)
37 |
38 | if env_value:
39 | try:
40 | # Attempt to load from environment variable (assuming it's YAML)
41 | config_data = yaml.load(env_value, Loader=yaml.FullLoader)
42 | logger.debug("Configuration loaded from environment variable.")
43 | return config_data
44 | except yaml.YAMLError as e:
45 | logger.error(
46 | f"Failed to parse YAML from environment variable '{variable_name}': {e}"
47 | )
48 | return default_value # Return default or None if env parsing fails
49 | except Exception as e:
50 | logger.error(
51 | f"An unexpected error occurred reading environment variable '{variable_name}': {e}"
52 | )
53 | return default_value
54 |
55 | # If not found or failed in environment, try to read from config.yml
56 | try:
57 | with open("config.yml", "r", encoding="utf-8") as config_file:
58 | config_data = yaml.load(config_file, Loader=yaml.FullLoader)
59 | logger.debug("Configuration loaded from config.yml file.")
60 | return config_data
61 | except FileNotFoundError:
62 | logger.warning("config.yml not found.")
63 | return default_value
64 | except yaml.YAMLError as e:
65 | logger.error(f"Failed to parse YAML from config.yml: {e}")
66 | return default_value
67 | except Exception as e:
68 | logger.error(f"An unexpected error occurred reading config.yml: {e}")
69 | return default_value
70 |
71 |
72 | # --- Sentry Setup ---
73 | sentry_sdk.init(
74 | "https://425d7b4536f94c9fa540fe34dd6609a2@o361988.ingest.sentry.io/6352584",
75 | traces_sample_rate=1.0,
76 | )
77 |
78 | # --- Load Configuration ---
79 | full_config = ReadConf("MHYY_CONFIG", {}) # Read the entire config
80 | accounts_conf = full_config.get("accounts")
81 | notification_settings = full_config.get(
82 | "notifications", {}
83 | ) # Get notification settings, default to empty dict
84 | proxy_settings = full_config.get("proxy")
85 |
86 | if proxy_settings:
87 | logger.info(f"检测到代理设置: {proxy_settings}")
88 |
89 | if not accounts_conf:
90 | logger.error(
91 | "请正确配置环境变量 MHYY_CONFIG 或者 config.yml 并包含 'accounts' 部分后再运行本脚本!"
92 | )
93 | os._exit(0)
94 | logger.info(f"检测到 {len(accounts_conf)} 个账号,正在进行任务……")
95 |
96 |
97 | def send_notifications(message: str, settings: dict, proxy: str = None):
98 | """Sends message to configured notification services."""
99 | if not message or not settings:
100 | logger.debug("No message to send or no notification settings configured.")
101 | return
102 |
103 | logger.info("Attempting to send notifications...")
104 |
105 | # ServerChan (SCT)
106 | sct_conf = settings.get("serverchan", {})
107 | sct_key = sct_conf.get("key")
108 | if sct_key:
109 | sct_url = f"https://sctapi.ftqq.com/{sct_key}.send"
110 | try:
111 | payload = {"title": "MHYY-AutoCheckin 状态推送", "desp": message}
112 | response = httpx.get(sct_url, params=payload, timeout=10)
113 | response.raise_for_status()
114 | logger.info("ServerChan notification sent successfully.")
115 | except httpx.HTTPStatusError as e:
116 | logger.error(
117 | f"ServerChan HTTP error occurred: {e.response.status_code} - {e.response.text}"
118 | )
119 | except httpx.RequestError as e:
120 | logger.error(f"An error occurred while requesting ServerChan: {e}")
121 | except Exception as e:
122 | logger.error(
123 | f"An unexpected error occurred sending ServerChan notification: {e}"
124 | )
125 | else:
126 | logger.debug("ServerChan not configured.")
127 |
128 | # DingTalk
129 | dingtalk_conf = settings.get("dingtalk", {})
130 | dingtalk_webhook_url = dingtalk_conf.get("webhook_url")
131 | if dingtalk_webhook_url:
132 | try:
133 | payload = {"msgtype": "text", "text": {"content": message}}
134 | response = httpx.post(dingtalk_webhook_url, json=payload, timeout=10)
135 | response.raise_for_status()
136 | result = response.json()
137 | if result.get("errcode") == 0:
138 | logger.info("DingTalk notification sent successfully.")
139 | else:
140 | logger.error(
141 | f"DingTalk error: {result.get('errcode')} - {result.get('errmsg')}"
142 | )
143 | except httpx.HTTPStatusError as e:
144 | logger.error(
145 | f"DingTalk HTTP error occurred: {e.response.status_code} - {e.response.text}"
146 | )
147 | except httpx.RequestError as e:
148 | logger.error(f"An error occurred while requesting DingTalk: {e}")
149 | except Exception as e:
150 | logger.error(
151 | f"An unexpected error occurred sending DingTalk notification: {e}"
152 | )
153 | else:
154 | logger.debug("DingTalk not configured.")
155 |
156 | # PushPlus
157 | sct_conf = settings.get("pushplus", {})
158 | sct_key = sct_conf.get("key")
159 | if sct_key:
160 | sct_url = f"http://www.pushplus.plus/send/{sct_key}"
161 | try:
162 | payload = {"title": "MHYY-AutoCheckin 状态推送", "content": message}
163 | response = httpx.post(sct_url, data=payload, timeout=10)
164 | response.raise_for_status()
165 | logger.info("PushPlus notification sent successfully.")
166 | except httpx.HTTPStatusError as e:
167 | logger.error(
168 | f"PushPlus HTTP error occurred: {e.response.status_code} - {e.response.text}"
169 | )
170 | except httpx.RequestError as e:
171 | logger.error(f"An error occurred while requesting PushPlus: {e}")
172 | except Exception as e:
173 | logger.error(
174 | f"An unexpected error occurred sending PushPlus notification: {e}"
175 | )
176 | else:
177 | logger.debug("PushPlus not configured.")
178 |
179 |
180 | # Telegram
181 | telegram_conf = settings.get("telegram", {})
182 | telegram_bot_token = telegram_conf.get("bot_token")
183 | telegram_chat_id = telegram_conf.get("chat_id")
184 | if telegram_bot_token and telegram_chat_id:
185 | telegram_url = f"https://api.telegram.org/bot{telegram_bot_token}/sendMessage"
186 | try:
187 | # Telegram text message parameters
188 | params = {
189 | "chat_id": telegram_chat_id,
190 | "text": message,
191 | # Optional: parse_mode can be 'MarkdownV2', 'HTML', or None
192 | # For simplicity, sending as plain text. Be careful with special characters if using Markdown/HTML.
193 | # "parse_mode": "HTML"
194 | }
195 | logger.info("Sending Telegram notification...")
196 | logger.debug(f"Proxy settings: {proxy}")
197 | response = httpx.get(telegram_url, params=params, timeout=10, proxy=proxy)
198 | response.raise_for_status() # Raise an exception for bad status codes
199 | result = response.json()
200 | logger.info(f"Telegram response: {result}")
201 | if result.get("ok"):
202 | logger.info("Telegram notification sent successfully.")
203 | else:
204 | logger.error(
205 | f"Telegram error: {result.get('error_code')} - {result.get('description')}"
206 | )
207 | except httpx.HTTPStatusError as e:
208 | logger.error(
209 | f"Telegram HTTP error occurred: {e.response.status_code} - {e.response.text}"
210 | )
211 | except httpx.RequestError as e:
212 | logger.error(f"An error occurred while requesting Telegram: {e}")
213 | except Exception as e:
214 | logger.error(
215 | f"An unexpected error occurred sending Telegram notification: {e}"
216 | )
217 | else:
218 | logger.debug("Telegram not configured.")
219 |
220 |
221 | class RunError(Exception):
222 | pass
223 |
224 |
225 | if __name__ == "__main__":
226 | if not os.environ.get("MHYY_DEBUG", False):
227 | wait_time = random.randint(1, 2) # Random Sleep to Avoid Ban
228 | logger.info(
229 | f"为了避免同一时间签到人数太多导致被官方怀疑,开始休眠 {wait_time} 秒"
230 | )
231 | time.sleep(wait_time)
232 |
233 | version = "5.0.0" # Default version
234 | try:
235 | ver_info = httpx.get(
236 | "https://hyp-api.mihoyo.com/hyp/hyp-connect/api/getGameBranches?game_ids[]=1Z8W5NHUQb&launcher_id=jGHBHlcOq1",
237 | timeout=60,
238 | verify=False,
239 | ).text
240 | version = json.loads(ver_info)["data"]["game_branches"][0]["main"]["tag"]
241 | logger.info(f"从官方API获取到云·原神最新版本号:{version}")
242 | except Exception as e:
243 | logger.warning(f"获取版本号失败,使用默认版本:{version}. Error: {e}")
244 |
245 | for config in accounts_conf:
246 | notification_msg = (
247 | "【MHYY】签到状态推送\n\n" # Message container for the current account
248 | )
249 |
250 | # 各种API的URL
251 | NotificationURL = "https://api-cloudgame.mihoyo.com/hk4e_cg_cn/gamer/api/listNotifications?status=NotificationStatusUnread&type=NotificationTypePopup&is_sort=true"
252 | WalletURL = "https://api-cloudgame.mihoyo.com/hk4e_cg_cn/wallet/wallet/get"
253 | AnnouncementURL = (
254 | "https://api-cloudgame.mihoyo.com/hk4e_cg_cn/gamer/api/getAnnouncementInfo"
255 | )
256 |
257 | # Validate account config entry
258 | if not isinstance(config, dict) or "token" not in config:
259 | error_msg = f"跳过无效的账号配置条目: {config}"
260 | logger.error(error_msg)
261 | notification_msg += error_msg + "\n"
262 | send_notifications(
263 | notification_msg, notification_settings, proxy=proxy_settings if proxy_settings else None
264 | ) # Notify about invalid config
265 | continue # Skip this entry
266 |
267 | try:
268 | token = config["token"]
269 | client_type = config.get("type", 5)
270 | sysver = config.get("sysver", "14.0")
271 | deviceid = config["deviceid"]
272 | devicename = config.get("devicename", "iPhone 13")
273 | devicemodel = config.get("devicemodel", "iPhone13,3")
274 | appid = config.get("appid", "1953439978")
275 |
276 | # Construct headers
277 | headers = {
278 | "x-rpc-combo_token": token,
279 | "x-rpc-client_type": str(client_type),
280 | "x-rpc-app_version": str(version),
281 | "x-rpc-sys_version": str(sysver),
282 | "x-rpc-channel": "cyydmihoyo",
283 | "x-rpc-device_id": deviceid,
284 | "x-rpc-device_name": devicename,
285 | "x-rpc-device_model": devicemodel,
286 | "x-rpc-vendor_id": "1",
287 | "x-rpc-cg_game_biz": "hk4e_cn",
288 | "x-rpc-op_biz": "clgm_cn",
289 | "x-rpc-language": "zh-cn",
290 | "Host": "api-cloudgame.mihoyo.com",
291 | "Connection": "Keep-Alive",
292 | "Accept-Encoding": "gzip",
293 | "User-Agent": f"Mozilla/5.0 (iPhone; CPU iPhone OS {sysver} like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148",
294 | }
295 |
296 | bbsid_match = re.search(r"oi=(\d+)", token)
297 | bbsid = bbsid_match.group(1) if bbsid_match else "N/A"
298 |
299 | region = config.get("region", "cn")
300 | if region == "os":
301 | headers["x-rpc-channel"] = "mihoyo"
302 | headers["x-rpc-cg_game_biz"] = "hk4e_global"
303 | headers["x-rpc-op_biz"] = "clgm_global"
304 | headers["x-rpc-cg_game_id"] = "9000254"
305 | headers["x-rpc-app_id"] = "600493"
306 | headers["User-Agent"] = "okhttp/4.10.0"
307 | headers["Host"] = "sg-cg-api.hoyoverse.com"
308 | NotificationURL = "https://sg-cg-api.hoyoverse.com/hk4e_global/cg/gamer/api/listNotifications?status=NotificationStatusUnread&type=NotificationTypePopup&is_sort=true"
309 | WalletURL = (
310 | "https://sg-cg-api.hoyoverse.com/hk4e_global/cg/wallet/wallet/get"
311 | )
312 | AnnouncementURL = "https://sg-cg-api.hoyoverse.com/hk4e_global/cg/gamer/api/getAnnouncementInfo"
313 |
314 | logger.info(
315 | f"--- 正在进行第 {accounts_conf.index(config) + 1} 个账号 (BBSID: {bbsid}),服务器为{'CN' if region != 'os' else 'GLOBAL'} ---"
316 | )
317 | notification_msg += (
318 | f"☁️ 云原神签到结果 ({'CN' if region != 'os' else 'GLOBAL'}):\n"
319 | )
320 | notification_msg += (
321 | f"账号 {accounts_conf.index(config) + 1} (BBSID: {bbsid})\n\n"
322 | )
323 |
324 | try:
325 | wallet_res = httpx.get(
326 | WalletURL, headers=headers, timeout=30, verify=False
327 | )
328 | wallet_res.raise_for_status()
329 | wallet_data = wallet_res.json()
330 | logger.debug(f"Wallet response: {wallet_data}")
331 |
332 | if wallet_data.get("retcode") == -100:
333 | error_msg = f"当前登录已过期,请重新登陆!返回为:{wallet_data.get('message', 'Unknown error')}"
334 | logger.error(error_msg)
335 | notification_msg += error_msg + "\n"
336 | elif wallet_data.get("retcode") == 0 and wallet_data.get("data"):
337 | free_time = wallet_data["data"]["free_time"]["free_time"]
338 | play_card_msg = wallet_data["data"]["play_card"]["short_msg"]
339 | coin_num = wallet_data["data"]["coin"]["coin_num"]
340 | coin_minutes = int(coin_num) / 10 if coin_num is not None else 0
341 | wallet_status = f"✅ 钱包:免费时长 {free_time} 分钟,畅玩卡状态为「{play_card_msg}」,拥有原点 {coin_num} 点 ({coin_minutes:.0f}分钟)\n"
342 | logger.info(wallet_status.strip())
343 | notification_msg += wallet_status
344 | else:
345 | error_msg = f"获取钱包信息失败: {wallet_data.get('retcode')} - {wallet_data.get('message', 'Unknown error')}"
346 | logger.error(error_msg)
347 | notification_msg += error_msg + "\n"
348 |
349 | except httpx.HTTPStatusError as e:
350 | error_msg = f"获取钱包信息HTTP错误: {e.response.status_code} - {e.response.text}"
351 | logger.error(error_msg)
352 | notification_msg += error_msg + "\n"
353 | except httpx.RequestError as e:
354 | error_msg = f"请求钱包信息失败: {e}"
355 | logger.error(error_msg)
356 | notification_msg += error_msg + "\n"
357 | except Exception as e:
358 | error_msg = f"解析钱包信息出错: {e}"
359 | logger.error(error_msg)
360 | notification_msg += error_msg + "\n"
361 |
362 | # --- Check Sign-in Status ---
363 | try:
364 | announcement_res = httpx.get(
365 | AnnouncementURL, headers=headers, timeout=30, verify=False
366 | )
367 | announcement_res.raise_for_status()
368 | # logger.debug(f'Announcement response: {announcement_res.text}') # Too verbose usually
369 |
370 | notification_res = httpx.get(
371 | NotificationURL, headers=headers, timeout=30, verify=False
372 | )
373 | notification_res.raise_for_status()
374 | notification_data = notification_res.json()
375 | logger.debug(f"Notification response: {notification_data}")
376 |
377 | sign_in_status = "❓ 未知签到状态" # Default status
378 |
379 | if notification_data.get("retcode") == 0 and notification_data.get(
380 | "data"
381 | ):
382 | notification_list = notification_data["data"].get("list", [])
383 |
384 | if not notification_list:
385 | sign_in_status = "✅ 今天似乎已经签到过了!(通知列表为空)"
386 | logger.info(sign_in_status)
387 | notification_msg += sign_in_status + "\n"
388 | else:
389 | # Look for a notification indicating sign-in reward or limit reached
390 | # The logic here was a bit fragile, let's try to be more robust
391 | # Look for specific message patterns if possible, or just check the presence of notifications
392 |
393 | last_notification_msg = notification_list[0].get("msg")
394 | if len(notification_list) > 0:
395 | last_notification_msg = notification_list[-1].get("msg")
396 |
397 | try:
398 | # Attempt to parse the 'msg' field which is often a JSON string itself
399 | msg_payload = json.loads(last_notification_msg)
400 | logger.debug(
401 | f"Parsed last notification msg payload: {msg_payload}"
402 | )
403 |
404 | if msg_payload.get("msg") == "每日登录奖励" or msg_payload.get("msg") == "每日登陆奖励":
405 | # This indicates a successful sign-in
406 | sign_in_status = f"✅ 获取签到情况成功!{msg_payload.get('msg')}:获得 {msg_payload.get('num')} 分钟"
407 | logger.info(sign_in_status)
408 | notification_msg += sign_in_status + "\n"
409 | elif msg_payload.get("over_num", 0) > 0:
410 | sign_in_status = f"✅ 获取签到情况成功!免费时长已达上限,只能获得 {msg_payload.get('num')} 分钟 (超出 {msg_payload.get('over_num')} 分钟)"
411 | logger.info(sign_in_status)
412 | notification_msg += sign_in_status + "\n"
413 | else:
414 | sign_in_status = f"❓ 获取到其他通知,可能已经签到或状态未知: {last_notification_msg}"
415 | logger.info(sign_in_status)
416 | notification_msg += sign_in_status + "\n"
417 |
418 | except json.JSONDecodeError:
419 | # 'msg' is not a JSON string
420 | sign_in_status = f"❓ 获取到非标准通知,可能已经签到或状态未知: {last_notification_msg}"
421 | logger.info(sign_in_status)
422 | notification_msg += sign_in_status + "\n"
423 | except Exception as e:
424 | # Other errors during parsing msg
425 | sign_in_status = f"❌ 解析通知详情时出错: {e}. Raw msg: {last_notification_msg}"
426 | logger.error(sign_in_status)
427 | notification_msg += sign_in_status + "\n"
428 |
429 | elif notification_data.get("retcode") != 0:
430 | error_msg = f"获取通知列表失败: {notification_data.get('retcode')} - {notification_data.get('message', 'Unknown error')}"
431 | logger.error(error_msg)
432 | notification_msg += error_msg + "\n"
433 |
434 | except httpx.HTTPStatusError as e:
435 | error_msg = f"获取通知列表HTTP错误: {e.response.status_code} - {e.response.text}"
436 | logger.error(error_msg)
437 | notification_msg += error_msg + "\n"
438 | except httpx.RequestError as e:
439 | error_msg = f"请求通知列表失败: {e}"
440 | logger.error(error_msg)
441 | notification_msg += error_msg + "\n"
442 | except Exception as e:
443 | error_msg = f"检查签到状态时出错: {e}"
444 | logger.error(error_msg)
445 | notification_msg += error_msg + "\n"
446 |
447 | except KeyError as e:
448 | # This catches missing required keys in account config
449 | error_msg = f"账号配置缺少必需的键: {e}"
450 | logger.error(error_msg)
451 | notification_msg += f"❌ 账号配置错误: {error_msg}\n"
452 | except Exception as e:
453 | # Catch any other unexpected errors during account processing
454 | error_msg = f"处理账号时发生未知错误: {e}"
455 | logger.error(error_msg)
456 | notification_msg += f"❌ 账号处理错误: {error_msg}\n"
457 |
458 | if accounts_conf.index(config) < len(accounts_conf) - 1:
459 | notification_msg += "\n---\n\n"
460 |
461 | send_notifications(notification_msg, notification_settings, proxy=proxy_settings if proxy_settings else None)
462 |
463 | logger.info("所有任务已经执行完毕!")
464 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | GNU AFFERO GENERAL PUBLIC LICENSE
2 | Version 3, 19 November 2007
3 |
4 | Copyright (C) 2007 Free Software Foundation, Inc.
5 | Everyone is permitted to copy and distribute verbatim copies
6 | of this license document, but changing it is not allowed.
7 |
8 | Preamble
9 |
10 | The GNU Affero General Public License is a free, copyleft license for
11 | software and other kinds of works, specifically designed to ensure
12 | cooperation with the community in the case of network server software.
13 |
14 | The licenses for most software and other practical works are designed
15 | to take away your freedom to share and change the works. By contrast,
16 | our General Public Licenses are intended to guarantee your freedom to
17 | share and change all versions of a program--to make sure it remains free
18 | software for all its users.
19 |
20 | When we speak of free software, we are referring to freedom, not
21 | price. Our General Public Licenses are designed to make sure that you
22 | have the freedom to distribute copies of free software (and charge for
23 | them if you wish), that you receive source code or can get it if you
24 | want it, that you can change the software or use pieces of it in new
25 | free programs, and that you know you can do these things.
26 |
27 | Developers that use our General Public Licenses protect your rights
28 | with two steps: (1) assert copyright on the software, and (2) offer
29 | you this License which gives you legal permission to copy, distribute
30 | and/or modify the software.
31 |
32 | A secondary benefit of defending all users' freedom is that
33 | improvements made in alternate versions of the program, if they
34 | receive widespread use, become available for other developers to
35 | incorporate. Many developers of free software are heartened and
36 | encouraged by the resulting cooperation. However, in the case of
37 | software used on network servers, this result may fail to come about.
38 | The GNU General Public License permits making a modified version and
39 | letting the public access it on a server without ever releasing its
40 | source code to the public.
41 |
42 | The GNU Affero General Public License is designed specifically to
43 | ensure that, in such cases, the modified source code becomes available
44 | to the community. It requires the operator of a network server to
45 | provide the source code of the modified version running there to the
46 | users of that server. Therefore, public use of a modified version, on
47 | a publicly accessible server, gives the public access to the source
48 | code of the modified version.
49 |
50 | An older license, called the Affero General Public License and
51 | published by Affero, was designed to accomplish similar goals. This is
52 | a different license, not a version of the Affero GPL, but Affero has
53 | released a new version of the Affero GPL which permits relicensing under
54 | this license.
55 |
56 | The precise terms and conditions for copying, distribution and
57 | modification follow.
58 |
59 | TERMS AND CONDITIONS
60 |
61 | 0. Definitions.
62 |
63 | "This License" refers to version 3 of the GNU Affero General Public License.
64 |
65 | "Copyright" also means copyright-like laws that apply to other kinds of
66 | works, such as semiconductor masks.
67 |
68 | "The Program" refers to any copyrightable work licensed under this
69 | License. Each licensee is addressed as "you". "Licensees" and
70 | "recipients" may be individuals or organizations.
71 |
72 | To "modify" a work means to copy from or adapt all or part of the work
73 | in a fashion requiring copyright permission, other than the making of an
74 | exact copy. The resulting work is called a "modified version" of the
75 | earlier work or a work "based on" the earlier work.
76 |
77 | A "covered work" means either the unmodified Program or a work based
78 | on the Program.
79 |
80 | To "propagate" a work means to do anything with it that, without
81 | permission, would make you directly or secondarily liable for
82 | infringement under applicable copyright law, except executing it on a
83 | computer or modifying a private copy. Propagation includes copying,
84 | distribution (with or without modification), making available to the
85 | public, and in some countries other activities as well.
86 |
87 | To "convey" a work means any kind of propagation that enables other
88 | parties to make or receive copies. Mere interaction with a user through
89 | a computer network, with no transfer of a copy, is not conveying.
90 |
91 | An interactive user interface displays "Appropriate Legal Notices"
92 | to the extent that it includes a convenient and prominently visible
93 | feature that (1) displays an appropriate copyright notice, and (2)
94 | tells the user that there is no warranty for the work (except to the
95 | extent that warranties are provided), that licensees may convey the
96 | work under this License, and how to view a copy of this License. If
97 | the interface presents a list of user commands or options, such as a
98 | menu, a prominent item in the list meets this criterion.
99 |
100 | 1. Source Code.
101 |
102 | The "source code" for a work means the preferred form of the work
103 | for making modifications to it. "Object code" means any non-source
104 | form of a work.
105 |
106 | A "Standard Interface" means an interface that either is an official
107 | standard defined by a recognized standards body, or, in the case of
108 | interfaces specified for a particular programming language, one that
109 | is widely used among developers working in that language.
110 |
111 | The "System Libraries" of an executable work include anything, other
112 | than the work as a whole, that (a) is included in the normal form of
113 | packaging a Major Component, but which is not part of that Major
114 | Component, and (b) serves only to enable use of the work with that
115 | Major Component, or to implement a Standard Interface for which an
116 | implementation is available to the public in source code form. A
117 | "Major Component", in this context, means a major essential component
118 | (kernel, window system, and so on) of the specific operating system
119 | (if any) on which the executable work runs, or a compiler used to
120 | produce the work, or an object code interpreter used to run it.
121 |
122 | The "Corresponding Source" for a work in object code form means all
123 | the source code needed to generate, install, and (for an executable
124 | work) run the object code and to modify the work, including scripts to
125 | control those activities. However, it does not include the work's
126 | System Libraries, or general-purpose tools or generally available free
127 | programs which are used unmodified in performing those activities but
128 | which are not part of the work. For example, Corresponding Source
129 | includes interface definition files associated with source files for
130 | the work, and the source code for shared libraries and dynamically
131 | linked subprograms that the work is specifically designed to require,
132 | such as by intimate data communication or control flow between those
133 | subprograms and other parts of the work.
134 |
135 | The Corresponding Source need not include anything that users
136 | can regenerate automatically from other parts of the Corresponding
137 | Source.
138 |
139 | The Corresponding Source for a work in source code form is that
140 | same work.
141 |
142 | 2. Basic Permissions.
143 |
144 | All rights granted under this License are granted for the term of
145 | copyright on the Program, and are irrevocable provided the stated
146 | conditions are met. This License explicitly affirms your unlimited
147 | permission to run the unmodified Program. The output from running a
148 | covered work is covered by this License only if the output, given its
149 | content, constitutes a covered work. This License acknowledges your
150 | rights of fair use or other equivalent, as provided by copyright law.
151 |
152 | You may make, run and propagate covered works that you do not
153 | convey, without conditions so long as your license otherwise remains
154 | in force. You may convey covered works to others for the sole purpose
155 | of having them make modifications exclusively for you, or provide you
156 | with facilities for running those works, provided that you comply with
157 | the terms of this License in conveying all material for which you do
158 | not control copyright. Those thus making or running the covered works
159 | for you must do so exclusively on your behalf, under your direction
160 | and control, on terms that prohibit them from making any copies of
161 | your copyrighted material outside their relationship with you.
162 |
163 | Conveying under any other circumstances is permitted solely under
164 | the conditions stated below. Sublicensing is not allowed; section 10
165 | makes it unnecessary.
166 |
167 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
168 |
169 | No covered work shall be deemed part of an effective technological
170 | measure under any applicable law fulfilling obligations under article
171 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or
172 | similar laws prohibiting or restricting circumvention of such
173 | measures.
174 |
175 | When you convey a covered work, you waive any legal power to forbid
176 | circumvention of technological measures to the extent such circumvention
177 | is effected by exercising rights under this License with respect to
178 | the covered work, and you disclaim any intention to limit operation or
179 | modification of the work as a means of enforcing, against the work's
180 | users, your or third parties' legal rights to forbid circumvention of
181 | technological measures.
182 |
183 | 4. Conveying Verbatim Copies.
184 |
185 | You may convey verbatim copies of the Program's source code as you
186 | receive it, in any medium, provided that you conspicuously and
187 | appropriately publish on each copy an appropriate copyright notice;
188 | keep intact all notices stating that this License and any
189 | non-permissive terms added in accord with section 7 apply to the code;
190 | keep intact all notices of the absence of any warranty; and give all
191 | recipients a copy of this License along with the Program.
192 |
193 | You may charge any price or no price for each copy that you convey,
194 | and you may offer support or warranty protection for a fee.
195 |
196 | 5. Conveying Modified Source Versions.
197 |
198 | You may convey a work based on the Program, or the modifications to
199 | produce it from the Program, in the form of source code under the
200 | terms of section 4, provided that you also meet all of these conditions:
201 |
202 | a) The work must carry prominent notices stating that you modified
203 | it, and giving a relevant date.
204 |
205 | b) The work must carry prominent notices stating that it is
206 | released under this License and any conditions added under section
207 | 7. This requirement modifies the requirement in section 4 to
208 | "keep intact all notices".
209 |
210 | c) You must license the entire work, as a whole, under this
211 | License to anyone who comes into possession of a copy. This
212 | License will therefore apply, along with any applicable section 7
213 | additional terms, to the whole of the work, and all its parts,
214 | regardless of how they are packaged. This License gives no
215 | permission to license the work in any other way, but it does not
216 | invalidate such permission if you have separately received it.
217 |
218 | d) If the work has interactive user interfaces, each must display
219 | Appropriate Legal Notices; however, if the Program has interactive
220 | interfaces that do not display Appropriate Legal Notices, your
221 | work need not make them do so.
222 |
223 | A compilation of a covered work with other separate and independent
224 | works, which are not by their nature extensions of the covered work,
225 | and which are not combined with it such as to form a larger program,
226 | in or on a volume of a storage or distribution medium, is called an
227 | "aggregate" if the compilation and its resulting copyright are not
228 | used to limit the access or legal rights of the compilation's users
229 | beyond what the individual works permit. Inclusion of a covered work
230 | in an aggregate does not cause this License to apply to the other
231 | parts of the aggregate.
232 |
233 | 6. Conveying Non-Source Forms.
234 |
235 | You may convey a covered work in object code form under the terms
236 | of sections 4 and 5, provided that you also convey the
237 | machine-readable Corresponding Source under the terms of this License,
238 | in one of these ways:
239 |
240 | a) Convey the object code in, or embodied in, a physical product
241 | (including a physical distribution medium), accompanied by the
242 | Corresponding Source fixed on a durable physical medium
243 | customarily used for software interchange.
244 |
245 | b) Convey the object code in, or embodied in, a physical product
246 | (including a physical distribution medium), accompanied by a
247 | written offer, valid for at least three years and valid for as
248 | long as you offer spare parts or customer support for that product
249 | model, to give anyone who possesses the object code either (1) a
250 | copy of the Corresponding Source for all the software in the
251 | product that is covered by this License, on a durable physical
252 | medium customarily used for software interchange, for a price no
253 | more than your reasonable cost of physically performing this
254 | conveying of source, or (2) access to copy the
255 | Corresponding Source from a network server at no charge.
256 |
257 | c) Convey individual copies of the object code with a copy of the
258 | written offer to provide the Corresponding Source. This
259 | alternative is allowed only occasionally and noncommercially, and
260 | only if you received the object code with such an offer, in accord
261 | with subsection 6b.
262 |
263 | d) Convey the object code by offering access from a designated
264 | place (gratis or for a charge), and offer equivalent access to the
265 | Corresponding Source in the same way through the same place at no
266 | further charge. You need not require recipients to copy the
267 | Corresponding Source along with the object code. If the place to
268 | copy the object code is a network server, the Corresponding Source
269 | may be on a different server (operated by you or a third party)
270 | that supports equivalent copying facilities, provided you maintain
271 | clear directions next to the object code saying where to find the
272 | Corresponding Source. Regardless of what server hosts the
273 | Corresponding Source, you remain obligated to ensure that it is
274 | available for as long as needed to satisfy these requirements.
275 |
276 | e) Convey the object code using peer-to-peer transmission, provided
277 | you inform other peers where the object code and Corresponding
278 | Source of the work are being offered to the general public at no
279 | charge under subsection 6d.
280 |
281 | A separable portion of the object code, whose source code is excluded
282 | from the Corresponding Source as a System Library, need not be
283 | included in conveying the object code work.
284 |
285 | A "User Product" is either (1) a "consumer product", which means any
286 | tangible personal property which is normally used for personal, family,
287 | or household purposes, or (2) anything designed or sold for incorporation
288 | into a dwelling. In determining whether a product is a consumer product,
289 | doubtful cases shall be resolved in favor of coverage. For a particular
290 | product received by a particular user, "normally used" refers to a
291 | typical or common use of that class of product, regardless of the status
292 | of the particular user or of the way in which the particular user
293 | actually uses, or expects or is expected to use, the product. A product
294 | is a consumer product regardless of whether the product has substantial
295 | commercial, industrial or non-consumer uses, unless such uses represent
296 | the only significant mode of use of the product.
297 |
298 | "Installation Information" for a User Product means any methods,
299 | procedures, authorization keys, or other information required to install
300 | and execute modified versions of a covered work in that User Product from
301 | a modified version of its Corresponding Source. The information must
302 | suffice to ensure that the continued functioning of the modified object
303 | code is in no case prevented or interfered with solely because
304 | modification has been made.
305 |
306 | If you convey an object code work under this section in, or with, or
307 | specifically for use in, a User Product, and the conveying occurs as
308 | part of a transaction in which the right of possession and use of the
309 | User Product is transferred to the recipient in perpetuity or for a
310 | fixed term (regardless of how the transaction is characterized), the
311 | Corresponding Source conveyed under this section must be accompanied
312 | by the Installation Information. But this requirement does not apply
313 | if neither you nor any third party retains the ability to install
314 | modified object code on the User Product (for example, the work has
315 | been installed in ROM).
316 |
317 | The requirement to provide Installation Information does not include a
318 | requirement to continue to provide support service, warranty, or updates
319 | for a work that has been modified or installed by the recipient, or for
320 | the User Product in which it has been modified or installed. Access to a
321 | network may be denied when the modification itself materially and
322 | adversely affects the operation of the network or violates the rules and
323 | protocols for communication across the network.
324 |
325 | Corresponding Source conveyed, and Installation Information provided,
326 | in accord with this section must be in a format that is publicly
327 | documented (and with an implementation available to the public in
328 | source code form), and must require no special password or key for
329 | unpacking, reading or copying.
330 |
331 | 7. Additional Terms.
332 |
333 | "Additional permissions" are terms that supplement the terms of this
334 | License by making exceptions from one or more of its conditions.
335 | Additional permissions that are applicable to the entire Program shall
336 | be treated as though they were included in this License, to the extent
337 | that they are valid under applicable law. If additional permissions
338 | apply only to part of the Program, that part may be used separately
339 | under those permissions, but the entire Program remains governed by
340 | this License without regard to the additional permissions.
341 |
342 | When you convey a copy of a covered work, you may at your option
343 | remove any additional permissions from that copy, or from any part of
344 | it. (Additional permissions may be written to require their own
345 | removal in certain cases when you modify the work.) You may place
346 | additional permissions on material, added by you to a covered work,
347 | for which you have or can give appropriate copyright permission.
348 |
349 | Notwithstanding any other provision of this License, for material you
350 | add to a covered work, you may (if authorized by the copyright holders of
351 | that material) supplement the terms of this License with terms:
352 |
353 | a) Disclaiming warranty or limiting liability differently from the
354 | terms of sections 15 and 16 of this License; or
355 |
356 | b) Requiring preservation of specified reasonable legal notices or
357 | author attributions in that material or in the Appropriate Legal
358 | Notices displayed by works containing it; or
359 |
360 | c) Prohibiting misrepresentation of the origin of that material, or
361 | requiring that modified versions of such material be marked in
362 | reasonable ways as different from the original version; or
363 |
364 | d) Limiting the use for publicity purposes of names of licensors or
365 | authors of the material; or
366 |
367 | e) Declining to grant rights under trademark law for use of some
368 | trade names, trademarks, or service marks; or
369 |
370 | f) Requiring indemnification of licensors and authors of that
371 | material by anyone who conveys the material (or modified versions of
372 | it) with contractual assumptions of liability to the recipient, for
373 | any liability that these contractual assumptions directly impose on
374 | those licensors and authors.
375 |
376 | All other non-permissive additional terms are considered "further
377 | restrictions" within the meaning of section 10. If the Program as you
378 | received it, or any part of it, contains a notice stating that it is
379 | governed by this License along with a term that is a further
380 | restriction, you may remove that term. If a license document contains
381 | a further restriction but permits relicensing or conveying under this
382 | License, you may add to a covered work material governed by the terms
383 | of that license document, provided that the further restriction does
384 | not survive such relicensing or conveying.
385 |
386 | If you add terms to a covered work in accord with this section, you
387 | must place, in the relevant source files, a statement of the
388 | additional terms that apply to those files, or a notice indicating
389 | where to find the applicable terms.
390 |
391 | Additional terms, permissive or non-permissive, may be stated in the
392 | form of a separately written license, or stated as exceptions;
393 | the above requirements apply either way.
394 |
395 | 8. Termination.
396 |
397 | You may not propagate or modify a covered work except as expressly
398 | provided under this License. Any attempt otherwise to propagate or
399 | modify it is void, and will automatically terminate your rights under
400 | this License (including any patent licenses granted under the third
401 | paragraph of section 11).
402 |
403 | However, if you cease all violation of this License, then your
404 | license from a particular copyright holder is reinstated (a)
405 | provisionally, unless and until the copyright holder explicitly and
406 | finally terminates your license, and (b) permanently, if the copyright
407 | holder fails to notify you of the violation by some reasonable means
408 | prior to 60 days after the cessation.
409 |
410 | Moreover, your license from a particular copyright holder is
411 | reinstated permanently if the copyright holder notifies you of the
412 | violation by some reasonable means, this is the first time you have
413 | received notice of violation of this License (for any work) from that
414 | copyright holder, and you cure the violation prior to 30 days after
415 | your receipt of the notice.
416 |
417 | Termination of your rights under this section does not terminate the
418 | licenses of parties who have received copies or rights from you under
419 | this License. If your rights have been terminated and not permanently
420 | reinstated, you do not qualify to receive new licenses for the same
421 | material under section 10.
422 |
423 | 9. Acceptance Not Required for Having Copies.
424 |
425 | You are not required to accept this License in order to receive or
426 | run a copy of the Program. Ancillary propagation of a covered work
427 | occurring solely as a consequence of using peer-to-peer transmission
428 | to receive a copy likewise does not require acceptance. However,
429 | nothing other than this License grants you permission to propagate or
430 | modify any covered work. These actions infringe copyright if you do
431 | not accept this License. Therefore, by modifying or propagating a
432 | covered work, you indicate your acceptance of this License to do so.
433 |
434 | 10. Automatic Licensing of Downstream Recipients.
435 |
436 | Each time you convey a covered work, the recipient automatically
437 | receives a license from the original licensors, to run, modify and
438 | propagate that work, subject to this License. You are not responsible
439 | for enforcing compliance by third parties with this License.
440 |
441 | An "entity transaction" is a transaction transferring control of an
442 | organization, or substantially all assets of one, or subdividing an
443 | organization, or merging organizations. If propagation of a covered
444 | work results from an entity transaction, each party to that
445 | transaction who receives a copy of the work also receives whatever
446 | licenses to the work the party's predecessor in interest had or could
447 | give under the previous paragraph, plus a right to possession of the
448 | Corresponding Source of the work from the predecessor in interest, if
449 | the predecessor has it or can get it with reasonable efforts.
450 |
451 | You may not impose any further restrictions on the exercise of the
452 | rights granted or affirmed under this License. For example, you may
453 | not impose a license fee, royalty, or other charge for exercise of
454 | rights granted under this License, and you may not initiate litigation
455 | (including a cross-claim or counterclaim in a lawsuit) alleging that
456 | any patent claim is infringed by making, using, selling, offering for
457 | sale, or importing the Program or any portion of it.
458 |
459 | 11. Patents.
460 |
461 | A "contributor" is a copyright holder who authorizes use under this
462 | License of the Program or a work on which the Program is based. The
463 | work thus licensed is called the contributor's "contributor version".
464 |
465 | A contributor's "essential patent claims" are all patent claims
466 | owned or controlled by the contributor, whether already acquired or
467 | hereafter acquired, that would be infringed by some manner, permitted
468 | by this License, of making, using, or selling its contributor version,
469 | but do not include claims that would be infringed only as a
470 | consequence of further modification of the contributor version. For
471 | purposes of this definition, "control" includes the right to grant
472 | patent sublicenses in a manner consistent with the requirements of
473 | this License.
474 |
475 | Each contributor grants you a non-exclusive, worldwide, royalty-free
476 | patent license under the contributor's essential patent claims, to
477 | make, use, sell, offer for sale, import and otherwise run, modify and
478 | propagate the contents of its contributor version.
479 |
480 | In the following three paragraphs, a "patent license" is any express
481 | agreement or commitment, however denominated, not to enforce a patent
482 | (such as an express permission to practice a patent or covenant not to
483 | sue for patent infringement). To "grant" such a patent license to a
484 | party means to make such an agreement or commitment not to enforce a
485 | patent against the party.
486 |
487 | If you convey a covered work, knowingly relying on a patent license,
488 | and the Corresponding Source of the work is not available for anyone
489 | to copy, free of charge and under the terms of this License, through a
490 | publicly available network server or other readily accessible means,
491 | then you must either (1) cause the Corresponding Source to be so
492 | available, or (2) arrange to deprive yourself of the benefit of the
493 | patent license for this particular work, or (3) arrange, in a manner
494 | consistent with the requirements of this License, to extend the patent
495 | license to downstream recipients. "Knowingly relying" means you have
496 | actual knowledge that, but for the patent license, your conveying the
497 | covered work in a country, or your recipient's use of the covered work
498 | in a country, would infringe one or more identifiable patents in that
499 | country that you have reason to believe are valid.
500 |
501 | If, pursuant to or in connection with a single transaction or
502 | arrangement, you convey, or propagate by procuring conveyance of, a
503 | covered work, and grant a patent license to some of the parties
504 | receiving the covered work authorizing them to use, propagate, modify
505 | or convey a specific copy of the covered work, then the patent license
506 | you grant is automatically extended to all recipients of the covered
507 | work and works based on it.
508 |
509 | A patent license is "discriminatory" if it does not include within
510 | the scope of its coverage, prohibits the exercise of, or is
511 | conditioned on the non-exercise of one or more of the rights that are
512 | specifically granted under this License. You may not convey a covered
513 | work if you are a party to an arrangement with a third party that is
514 | in the business of distributing software, under which you make payment
515 | to the third party based on the extent of your activity of conveying
516 | the work, and under which the third party grants, to any of the
517 | parties who would receive the covered work from you, a discriminatory
518 | patent license (a) in connection with copies of the covered work
519 | conveyed by you (or copies made from those copies), or (b) primarily
520 | for and in connection with specific products or compilations that
521 | contain the covered work, unless you entered into that arrangement,
522 | or that patent license was granted, prior to 28 March 2007.
523 |
524 | Nothing in this License shall be construed as excluding or limiting
525 | any implied license or other defenses to infringement that may
526 | otherwise be available to you under applicable patent law.
527 |
528 | 12. No Surrender of Others' Freedom.
529 |
530 | If conditions are imposed on you (whether by court order, agreement or
531 | otherwise) that contradict the conditions of this License, they do not
532 | excuse you from the conditions of this License. If you cannot convey a
533 | covered work so as to satisfy simultaneously your obligations under this
534 | License and any other pertinent obligations, then as a consequence you may
535 | not convey it at all. For example, if you agree to terms that obligate you
536 | to collect a royalty for further conveying from those to whom you convey
537 | the Program, the only way you could satisfy both those terms and this
538 | License would be to refrain entirely from conveying the Program.
539 |
540 | 13. Remote Network Interaction; Use with the GNU General Public License.
541 |
542 | Notwithstanding any other provision of this License, if you modify the
543 | Program, your modified version must prominently offer all users
544 | interacting with it remotely through a computer network (if your version
545 | supports such interaction) an opportunity to receive the Corresponding
546 | Source of your version by providing access to the Corresponding Source
547 | from a network server at no charge, through some standard or customary
548 | means of facilitating copying of software. This Corresponding Source
549 | shall include the Corresponding Source for any work covered by version 3
550 | of the GNU General Public License that is incorporated pursuant to the
551 | following paragraph.
552 |
553 | Notwithstanding any other provision of this License, you have
554 | permission to link or combine any covered work with a work licensed
555 | under version 3 of the GNU General Public License into a single
556 | combined work, and to convey the resulting work. The terms of this
557 | License will continue to apply to the part which is the covered work,
558 | but the work with which it is combined will remain governed by version
559 | 3 of the GNU General Public License.
560 |
561 | 14. Revised Versions of this License.
562 |
563 | The Free Software Foundation may publish revised and/or new versions of
564 | the GNU Affero General Public License from time to time. Such new versions
565 | will be similar in spirit to the present version, but may differ in detail to
566 | address new problems or concerns.
567 |
568 | Each version is given a distinguishing version number. If the
569 | Program specifies that a certain numbered version of the GNU Affero General
570 | Public License "or any later version" applies to it, you have the
571 | option of following the terms and conditions either of that numbered
572 | version or of any later version published by the Free Software
573 | Foundation. If the Program does not specify a version number of the
574 | GNU Affero General Public License, you may choose any version ever published
575 | by the Free Software Foundation.
576 |
577 | If the Program specifies that a proxy can decide which future
578 | versions of the GNU Affero General Public License can be used, that proxy's
579 | public statement of acceptance of a version permanently authorizes you
580 | to choose that version for the Program.
581 |
582 | Later license versions may give you additional or different
583 | permissions. However, no additional obligations are imposed on any
584 | author or copyright holder as a result of your choosing to follow a
585 | later version.
586 |
587 | 15. Disclaimer of Warranty.
588 |
589 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
590 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
591 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
592 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
593 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
594 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
595 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
596 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
597 |
598 | 16. Limitation of Liability.
599 |
600 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
601 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
602 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
603 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
604 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
605 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
606 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
607 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
608 | SUCH DAMAGES.
609 |
610 | 17. Interpretation of Sections 15 and 16.
611 |
612 | If the disclaimer of warranty and limitation of liability provided
613 | above cannot be given local legal effect according to their terms,
614 | reviewing courts shall apply local law that most closely approximates
615 | an absolute waiver of all civil liability in connection with the
616 | Program, unless a warranty or assumption of liability accompanies a
617 | copy of the Program in return for a fee.
618 |
619 | END OF TERMS AND CONDITIONS
620 |
621 | How to Apply These Terms to Your New Programs
622 |
623 | If you develop a new program, and you want it to be of the greatest
624 | possible use to the public, the best way to achieve this is to make it
625 | free software which everyone can redistribute and change under these terms.
626 |
627 | To do so, attach the following notices to the program. It is safest
628 | to attach them to the start of each source file to most effectively
629 | state the exclusion of warranty; and each file should have at least
630 | the "copyright" line and a pointer to where the full notice is found.
631 |
632 |
633 | Copyright (C)
634 |
635 | This program is free software: you can redistribute it and/or modify
636 | it under the terms of the GNU Affero General Public License as published
637 | by the Free Software Foundation, either version 3 of the License, or
638 | (at your option) any later version.
639 |
640 | This program is distributed in the hope that it will be useful,
641 | but WITHOUT ANY WARRANTY; without even the implied warranty of
642 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
643 | GNU Affero General Public License for more details.
644 |
645 | You should have received a copy of the GNU Affero General Public License
646 | along with this program. If not, see .
647 |
648 | Also add information on how to contact you by electronic and paper mail.
649 |
650 | If your software can interact with users remotely through a computer
651 | network, you should also make sure that it provides a way for users to
652 | get its source. For example, if your program is a web application, its
653 | interface could display a "Source" link that leads users to an archive
654 | of the code. There are many ways you could offer source, and different
655 | solutions will be better for different programs; see section 13 for the
656 | specific requirements.
657 |
658 | You should also get your employer (if you work as a programmer) or school,
659 | if any, to sign a "copyright disclaimer" for the program, if necessary.
660 | For more information on this, and how to apply and follow the GNU AGPL, see
661 | .
662 |
--------------------------------------------------------------------------------