├── .gitignore ├── LICENSE ├── README.md ├── build.gradle.kts ├── gradle.properties ├── settings.gradle └── src ├── main ├── kotlin │ └── org │ │ └── itxtech │ │ └── miraikts │ │ ├── MiraiKts.kt │ │ ├── plugin │ │ ├── KtsPlugin.kt │ │ └── PluginManager.kt │ │ └── script │ │ ├── KtsEngine.kt │ │ └── Mkc.kt └── resources │ └── plugin.yml └── test └── kotlin ├── echoBot.kts ├── nobuilder.kts └── okhttp.kts /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | .gradle 3 | build 4 | out 5 | -------------------------------------------------------------------------------- /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 by 637 | 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 | . -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Mirai Kts 2 | 3 | **强大的 `Mirai Kotlin Script` 插件加载器** 4 | 5 | 使用`Kotlin Script`编写 [Mirai](https://github.com/mamoe/mirai) 插件,支持与所有`Mirai API`直接交互,现仅支持`OpenJDK 8+`环境。 6 | 7 | ## 使用须知 8 | 9 | **所有基于`Mirai Kts`的插件必须遵循`AGPL-v3`协议开放源代码,详见 [协议文本](LICENSE) 。** 10 | 11 | **API可能随时变动,请保持更新!** 12 | 13 | ## 特性 14 | 15 | * 极简语法,完整Kotlin语法支持 16 | * 高效率执行(缺点是冷启动较慢) 17 | * 字节码缓存机制,减少编译次数 18 | * 施主别着急,更多功能即将加入。先看看 [例子](src/test/kotlin) 吧。 19 | 20 | ## Mirai Kts 插件管理器 `kpm` 21 | 22 | 1. 在 `mirai console` 中键入 `kpm` 获得帮助 23 | 1. `kpm` (`Kotlin Script Plugin Manager`) 可`列出/启用/停用/加载/卸载插件` 和 `查看插件信息` 24 | 1. **卸载**插件不会真正发生类卸载事件,仅代表该插件生命周期结束,此时可以重新加载修改后的脚本 25 | 26 | `kpm [list|info|enable|disable|load|unload] (插件名/文件名)` 27 | 28 | 29 | ## 开源协议 30 | 31 | Copyright (C) 2020 iTX Technologies 32 | 33 | This program is free software: you can redistribute it and/or modify 34 | it under the terms of the GNU Affero General Public License as 35 | published by the Free Software Foundation, either version 3 of the 36 | License, or (at your option) any later version. 37 | 38 | This program is distributed in the hope that it will be useful, 39 | but WITHOUT ANY WARRANTY; without even the implied warranty of 40 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 41 | GNU Affero General Public License for more details. 42 | 43 | You should have received a copy of the GNU Affero General Public License 44 | along with this program. If not, see . 45 | -------------------------------------------------------------------------------- /build.gradle.kts: -------------------------------------------------------------------------------- 1 | plugins { 2 | kotlin("jvm") version "1.4.0" 3 | kotlin("plugin.serialization") version "1.4.0" 4 | } 5 | 6 | group = "org.itxtech" 7 | version = "1.0.1" 8 | 9 | kotlin { 10 | sourceSets { 11 | all { 12 | languageSettings.enableLanguageFeature("InlineClasses") 13 | languageSettings.useExperimentalAnnotation("kotlin.Experimental") 14 | } 15 | } 16 | } 17 | 18 | repositories { 19 | maven("https://mirrors.huaweicloud.com/repository/maven") 20 | maven("https://dl.bintray.com/him188moe/mirai") 21 | maven("https://dl.bintray.com/kotlin/kotlin-eap") 22 | } 23 | 24 | dependencies { 25 | api("org.jetbrains.kotlinx:atomicfu:0.14.4") 26 | 27 | implementation(kotlin("script-runtime")) 28 | implementation(kotlin("script-util")) 29 | implementation(kotlin("compiler-embeddable")) 30 | implementation(kotlin("scripting-compiler-embeddable")) 31 | implementation(kotlin("scripting-compiler-impl-embeddable")) 32 | implementation("org.jetbrains.intellij.deps:trove4j:1.0.20200330") 33 | 34 | implementation("net.mamoe:mirai-core:1.2.2") 35 | implementation("net.mamoe:mirai-console:1.0-M3") 36 | } 37 | 38 | tasks.named("jar") { 39 | manifest { 40 | attributes["Name"] = "iTXTech MiraiKts" 41 | attributes["Revision"] = Runtime.getRuntime().exec("git rev-parse --short HEAD") 42 | .inputStream.bufferedReader().readText().trim() 43 | } 44 | 45 | val list = ArrayList() 46 | configurations.compileClasspath.get().forEach { file -> 47 | arrayOf("kotlin-script", "kotlin-compiler", "kotlin-daemon", "trove").forEach { 48 | if (file.absolutePath.contains(it)) { 49 | list.add(zipTree(file)) 50 | } 51 | } 52 | } 53 | 54 | from(list) 55 | } 56 | 57 | tasks.withType { 58 | kotlinOptions.jvmTarget = "1.8" 59 | } 60 | -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- 1 | kotlin.code.style=official -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | pluginManagement { 2 | repositories { 3 | maven { url 'https://dl.bintray.com/kotlin/kotlin-eap' } 4 | 5 | mavenCentral() 6 | 7 | maven { url 'https://plugins.gradle.org/m2/' } 8 | } 9 | } 10 | rootProject.name = 'mirai-kts' 11 | -------------------------------------------------------------------------------- /src/main/kotlin/org/itxtech/miraikts/MiraiKts.kt: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Mirai Kts 4 | * 5 | * Copyright (C) 2020 iTX Technologies 6 | * 7 | * This program is free software: you can redistribute it and/or modify 8 | * it under the terms of the GNU Affero General Public License as 9 | * published by the Free Software Foundation, either version 3 of the 10 | * License, or (at your option) any later version. 11 | * 12 | * This program is distributed in the hope that it will be useful, 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 | * GNU Affero General Public License for more details. 16 | * 17 | * You should have received a copy of the GNU Affero General Public License 18 | * along with this program. If not, see . 19 | * 20 | * @author PeratX 21 | * @website https://github.com/iTXTech/mirai-kts 22 | * 23 | */ 24 | 25 | package org.itxtech.miraikts 26 | 27 | import net.mamoe.mirai.console.plugin.jvm.KotlinPlugin 28 | import org.itxtech.miraikts.plugin.PluginManager 29 | import java.io.File 30 | 31 | object MiraiKts : KotlinPlugin() { 32 | val dataFolder: File by lazy { dataFolderPath.toFile() } 33 | 34 | private val manager = PluginManager() 35 | 36 | override fun onLoad() { 37 | manager.loadPlugins() 38 | manager.registerCommand() 39 | } 40 | 41 | override fun onEnable() { 42 | manager.enablePlugins() 43 | } 44 | 45 | override fun onDisable() { 46 | manager.disablePlugins() 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /src/main/kotlin/org/itxtech/miraikts/plugin/KtsPlugin.kt: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Mirai Kts 4 | * 5 | * Copyright (C) 2020 iTX Technologies 6 | * 7 | * This program is free software: you can redistribute it and/or modify 8 | * it under the terms of the GNU Affero General Public License as 9 | * published by the Free Software Foundation, either version 3 of the 10 | * License, or (at your option) any later version. 11 | * 12 | * This program is distributed in the hope that it will be useful, 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 | * GNU Affero General Public License for more details. 16 | * 17 | * You should have received a copy of the GNU Affero General Public License 18 | * along with this program. If not, see . 19 | * 20 | * @author PeratX 21 | * @website https://github.com/iTXTech/mirai-kts 22 | * 23 | */ 24 | 25 | package org.itxtech.miraikts.plugin 26 | 27 | import kotlinx.coroutines.CoroutineScope 28 | import kotlinx.coroutines.SupervisorJob 29 | import kotlinx.coroutines.cancelChildren 30 | import net.mamoe.mirai.utils.MiraiLogger 31 | import net.mamoe.mirai.utils.SimpleLogger 32 | import org.itxtech.miraikts.MiraiKts 33 | import org.itxtech.miraikts.script.MiraiKtsCacheMetadata 34 | import java.io.File 35 | import kotlin.coroutines.CoroutineContext 36 | 37 | inline fun miraiPlugin( 38 | block: KtsPluginBuilder.() -> Unit 39 | ) = KtsPluginBuilder().apply(block).build() 40 | 41 | inline fun pluginInfo(block: KtsPluginInfo.() -> Unit) = KtsPluginInfo().apply(block) 42 | 43 | class KtsPluginBuilder { 44 | lateinit var info: KtsPluginInfo 45 | 46 | var load: (KtsPlugin.() -> Unit)? = null 47 | var enable: (KtsPlugin.() -> Unit)? = null 48 | var disable: (KtsPlugin.() -> Unit)? = null 49 | var unload: (KtsPlugin.() -> Unit)? = null 50 | 51 | fun info(block: KtsPluginInfo.() -> Unit) { 52 | info = KtsPluginInfo().apply(block) 53 | } 54 | 55 | fun load(block: KtsPlugin.() -> Unit) { 56 | load = block 57 | } 58 | 59 | fun enable(block: KtsPlugin.() -> Unit) { 60 | enable = block 61 | } 62 | 63 | fun disable(block: KtsPlugin.() -> Unit) { 64 | disable = block 65 | } 66 | 67 | fun unload(block: KtsPlugin.() -> Unit) { 68 | unload = block 69 | } 70 | 71 | fun build() = KtsPlugin(info, load, enable, disable, unload) 72 | } 73 | 74 | open class KtsPlugin( 75 | val info: KtsPluginInfo, 76 | protected var load: (KtsPlugin.() -> Unit)? = null, 77 | protected var enable: (KtsPlugin.() -> Unit)? = null, 78 | protected var disable: (KtsPlugin.() -> Unit)? = null, 79 | protected var unload: (KtsPlugin.() -> Unit)? = null 80 | ) : CoroutineScope { 81 | private val job = SupervisorJob() 82 | override val coroutineContext: CoroutineContext = MiraiKts.coroutineContext + job 83 | 84 | lateinit var manager: PluginManager 85 | lateinit var file: File 86 | lateinit var cacheMeta: MiraiKtsCacheMetadata 87 | var id: Int = 0 88 | var enabled = false 89 | val dataDir: File by lazy { manager.getPluginDataDir(info.name) } 90 | 91 | val logger: MiraiLogger by lazy { 92 | SimpleLogger("KtsPlugin ${info.name}") { priority, message, e -> 93 | MiraiKts.logger.call(priority, "[${info.name}] $message", e) 94 | } 95 | } 96 | 97 | /** 98 | * 必须保证只被调用一次 99 | */ 100 | fun load() = onLoad() 101 | 102 | fun enable() { 103 | if (!enabled) { 104 | enabled = true 105 | onEnable() 106 | } 107 | } 108 | 109 | fun disable() { 110 | if (enabled) { 111 | enabled = false 112 | onDisable() 113 | job.cancelChildren() 114 | } 115 | } 116 | 117 | /** 118 | * 调用后要清除所有引用,尽管不会发生类卸载 119 | */ 120 | fun unload() { 121 | disable() 122 | onUnload() 123 | job.cancel() 124 | } 125 | 126 | open fun onLoad() = load?.invoke(this) 127 | 128 | open fun onEnable() = enable?.invoke(this) 129 | 130 | open fun onDisable() = disable?.invoke(this) 131 | 132 | open fun onUnload() = unload?.invoke(this) 133 | } 134 | 135 | class KtsPluginInfo { 136 | lateinit var name: String 137 | var version: String = "未知" 138 | var author: String = "未知" 139 | var website: String = "" 140 | } 141 | -------------------------------------------------------------------------------- /src/main/kotlin/org/itxtech/miraikts/plugin/PluginManager.kt: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Mirai Kts 4 | * 5 | * Copyright (C) 2020 iTX Technologies 6 | * 7 | * This program is free software: you can redistribute it and/or modify 8 | * it under the terms of the GNU Affero General Public License as 9 | * published by the Free Software Foundation, either version 3 of the 10 | * License, or (at your option) any later version. 11 | * 12 | * This program is distributed in the hope that it will be useful, 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 | * GNU Affero General Public License for more details. 16 | * 17 | * You should have received a copy of the GNU Affero General Public License 18 | * along with this program. If not, see . 19 | * 20 | * @author PeratX 21 | * @website https://github.com/iTXTech/mirai-kts 22 | * 23 | */ 24 | 25 | package org.itxtech.miraikts.plugin 26 | 27 | import kotlinx.atomicfu.atomic 28 | import kotlinx.coroutines.* 29 | import net.mamoe.mirai.console.command.CommandManager.INSTANCE.register 30 | import net.mamoe.mirai.console.command.CommandSender 31 | import net.mamoe.mirai.console.command.CompositeCommand 32 | import net.mamoe.mirai.console.util.ConsoleExperimentalAPI 33 | import net.mamoe.mirai.utils.currentTimeMillis 34 | import org.itxtech.miraikts.MiraiKts 35 | import org.itxtech.miraikts.script.* 36 | import org.jetbrains.kotlin.cli.common.environment.setIdeaIoUseFallback 37 | import java.io.File 38 | import java.net.URL 39 | import java.net.URLClassLoader 40 | import java.util.concurrent.ConcurrentHashMap 41 | import java.util.zip.ZipEntry 42 | import java.util.zip.ZipFile 43 | import kotlin.reflect.full.isSubclassOf 44 | import kotlin.script.experimental.api.CompiledScript 45 | import kotlin.script.experimental.api.ResultValue 46 | import kotlin.script.experimental.api.SourceCode 47 | import kotlin.script.experimental.host.FileScriptSource 48 | import kotlin.script.experimental.host.toScriptSource 49 | 50 | open class PluginManager { 51 | protected val plDir: File by lazy { File(MiraiKts.dataFolder.absolutePath + File.separatorChar + "plugins").also { it.mkdirs() } } 52 | protected val plData: File by lazy { File(MiraiKts.dataFolder.absolutePath + File.separatorChar + "data").also { it.mkdirs() } } 53 | protected val plLib: File by lazy { File(MiraiKts.dataFolder.absolutePath + File.separatorChar + "lib").also { it.mkdirs() } } 54 | protected val cache: File by lazy { File(MiraiKts.dataFolder.absolutePath + File.separatorChar + "cache").also { it.mkdirs() } } 55 | 56 | protected val job = SupervisorJob() 57 | 58 | @OptIn(ObsoleteCoroutinesApi::class) 59 | protected val context = newFixedThreadPoolContext(Runtime.getRuntime().availableProcessors(), "MiraiKts") + job 60 | protected val pluginId = atomic(0) 61 | protected val plugins = ConcurrentHashMap() 62 | 63 | protected val command = KpmCommand(this) 64 | 65 | init { 66 | setIdeaIoUseFallback() 67 | } 68 | 69 | private fun launch(b: suspend CoroutineScope.() -> Unit): Job = MiraiKts.launch(context, block = b) 70 | 71 | private fun isValidFile(file: File) = 72 | file.exists() && file.isFile && 73 | (file.name.endsWith(".kts") || file.name.endsWith(".mkc") || file.name.endsWith(".kts.zip")) 74 | 75 | open fun getPluginDataDir(name: String) = 76 | File(plData.absolutePath + File.separatorChar + name).apply { mkdirs() } 77 | 78 | open fun getLibDir(name: String) = 79 | File(plLib.absolutePath + File.separatorChar + name).apply { mkdirs() } 80 | 81 | open fun getClassLoader(parent: ClassLoader) = URLClassLoader(ArrayList().toTypedArray(), parent) 82 | 83 | open fun loadPlugins() { 84 | if (!MiraiKts.dataFolder.isDirectory) { 85 | MiraiKts.logger.error("数据文件夹不是一个文件夹!" + MiraiKts.dataFolder.absolutePath) 86 | } else { 87 | plDir.listFiles()?.filter { isValidFile(it) }?.forEach { file -> 88 | loadPlugin(file) 89 | } 90 | } 91 | } 92 | 93 | open fun loadPlugin(ktsFile: File): Boolean { 94 | if (isValidFile(ktsFile)) { 95 | MiraiKts.logger.info("正在加载 MiraiKts 插件:" + ktsFile.name) 96 | plugins.values.forEach { 97 | if (it.file == ktsFile) { 98 | return false 99 | } 100 | } 101 | 102 | val id = pluginId.getAndIncrement() 103 | launch { 104 | var checksum: String? = null 105 | var script: SourceCode? = null 106 | if (ktsFile.name.endsWith(".kts.zip")) { 107 | val zip = ZipFile(ktsFile) 108 | val entries = zip.entries() 109 | var source: String? = null 110 | var jarDir = "" 111 | val jars = ArrayList() 112 | while (entries.hasMoreElements()) { 113 | val entry = entries.nextElement() 114 | if (!entry.isDirectory && entry.name.endsWith(".kts")) { 115 | if (source == null) { 116 | source = String(zip.getInputStream(entry).readBytes()) 117 | checksum = source.toByteArray().checksum() 118 | script = FileScriptSource(ktsFile, source) 119 | } else { 120 | throw Exception("Illegal .kts.zip ${ktsFile.name}: Multiple Kts files") 121 | } 122 | } 123 | if (entry.isDirectory) { 124 | if (jarDir == "") { 125 | jarDir = entry.name 126 | } else { 127 | throw Exception("Illegal .kts.zip ${ktsFile.name}: Multiple Directories") 128 | } 129 | } 130 | if (jarDir != "" && entry.name.startsWith(jarDir) && entry.name != jarDir) { 131 | jars += entry 132 | } 133 | } 134 | jars.forEach { jar -> 135 | val file = File(plLib.absolutePath + File.separatorChar + jar.name) 136 | println(file) 137 | if (!file.exists()) { 138 | file.parentFile.mkdirs() 139 | file.outputStream().use { zip.getInputStream(jar).copyTo(it) } 140 | } 141 | } 142 | zip.close() 143 | } else if (ktsFile.name.endsWith(".kts")) { 144 | script = ktsFile.toScriptSource() 145 | checksum = ktsFile.checksum() 146 | } 147 | 148 | val cacheFile = if (ktsFile.name.endsWith(".mkc")) { 149 | ktsFile 150 | } else { 151 | plugins.values.forEach { 152 | if (it.cacheMeta.checksum == checksum) { 153 | MiraiKts.logger.error("插件 \"${ktsFile.name}\" 与已加载的插件 \"${it.file.name}\" 冲突:相同的插件") 154 | return@launch 155 | } 156 | } 157 | ktsFile.findCache(cache, checksum!!) 158 | } 159 | 160 | val compile = !cacheFile.exists() 161 | val start = currentTimeMillis 162 | 163 | val classpath: ArrayList 164 | val engine = KtsEngine( 165 | this@PluginManager, 166 | getClassLoader(this@PluginManager.javaClass.classLoader).apply { classpath = getClassPath(3) }, 167 | classpath 168 | ) 169 | 170 | lateinit var metadata: MiraiKtsCacheMetadata 171 | val compiled: CompiledScript = if (compile) { 172 | try { 173 | engine.compile(script!!).apply { metadata = save(cacheFile, ktsFile, checksum!!) } 174 | } catch (e: Throwable) { 175 | MiraiKts.logger.error("非法的 MiraiKts 插件文件 \"${ktsFile.name}\"", e) 176 | return@launch 177 | } 178 | } else { 179 | cacheFile.readMkc().apply { 180 | if (!ktsFile.name.endsWith(".mkc") && meta.checksum != checksum) { 181 | MiraiKts.logger.error("非法的 MiraiKts 缓存文件 \"${cacheFile.name}\",请删除该文件") 182 | return@launch 183 | } 184 | metadata = meta 185 | }.classes 186 | } 187 | 188 | if (!metadata.verifyHeader()) { 189 | MiraiKts.logger.error("非法的 MiraiKts 缓存文件头 \"${metadata.header}\" 位于 \"${cacheFile.name}\",请删除该文件") 190 | return@launch 191 | } 192 | 193 | var pl: KtsPlugin? = null 194 | try { 195 | when (val value = engine.eval(compiled).returnValue) { 196 | is ResultValue.Value -> pl = value.value as KtsPlugin 197 | else -> { 198 | value.scriptInstance!!::class.nestedClasses 199 | .filter { it.isSubclassOf(KtsPlugin::class) } 200 | .forEach { 201 | if (it.objectInstance != null) { 202 | if (pl == null) { 203 | pl = it.objectInstance as KtsPlugin 204 | } else { 205 | throw Exception("Two or more KtsPlugin objects detected.") 206 | } 207 | } 208 | } 209 | } 210 | } 211 | if (pl == null) { 212 | throw Exception("KtsPlugin Instance not found.") 213 | } 214 | } catch (e: Throwable) { 215 | MiraiKts.logger.error("非法的 MiraiKts 插件文件 \"${ktsFile.name}\",缓存文件 \"${cacheFile.name}\"", e) 216 | return@launch 217 | } 218 | 219 | MiraiKts.logger.debug( 220 | (if (compile) "编译 " else "缓存 ") + 221 | "插件 \"${ktsFile.name}\" 加载耗时 " + (currentTimeMillis - start) + "ms" 222 | ) 223 | 224 | val plugin = pl!! 225 | plugin.cacheMeta = metadata 226 | plugins.values.forEach { 227 | if (it.info.name == plugin.info.name || it.cacheMeta.checksum == plugin.cacheMeta.checksum) { 228 | MiraiKts.logger.error("插件 \"${ktsFile.name}\" 与已加载的插件 \"${it.file.name}\" 冲突:相同的插件") 229 | return@launch 230 | } 231 | } 232 | 233 | plugin.manager = this@PluginManager 234 | plugin.id = id 235 | plugin.file = ktsFile 236 | plugins[id] = plugin 237 | 238 | plugin.load() 239 | } 240 | return true 241 | } 242 | return false 243 | } 244 | 245 | private fun enablePl() { 246 | plugins.values.forEach { 247 | it.enable() 248 | } 249 | } 250 | 251 | open fun enablePlugins() { 252 | job.children.forEach { job -> 253 | job.invokeOnCompletion { 254 | enablePl() 255 | } 256 | } 257 | enablePl() 258 | } 259 | 260 | open fun disablePlugins() { 261 | plugins.values.forEach { 262 | it.disable() 263 | } 264 | } 265 | 266 | open fun unloadPlugin(plugin: KtsPlugin) { 267 | plugin.unload() 268 | plugins.remove(plugin.id) 269 | } 270 | 271 | @OptIn(ConsoleExperimentalAPI::class) 272 | class KpmCommand(val manager: PluginManager) : CompositeCommand( 273 | MiraiKts, "kpm", 274 | description = "Mirai Kts 插件管理器" 275 | ) { 276 | private fun StringBuilder.getCommonPluginInfo(p: KtsPlugin) { 277 | appendLine("Id:${p.id} 文件:${p.file.name} 名称:${p.info.name} 状态:${if (p.enabled) "启用" else "停用"} 版本:${p.info.version} 作者:${p.info.author}") 278 | if (p.info.website != "") { 279 | appendLine("主页:${p.info.website}") 280 | } 281 | } 282 | 283 | @SubCommand 284 | suspend fun CommandSender.list() { 285 | sendMessage(buildString { 286 | var size = 0L 287 | var cnt = 0 288 | manager.cache.listFiles()?.filter { it.name.endsWith(".mkc") }?.forEach { f -> 289 | size += f.length() 290 | cnt++ 291 | } 292 | 293 | appendLine("") 294 | appendLine("MiraiKts 已生成 $cnt 个缓存文件,共 ${(size / 1024).toInt()} KB。") 295 | appendLine("共加载了 ${manager.plugins.size} 个 MiraiKts 插件。") 296 | appendLine("") 297 | manager.plugins.values.forEach { p -> 298 | getCommonPluginInfo(p) 299 | appendLine("") 300 | } 301 | }) 302 | } 303 | 304 | @SubCommand 305 | suspend fun CommandSender.info(@Name("插件Id") id: Int) { 306 | sendMessage(buildString { 307 | if (manager.plugins.containsKey(id)) { 308 | val p = manager.plugins[id]!! 309 | appendLine("插件信息:") 310 | getCommonPluginInfo(p) 311 | appendLine("") 312 | appendLine("使用缓存启动:" + (if (!p.cacheMeta.source) "是" else "否")) 313 | appendLine("缓存文件头:${p.cacheMeta.header}") 314 | appendLine("缓存源文件MD5:${p.cacheMeta.checksum}") 315 | appendLine("缓存源文件名:${p.cacheMeta.origin}") 316 | appendLine("缓存文件:${p.cacheMeta.file.name}") 317 | appendLine("") 318 | } else { 319 | appendLine("Id $id 不存在。") 320 | } 321 | }) 322 | } 323 | 324 | @SubCommand 325 | suspend fun CommandSender.load(@Name("Kts文件名") file: String) { 326 | sendMessage(buildString { 327 | if (!manager.loadPlugin(File(manager.plDir.absolutePath + File.separatorChar + file))) { 328 | appendLine("文件 \"${file}\" 非法。") 329 | } 330 | }) 331 | } 332 | 333 | @SubCommand 334 | suspend fun CommandSender.unload(@Name("插件Id") id: Int) { 335 | sendMessage(buildString { 336 | if (manager.plugins.containsKey(id)) { 337 | manager.unloadPlugin(manager.plugins[id]!!) 338 | } else { 339 | appendLine("Id $id 不存在。") 340 | } 341 | }) 342 | } 343 | 344 | @SubCommand 345 | suspend fun CommandSender.enable(@Name("插件Id") id: Int) { 346 | sendMessage(buildString { 347 | if (manager.plugins.containsKey(id)) { 348 | manager.plugins[id]!!.enable() 349 | } else { 350 | appendLine("Id $id 不存在。") 351 | } 352 | }) 353 | } 354 | 355 | @SubCommand 356 | suspend fun CommandSender.disable(@Name("插件Id") id: Int) { 357 | sendMessage(buildString { 358 | if (manager.plugins.containsKey(id)) { 359 | manager.plugins[id]!!.disable() 360 | } else { 361 | appendLine("Id $id 不存在。") 362 | } 363 | }) 364 | } 365 | } 366 | 367 | open fun registerCommand() { 368 | command.register() 369 | } 370 | } 371 | -------------------------------------------------------------------------------- /src/main/kotlin/org/itxtech/miraikts/script/KtsEngine.kt: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Mirai Kts 4 | * 5 | * Copyright (C) 2020 iTX Technologies 6 | * 7 | * This program is free software: you can redistribute it and/or modify 8 | * it under the terms of the GNU Affero General Public License as 9 | * published by the Free Software Foundation, either version 3 of the 10 | * License, or (at your option) any later version. 11 | * 12 | * This program is distributed in the hope that it will be useful, 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 | * GNU Affero General Public License for more details. 16 | * 17 | * You should have received a copy of the GNU Affero General Public License 18 | * along with this program. If not, see . 19 | * 20 | * @author PeratX 21 | * @website https://github.com/iTXTech/mirai-kts 22 | * 23 | */ 24 | 25 | package org.itxtech.miraikts.script 26 | 27 | import org.itxtech.miraikts.MiraiKts 28 | import org.itxtech.miraikts.plugin.PluginManager 29 | import org.jetbrains.kotlin.cli.common.CLIConfigurationKeys 30 | import org.jetbrains.kotlin.cli.common.messages.MessageRenderer 31 | import org.jetbrains.kotlin.cli.common.messages.PrintingMessageCollector 32 | import org.jetbrains.kotlin.cli.jvm.compiler.EnvironmentConfigFiles 33 | import org.jetbrains.kotlin.cli.jvm.compiler.KotlinCoreEnvironment 34 | import org.jetbrains.kotlin.cli.jvm.config.addJvmClasspathRoots 35 | import org.jetbrains.kotlin.cli.jvm.config.addJvmSdkRoots 36 | import org.jetbrains.kotlin.cli.jvm.config.jvmClasspathRoots 37 | import org.jetbrains.kotlin.com.intellij.openapi.util.Disposer 38 | import org.jetbrains.kotlin.compiler.plugin.ComponentRegistrar 39 | import org.jetbrains.kotlin.config.* 40 | import org.jetbrains.kotlin.scripting.compiler.plugin.ScriptingCompilerConfigurationComponentRegistrar 41 | import org.jetbrains.kotlin.scripting.compiler.plugin.impl.ScriptJvmCompilerFromEnvironment 42 | import org.jetbrains.kotlin.scripting.configuration.ScriptingConfigurationKeys 43 | import org.jetbrains.kotlin.scripting.definitions.ScriptDefinition 44 | import org.jetbrains.kotlin.scripting.resolve.KotlinScriptDefinitionFromAnnotatedTemplate 45 | import org.jetbrains.kotlin.utils.PathUtil 46 | import java.io.File 47 | import java.io.OutputStream 48 | import java.io.PrintStream 49 | import java.net.URLClassLoader 50 | import kotlin.script.dependencies.Environment 51 | import kotlin.script.dependencies.ScriptContents 52 | import kotlin.script.experimental.api.* 53 | import kotlin.script.experimental.dependencies.DependenciesResolver 54 | import kotlin.script.experimental.dependencies.ScriptDependencies 55 | import kotlin.script.experimental.dependencies.asSuccess 56 | import kotlin.script.experimental.host.ScriptingHostConfiguration 57 | import kotlin.script.experimental.host.configurationDependencies 58 | import kotlin.script.experimental.jvm.* 59 | import kotlin.script.templates.AcceptedAnnotations 60 | import kotlin.script.templates.ScriptTemplateDefinition 61 | 62 | // 后续版本号为 2531 63 | const val HEADER = "MKCv2531" 64 | 65 | const val ENV_MANAGER = "manager" 66 | const val ENV_FILENAME = "filename" 67 | const val ENV_BASE_PATH = "basepath" 68 | 69 | class KtsEngine( 70 | private val manager: PluginManager, 71 | private val loader: ClassLoader, 72 | private val templateClasspath: List 73 | //private val basePath: String 74 | ) { 75 | fun compile(script: SourceCode): CompiledScript { 76 | val rootDisposable = Disposer.newDisposable() 77 | val config = CompilerConfiguration().apply { 78 | addJvmSdkRoots(PathUtil.getJdkClassesRootsFromCurrentJre()) 79 | addJvmClasspathRoots(templateClasspath) 80 | add(ComponentRegistrar.PLUGIN_COMPONENT_REGISTRARS, ScriptingCompilerConfigurationComponentRegistrar()) 81 | put(CommonConfigurationKeys.MODULE_NAME, "kotlin-script") 82 | languageVersionSettings = LanguageVersionSettingsImpl( 83 | LanguageVersion.LATEST_STABLE, 84 | ApiVersion.LATEST_STABLE, 85 | mapOf(AnalysisFlags.skipMetadataVersionCheck to true) 86 | ) 87 | add( 88 | ScriptingConfigurationKeys.SCRIPT_DEFINITIONS, 89 | ScriptDefinition.FromLegacy( 90 | ScriptingHostConfiguration(defaultJvmScriptingHostConfiguration) { 91 | configurationDependencies(JvmDependency(jvmClasspathRoots)) 92 | }, KotlinScriptDefinitionFromAnnotatedTemplate( 93 | MktsResolverAnno::class, 94 | mapOf( 95 | Pair(ENV_MANAGER, manager), 96 | Pair(ENV_FILENAME, script.name) 97 | //Pair(ENV_BASE_PATH, basePath) 98 | ) 99 | ) 100 | ) 101 | ) 102 | put( 103 | CLIConfigurationKeys.MESSAGE_COLLECTOR_KEY, 104 | PrintingMessageCollector( 105 | PrintStream(object : OutputStream() { 106 | override fun write(b: Int) { 107 | } 108 | }), 109 | MessageRenderer.WITHOUT_PATHS, 110 | false 111 | ) 112 | ) 113 | put(JVMConfigurationKeys.RETAIN_OUTPUT_IN_MEMORY, true) 114 | if (get(JVMConfigurationKeys.JVM_TARGET) == null) { 115 | put(JVMConfigurationKeys.JVM_TARGET, 116 | System.getProperty("java.specification.version")?.let { JvmTarget.fromString(it) } 117 | ?: JvmTarget.DEFAULT) 118 | } 119 | } 120 | val env = 121 | KotlinCoreEnvironment.createForProduction(rootDisposable, config, EnvironmentConfigFiles.JVM_CONFIG_FILES) 122 | val compiler = ScriptJvmCompilerFromEnvironment(env) 123 | return compiler.compile(script, ScriptCompilationConfiguration()).valueOrThrow() 124 | } 125 | 126 | suspend fun eval(compiled: CompiledScript): EvaluationResult { 127 | val config = ScriptEvaluationConfiguration { jvm { baseClassLoader(loader) } } 128 | return BasicJvmScriptEvaluator().invoke(compiled, config).valueOrThrow() 129 | } 130 | } 131 | 132 | fun ClassLoader.getClassPath(limit: Int, list: ArrayList = ArrayList()): ArrayList { 133 | if (limit <= 0) { 134 | return list 135 | } 136 | if (this is URLClassLoader) { 137 | urLs.forEach { 138 | list.add(File(it.file)) 139 | } 140 | } 141 | if (parent != null) { 142 | return parent.getClassPath(limit - 1, list) 143 | } 144 | return list 145 | } 146 | 147 | @Target(AnnotationTarget.FILE) 148 | @Retention(AnnotationRetention.SOURCE) 149 | annotation class Namespace(val ns: String) 150 | 151 | @Target(AnnotationTarget.FILE) 152 | @Repeatable 153 | @Retention(AnnotationRetention.SOURCE) 154 | annotation class Jar(vararg val jars: String) 155 | 156 | /* 157 | @Target(AnnotationTarget.FILE) 158 | @Repeatable 159 | @Retention(AnnotationRetention.SOURCE) 160 | annotation class Include(vararg val kt: String) 161 | */ 162 | 163 | @ScriptTemplateDefinition(resolver = MktsResolver::class) 164 | abstract class MktsResolverAnno 165 | 166 | class MktsResolver : DependenciesResolver { 167 | @AcceptedAnnotations(Jar::class, Namespace::class/*, Include::class*/) 168 | override fun resolve(scriptContents: ScriptContents, environment: Environment): DependenciesResolver.ResolveResult { 169 | var base = "public" 170 | val jars = ArrayList() 171 | //val inc = ArrayList() 172 | scriptContents.annotations.forEach { annotation -> 173 | when (annotation) { 174 | is Namespace -> { 175 | base = annotation.ns 176 | } 177 | is Jar -> { 178 | annotation.jars.forEach { 179 | jars.add(it) 180 | } 181 | } 182 | /*is Include -> { 183 | annotation.kt.forEach { 184 | inc.add(it) 185 | } 186 | }*/ 187 | } 188 | } 189 | val dir = (environment[ENV_MANAGER] as PluginManager).getLibDir(base) 190 | val path = ArrayList() 191 | jars.forEach { 192 | val jar = File(dir.absolutePath + File.separatorChar + it) 193 | if (jar.exists()) { 194 | path.add(jar) 195 | } else { 196 | MiraiKts.logger.error("无法找到 \"${(environment[ENV_FILENAME] as File).name}\" 所需的 \"${jar.absolutePath}\"") 197 | } 198 | } 199 | return ScriptDependencies( 200 | classpath = path, 201 | //sources = includes, 202 | imports = listOf( 203 | //"org.itxtech.miraikts.script.Include", 204 | "org.itxtech.miraikts.script.Jar", 205 | "org.itxtech.miraikts.script.Namespace" 206 | ) 207 | ).asSuccess() 208 | } 209 | } 210 | -------------------------------------------------------------------------------- /src/main/kotlin/org/itxtech/miraikts/script/Mkc.kt: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Mirai Kts 4 | * 5 | * Copyright (C) 2020 iTX Technologies 6 | * 7 | * This program is free software: you can redistribute it and/or modify 8 | * it under the terms of the GNU Affero General Public License as 9 | * published by the Free Software Foundation, either version 3 of the 10 | * License, or (at your option) any later version. 11 | * 12 | * This program is distributed in the hope that it will be useful, 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 | * GNU Affero General Public License for more details. 16 | * 17 | * You should have received a copy of the GNU Affero General Public License 18 | * along with this program. If not, see . 19 | * 20 | * @author PeratX 21 | * @website https://github.com/iTXTech/mirai-kts 22 | * 23 | */ 24 | 25 | package org.itxtech.miraikts.script 26 | 27 | import java.io.* 28 | import java.math.BigInteger 29 | import java.security.MessageDigest 30 | import kotlin.script.experimental.api.CompiledScript 31 | 32 | data class MiraiKtsCache( 33 | val meta: MiraiKtsCacheMetadata, 34 | val classes: CompiledScript 35 | ) 36 | 37 | data class MiraiKtsCacheMetadata( 38 | val source: Boolean, 39 | val header: String? = null, 40 | val origin: String? = null, 41 | val checksum: String, 42 | val file: File 43 | ) { 44 | fun verifyHeader(h: String = HEADER) = header == h 45 | } 46 | 47 | fun ByteArray.checksum(): String = BigInteger( 48 | 1, MessageDigest.getInstance("MD5").digest(this) 49 | ).toString(16).padStart(32, '0') 50 | 51 | fun File.checksum(): String = readBytes().checksum() 52 | 53 | fun File.findCache(dir: File, checksum: String = checksum()) = 54 | File(dir.absolutePath + File.separatorChar + checksum + ".mkc") 55 | 56 | fun File.readMkc(): MiraiKtsCache { 57 | val bi = FileInputStream(this) 58 | val si = ObjectInputStream(bi) 59 | return MiraiKtsCache( 60 | MiraiKtsCacheMetadata( 61 | false, 62 | si.readString(), 63 | si.readString(), 64 | si.readString(), 65 | this 66 | ), 67 | (si.readObject() as CompiledScript).apply { 68 | si.close() 69 | bi.close() 70 | } 71 | ) 72 | } 73 | 74 | fun CompiledScript.save( 75 | target: File, 76 | origin: File, 77 | checksum: String, 78 | header: String = HEADER 79 | ): MiraiKtsCacheMetadata { 80 | val bo = FileOutputStream(target) 81 | val so = ObjectOutputStream(bo) 82 | so.writeString(header) 83 | so.writeString(origin.absolutePath) 84 | so.writeString(checksum) 85 | so.writeObject(this) 86 | so.close() 87 | bo.close() 88 | return MiraiKtsCacheMetadata( 89 | true, 90 | header, 91 | origin.absolutePath, 92 | checksum, 93 | target 94 | ) 95 | } 96 | 97 | fun ObjectInputStream.readString(): String { 98 | val len = readShort().toInt() 99 | val array = ByteArray(len) 100 | var read = 0 101 | while (read < len) { 102 | val i = this.read(array, read, len - read) 103 | if (i == -1) error("Unexpected EOF") 104 | read += i 105 | } 106 | return String(array) 107 | } 108 | 109 | fun ObjectOutputStream.writeString(str: String) { 110 | writeShort(str.length) 111 | writeBytes(str) 112 | } 113 | -------------------------------------------------------------------------------- /src/main/resources/plugin.yml: -------------------------------------------------------------------------------- 1 | name: MiraiKts 2 | main: org.itxtech.miraikts.MiraiKts 3 | version: 1.0.1 4 | author: iTX Technologies 5 | info: 强大的 Mirai Kotlin Script 插件加载器。 6 | -------------------------------------------------------------------------------- /src/test/kotlin/echoBot.kts: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Mirai Kts 4 | * 5 | * Copyright (C) 2020 iTX Technologies 6 | * 7 | * This program is free software: you can redistribute it and/or modify 8 | * it under the terms of the GNU Affero General Public License as 9 | * published by the Free Software Foundation, either version 3 of the 10 | * License, or (at your option) any later version. 11 | * 12 | * This program is distributed in the hope that it will be useful, 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 | * GNU Affero General Public License for more details. 16 | * 17 | * You should have received a copy of the GNU Affero General Public License 18 | * along with this program. If not, see . 19 | * 20 | * @author PeratX 21 | * @website https://github.com/iTXTech/mirai-kts 22 | * 23 | */ 24 | 25 | import io.ktor.client.* 26 | import io.ktor.client.engine.cio.* 27 | import io.ktor.client.features.* 28 | import io.ktor.client.request.* 29 | import kotlinx.coroutines.launch 30 | import net.mamoe.mirai.console.command.CommandManager.INSTANCE.register 31 | import net.mamoe.mirai.console.command.CommandManager.INSTANCE.unregister 32 | import net.mamoe.mirai.console.command.CommandOwner 33 | import net.mamoe.mirai.console.command.CommandSender 34 | import net.mamoe.mirai.console.command.SimpleCommand 35 | import net.mamoe.mirai.event.events.BotOnlineEvent 36 | import net.mamoe.mirai.event.subscribeAlways 37 | import net.mamoe.mirai.message.GroupMessageEvent 38 | import net.mamoe.mirai.message.data.PlainText 39 | import org.itxtech.miraikts.plugin.KtsPlugin 40 | import org.itxtech.miraikts.plugin.miraiPlugin 41 | 42 | // 扩展函数写在 miraiPlugin 前面 43 | fun KtsPlugin.doSomething() { 44 | logger.info("数据文件夹 $dataDir") 45 | } 46 | 47 | object Owner : CommandOwner 48 | 49 | object KtsCommand : SimpleCommand( 50 | Owner, "kts", 51 | description = "Kts太强了" 52 | ) { 53 | @Handler 54 | suspend fun CommandSender.handle() { 55 | sendMessage("Kts NB!!!") 56 | } 57 | } 58 | 59 | miraiPlugin { 60 | info { 61 | name = "KtsPluginExample" 62 | version = "1.0.0" 63 | author = "PeratX" 64 | website = "https://github.com/iTXTech/mirai-kts/blob/master/src/test/kotlin/echoBot.kts" 65 | } 66 | 67 | load { 68 | logger.info("Hello world from MiraiKts!") 69 | launch { 70 | val client = HttpClient(CIO) { 71 | BrowserUserAgent() 72 | } 73 | val r = client.get("https://im.qq.com") 74 | logger.info("QQ主页长:${r.length}") 75 | } 76 | KtsCommand.register() 77 | } 78 | 79 | enable { 80 | logger.info("KtsPlugin 已启用!") 81 | doSomething() 82 | subscribeAlways { 83 | logger.info("Bot已上线!$this") 84 | } 85 | subscribeAlways { 86 | group.sendMessage(PlainText("MiraiKts收到消息:") + message) 87 | } 88 | } 89 | 90 | disable { 91 | logger.info("KtsPlugin 已停用!") 92 | } 93 | 94 | unload { 95 | KtsCommand.unregister() 96 | logger.info("KtsPlugin 已卸载!") 97 | } 98 | } 99 | -------------------------------------------------------------------------------- /src/test/kotlin/nobuilder.kts: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Mirai Kts 4 | * 5 | * Copyright (C) 2020 iTX Technologies 6 | * 7 | * This program is free software: you can redistribute it and/or modify 8 | * it under the terms of the GNU Affero General Public License as 9 | * published by the Free Software Foundation, either version 3 of the 10 | * License, or (at your option) any later version. 11 | * 12 | * This program is distributed in the hope that it will be useful, 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 | * GNU Affero General Public License for more details. 16 | * 17 | * You should have received a copy of the GNU Affero General Public License 18 | * along with this program. If not, see . 19 | * 20 | * @author PeratX 21 | * @website https://github.com/iTXTech/mirai-kts 22 | * 23 | */ 24 | 25 | import org.itxtech.miraikts.plugin.KtsPlugin 26 | import org.itxtech.miraikts.plugin.pluginInfo 27 | 28 | // 一个 kts 插件中,只能存在一个 KtsPlugin object,且必须为 object 29 | object NoBuilderPlugin : KtsPlugin( 30 | pluginInfo { 31 | name = "KtsPluginNoBuilderExample" 32 | version = "1.0.0" 33 | author = "PeratX" 34 | website = "https://github.com/iTXTech/mirai-kts/blob/master/src/test/kotlin/nobuilder.kts" 35 | } 36 | ) { 37 | override fun onLoad() { 38 | TestClass.doSomething(this) 39 | } 40 | 41 | override fun onEnable() { 42 | logger.info("KtsNoBuilder 已启用!") 43 | } 44 | 45 | override fun onDisable() { 46 | logger.info("KtsNoBuilder 已停用!") 47 | } 48 | 49 | override fun onUnload() { 50 | logger.info("KtsNoBuilder 已卸载!") 51 | } 52 | } 53 | 54 | object TestClass { 55 | fun doSomething(plugin: KtsPlugin) { 56 | plugin.logger.info("数据文件夹 ${plugin.dataDir}") 57 | } 58 | } 59 | -------------------------------------------------------------------------------- /src/test/kotlin/okhttp.kts: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Mirai Kts 4 | * 5 | * Copyright (C) 2020 iTX Technologies 6 | * 7 | * This program is free software: you can redistribute it and/or modify 8 | * it under the terms of the GNU Affero General Public License as 9 | * published by the Free Software Foundation, either version 3 of the 10 | * License, or (at your option) any later version. 11 | * 12 | * This program is distributed in the hope that it will be useful, 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 | * GNU Affero General Public License for more details. 16 | * 17 | * You should have received a copy of the GNU Affero General Public License 18 | * along with this program. If not, see . 19 | * 20 | * @author PeratX 21 | * @website https://github.com/iTXTech/mirai-kts 22 | * 23 | */ 24 | 25 | // 指定依赖 JAR 的命名空间,默认为 public 26 | @file:Namespace("okhttpexample") 27 | // 指定依赖的 JAR 文件名 28 | @file:Jar("okhttp.jar", "okio.jar") 29 | // 或者分开编写 30 | // @file:Jar("okhttp.jar") 31 | // @file:Jar("okio.jar") 32 | 33 | import okhttp3.OkHttpClient 34 | import okhttp3.Request 35 | import org.itxtech.miraikts.plugin.miraiPlugin 36 | import org.itxtech.miraikts.script.Jar 37 | import org.itxtech.miraikts.script.Namespace 38 | import java.util.concurrent.TimeUnit 39 | 40 | miraiPlugin { 41 | info { 42 | name = "KtsOkhttpExample" 43 | version = "1.0.0" 44 | author = "PeratX" 45 | website = "https://github.com/iTXTech/mirai-kts/blob/master/src/test/kotlin/okhttp.kts" 46 | } 47 | 48 | load { 49 | logger.info("Hello world from MiraiKts!") 50 | val client = OkHttpClient.Builder() 51 | .connectTimeout(1000, TimeUnit.MILLISECONDS) 52 | .readTimeout(1000, TimeUnit.MILLISECONDS) 53 | .addInterceptor { 54 | return@addInterceptor it.proceed( 55 | it.request().newBuilder() 56 | .addHeader( 57 | "User-Agent", 58 | "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36" 59 | ) 60 | .build() 61 | ) 62 | } 63 | .build() 64 | val response = client.newCall(Request.Builder().url("https://im.qq.com").build()).execute() 65 | logger.info(response.toString()) 66 | response.close() 67 | } 68 | 69 | enable { 70 | logger.info("KtsOkhttp 已启用!") 71 | } 72 | 73 | disable { 74 | logger.info("KtsOkhttp 已停用!") 75 | } 76 | 77 | unload { 78 | logger.info("KtsOkhttp 已卸载!") 79 | } 80 | } 81 | --------------------------------------------------------------------------------