├── .github └── workflows │ ├── AutoCheckin.yml.disabled │ ├── KeepAlive.yml.disabled │ └── MirrorSync.yml ├── .gitignore ├── LICENSE ├── README.md ├── config.example.yml ├── main.py ├── private-policy.md ├── requirements.txt └── scf.py /.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 }} -------------------------------------------------------------------------------- /.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 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | config.yml 2 | venv -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # MHYY-AutoCheckin 2 | 3 | ![MHYY-AutoCheckin](https://socialify.git.ci/GamerNoTitle/MHYY/image?forks=1&language=1&name=1&owner=1&stargazers=1&theme=Light) 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 | ![Contribution](https://repobeats.axiom.co/api/embed/da9099b7978340d1d808225a3ae70f00c3b7b54d.svg "Repobeats analytics image") 46 | 47 | 48 | ## Stargazers over time 49 | 50 | [![Stargazers over time](https://starchart.cc/GamerNoTitle/MHYY.svg)](https://starchart.cc/GamerNoTitle/MHYY) 51 | -------------------------------------------------------------------------------- /config.example.yml: -------------------------------------------------------------------------------- 1 | # 使用前请阅读文档:https://bili33.top/posts/MHYY-AutoCheckin-Manual-Gen2/ 2 | # 有问题请前往Github开启issue:https://github.com/GamerNoTitle/MHYY/issues 3 | 4 | ######## 以下为账号配置项,可以多账号,详情请参考文档 ######## 5 | accounts: 6 | # 第一个账号 7 | - token: 8 | # 关于type:如果你在安卓版的云·原神里面抓的话type应该是2 9 | # 如果你是网页版抓的,那type应该是16 10 | # 此处仅供参考,具体以你抓的为准 11 | type: 12 | # sysver:如果你是安卓版抓的,这个应该会显示你的安卓版本(鸿蒙不清楚,手上没设备) 13 | # 如果你是网页版抓的,这个应该是你的系统版本(注:Windows 10和Windows 11都是写的Windows 10) 14 | sysver: 15 | # deviceid:手机抓的会有这个,抓到什么填什么 16 | # 如果是网页版抓的,那也是抓到什么填什么 17 | deviceid: 18 | # devicename: 手机抓的话就是手机的入网型号,如红米K40为M2012K11AC,红米K50为22021211RC 19 | # 如果是网页版抓的,填Unknown 20 | devicename: 21 | # devicemodel: 手机抓的填抓出来的手机型号,大概为手机厂商+上面的deviceid,如红米K40为Xiaomi M2012K11AC 22 | # 如果是网页版抓的,填Unknown 23 | devicemodel: 24 | # appid: 国服手机抓的固定填1953439974,网页版抓的留空;国际服手机抓的填600493 25 | appid: 26 | # region(可选): 账号所处的地区,国服填cn,国际服填os,不填或非法值按国服处理 27 | region: cn 28 | # 第二个账号,不需要的话把下面删掉,如果需要更多就在下面再加 29 | - token: 30 | # 关于type:如果你在安卓版的云·原神里面抓的话type应该是2 31 | # 如果你是网页版抓的,那type应该是16 32 | # 此处仅供参考,具体以你抓的为准 33 | type: 34 | # sysver:如果你是安卓版抓的,这个应该会显示你的安卓版本(鸿蒙不清楚,手上没设备) 35 | # 如果你是网页版抓的,这个应该是你的系统版本(注:Windows 10和Windows 11都是写的Windows 10) 36 | sysver: 37 | # deviceid:手机抓的会有这个,抓到什么填什么 38 | # 如果是网页版抓的,那也是抓到什么填什么 39 | deviceid: 40 | # devicename: 手机抓的话就是手机的入网型号,如红米K40为M2012K11AC,红米K50为22021211RC 41 | # 如果是网页版抓的,填Unknown 42 | devicename: 43 | # devicemodel: 手机抓的填抓出来的手机型号,大概为手机厂商+上面的deviceid,如红米K40为Xiaomi M2012K11AC 44 | # 如果是网页版抓的,填Unknown 45 | devicemodel: 46 | # appid: 国服手机抓的固定填1953439974,网页版抓的留空;国际服手机抓的填600493 47 | appid: 48 | # region(可选): 账号所处的地区,国服填cn,国际服填os,不填或非法值按国服处理 49 | region: os 50 | -------------------------------------------------------------------------------- /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 | if os.environ.get("MHYY_LOGLEVEL", "").upper() == "DEBUG": 12 | loglevel = logging.DEBUG 13 | elif os.environ.get("MHYY_LOGLEVEL", "").upper() == "WARNING": 14 | loglevel = logging.WARNING 15 | elif os.environ.get("MHYY_LOGLEVEL", "").upper() == "ERROR": 16 | loglevel = logging.ERROR 17 | else: 18 | loglevel = logging.INFO 19 | 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 | def ReadConf(variable_name, default_value=None): 31 | # Try to get the variable from the environment 32 | env_value = os.environ.get(variable_name) 33 | 34 | if env_value: 35 | config_data = yaml.load(env_value, Loader=yaml.FullLoader) 36 | return config_data 37 | 38 | # If not found in environment, try to read from config.yml 39 | try: 40 | with open("config.yml", "r", encoding="utf-8") as config_file: 41 | config_data = yaml.load(config_file, Loader=yaml.FullLoader) 42 | return config_data 43 | except FileNotFoundError: 44 | return default_value 45 | 46 | 47 | sentry_sdk.init( 48 | "https://425d7b4536f94c9fa540fe34dd6609a2@o361988.ingest.sentry.io/6352584", 49 | traces_sample_rate=1.0, 50 | ) 51 | 52 | conf = ReadConf("MHYY_CONFIG")["accounts"] 53 | 54 | if not conf: 55 | logger.error("请正确配置环境变量或者config.yml后再运行本脚本!") 56 | os._exit(0) 57 | logger.info(f"检测到 {len(conf)} 个账号,正在进行任务……") 58 | 59 | 60 | # Options 61 | sct_status = os.environ.get("sct") # https://sct.ftqq.com/ 62 | sct_key = os.environ.get("sct_key") 63 | sct_url = f"https://sctapi.ftqq.com/{sct_key}.send?title=MHYY-AutoCheckin 自动推送" 64 | 65 | sct_msg = "" 66 | 67 | 68 | class RunError(Exception): 69 | pass 70 | 71 | 72 | if __name__ == "__main__": 73 | if not os.environ.get("MHYY_DEBUG", False): 74 | wait_time = random.randint(10, 60) # Random Sleep to Avoid Ban 75 | logger.info(f"为了避免同一时间签到人数太多导致被官方怀疑,开始休眠 {wait_time} 秒") 76 | time.sleep(wait_time) 77 | try: 78 | ver_info = httpx.get( 79 | "https://hyp-api.mihoyo.com/hyp/hyp-connect/api/getGameBranches?game_ids[]=1Z8W5NHUQb&launcher_id=jGHBHlcOq1", 80 | timeout=60, 81 | verify=False, 82 | ).text 83 | version = json.loads(ver_info)["data"]["game_branches"][0]["main"]["tag"] 84 | logger.info(f"从官方API获取到云·原神最新版本号:{version}") 85 | except Exception as e: 86 | version = "5.0.0" 87 | logger.warning(f"获取版本号失败,使用默认版本:{version}") 88 | 89 | for config in conf: 90 | # 各种API的URL 91 | NotificationURL = "https://api-cloudgame.mihoyo.com/hk4e_cg_cn/gamer/api/listNotifications?status=NotificationStatusUnread&type=NotificationTypePopup&is_sort=true" 92 | WalletURL = "https://api-cloudgame.mihoyo.com/hk4e_cg_cn/wallet/wallet/get" 93 | AnnouncementURL = ( 94 | "https://api-cloudgame.mihoyo.com/hk4e_cg_cn/gamer/api/getAnnouncementInfo" 95 | ) 96 | 97 | if config == "": 98 | # Verify config 99 | raise RunError( 100 | f"请在Settings->Secrets->Actions页面中新建名为config的变量,并将你的配置填入后再运行!" 101 | ) 102 | else: 103 | token = config["token"] 104 | client_type = config["type"] 105 | sysver = config["sysver"] 106 | deviceid = config["deviceid"] 107 | devicename = config["devicename"] 108 | devicemodel = config["devicemodel"] 109 | appid = config["appid"] 110 | headers = { 111 | "x-rpc-combo_token": token, 112 | "x-rpc-client_type": str(client_type), 113 | "x-rpc-app_version": str(version), 114 | "x-rpc-sys_version": str(sysver), 115 | "x-rpc-channel": "cyydmihoyo", 116 | "x-rpc-device_id": deviceid, 117 | "x-rpc-device_name": devicename, 118 | "x-rpc-device_model": devicemodel, 119 | "x-rpc-vendor_id": "1", 120 | "x-rpc-cg_game_biz": "hk4e_cn", 121 | "x-rpc-op_biz": "clgm_cn", 122 | "x-rpc-language": "zh-cn", 123 | "Host": "api-cloudgame.mihoyo.com", 124 | "Connection": "Keep-Alive", 125 | "Accept-Encoding": "gzip", 126 | "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", 127 | } 128 | bbsid = re.findall(r"oi=[0-9]+", token)[0].replace("oi=", "") 129 | region = config.get("region", "cn") 130 | if region == "os": 131 | headers["x-rpc-channel"] = "mihoyo" 132 | headers["x-rpc-cg_game_biz"] = "hk4e_global" 133 | headers["x-rpc-op_biz"] = "clgm_global" 134 | headers["x-rpc-cg_game_id"] = "9000254" 135 | headers["x-rpc-app_id"] = "600493" 136 | headers["User-Agent"] = "okhttp/4.10.0" 137 | headers["Host"] = "sg-cg-api.hoyoverse.com" 138 | NotificationURL = "https://sg-cg-api.hoyoverse.com/hk4e_global/cg/gamer/api/listNotifications?status=NotificationStatusUnread&type=NotificationTypePopup&is_sort=true" 139 | WalletURL = ( 140 | "https://sg-cg-api.hoyoverse.com/hk4e_global/cg/wallet/wallet/get" 141 | ) 142 | AnnouncementURL = "https://sg-cg-api.hoyoverse.com/hk4e_global/cg/gamer/api/getAnnouncementInfo" 143 | 144 | logger.info( 145 | f"正在进行第 {conf.index(config) + 1} 个账号,服务器为{'CN' if region != 'os' else 'GLOBAL'}……" 146 | ) 147 | try: 148 | wallet = httpx.get(WalletURL, headers=headers, timeout=60, verify=False) 149 | logger.debug(wallet.text) 150 | if json.loads(wallet.text) == { 151 | "data": None, 152 | "message": "登录已失效,请重新登录", 153 | "retcode": -100, 154 | }: 155 | logger.error(f"当前登录已过期,请重新登陆!返回为:{wallet.text}") 156 | sct_msg += f"当前登录已过期,请重新登陆!返回为:{wallet.text}" 157 | else: 158 | logger.info( 159 | f"你当前拥有免费时长 {json.loads(wallet.text)['data']['free_time']['free_time']} 分钟,畅玩卡状态为 {json.loads(wallet.text)['data']['play_card']['short_msg']},拥有原点 {json.loads(wallet.text)['data']['coin']['coin_num']} 点({int(json.loads(wallet.text)['data']['coin']['coin_num'])/10}分钟)" 160 | ) 161 | sct_msg += f"你当前拥有免费时长 {json.loads(wallet.text)['data']['free_time']['free_time']} 分钟,畅玩卡状态为 {json.loads(wallet.text)['data']['play_card']['short_msg']},拥有原点 {json.loads(wallet.text)['data']['coin']['coin_num']} 点({int(json.loads(wallet.text)['data']['coin']['coin_num'])/10}分钟)" 162 | announcement = httpx.get( 163 | AnnouncementURL, headers=headers, timeout=60, verify=False 164 | ) 165 | logger.debug(f'获取到公告列表:{json.loads(announcement.text)["data"]}') 166 | res = httpx.get( 167 | NotificationURL, headers=headers, timeout=60, verify=False 168 | ) 169 | success, Signed = False, False 170 | logger.debug(res.text) 171 | try: 172 | if list(json.loads(res.text)["data"]["list"]) == []: 173 | success = True 174 | Signed = True 175 | Over = False 176 | elif ( 177 | json.loads(json.loads(res.text)["data"]["list"][-1]["msg"])[ 178 | "msg" 179 | ] 180 | == "每日登录奖励" 181 | ): 182 | success = True 183 | Signed = False 184 | Over = False 185 | elif ( 186 | json.loads(json.loads(res.text)["data"]["list"][-1]["msg"])[ 187 | "over_num" 188 | ] 189 | > 0 190 | ): 191 | success = True 192 | Signed = False 193 | Over = True 194 | else: 195 | success = False 196 | except IndexError: 197 | success = False 198 | if success: 199 | if Signed: 200 | logger.info(f"获取签到情况成功!今天是否已经签到过了呢?") 201 | sct_msg += f"获取签到情况成功!今天是否已经签到过了呢?" 202 | logger.debug(f"完整返回体为:{res.text}") 203 | elif not Signed and Over: 204 | logger.info( 205 | f'获取签到情况成功!当前免费时长已经达到上限!签到情况为{json.loads(res.text)["data"]["list"][0]["msg"]}' 206 | ) 207 | sct_msg += f"获取签到情况成功!当前免费时长已经达到上限!签到情况为{json.loads(res.text)['data']['list'][0]['msg']}" 208 | else: 209 | logger.info(f"已经签到过了!") 210 | sct_msg += f"已经签到过了!" 211 | else: 212 | logger.info(f"当前没有签到!请稍后再试!") 213 | sct_msg += f"当前没有签到!请稍后再试!" 214 | if sct_key: 215 | httpx.get(sct_url, params={"desp": sct_msg}) 216 | except Exception as e: 217 | logger.error(f"执行过程中出错:{str(e)}") 218 | sct_msg += f"执行过程中出错:{str(e)}" 219 | if sct_key: 220 | httpx.get(sct_url, params={"desp": sct_msg}) 221 | raise RunError(str(e)) 222 | logger.info("所有任务已经执行完毕!") 223 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | sentry-sdk 2 | pyyaml 3 | httpx 4 | -------------------------------------------------------------------------------- /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 | --------------------------------------------------------------------------------