From fa8b6729d1b125fc00a060abe333c5ea4bb08793 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BD=AD=E6=A1=83?= <1098598843@qq.com> Date: Fri, 24 Mar 2023 09:47:00 +0800 Subject: [PATCH] 1 --- .../easywechat-composer/.gitignore | 5 + .../easywechat-composer/.php_cs | 29 + .../easywechat-composer/.travis.yml | 12 + .../easywechat-composer/LICENSE | 21 + .../easywechat-composer/README.md | 55 + .../easywechat-composer/composer.json | 35 + .../easywechat-composer/phpunit.xml | 20 + .../src/Commands/ExtensionsCommand.php | 63 + .../src/Commands/Provider.php | 31 + .../src/Contracts/Encrypter.php | 35 + .../src/Delegation/DelegationOptions.php | 80 + .../src/Delegation/DelegationTo.php | 83 + .../src/Delegation/Hydrate.php | 83 + .../easywechat-composer/src/EasyWeChat.php | 79 + .../src/Encryption/DefaultEncrypter.php | 89 ++ .../src/Exceptions/DecryptException.php | 21 + .../src/Exceptions/DelegationException.php | 42 + .../src/Exceptions/EncryptException.php | 21 + .../easywechat-composer/src/Extension.php | 143 ++ .../src/Http/DelegationResponse.php | 25 + .../easywechat-composer/src/Http/Response.php | 104 ++ .../Http/Controllers/DelegatesController.php | 49 + .../src/Laravel/ServiceProvider.php | 116 ++ .../src/Laravel/config.php | 29 + .../src/Laravel/routes.php | 16 + .../src/ManifestManager.php | 127 ++ .../easywechat-composer/src/Plugin.php | 107 ++ .../src/Traits/MakesHttpRequests.php | 110 ++ .../src/Traits/WithAggregator.php | 60 + .../tests/ManifestManagerTest.php | 37 + vendor/overtrue/wechat/CHANGELOG.md | 1401 +++++++++++++++++ vendor/overtrue/wechat/CONTRIBUTING.md | 67 + vendor/overtrue/wechat/LICENSE | 22 + vendor/overtrue/wechat/README.md | 99 ++ vendor/overtrue/wechat/SECURITY.md | 21 + vendor/overtrue/wechat/composer.json | 89 ++ .../wechat/src/BasicService/Application.php | 39 + .../BasicService/ContentSecurity/Client.php | 116 ++ .../ContentSecurity/ServiceProvider.php | 31 + .../wechat/src/BasicService/Jssdk/Client.php | 223 +++ .../BasicService/Jssdk/ServiceProvider.php | 33 + .../wechat/src/BasicService/Media/Client.php | 207 +++ .../BasicService/Media/ServiceProvider.php | 44 + .../wechat/src/BasicService/QrCode/Client.php | 115 ++ .../BasicService/QrCode/ServiceProvider.php | 31 + .../wechat/src/BasicService/Url/Client.php | 42 + .../src/BasicService/Url/ServiceProvider.php | 31 + vendor/overtrue/wechat/src/Factory.php | 54 + .../wechat/src/Kernel/AccessToken.php | 284 ++++ .../overtrue/wechat/src/Kernel/BaseClient.php | 286 ++++ .../wechat/src/Kernel/Clauses/Clause.php | 75 + vendor/overtrue/wechat/src/Kernel/Config.php | 23 + .../Kernel/Contracts/AccessTokenInterface.php | 40 + .../wechat/src/Kernel/Contracts/Arrayable.php | 29 + .../Contracts/EventHandlerInterface.php | 25 + .../src/Kernel/Contracts/MediaInterface.php | 25 + .../src/Kernel/Contracts/MessageInterface.php | 35 + .../src/Kernel/Decorators/FinallyResult.php | 35 + .../src/Kernel/Decorators/TerminateResult.php | 35 + .../overtrue/wechat/src/Kernel/Encryptor.php | 219 +++ .../Kernel/Events/AccessTokenRefreshed.php | 35 + .../Kernel/Events/ApplicationInitialized.php | 35 + .../src/Kernel/Events/HttpResponseCreated.php | 35 + .../Events/ServerGuardResponseCreated.php | 35 + .../Kernel/Exceptions/BadRequestException.php | 21 + .../Kernel/Exceptions/DecryptException.php | 16 + .../src/Kernel/Exceptions/Exception.php | 23 + .../src/Kernel/Exceptions/HttpException.php | 52 + .../Exceptions/InvalidArgumentException.php | 21 + .../Exceptions/InvalidConfigException.php | 21 + .../Kernel/Exceptions/RuntimeException.php | 21 + .../Exceptions/UnboundServiceException.php | 21 + vendor/overtrue/wechat/src/Kernel/Helpers.php | 57 + .../wechat/src/Kernel/Http/Response.php | 121 ++ .../wechat/src/Kernel/Http/StreamResponse.php | 86 + .../wechat/src/Kernel/Log/LogManager.php | 594 +++++++ .../wechat/src/Kernel/Messages/Article.php | 58 + .../wechat/src/Kernel/Messages/Card.php | 52 + .../src/Kernel/Messages/DeviceEvent.php | 40 + .../wechat/src/Kernel/Messages/DeviceText.php | 50 + .../wechat/src/Kernel/Messages/File.php | 25 + .../wechat/src/Kernel/Messages/Image.php | 27 + .../Kernel/Messages/InteractiveTaskCard.php | 49 + .../wechat/src/Kernel/Messages/Link.php | 36 + .../wechat/src/Kernel/Messages/Location.php | 38 + .../wechat/src/Kernel/Messages/Media.php | 70 + .../wechat/src/Kernel/Messages/Message.php | 210 +++ .../src/Kernel/Messages/MiniProgramPage.php | 31 + .../src/Kernel/Messages/MiniprogramNotice.php | 13 + .../wechat/src/Kernel/Messages/Music.php | 73 + .../wechat/src/Kernel/Messages/News.php | 73 + .../wechat/src/Kernel/Messages/NewsItem.php | 57 + .../wechat/src/Kernel/Messages/Raw.php | 56 + .../Messages/ReplyInteractiveTaskCard.php | 60 + .../wechat/src/Kernel/Messages/ShortVideo.php | 30 + .../wechat/src/Kernel/Messages/TaskCard.php | 44 + .../wechat/src/Kernel/Messages/Text.php | 54 + .../wechat/src/Kernel/Messages/TextCard.php | 40 + .../wechat/src/Kernel/Messages/Transfer.php | 56 + .../wechat/src/Kernel/Messages/Video.php | 65 + .../wechat/src/Kernel/Messages/Voice.php | 37 + .../Providers/ConfigServiceProvider.php | 39 + .../EventDispatcherServiceProvider.php | 47 + .../Providers/ExtensionServiceProvider.php | 39 + .../Providers/HttpClientServiceProvider.php | 39 + .../Kernel/Providers/LogServiceProvider.php | 47 + .../Providers/RequestServiceProvider.php | 39 + .../wechat/src/Kernel/ServerGuard.php | 375 +++++ .../wechat/src/Kernel/ServiceContainer.php | 167 ++ .../wechat/src/Kernel/Support/AES.php | 85 + .../wechat/src/Kernel/Support/Arr.php | 466 ++++++ .../src/Kernel/Support/ArrayAccessible.php | 66 + .../wechat/src/Kernel/Support/Collection.php | 440 ++++++ .../wechat/src/Kernel/Support/File.php | 135 ++ .../wechat/src/Kernel/Support/Helpers.php | 131 ++ .../wechat/src/Kernel/Support/Str.php | 193 +++ .../wechat/src/Kernel/Support/XML.php | 167 ++ .../src/Kernel/Traits/HasAttributes.php | 251 +++ .../src/Kernel/Traits/HasHttpRequests.php | 231 +++ .../src/Kernel/Traits/InteractsWithCache.php | 105 ++ .../wechat/src/Kernel/Traits/Observable.php | 285 ++++ .../src/Kernel/Traits/ResponseCastable.php | 93 ++ .../wechat/src/MicroMerchant/Application.php | 173 ++ .../wechat/src/MicroMerchant/Base/Client.php | 126 ++ .../MicroMerchant/Base/ServiceProvider.php | 33 + .../src/MicroMerchant/Certficates/Client.php | 93 ++ .../Certficates/ServiceProvider.php | 33 + .../src/MicroMerchant/Kernel/BaseClient.php | 256 +++ .../Kernel/Exceptions/EncryptException.php | 23 + .../Exceptions/InvalidExtensionException.php | 23 + .../Exceptions/InvalidSignException.php | 23 + .../src/MicroMerchant/Material/Client.php | 73 + .../Material/ServiceProvider.php | 33 + .../wechat/src/MicroMerchant/Media/Client.php | 49 + .../MicroMerchant/Media/ServiceProvider.php | 44 + .../MicroMerchant/MerchantConfig/Client.php | 134 ++ .../MerchantConfig/ServiceProvider.php | 33 + .../src/MicroMerchant/Withdraw/Client.php | 67 + .../Withdraw/ServiceProvider.php | 33 + .../MiniProgram/ActivityMessage/Client.php | 85 + .../ActivityMessage/ServiceProvider.php | 28 + .../wechat/src/MiniProgram/AppCode/Client.php | 92 ++ .../MiniProgram/AppCode/ServiceProvider.php | 33 + .../wechat/src/MiniProgram/Application.php | 122 ++ .../src/MiniProgram/Auth/AccessToken.php | 39 + .../wechat/src/MiniProgram/Auth/Client.php | 43 + .../src/MiniProgram/Auth/ServiceProvider.php | 32 + .../wechat/src/MiniProgram/Base/Client.php | 38 + .../src/MiniProgram/Base/ServiceProvider.php | 33 + .../src/MiniProgram/Broadcast/Client.php | 539 +++++++ .../MiniProgram/Broadcast/ServiceProvider.php | 33 + .../src/MiniProgram/Business/Client.php | 149 ++ .../src/MiniProgram/Business/Messenger.php | 179 +++ .../MiniProgram/Business/ServiceProvider.php | 29 + .../CustomerService/ServiceProvider.php | 34 + .../src/MiniProgram/DataCube/Client.php | 203 +++ .../MiniProgram/DataCube/ServiceProvider.php | 28 + .../wechat/src/MiniProgram/Encryptor.php | 52 + .../wechat/src/MiniProgram/Express/Client.php | 208 +++ .../MiniProgram/Express/ServiceProvider.php | 33 + .../wechat/src/MiniProgram/Live/Client.php | 63 + .../src/MiniProgram/Live/ServiceProvider.php | 33 + .../src/MiniProgram/Mall/CartClient.php | 88 ++ .../src/MiniProgram/Mall/ForwardsMall.php | 48 + .../src/MiniProgram/Mall/MediaClient.php | 37 + .../src/MiniProgram/Mall/OrderClient.php | 75 + .../src/MiniProgram/Mall/ProductClient.php | 68 + .../src/MiniProgram/Mall/ServiceProvider.php | 44 + .../src/MiniProgram/NearbyPoi/Client.php | 123 ++ .../MiniProgram/NearbyPoi/ServiceProvider.php | 33 + .../src/MiniProgram/OCR/ServiceProvider.php | 34 + .../src/MiniProgram/OpenData/Client.php | 91 ++ .../MiniProgram/OpenData/ServiceProvider.php | 28 + .../src/MiniProgram/PhoneNumber/Client.php | 47 + .../PhoneNumber/ServiceProvider.php | 28 + .../wechat/src/MiniProgram/Plugin/Client.php | 67 + .../src/MiniProgram/Plugin/DevClient.php | 93 ++ .../MiniProgram/Plugin/ServiceProvider.php | 42 + .../wechat/src/MiniProgram/QrCode/Client.php | 126 ++ .../MiniProgram/QrCode/ServiceProvider.php | 33 + .../src/MiniProgram/RealtimeLog/Client.php | 46 + .../RealtimeLog/ServiceProvider.php | 33 + .../src/MiniProgram/RiskControl/Client.php | 32 + .../RiskControl/ServiceProvider.php | 25 + .../wechat/src/MiniProgram/Search/Client.php | 37 + .../MiniProgram/Search/ServiceProvider.php | 33 + .../MiniProgram/Server/ServiceProvider.php | 42 + .../src/MiniProgram/Shop/Account/Client.php | 67 + .../Shop/Account/ServiceProvider.php | 25 + .../src/MiniProgram/Shop/Aftersale/Client.php | 54 + .../Shop/Aftersale/ServiceProvider.php | 25 + .../src/MiniProgram/Shop/Basic/Client.php | 110 ++ .../Shop/Basic/ServiceProvider.php | 25 + .../src/MiniProgram/Shop/Delivery/Client.php | 52 + .../Shop/Delivery/ServiceProvider.php | 25 + .../src/MiniProgram/Shop/Order/Client.php | 157 ++ .../Shop/Order/ServiceProvider.php | 25 + .../src/MiniProgram/Shop/Register/Client.php | 76 + .../Shop/Register/ServiceProvider.php | 33 + .../src/MiniProgram/Shop/Spu/Client.php | 132 ++ .../MiniProgram/Shop/Spu/ServiceProvider.php | 25 + .../src/MiniProgram/ShortLink/Client.php | 42 + .../MiniProgram/ShortLink/ServiceProvider.php | 19 + .../wechat/src/MiniProgram/Soter/Client.php | 41 + .../src/MiniProgram/Soter/ServiceProvider.php | 33 + .../MiniProgram/SubscribeMessage/Client.php | 209 +++ .../SubscribeMessage/ServiceProvider.php | 28 + .../MiniProgram/TemplateMessage/Client.php | 114 ++ .../TemplateMessage/ServiceProvider.php | 28 + .../src/MiniProgram/UniformMessage/Client.php | 146 ++ .../UniformMessage/ServiceProvider.php | 28 + .../wechat/src/MiniProgram/Union/Client.php | 228 +++ .../src/MiniProgram/Union/ServiceProvider.php | 33 + .../wechat/src/MiniProgram/UrlLink/Client.php | 32 + .../MiniProgram/UrlLink/ServiceProvider.php | 19 + .../src/MiniProgram/UrlScheme/Client.php | 32 + .../MiniProgram/UrlScheme/ServiceProvider.php | 19 + .../src/OfficialAccount/Application.php | 97 ++ .../src/OfficialAccount/Auth/AccessToken.php | 39 + .../OfficialAccount/Auth/ServiceProvider.php | 33 + .../src/OfficialAccount/AutoReply/Client.php | 34 + .../AutoReply/ServiceProvider.php | 33 + .../src/OfficialAccount/Base/Client.php | 103 ++ .../OfficialAccount/Base/ServiceProvider.php | 33 + .../OfficialAccount/Broadcasting/Client.php | 383 +++++ .../Broadcasting/MessageBuilder.php | 162 ++ .../Broadcasting/ServiceProvider.php | 33 + .../Card/BoardingPassClient.php | 33 + .../wechat/src/OfficialAccount/Card/Card.php | 52 + .../src/OfficialAccount/Card/Client.php | 428 +++++ .../src/OfficialAccount/Card/CodeClient.php | 193 +++ .../src/OfficialAccount/Card/CoinClient.php | 119 ++ .../Card/GeneralCardClient.php | 71 + .../OfficialAccount/Card/GiftCardClient.php | 74 + .../Card/GiftCardOrderClient.php | 78 + .../Card/GiftCardPageClient.php | 102 ++ .../OfficialAccount/Card/InvoiceClient.php | 191 +++ .../src/OfficialAccount/Card/JssdkClient.php | 85 + .../Card/MeetingTicketClient.php | 33 + .../OfficialAccount/Card/MemberCardClient.php | 123 ++ .../Card/MovieTicketClient.php | 33 + .../OfficialAccount/Card/ServiceProvider.php | 89 ++ .../Card/SubMerchantClient.php | 123 ++ .../src/OfficialAccount/Comment/Client.php | 208 +++ .../Comment/ServiceProvider.php | 44 + .../CustomerService/Client.php | 230 +++ .../CustomerService/Messenger.php | 165 ++ .../CustomerService/ServiceProvider.php | 37 + .../CustomerService/SessionClient.php | 104 ++ .../src/OfficialAccount/DataCube/Client.php | 340 ++++ .../DataCube/ServiceProvider.php | 33 + .../src/OfficialAccount/Device/Client.php | 251 +++ .../Device/ServiceProvider.php | 33 + .../src/OfficialAccount/Draft/Client.php | 108 ++ .../OfficialAccount/Draft/ServiceProvider.php | 35 + .../OfficialAccount/FreePublish/Client.php | 90 ++ .../FreePublish/ServiceProvider.php | 35 + .../src/OfficialAccount/Goods/Client.php | 113 ++ .../OfficialAccount/Goods/ServiceProvider.php | 33 + .../src/OfficialAccount/Guide/Client.php | 991 ++++++++++++ .../OfficialAccount/Guide/ServiceProvider.php | 33 + .../src/OfficialAccount/Material/Client.php | 303 ++++ .../Material/ServiceProvider.php | 44 + .../src/OfficialAccount/Menu/Client.php | 103 ++ .../OfficialAccount/Menu/ServiceProvider.php | 33 + .../OfficialAccount/OAuth/ServiceProvider.php | 75 + .../wechat/src/OfficialAccount/OCR/Client.php | 149 ++ .../OfficialAccount/OCR/ServiceProvider.php | 33 + .../wechat/src/OfficialAccount/POI/Client.php | 145 ++ .../OfficialAccount/POI/ServiceProvider.php | 33 + .../src/OfficialAccount/Semantic/Client.php | 45 + .../Semantic/ServiceProvider.php | 31 + .../src/OfficialAccount/Server/Guard.php | 30 + .../Server/Handlers/EchoStrHandler.php | 53 + .../Server/ServiceProvider.php | 46 + .../OfficialAccount/ShakeAround/Client.php | 81 + .../ShakeAround/DeviceClient.php | 190 +++ .../ShakeAround/GroupClient.php | 167 ++ .../ShakeAround/MaterialClient.php | 44 + .../ShakeAround/PageClient.php | 110 ++ .../ShakeAround/RelationClient.php | 87 + .../ShakeAround/ServiceProvider.php | 57 + .../ShakeAround/ShakeAround.php | 45 + .../ShakeAround/StatsClient.php | 110 ++ .../src/OfficialAccount/Store/Client.php | 209 +++ .../OfficialAccount/Store/ServiceProvider.php | 33 + .../SubscribeMessage/Client.php | 189 +++ .../SubscribeMessage/ServiceProvider.php | 27 + .../TemplateMessage/Client.php | 234 +++ .../TemplateMessage/ServiceProvider.php | 33 + .../OfficialAccount/User/ServiceProvider.php | 35 + .../src/OfficialAccount/User/TagClient.php | 175 ++ .../src/OfficialAccount/User/UserClient.php | 172 ++ .../src/OfficialAccount/WiFi/CardClient.php | 52 + .../src/OfficialAccount/WiFi/Client.php | 98 ++ .../src/OfficialAccount/WiFi/DeviceClient.php | 127 ++ .../OfficialAccount/WiFi/ServiceProvider.php | 45 + .../src/OfficialAccount/WiFi/ShopClient.php | 100 ++ .../wechat/src/OpenPlatform/Application.php | 251 +++ .../src/OpenPlatform/Auth/AccessToken.php | 49 + .../src/OpenPlatform/Auth/ServiceProvider.php | 37 + .../src/OpenPlatform/Auth/VerifyTicket.php | 91 ++ .../Authorizer/Aggregate/Account/Client.php | 96 ++ .../Aggregate/AggregateServiceProvider.php | 22 + .../Authorizer/Auth/AccessToken.php | 79 + .../Authorizer/MiniProgram/Account/Client.php | 79 + .../MiniProgram/Account/ServiceProvider.php | 25 + .../Authorizer/MiniProgram/Application.php | 57 + .../Authorizer/MiniProgram/Auth/Client.php | 64 + .../Authorizer/MiniProgram/Code/Client.php | 271 ++++ .../MiniProgram/Code/ServiceProvider.php | 25 + .../Authorizer/MiniProgram/Domain/Client.php | 54 + .../MiniProgram/Domain/ServiceProvider.php | 25 + .../MiniProgram/Material/Client.php | 51 + .../MiniProgram/Material/ServiceProvider.php | 44 + .../Authorizer/MiniProgram/Privacy/Client.php | 66 + .../MiniProgram/Privacy/ServiceProvider.php | 25 + .../MiniProgram/Security/Client.php | 45 + .../MiniProgram/Security/ServiceProvider.php | 25 + .../Authorizer/MiniProgram/Setting/Client.php | 250 +++ .../MiniProgram/Setting/ServiceProvider.php | 25 + .../Authorizer/MiniProgram/Tester/Client.php | 80 + .../MiniProgram/Tester/ServiceProvider.php | 25 + .../OfficialAccount/Account/Client.php | 81 + .../OfficialAccount/Application.php | 46 + .../OfficialAccount/MiniProgram/Client.php | 77 + .../MiniProgram/ServiceProvider.php | 25 + .../OpenPlatform/Authorizer/Server/Guard.php | 32 + .../wechat/src/OpenPlatform/Base/Client.php | 166 ++ .../src/OpenPlatform/Base/ServiceProvider.php | 33 + .../src/OpenPlatform/CodeTemplate/Client.php | 94 ++ .../CodeTemplate/ServiceProvider.php | 25 + .../src/OpenPlatform/Component/Client.php | 60 + .../Component/ServiceProvider.php | 25 + .../wechat/src/OpenPlatform/Server/Guard.php | 65 + .../Server/Handlers/Authorized.php | 30 + .../Server/Handlers/Unauthorized.php | 30 + .../Server/Handlers/UpdateAuthorized.php | 30 + .../Server/Handlers/VerifyTicketRefreshed.php | 55 + .../OpenPlatform/Server/ServiceProvider.php | 34 + .../wechat/src/OpenWork/Application.php | 95 ++ .../wechat/src/OpenWork/Auth/AccessToken.php | 52 + .../src/OpenWork/Auth/ServiceProvider.php | 33 + .../wechat/src/OpenWork/Contact/Client.php | 92 ++ .../src/OpenWork/Contact/ServiceProvider.php | 33 + .../wechat/src/OpenWork/Corp/Client.php | 247 +++ .../src/OpenWork/Corp/ServiceProvider.php | 38 + .../wechat/src/OpenWork/Device/Client.php | 187 +++ .../src/OpenWork/Device/ServiceProvider.php | 33 + .../wechat/src/OpenWork/License/Account.php | 235 +++ .../wechat/src/OpenWork/License/App.php | 51 + .../src/OpenWork/License/AutoActive.php | 69 + .../wechat/src/OpenWork/License/Client.php | 198 +++ .../src/OpenWork/License/ServiceProvider.php | 45 + .../wechat/src/OpenWork/Media/Client.php | 105 ++ .../src/OpenWork/Media/ServiceProvider.php | 33 + .../src/OpenWork/MiniProgram/Client.php | 50 + .../OpenWork/MiniProgram/ServiceProvider.php | 31 + .../wechat/src/OpenWork/Provider/Client.php | 259 +++ .../src/OpenWork/Provider/ServiceProvider.php | 36 + .../wechat/src/OpenWork/Server/Guard.php | 68 + .../Server/Handlers/EchoStrHandler.php | 66 + .../src/OpenWork/Server/ServiceProvider.php | 56 + .../src/OpenWork/SuiteAuth/AccessToken.php | 56 + .../OpenWork/SuiteAuth/ServiceProvider.php | 37 + .../src/OpenWork/SuiteAuth/SuiteTicket.php | 85 + .../wechat/src/OpenWork/Work/Application.php | 41 + .../src/OpenWork/Work/Auth/AccessToken.php | 80 + .../wechat/src/Payment/Application.php | 210 +++ .../wechat/src/Payment/Base/Client.php | 54 + .../src/Payment/Base/ServiceProvider.php | 33 + .../wechat/src/Payment/Bill/Client.php | 48 + .../src/Payment/Bill/ServiceProvider.php | 33 + .../wechat/src/Payment/Contract/Client.php | 112 ++ .../src/Payment/Contract/ServiceProvider.php | 33 + .../wechat/src/Payment/Coupon/Client.php | 77 + .../src/Payment/Coupon/ServiceProvider.php | 33 + .../wechat/src/Payment/Fundflow/Client.php | 56 + .../src/Payment/Fundflow/ServiceProvider.php | 33 + .../wechat/src/Payment/Jssdk/Client.php | 175 ++ .../src/Payment/Jssdk/ServiceProvider.php | 33 + .../wechat/src/Payment/Kernel/BaseClient.php | 190 +++ .../Exceptions/InvalidSignException.php | 18 + .../Kernel/Exceptions/SandboxException.php | 18 + .../wechat/src/Payment/Merchant/Client.php | 94 ++ .../src/Payment/Merchant/ServiceProvider.php | 33 + .../wechat/src/Payment/Notify/Handler.php | 205 +++ .../wechat/src/Payment/Notify/Paid.php | 33 + .../wechat/src/Payment/Notify/Refunded.php | 48 + .../wechat/src/Payment/Notify/Scanned.php | 60 + .../wechat/src/Payment/Order/Client.php | 126 ++ .../src/Payment/Order/ServiceProvider.php | 33 + .../src/Payment/ProfitSharing/Client.php | 251 +++ .../Payment/ProfitSharing/ServiceProvider.php | 33 + .../wechat/src/Payment/Redpack/Client.php | 109 ++ .../src/Payment/Redpack/ServiceProvider.php | 33 + .../wechat/src/Payment/Refund/Client.php | 159 ++ .../src/Payment/Refund/ServiceProvider.php | 33 + .../wechat/src/Payment/Reverse/Client.php | 67 + .../src/Payment/Reverse/ServiceProvider.php | 33 + .../wechat/src/Payment/Sandbox/Client.php | 60 + .../src/Payment/Sandbox/ServiceProvider.php | 33 + .../wechat/src/Payment/Security/Client.php | 38 + .../src/Payment/Security/ServiceProvider.php | 33 + .../wechat/src/Payment/Transfer/Client.php | 122 ++ .../src/Payment/Transfer/ServiceProvider.php | 33 + .../overtrue/wechat/src/Work/Agent/Client.php | 68 + .../wechat/src/Work/Agent/ServiceProvider.php | 37 + .../wechat/src/Work/Agent/WorkbenchClient.php | 74 + .../overtrue/wechat/src/Work/Application.php | 124 ++ .../wechat/src/Work/Auth/AccessToken.php | 45 + .../overtrue/wechat/src/Work/Auth/Client.php | 94 ++ .../wechat/src/Work/Auth/ServiceProvider.php | 36 + .../overtrue/wechat/src/Work/Base/Client.php | 34 + .../wechat/src/Work/Base/ServiceProvider.php | 33 + .../wechat/src/Work/Calendar/Client.php | 85 + .../src/Work/Calendar/ServiceProvider.php | 33 + .../overtrue/wechat/src/Work/Chat/Client.php | 82 + .../wechat/src/Work/Chat/ServiceProvider.php | 33 + .../wechat/src/Work/CorpGroup/Client.php | 121 ++ .../src/Work/CorpGroup/ServiceProvider.php | 35 + .../wechat/src/Work/Department/Client.php | 109 ++ .../src/Work/Department/ServiceProvider.php | 33 + .../src/Work/ExternalContact/Client.php | 629 ++++++++ .../Work/ExternalContact/ContactWayClient.php | 149 ++ .../ExternalContact/GroupChatWayClient.php | 94 ++ .../Work/ExternalContact/InterceptClient.php | 106 ++ .../Work/ExternalContact/MessageClient.php | 268 ++++ .../ExternalContact/MessageTemplateClient.php | 166 ++ .../src/Work/ExternalContact/MomentClient.php | 166 ++ .../Work/ExternalContact/ProductClient.php | 133 ++ .../src/Work/ExternalContact/SchoolClient.php | 441 ++++++ .../Work/ExternalContact/ServiceProvider.php | 69 + .../Work/ExternalContact/StatisticsClient.php | 96 ++ .../wechat/src/Work/GroupRobot/Client.php | 51 + .../src/Work/GroupRobot/Messages/Image.php | 41 + .../src/Work/GroupRobot/Messages/Markdown.php | 40 + .../src/Work/GroupRobot/Messages/Message.php | 23 + .../src/Work/GroupRobot/Messages/News.php | 55 + .../src/Work/GroupRobot/Messages/NewsItem.php | 45 + .../src/Work/GroupRobot/Messages/Text.php | 70 + .../wechat/src/Work/GroupRobot/Messenger.php | 129 ++ .../src/Work/GroupRobot/ServiceProvider.php | 37 + .../src/Work/GroupWelcomeTemplate/Client.php | 84 + .../GroupWelcomeTemplate/ServiceProvider.php | 34 + .../wechat/src/Work/Invoice/Client.php | 100 ++ .../src/Work/Invoice/ServiceProvider.php | 33 + .../overtrue/wechat/src/Work/Jssdk/Client.php | 206 +++ .../wechat/src/Work/Jssdk/ServiceProvider.php | 33 + .../wechat/src/Work/Kf/AccountClient.php | 131 ++ .../wechat/src/Work/Kf/MessageClient.php | 133 ++ .../wechat/src/Work/Kf/ServiceProvider.php | 43 + .../wechat/src/Work/Kf/ServicerClient.php | 91 ++ .../overtrue/wechat/src/Work/Live/Client.php | 84 + .../wechat/src/Work/Live/ServiceProvider.php | 33 + .../overtrue/wechat/src/Work/Media/Client.php | 173 ++ .../wechat/src/Work/Media/ServiceProvider.php | 28 + .../overtrue/wechat/src/Work/Menu/Client.php | 61 + .../wechat/src/Work/Menu/ServiceProvider.php | 33 + .../wechat/src/Work/Message/Client.php | 104 ++ .../wechat/src/Work/Message/Messenger.php | 216 +++ .../src/Work/Message/ServiceProvider.php | 43 + .../src/Work/MiniProgram/Application.php | 44 + .../src/Work/MiniProgram/Auth/Client.php | 39 + .../wechat/src/Work/Mobile/Auth/Client.php | 40 + .../src/Work/Mobile/ServiceProvider.php | 36 + .../wechat/src/Work/MsgAudit/Client.php | 85 + .../src/Work/MsgAudit/ServiceProvider.php | 33 + vendor/overtrue/wechat/src/Work/OA/Client.php | 339 ++++ .../wechat/src/Work/OA/ServiceProvider.php | 33 + .../wechat/src/Work/OAuth/Manager.php | 51 + .../wechat/src/Work/OAuth/ServiceProvider.php | 64 + .../wechat/src/Work/Schedule/Client.php | 104 ++ .../src/Work/Schedule/ServiceProvider.php | 33 + .../overtrue/wechat/src/Work/Server/Guard.php | 48 + .../Work/Server/Handlers/EchoStrHandler.php | 60 + .../src/Work/Server/ServiceProvider.php | 46 + .../wechat/src/Work/User/BatchJobsClient.php | 94 ++ .../overtrue/wechat/src/Work/User/Client.php | 315 ++++ .../wechat/src/Work/User/LinkedCorpClient.php | 125 ++ .../wechat/src/Work/User/ServiceProvider.php | 45 + .../wechat/src/Work/User/TagClient.php | 178 +++ .../wechat/src/Work/Wedrive/Client.php | 54 + .../wechat/src/Work/Wedrive/FileClient.php | 324 ++++ .../src/Work/Wedrive/ServiceProvider.php | 37 + .../wechat/src/Work/Wedrive/SpaceClient.php | 201 +++ .../wechat/src/Work/Wedrive/Wedrive.php | 32 + 487 files changed, 43308 insertions(+) create mode 100644 vendor/easywechat-composer/easywechat-composer/.gitignore create mode 100644 vendor/easywechat-composer/easywechat-composer/.php_cs create mode 100644 vendor/easywechat-composer/easywechat-composer/.travis.yml create mode 100644 vendor/easywechat-composer/easywechat-composer/LICENSE create mode 100644 vendor/easywechat-composer/easywechat-composer/README.md create mode 100644 vendor/easywechat-composer/easywechat-composer/composer.json create mode 100644 vendor/easywechat-composer/easywechat-composer/phpunit.xml create mode 100644 vendor/easywechat-composer/easywechat-composer/src/Commands/ExtensionsCommand.php create mode 100644 vendor/easywechat-composer/easywechat-composer/src/Commands/Provider.php create mode 100644 vendor/easywechat-composer/easywechat-composer/src/Contracts/Encrypter.php create mode 100644 vendor/easywechat-composer/easywechat-composer/src/Delegation/DelegationOptions.php create mode 100644 vendor/easywechat-composer/easywechat-composer/src/Delegation/DelegationTo.php create mode 100644 vendor/easywechat-composer/easywechat-composer/src/Delegation/Hydrate.php create mode 100644 vendor/easywechat-composer/easywechat-composer/src/EasyWeChat.php create mode 100644 vendor/easywechat-composer/easywechat-composer/src/Encryption/DefaultEncrypter.php create mode 100644 vendor/easywechat-composer/easywechat-composer/src/Exceptions/DecryptException.php create mode 100644 vendor/easywechat-composer/easywechat-composer/src/Exceptions/DelegationException.php create mode 100644 vendor/easywechat-composer/easywechat-composer/src/Exceptions/EncryptException.php create mode 100644 vendor/easywechat-composer/easywechat-composer/src/Extension.php create mode 100644 vendor/easywechat-composer/easywechat-composer/src/Http/DelegationResponse.php create mode 100644 vendor/easywechat-composer/easywechat-composer/src/Http/Response.php create mode 100644 vendor/easywechat-composer/easywechat-composer/src/Laravel/Http/Controllers/DelegatesController.php create mode 100644 vendor/easywechat-composer/easywechat-composer/src/Laravel/ServiceProvider.php create mode 100644 vendor/easywechat-composer/easywechat-composer/src/Laravel/config.php create mode 100644 vendor/easywechat-composer/easywechat-composer/src/Laravel/routes.php create mode 100644 vendor/easywechat-composer/easywechat-composer/src/ManifestManager.php create mode 100644 vendor/easywechat-composer/easywechat-composer/src/Plugin.php create mode 100644 vendor/easywechat-composer/easywechat-composer/src/Traits/MakesHttpRequests.php create mode 100644 vendor/easywechat-composer/easywechat-composer/src/Traits/WithAggregator.php create mode 100644 vendor/easywechat-composer/easywechat-composer/tests/ManifestManagerTest.php create mode 100644 vendor/overtrue/wechat/CHANGELOG.md create mode 100644 vendor/overtrue/wechat/CONTRIBUTING.md create mode 100644 vendor/overtrue/wechat/LICENSE create mode 100644 vendor/overtrue/wechat/README.md create mode 100644 vendor/overtrue/wechat/SECURITY.md create mode 100644 vendor/overtrue/wechat/composer.json create mode 100644 vendor/overtrue/wechat/src/BasicService/Application.php create mode 100644 vendor/overtrue/wechat/src/BasicService/ContentSecurity/Client.php create mode 100644 vendor/overtrue/wechat/src/BasicService/ContentSecurity/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/BasicService/Jssdk/Client.php create mode 100644 vendor/overtrue/wechat/src/BasicService/Jssdk/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/BasicService/Media/Client.php create mode 100644 vendor/overtrue/wechat/src/BasicService/Media/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/BasicService/QrCode/Client.php create mode 100644 vendor/overtrue/wechat/src/BasicService/QrCode/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/BasicService/Url/Client.php create mode 100644 vendor/overtrue/wechat/src/BasicService/Url/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/Factory.php create mode 100644 vendor/overtrue/wechat/src/Kernel/AccessToken.php create mode 100644 vendor/overtrue/wechat/src/Kernel/BaseClient.php create mode 100644 vendor/overtrue/wechat/src/Kernel/Clauses/Clause.php create mode 100644 vendor/overtrue/wechat/src/Kernel/Config.php create mode 100644 vendor/overtrue/wechat/src/Kernel/Contracts/AccessTokenInterface.php create mode 100644 vendor/overtrue/wechat/src/Kernel/Contracts/Arrayable.php create mode 100644 vendor/overtrue/wechat/src/Kernel/Contracts/EventHandlerInterface.php create mode 100644 vendor/overtrue/wechat/src/Kernel/Contracts/MediaInterface.php create mode 100644 vendor/overtrue/wechat/src/Kernel/Contracts/MessageInterface.php create mode 100644 vendor/overtrue/wechat/src/Kernel/Decorators/FinallyResult.php create mode 100644 vendor/overtrue/wechat/src/Kernel/Decorators/TerminateResult.php create mode 100644 vendor/overtrue/wechat/src/Kernel/Encryptor.php create mode 100644 vendor/overtrue/wechat/src/Kernel/Events/AccessTokenRefreshed.php create mode 100644 vendor/overtrue/wechat/src/Kernel/Events/ApplicationInitialized.php create mode 100644 vendor/overtrue/wechat/src/Kernel/Events/HttpResponseCreated.php create mode 100644 vendor/overtrue/wechat/src/Kernel/Events/ServerGuardResponseCreated.php create mode 100644 vendor/overtrue/wechat/src/Kernel/Exceptions/BadRequestException.php create mode 100644 vendor/overtrue/wechat/src/Kernel/Exceptions/DecryptException.php create mode 100644 vendor/overtrue/wechat/src/Kernel/Exceptions/Exception.php create mode 100644 vendor/overtrue/wechat/src/Kernel/Exceptions/HttpException.php create mode 100644 vendor/overtrue/wechat/src/Kernel/Exceptions/InvalidArgumentException.php create mode 100644 vendor/overtrue/wechat/src/Kernel/Exceptions/InvalidConfigException.php create mode 100644 vendor/overtrue/wechat/src/Kernel/Exceptions/RuntimeException.php create mode 100644 vendor/overtrue/wechat/src/Kernel/Exceptions/UnboundServiceException.php create mode 100644 vendor/overtrue/wechat/src/Kernel/Helpers.php create mode 100644 vendor/overtrue/wechat/src/Kernel/Http/Response.php create mode 100644 vendor/overtrue/wechat/src/Kernel/Http/StreamResponse.php create mode 100644 vendor/overtrue/wechat/src/Kernel/Log/LogManager.php create mode 100644 vendor/overtrue/wechat/src/Kernel/Messages/Article.php create mode 100644 vendor/overtrue/wechat/src/Kernel/Messages/Card.php create mode 100644 vendor/overtrue/wechat/src/Kernel/Messages/DeviceEvent.php create mode 100644 vendor/overtrue/wechat/src/Kernel/Messages/DeviceText.php create mode 100644 vendor/overtrue/wechat/src/Kernel/Messages/File.php create mode 100644 vendor/overtrue/wechat/src/Kernel/Messages/Image.php create mode 100644 vendor/overtrue/wechat/src/Kernel/Messages/InteractiveTaskCard.php create mode 100644 vendor/overtrue/wechat/src/Kernel/Messages/Link.php create mode 100644 vendor/overtrue/wechat/src/Kernel/Messages/Location.php create mode 100644 vendor/overtrue/wechat/src/Kernel/Messages/Media.php create mode 100644 vendor/overtrue/wechat/src/Kernel/Messages/Message.php create mode 100644 vendor/overtrue/wechat/src/Kernel/Messages/MiniProgramPage.php create mode 100644 vendor/overtrue/wechat/src/Kernel/Messages/MiniprogramNotice.php create mode 100644 vendor/overtrue/wechat/src/Kernel/Messages/Music.php create mode 100644 vendor/overtrue/wechat/src/Kernel/Messages/News.php create mode 100644 vendor/overtrue/wechat/src/Kernel/Messages/NewsItem.php create mode 100644 vendor/overtrue/wechat/src/Kernel/Messages/Raw.php create mode 100644 vendor/overtrue/wechat/src/Kernel/Messages/ReplyInteractiveTaskCard.php create mode 100644 vendor/overtrue/wechat/src/Kernel/Messages/ShortVideo.php create mode 100644 vendor/overtrue/wechat/src/Kernel/Messages/TaskCard.php create mode 100644 vendor/overtrue/wechat/src/Kernel/Messages/Text.php create mode 100644 vendor/overtrue/wechat/src/Kernel/Messages/TextCard.php create mode 100644 vendor/overtrue/wechat/src/Kernel/Messages/Transfer.php create mode 100644 vendor/overtrue/wechat/src/Kernel/Messages/Video.php create mode 100644 vendor/overtrue/wechat/src/Kernel/Messages/Voice.php create mode 100644 vendor/overtrue/wechat/src/Kernel/Providers/ConfigServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/Kernel/Providers/EventDispatcherServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/Kernel/Providers/ExtensionServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/Kernel/Providers/HttpClientServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/Kernel/Providers/LogServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/Kernel/Providers/RequestServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/Kernel/ServerGuard.php create mode 100644 vendor/overtrue/wechat/src/Kernel/ServiceContainer.php create mode 100644 vendor/overtrue/wechat/src/Kernel/Support/AES.php create mode 100644 vendor/overtrue/wechat/src/Kernel/Support/Arr.php create mode 100644 vendor/overtrue/wechat/src/Kernel/Support/ArrayAccessible.php create mode 100644 vendor/overtrue/wechat/src/Kernel/Support/Collection.php create mode 100644 vendor/overtrue/wechat/src/Kernel/Support/File.php create mode 100644 vendor/overtrue/wechat/src/Kernel/Support/Helpers.php create mode 100644 vendor/overtrue/wechat/src/Kernel/Support/Str.php create mode 100644 vendor/overtrue/wechat/src/Kernel/Support/XML.php create mode 100644 vendor/overtrue/wechat/src/Kernel/Traits/HasAttributes.php create mode 100644 vendor/overtrue/wechat/src/Kernel/Traits/HasHttpRequests.php create mode 100644 vendor/overtrue/wechat/src/Kernel/Traits/InteractsWithCache.php create mode 100644 vendor/overtrue/wechat/src/Kernel/Traits/Observable.php create mode 100644 vendor/overtrue/wechat/src/Kernel/Traits/ResponseCastable.php create mode 100644 vendor/overtrue/wechat/src/MicroMerchant/Application.php create mode 100644 vendor/overtrue/wechat/src/MicroMerchant/Base/Client.php create mode 100644 vendor/overtrue/wechat/src/MicroMerchant/Base/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/MicroMerchant/Certficates/Client.php create mode 100644 vendor/overtrue/wechat/src/MicroMerchant/Certficates/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/MicroMerchant/Kernel/BaseClient.php create mode 100644 vendor/overtrue/wechat/src/MicroMerchant/Kernel/Exceptions/EncryptException.php create mode 100644 vendor/overtrue/wechat/src/MicroMerchant/Kernel/Exceptions/InvalidExtensionException.php create mode 100644 vendor/overtrue/wechat/src/MicroMerchant/Kernel/Exceptions/InvalidSignException.php create mode 100644 vendor/overtrue/wechat/src/MicroMerchant/Material/Client.php create mode 100644 vendor/overtrue/wechat/src/MicroMerchant/Material/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/MicroMerchant/Media/Client.php create mode 100644 vendor/overtrue/wechat/src/MicroMerchant/Media/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/MicroMerchant/MerchantConfig/Client.php create mode 100644 vendor/overtrue/wechat/src/MicroMerchant/MerchantConfig/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/MicroMerchant/Withdraw/Client.php create mode 100644 vendor/overtrue/wechat/src/MicroMerchant/Withdraw/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/MiniProgram/ActivityMessage/Client.php create mode 100644 vendor/overtrue/wechat/src/MiniProgram/ActivityMessage/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/MiniProgram/AppCode/Client.php create mode 100644 vendor/overtrue/wechat/src/MiniProgram/AppCode/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/MiniProgram/Application.php create mode 100644 vendor/overtrue/wechat/src/MiniProgram/Auth/AccessToken.php create mode 100644 vendor/overtrue/wechat/src/MiniProgram/Auth/Client.php create mode 100644 vendor/overtrue/wechat/src/MiniProgram/Auth/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/MiniProgram/Base/Client.php create mode 100644 vendor/overtrue/wechat/src/MiniProgram/Base/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/MiniProgram/Broadcast/Client.php create mode 100644 vendor/overtrue/wechat/src/MiniProgram/Broadcast/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/MiniProgram/Business/Client.php create mode 100644 vendor/overtrue/wechat/src/MiniProgram/Business/Messenger.php create mode 100644 vendor/overtrue/wechat/src/MiniProgram/Business/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/MiniProgram/CustomerService/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/MiniProgram/DataCube/Client.php create mode 100644 vendor/overtrue/wechat/src/MiniProgram/DataCube/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/MiniProgram/Encryptor.php create mode 100644 vendor/overtrue/wechat/src/MiniProgram/Express/Client.php create mode 100644 vendor/overtrue/wechat/src/MiniProgram/Express/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/MiniProgram/Live/Client.php create mode 100644 vendor/overtrue/wechat/src/MiniProgram/Live/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/MiniProgram/Mall/CartClient.php create mode 100644 vendor/overtrue/wechat/src/MiniProgram/Mall/ForwardsMall.php create mode 100644 vendor/overtrue/wechat/src/MiniProgram/Mall/MediaClient.php create mode 100644 vendor/overtrue/wechat/src/MiniProgram/Mall/OrderClient.php create mode 100644 vendor/overtrue/wechat/src/MiniProgram/Mall/ProductClient.php create mode 100644 vendor/overtrue/wechat/src/MiniProgram/Mall/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/MiniProgram/NearbyPoi/Client.php create mode 100644 vendor/overtrue/wechat/src/MiniProgram/NearbyPoi/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/MiniProgram/OCR/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/MiniProgram/OpenData/Client.php create mode 100644 vendor/overtrue/wechat/src/MiniProgram/OpenData/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/MiniProgram/PhoneNumber/Client.php create mode 100644 vendor/overtrue/wechat/src/MiniProgram/PhoneNumber/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/MiniProgram/Plugin/Client.php create mode 100644 vendor/overtrue/wechat/src/MiniProgram/Plugin/DevClient.php create mode 100644 vendor/overtrue/wechat/src/MiniProgram/Plugin/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/MiniProgram/QrCode/Client.php create mode 100644 vendor/overtrue/wechat/src/MiniProgram/QrCode/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/MiniProgram/RealtimeLog/Client.php create mode 100644 vendor/overtrue/wechat/src/MiniProgram/RealtimeLog/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/MiniProgram/RiskControl/Client.php create mode 100644 vendor/overtrue/wechat/src/MiniProgram/RiskControl/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/MiniProgram/Search/Client.php create mode 100644 vendor/overtrue/wechat/src/MiniProgram/Search/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/MiniProgram/Server/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/MiniProgram/Shop/Account/Client.php create mode 100644 vendor/overtrue/wechat/src/MiniProgram/Shop/Account/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/MiniProgram/Shop/Aftersale/Client.php create mode 100644 vendor/overtrue/wechat/src/MiniProgram/Shop/Aftersale/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/MiniProgram/Shop/Basic/Client.php create mode 100644 vendor/overtrue/wechat/src/MiniProgram/Shop/Basic/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/MiniProgram/Shop/Delivery/Client.php create mode 100644 vendor/overtrue/wechat/src/MiniProgram/Shop/Delivery/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/MiniProgram/Shop/Order/Client.php create mode 100644 vendor/overtrue/wechat/src/MiniProgram/Shop/Order/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/MiniProgram/Shop/Register/Client.php create mode 100644 vendor/overtrue/wechat/src/MiniProgram/Shop/Register/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/MiniProgram/Shop/Spu/Client.php create mode 100644 vendor/overtrue/wechat/src/MiniProgram/Shop/Spu/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/MiniProgram/ShortLink/Client.php create mode 100644 vendor/overtrue/wechat/src/MiniProgram/ShortLink/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/MiniProgram/Soter/Client.php create mode 100644 vendor/overtrue/wechat/src/MiniProgram/Soter/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/MiniProgram/SubscribeMessage/Client.php create mode 100644 vendor/overtrue/wechat/src/MiniProgram/SubscribeMessage/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/MiniProgram/TemplateMessage/Client.php create mode 100644 vendor/overtrue/wechat/src/MiniProgram/TemplateMessage/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/MiniProgram/UniformMessage/Client.php create mode 100644 vendor/overtrue/wechat/src/MiniProgram/UniformMessage/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/MiniProgram/Union/Client.php create mode 100644 vendor/overtrue/wechat/src/MiniProgram/Union/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/MiniProgram/UrlLink/Client.php create mode 100644 vendor/overtrue/wechat/src/MiniProgram/UrlLink/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/MiniProgram/UrlScheme/Client.php create mode 100644 vendor/overtrue/wechat/src/MiniProgram/UrlScheme/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/OfficialAccount/Application.php create mode 100644 vendor/overtrue/wechat/src/OfficialAccount/Auth/AccessToken.php create mode 100644 vendor/overtrue/wechat/src/OfficialAccount/Auth/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/OfficialAccount/AutoReply/Client.php create mode 100644 vendor/overtrue/wechat/src/OfficialAccount/AutoReply/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/OfficialAccount/Base/Client.php create mode 100644 vendor/overtrue/wechat/src/OfficialAccount/Base/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/OfficialAccount/Broadcasting/Client.php create mode 100644 vendor/overtrue/wechat/src/OfficialAccount/Broadcasting/MessageBuilder.php create mode 100644 vendor/overtrue/wechat/src/OfficialAccount/Broadcasting/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/OfficialAccount/Card/BoardingPassClient.php create mode 100644 vendor/overtrue/wechat/src/OfficialAccount/Card/Card.php create mode 100644 vendor/overtrue/wechat/src/OfficialAccount/Card/Client.php create mode 100644 vendor/overtrue/wechat/src/OfficialAccount/Card/CodeClient.php create mode 100644 vendor/overtrue/wechat/src/OfficialAccount/Card/CoinClient.php create mode 100644 vendor/overtrue/wechat/src/OfficialAccount/Card/GeneralCardClient.php create mode 100644 vendor/overtrue/wechat/src/OfficialAccount/Card/GiftCardClient.php create mode 100644 vendor/overtrue/wechat/src/OfficialAccount/Card/GiftCardOrderClient.php create mode 100644 vendor/overtrue/wechat/src/OfficialAccount/Card/GiftCardPageClient.php create mode 100644 vendor/overtrue/wechat/src/OfficialAccount/Card/InvoiceClient.php create mode 100644 vendor/overtrue/wechat/src/OfficialAccount/Card/JssdkClient.php create mode 100644 vendor/overtrue/wechat/src/OfficialAccount/Card/MeetingTicketClient.php create mode 100644 vendor/overtrue/wechat/src/OfficialAccount/Card/MemberCardClient.php create mode 100644 vendor/overtrue/wechat/src/OfficialAccount/Card/MovieTicketClient.php create mode 100644 vendor/overtrue/wechat/src/OfficialAccount/Card/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/OfficialAccount/Card/SubMerchantClient.php create mode 100644 vendor/overtrue/wechat/src/OfficialAccount/Comment/Client.php create mode 100644 vendor/overtrue/wechat/src/OfficialAccount/Comment/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/OfficialAccount/CustomerService/Client.php create mode 100644 vendor/overtrue/wechat/src/OfficialAccount/CustomerService/Messenger.php create mode 100644 vendor/overtrue/wechat/src/OfficialAccount/CustomerService/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/OfficialAccount/CustomerService/SessionClient.php create mode 100644 vendor/overtrue/wechat/src/OfficialAccount/DataCube/Client.php create mode 100644 vendor/overtrue/wechat/src/OfficialAccount/DataCube/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/OfficialAccount/Device/Client.php create mode 100644 vendor/overtrue/wechat/src/OfficialAccount/Device/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/OfficialAccount/Draft/Client.php create mode 100644 vendor/overtrue/wechat/src/OfficialAccount/Draft/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/OfficialAccount/FreePublish/Client.php create mode 100644 vendor/overtrue/wechat/src/OfficialAccount/FreePublish/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/OfficialAccount/Goods/Client.php create mode 100644 vendor/overtrue/wechat/src/OfficialAccount/Goods/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/OfficialAccount/Guide/Client.php create mode 100644 vendor/overtrue/wechat/src/OfficialAccount/Guide/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/OfficialAccount/Material/Client.php create mode 100644 vendor/overtrue/wechat/src/OfficialAccount/Material/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/OfficialAccount/Menu/Client.php create mode 100644 vendor/overtrue/wechat/src/OfficialAccount/Menu/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/OfficialAccount/OAuth/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/OfficialAccount/OCR/Client.php create mode 100644 vendor/overtrue/wechat/src/OfficialAccount/OCR/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/OfficialAccount/POI/Client.php create mode 100644 vendor/overtrue/wechat/src/OfficialAccount/POI/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/OfficialAccount/Semantic/Client.php create mode 100644 vendor/overtrue/wechat/src/OfficialAccount/Semantic/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/OfficialAccount/Server/Guard.php create mode 100644 vendor/overtrue/wechat/src/OfficialAccount/Server/Handlers/EchoStrHandler.php create mode 100644 vendor/overtrue/wechat/src/OfficialAccount/Server/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/OfficialAccount/ShakeAround/Client.php create mode 100644 vendor/overtrue/wechat/src/OfficialAccount/ShakeAround/DeviceClient.php create mode 100644 vendor/overtrue/wechat/src/OfficialAccount/ShakeAround/GroupClient.php create mode 100644 vendor/overtrue/wechat/src/OfficialAccount/ShakeAround/MaterialClient.php create mode 100644 vendor/overtrue/wechat/src/OfficialAccount/ShakeAround/PageClient.php create mode 100644 vendor/overtrue/wechat/src/OfficialAccount/ShakeAround/RelationClient.php create mode 100644 vendor/overtrue/wechat/src/OfficialAccount/ShakeAround/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/OfficialAccount/ShakeAround/ShakeAround.php create mode 100644 vendor/overtrue/wechat/src/OfficialAccount/ShakeAround/StatsClient.php create mode 100644 vendor/overtrue/wechat/src/OfficialAccount/Store/Client.php create mode 100644 vendor/overtrue/wechat/src/OfficialAccount/Store/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/OfficialAccount/SubscribeMessage/Client.php create mode 100644 vendor/overtrue/wechat/src/OfficialAccount/SubscribeMessage/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/OfficialAccount/TemplateMessage/Client.php create mode 100644 vendor/overtrue/wechat/src/OfficialAccount/TemplateMessage/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/OfficialAccount/User/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/OfficialAccount/User/TagClient.php create mode 100644 vendor/overtrue/wechat/src/OfficialAccount/User/UserClient.php create mode 100644 vendor/overtrue/wechat/src/OfficialAccount/WiFi/CardClient.php create mode 100644 vendor/overtrue/wechat/src/OfficialAccount/WiFi/Client.php create mode 100644 vendor/overtrue/wechat/src/OfficialAccount/WiFi/DeviceClient.php create mode 100644 vendor/overtrue/wechat/src/OfficialAccount/WiFi/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/OfficialAccount/WiFi/ShopClient.php create mode 100644 vendor/overtrue/wechat/src/OpenPlatform/Application.php create mode 100644 vendor/overtrue/wechat/src/OpenPlatform/Auth/AccessToken.php create mode 100644 vendor/overtrue/wechat/src/OpenPlatform/Auth/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/OpenPlatform/Auth/VerifyTicket.php create mode 100644 vendor/overtrue/wechat/src/OpenPlatform/Authorizer/Aggregate/Account/Client.php create mode 100644 vendor/overtrue/wechat/src/OpenPlatform/Authorizer/Aggregate/AggregateServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/OpenPlatform/Authorizer/Auth/AccessToken.php create mode 100644 vendor/overtrue/wechat/src/OpenPlatform/Authorizer/MiniProgram/Account/Client.php create mode 100644 vendor/overtrue/wechat/src/OpenPlatform/Authorizer/MiniProgram/Account/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/OpenPlatform/Authorizer/MiniProgram/Application.php create mode 100644 vendor/overtrue/wechat/src/OpenPlatform/Authorizer/MiniProgram/Auth/Client.php create mode 100644 vendor/overtrue/wechat/src/OpenPlatform/Authorizer/MiniProgram/Code/Client.php create mode 100644 vendor/overtrue/wechat/src/OpenPlatform/Authorizer/MiniProgram/Code/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/OpenPlatform/Authorizer/MiniProgram/Domain/Client.php create mode 100644 vendor/overtrue/wechat/src/OpenPlatform/Authorizer/MiniProgram/Domain/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/OpenPlatform/Authorizer/MiniProgram/Material/Client.php create mode 100644 vendor/overtrue/wechat/src/OpenPlatform/Authorizer/MiniProgram/Material/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/OpenPlatform/Authorizer/MiniProgram/Privacy/Client.php create mode 100644 vendor/overtrue/wechat/src/OpenPlatform/Authorizer/MiniProgram/Privacy/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/OpenPlatform/Authorizer/MiniProgram/Security/Client.php create mode 100644 vendor/overtrue/wechat/src/OpenPlatform/Authorizer/MiniProgram/Security/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/OpenPlatform/Authorizer/MiniProgram/Setting/Client.php create mode 100644 vendor/overtrue/wechat/src/OpenPlatform/Authorizer/MiniProgram/Setting/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/OpenPlatform/Authorizer/MiniProgram/Tester/Client.php create mode 100644 vendor/overtrue/wechat/src/OpenPlatform/Authorizer/MiniProgram/Tester/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/OpenPlatform/Authorizer/OfficialAccount/Account/Client.php create mode 100644 vendor/overtrue/wechat/src/OpenPlatform/Authorizer/OfficialAccount/Application.php create mode 100644 vendor/overtrue/wechat/src/OpenPlatform/Authorizer/OfficialAccount/MiniProgram/Client.php create mode 100644 vendor/overtrue/wechat/src/OpenPlatform/Authorizer/OfficialAccount/MiniProgram/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/OpenPlatform/Authorizer/Server/Guard.php create mode 100644 vendor/overtrue/wechat/src/OpenPlatform/Base/Client.php create mode 100644 vendor/overtrue/wechat/src/OpenPlatform/Base/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/OpenPlatform/CodeTemplate/Client.php create mode 100644 vendor/overtrue/wechat/src/OpenPlatform/CodeTemplate/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/OpenPlatform/Component/Client.php create mode 100644 vendor/overtrue/wechat/src/OpenPlatform/Component/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/OpenPlatform/Server/Guard.php create mode 100644 vendor/overtrue/wechat/src/OpenPlatform/Server/Handlers/Authorized.php create mode 100644 vendor/overtrue/wechat/src/OpenPlatform/Server/Handlers/Unauthorized.php create mode 100644 vendor/overtrue/wechat/src/OpenPlatform/Server/Handlers/UpdateAuthorized.php create mode 100644 vendor/overtrue/wechat/src/OpenPlatform/Server/Handlers/VerifyTicketRefreshed.php create mode 100644 vendor/overtrue/wechat/src/OpenPlatform/Server/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/OpenWork/Application.php create mode 100644 vendor/overtrue/wechat/src/OpenWork/Auth/AccessToken.php create mode 100644 vendor/overtrue/wechat/src/OpenWork/Auth/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/OpenWork/Contact/Client.php create mode 100644 vendor/overtrue/wechat/src/OpenWork/Contact/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/OpenWork/Corp/Client.php create mode 100644 vendor/overtrue/wechat/src/OpenWork/Corp/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/OpenWork/Device/Client.php create mode 100644 vendor/overtrue/wechat/src/OpenWork/Device/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/OpenWork/License/Account.php create mode 100644 vendor/overtrue/wechat/src/OpenWork/License/App.php create mode 100644 vendor/overtrue/wechat/src/OpenWork/License/AutoActive.php create mode 100644 vendor/overtrue/wechat/src/OpenWork/License/Client.php create mode 100644 vendor/overtrue/wechat/src/OpenWork/License/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/OpenWork/Media/Client.php create mode 100644 vendor/overtrue/wechat/src/OpenWork/Media/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/OpenWork/MiniProgram/Client.php create mode 100644 vendor/overtrue/wechat/src/OpenWork/MiniProgram/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/OpenWork/Provider/Client.php create mode 100644 vendor/overtrue/wechat/src/OpenWork/Provider/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/OpenWork/Server/Guard.php create mode 100644 vendor/overtrue/wechat/src/OpenWork/Server/Handlers/EchoStrHandler.php create mode 100644 vendor/overtrue/wechat/src/OpenWork/Server/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/OpenWork/SuiteAuth/AccessToken.php create mode 100644 vendor/overtrue/wechat/src/OpenWork/SuiteAuth/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/OpenWork/SuiteAuth/SuiteTicket.php create mode 100644 vendor/overtrue/wechat/src/OpenWork/Work/Application.php create mode 100644 vendor/overtrue/wechat/src/OpenWork/Work/Auth/AccessToken.php create mode 100644 vendor/overtrue/wechat/src/Payment/Application.php create mode 100644 vendor/overtrue/wechat/src/Payment/Base/Client.php create mode 100644 vendor/overtrue/wechat/src/Payment/Base/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/Payment/Bill/Client.php create mode 100644 vendor/overtrue/wechat/src/Payment/Bill/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/Payment/Contract/Client.php create mode 100644 vendor/overtrue/wechat/src/Payment/Contract/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/Payment/Coupon/Client.php create mode 100644 vendor/overtrue/wechat/src/Payment/Coupon/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/Payment/Fundflow/Client.php create mode 100644 vendor/overtrue/wechat/src/Payment/Fundflow/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/Payment/Jssdk/Client.php create mode 100644 vendor/overtrue/wechat/src/Payment/Jssdk/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/Payment/Kernel/BaseClient.php create mode 100644 vendor/overtrue/wechat/src/Payment/Kernel/Exceptions/InvalidSignException.php create mode 100644 vendor/overtrue/wechat/src/Payment/Kernel/Exceptions/SandboxException.php create mode 100644 vendor/overtrue/wechat/src/Payment/Merchant/Client.php create mode 100644 vendor/overtrue/wechat/src/Payment/Merchant/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/Payment/Notify/Handler.php create mode 100644 vendor/overtrue/wechat/src/Payment/Notify/Paid.php create mode 100644 vendor/overtrue/wechat/src/Payment/Notify/Refunded.php create mode 100644 vendor/overtrue/wechat/src/Payment/Notify/Scanned.php create mode 100644 vendor/overtrue/wechat/src/Payment/Order/Client.php create mode 100644 vendor/overtrue/wechat/src/Payment/Order/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/Payment/ProfitSharing/Client.php create mode 100644 vendor/overtrue/wechat/src/Payment/ProfitSharing/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/Payment/Redpack/Client.php create mode 100644 vendor/overtrue/wechat/src/Payment/Redpack/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/Payment/Refund/Client.php create mode 100644 vendor/overtrue/wechat/src/Payment/Refund/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/Payment/Reverse/Client.php create mode 100644 vendor/overtrue/wechat/src/Payment/Reverse/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/Payment/Sandbox/Client.php create mode 100644 vendor/overtrue/wechat/src/Payment/Sandbox/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/Payment/Security/Client.php create mode 100644 vendor/overtrue/wechat/src/Payment/Security/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/Payment/Transfer/Client.php create mode 100644 vendor/overtrue/wechat/src/Payment/Transfer/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/Work/Agent/Client.php create mode 100644 vendor/overtrue/wechat/src/Work/Agent/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/Work/Agent/WorkbenchClient.php create mode 100644 vendor/overtrue/wechat/src/Work/Application.php create mode 100644 vendor/overtrue/wechat/src/Work/Auth/AccessToken.php create mode 100644 vendor/overtrue/wechat/src/Work/Auth/Client.php create mode 100644 vendor/overtrue/wechat/src/Work/Auth/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/Work/Base/Client.php create mode 100644 vendor/overtrue/wechat/src/Work/Base/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/Work/Calendar/Client.php create mode 100644 vendor/overtrue/wechat/src/Work/Calendar/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/Work/Chat/Client.php create mode 100644 vendor/overtrue/wechat/src/Work/Chat/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/Work/CorpGroup/Client.php create mode 100644 vendor/overtrue/wechat/src/Work/CorpGroup/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/Work/Department/Client.php create mode 100644 vendor/overtrue/wechat/src/Work/Department/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/Work/ExternalContact/Client.php create mode 100644 vendor/overtrue/wechat/src/Work/ExternalContact/ContactWayClient.php create mode 100644 vendor/overtrue/wechat/src/Work/ExternalContact/GroupChatWayClient.php create mode 100644 vendor/overtrue/wechat/src/Work/ExternalContact/InterceptClient.php create mode 100644 vendor/overtrue/wechat/src/Work/ExternalContact/MessageClient.php create mode 100644 vendor/overtrue/wechat/src/Work/ExternalContact/MessageTemplateClient.php create mode 100644 vendor/overtrue/wechat/src/Work/ExternalContact/MomentClient.php create mode 100644 vendor/overtrue/wechat/src/Work/ExternalContact/ProductClient.php create mode 100644 vendor/overtrue/wechat/src/Work/ExternalContact/SchoolClient.php create mode 100644 vendor/overtrue/wechat/src/Work/ExternalContact/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/Work/ExternalContact/StatisticsClient.php create mode 100644 vendor/overtrue/wechat/src/Work/GroupRobot/Client.php create mode 100644 vendor/overtrue/wechat/src/Work/GroupRobot/Messages/Image.php create mode 100644 vendor/overtrue/wechat/src/Work/GroupRobot/Messages/Markdown.php create mode 100644 vendor/overtrue/wechat/src/Work/GroupRobot/Messages/Message.php create mode 100644 vendor/overtrue/wechat/src/Work/GroupRobot/Messages/News.php create mode 100644 vendor/overtrue/wechat/src/Work/GroupRobot/Messages/NewsItem.php create mode 100644 vendor/overtrue/wechat/src/Work/GroupRobot/Messages/Text.php create mode 100644 vendor/overtrue/wechat/src/Work/GroupRobot/Messenger.php create mode 100644 vendor/overtrue/wechat/src/Work/GroupRobot/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/Work/GroupWelcomeTemplate/Client.php create mode 100644 vendor/overtrue/wechat/src/Work/GroupWelcomeTemplate/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/Work/Invoice/Client.php create mode 100644 vendor/overtrue/wechat/src/Work/Invoice/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/Work/Jssdk/Client.php create mode 100644 vendor/overtrue/wechat/src/Work/Jssdk/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/Work/Kf/AccountClient.php create mode 100644 vendor/overtrue/wechat/src/Work/Kf/MessageClient.php create mode 100644 vendor/overtrue/wechat/src/Work/Kf/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/Work/Kf/ServicerClient.php create mode 100644 vendor/overtrue/wechat/src/Work/Live/Client.php create mode 100644 vendor/overtrue/wechat/src/Work/Live/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/Work/Media/Client.php create mode 100644 vendor/overtrue/wechat/src/Work/Media/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/Work/Menu/Client.php create mode 100644 vendor/overtrue/wechat/src/Work/Menu/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/Work/Message/Client.php create mode 100644 vendor/overtrue/wechat/src/Work/Message/Messenger.php create mode 100644 vendor/overtrue/wechat/src/Work/Message/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/Work/MiniProgram/Application.php create mode 100644 vendor/overtrue/wechat/src/Work/MiniProgram/Auth/Client.php create mode 100644 vendor/overtrue/wechat/src/Work/Mobile/Auth/Client.php create mode 100644 vendor/overtrue/wechat/src/Work/Mobile/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/Work/MsgAudit/Client.php create mode 100644 vendor/overtrue/wechat/src/Work/MsgAudit/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/Work/OA/Client.php create mode 100644 vendor/overtrue/wechat/src/Work/OA/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/Work/OAuth/Manager.php create mode 100644 vendor/overtrue/wechat/src/Work/OAuth/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/Work/Schedule/Client.php create mode 100644 vendor/overtrue/wechat/src/Work/Schedule/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/Work/Server/Guard.php create mode 100644 vendor/overtrue/wechat/src/Work/Server/Handlers/EchoStrHandler.php create mode 100644 vendor/overtrue/wechat/src/Work/Server/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/Work/User/BatchJobsClient.php create mode 100644 vendor/overtrue/wechat/src/Work/User/Client.php create mode 100644 vendor/overtrue/wechat/src/Work/User/LinkedCorpClient.php create mode 100644 vendor/overtrue/wechat/src/Work/User/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/Work/User/TagClient.php create mode 100644 vendor/overtrue/wechat/src/Work/Wedrive/Client.php create mode 100644 vendor/overtrue/wechat/src/Work/Wedrive/FileClient.php create mode 100644 vendor/overtrue/wechat/src/Work/Wedrive/ServiceProvider.php create mode 100644 vendor/overtrue/wechat/src/Work/Wedrive/SpaceClient.php create mode 100644 vendor/overtrue/wechat/src/Work/Wedrive/Wedrive.php diff --git a/vendor/easywechat-composer/easywechat-composer/.gitignore b/vendor/easywechat-composer/easywechat-composer/.gitignore new file mode 100644 index 0000000..c7a0a65 --- /dev/null +++ b/vendor/easywechat-composer/easywechat-composer/.gitignore @@ -0,0 +1,5 @@ +.idea/ +/vendor +composer.lock +extensions.php +.php_cs.cache diff --git a/vendor/easywechat-composer/easywechat-composer/.php_cs b/vendor/easywechat-composer/easywechat-composer/.php_cs new file mode 100644 index 0000000..d256932 --- /dev/null +++ b/vendor/easywechat-composer/easywechat-composer/.php_cs @@ -0,0 +1,29 @@ + + +This source file is subject to the MIT license that is bundled +with this source code in the file LICENSE. +EOF; + +return PhpCsFixer\Config::create() + ->setRiskyAllowed(true) + ->setRules([ + '@Symfony' => true, + 'header_comment' => ['header' => $header], + 'declare_strict_types' => true, + 'ordered_imports' => true, + 'strict_comparison' => true, + 'no_empty_comment' => false, + 'yoda_style' => false, + ]) + ->setFinder( + PhpCsFixer\Finder::create() + ->exclude('vendor') + ->notPath('src/Laravel/config.php', 'src/Laravel/routes.php') + ->in(__DIR__) + ) +; diff --git a/vendor/easywechat-composer/easywechat-composer/.travis.yml b/vendor/easywechat-composer/easywechat-composer/.travis.yml new file mode 100644 index 0000000..e819807 --- /dev/null +++ b/vendor/easywechat-composer/easywechat-composer/.travis.yml @@ -0,0 +1,12 @@ +language: php + +php: + - 7.0 + - 7.1 + - 7.2 + - 7.3 + +install: + - travis_retry composer install --no-interaction --no-suggest + +script: ./vendor/bin/phpunit diff --git a/vendor/easywechat-composer/easywechat-composer/LICENSE b/vendor/easywechat-composer/easywechat-composer/LICENSE new file mode 100644 index 0000000..3559904 --- /dev/null +++ b/vendor/easywechat-composer/easywechat-composer/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 张铭阳 + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/vendor/easywechat-composer/easywechat-composer/README.md b/vendor/easywechat-composer/easywechat-composer/README.md new file mode 100644 index 0000000..a08c1be --- /dev/null +++ b/vendor/easywechat-composer/easywechat-composer/README.md @@ -0,0 +1,55 @@ +

+

EasyWeChat Composer Plugin

+

+ +

+ Build Status + Scrutinizer Code Quality + Latest Stable Version + Total Downloads + License +

+ +Usage +--- + +Set the `type` to be `easywechat-extension` in your package composer.json file: + +```json +{ + "name": "your/package", + "type": "easywechat-extension" +} +``` + +Specify server observer classes in the extra section: + +```json +{ + "name": "your/package", + "type": "easywechat-extension", + "extra": { + "observers": [ + "Acme\\Observers\\Handler" + ] + } +} +``` + +Examples +--- +* [easywechat-composer/open-platform-testcase](https://github.com/mingyoung/open-platform-testcase) + +Server Delegation +--- + +> 目前仅支持 Laravel + +1. 在 `config/app.php` 中添加 `EasyWeChatComposer\Laravel\ServiceProvider::class` + +2. 在**本地项目**的 `.env` 文件中添加如下配置: + +``` +EASYWECHAT_DELEGATION=true # false 则不启用 +EASYWECHAT_DELEGATION_HOST=https://example.com # 线上域名 +``` diff --git a/vendor/easywechat-composer/easywechat-composer/composer.json b/vendor/easywechat-composer/easywechat-composer/composer.json new file mode 100644 index 0000000..32d7c94 --- /dev/null +++ b/vendor/easywechat-composer/easywechat-composer/composer.json @@ -0,0 +1,35 @@ +{ + "name": "easywechat-composer/easywechat-composer", + "description": "The composer plugin for EasyWeChat", + "type": "composer-plugin", + "license": "MIT", + "authors": [ + { + "name": "张铭阳", + "email": "mingyoungcheung@gmail.com" + } + ], + "require": { + "php": ">=7.0", + "composer-plugin-api": "^1.0 || ^2.0" + }, + "require-dev": { + "composer/composer": "^1.0 || ^2.0", + "phpunit/phpunit": "^6.5 || ^7.0" + }, + "autoload": { + "psr-4": { + "EasyWeChatComposer\\": "src/" + } + }, + "autoload-dev": { + "psr-4": { + "EasyWeChatComposer\\Tests\\": "tests/" + } + }, + "extra": { + "class": "EasyWeChatComposer\\Plugin" + }, + "minimum-stability": "dev", + "prefer-stable": true +} diff --git a/vendor/easywechat-composer/easywechat-composer/phpunit.xml b/vendor/easywechat-composer/easywechat-composer/phpunit.xml new file mode 100644 index 0000000..361d92c --- /dev/null +++ b/vendor/easywechat-composer/easywechat-composer/phpunit.xml @@ -0,0 +1,20 @@ + + + + tests + + + + + src + + + diff --git a/vendor/easywechat-composer/easywechat-composer/src/Commands/ExtensionsCommand.php b/vendor/easywechat-composer/easywechat-composer/src/Commands/ExtensionsCommand.php new file mode 100644 index 0000000..bc0155e --- /dev/null +++ b/vendor/easywechat-composer/easywechat-composer/src/Commands/ExtensionsCommand.php @@ -0,0 +1,63 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChatComposer\Commands; + +use Composer\Command\BaseCommand; +use Symfony\Component\Console\Helper\Table; +use Symfony\Component\Console\Input\InputInterface; +use Symfony\Component\Console\Output\OutputInterface; + +class ExtensionsCommand extends BaseCommand +{ + /** + * Configures the current command. + */ + protected function configure() + { + $this->setName('easywechat:extensions') + ->setDescription('Lists all installed extensions.'); + } + + /** + * Executes the current command. + * + * @param InputInterface $input + * @param OutputInterface $output + */ + protected function execute(InputInterface $input, OutputInterface $output) + { + $extensions = require __DIR__.'/../../extensions.php'; + + if (empty($extensions) || !is_array($extensions)) { + return $output->writeln('No extension installed.'); + } + + $table = new Table($output); + $table->setHeaders(['Name', 'Observers']) + ->setRows( + array_map([$this, 'getRows'], array_keys($extensions), $extensions) + )->render(); + } + + /** + * @param string $name + * @param array $extension + * + * @return array + */ + protected function getRows($name, $extension) + { + return [$name, implode("\n", $extension['observers'] ?? [])]; + } +} diff --git a/vendor/easywechat-composer/easywechat-composer/src/Commands/Provider.php b/vendor/easywechat-composer/easywechat-composer/src/Commands/Provider.php new file mode 100644 index 0000000..928f096 --- /dev/null +++ b/vendor/easywechat-composer/easywechat-composer/src/Commands/Provider.php @@ -0,0 +1,31 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChatComposer\Commands; + +use Composer\Plugin\Capability\CommandProvider; + +class Provider implements CommandProvider +{ + /** + * Retrieves an array of commands. + * + * @return \Composer\Command\BaseCommand[] + */ + public function getCommands() + { + return [ + new ExtensionsCommand(), + ]; + } +} diff --git a/vendor/easywechat-composer/easywechat-composer/src/Contracts/Encrypter.php b/vendor/easywechat-composer/easywechat-composer/src/Contracts/Encrypter.php new file mode 100644 index 0000000..af8b8d1 --- /dev/null +++ b/vendor/easywechat-composer/easywechat-composer/src/Contracts/Encrypter.php @@ -0,0 +1,35 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChatComposer\Contracts; + +interface Encrypter +{ + /** + * Encrypt the given value. + * + * @param string $value + * + * @return string + */ + public function encrypt($value); + + /** + * Decrypt the given value. + * + * @param string $payload + * + * @return string + */ + public function decrypt($payload); +} diff --git a/vendor/easywechat-composer/easywechat-composer/src/Delegation/DelegationOptions.php b/vendor/easywechat-composer/easywechat-composer/src/Delegation/DelegationOptions.php new file mode 100644 index 0000000..a333261 --- /dev/null +++ b/vendor/easywechat-composer/easywechat-composer/src/Delegation/DelegationOptions.php @@ -0,0 +1,80 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChatComposer\Delegation; + +use EasyWeChatComposer\EasyWeChat; + +class DelegationOptions +{ + /** + * @var array + */ + protected $config = [ + 'enabled' => false, + ]; + + /** + * @return $this + */ + public function enable() + { + $this->config['enabled'] = true; + + return $this; + } + + /** + * @return $this + */ + public function disable() + { + $this->config['enabled'] = false; + + return $this; + } + + /** + * @param bool $ability + * + * @return $this + */ + public function ability($ability) + { + $this->config['enabled'] = (bool) $ability; + + return $this; + } + + /** + * @param string $host + * + * @return $this + */ + public function toHost($host) + { + $this->config['host'] = $host; + + return $this; + } + + /** + * Destructor. + */ + public function __destruct() + { + EasyWeChat::mergeConfig([ + 'delegation' => $this->config, + ]); + } +} diff --git a/vendor/easywechat-composer/easywechat-composer/src/Delegation/DelegationTo.php b/vendor/easywechat-composer/easywechat-composer/src/Delegation/DelegationTo.php new file mode 100644 index 0000000..2e9e6db --- /dev/null +++ b/vendor/easywechat-composer/easywechat-composer/src/Delegation/DelegationTo.php @@ -0,0 +1,83 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChatComposer\Delegation; + +use EasyWeChatComposer\Traits\MakesHttpRequests; + +class DelegationTo +{ + use MakesHttpRequests; + + /** + * @var \EasyWeChat\Kernel\ServiceContainer + */ + protected $app; + + /** + * @var array + */ + protected $identifiers = []; + + /** + * @param \EasyWeChat\Kernel\ServiceContainer $app + * @param string $identifier + */ + public function __construct($app, $identifier) + { + $this->app = $app; + + $this->push($identifier); + } + + /** + * @param string $identifier + */ + public function push($identifier) + { + $this->identifiers[] = $identifier; + } + + /** + * @param string $identifier + * + * @return $this + */ + public function __get($identifier) + { + $this->push($identifier); + + return $this; + } + + /** + * @param string $method + * @param array $arguments + * + * @return mixed + */ + public function __call($method, $arguments) + { + $config = array_intersect_key($this->app->getConfig(), array_flip(['app_id', 'secret', 'token', 'aes_key', 'response_type', 'component_app_id', 'refresh_token'])); + + $data = [ + 'config' => $config, + 'application' => get_class($this->app), + 'identifiers' => $this->identifiers, + 'method' => $method, + 'arguments' => $arguments, + ]; + + return $this->request('easywechat-composer/delegate', $data); + } +} diff --git a/vendor/easywechat-composer/easywechat-composer/src/Delegation/Hydrate.php b/vendor/easywechat-composer/easywechat-composer/src/Delegation/Hydrate.php new file mode 100644 index 0000000..b83bbe9 --- /dev/null +++ b/vendor/easywechat-composer/easywechat-composer/src/Delegation/Hydrate.php @@ -0,0 +1,83 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChatComposer\Delegation; + +use EasyWeChat; +use EasyWeChatComposer\Http\DelegationResponse; + +class Hydrate +{ + /** + * @var array + */ + protected $attributes; + + /** + * @param array $attributes + */ + public function __construct(array $attributes) + { + $this->attributes = $attributes; + } + + /** + * @return array + */ + public function handle() + { + $app = $this->createsApplication()->shouldntDelegate(); + + foreach ($this->attributes['identifiers'] as $identifier) { + $app = $app->$identifier; + } + + return call_user_func_array([$app, $this->attributes['method']], $this->attributes['arguments']); + } + + /** + * @return \EasyWeChat\Kernel\ServiceContainer + */ + protected function createsApplication() + { + $application = $this->attributes['application']; + + if ($application === EasyWeChat\OpenPlatform\Authorizer\OfficialAccount\Application::class) { + return $this->createsOpenPlatformApplication('officialAccount'); + } + + if ($application === EasyWeChat\OpenPlatform\Authorizer\MiniProgram\Application::class) { + return $this->createsOpenPlatformApplication('miniProgram'); + } + + return new $application($this->buildConfig($this->attributes['config'])); + } + + protected function createsOpenPlatformApplication($type) + { + $config = $this->attributes['config']; + + $authorizerAppId = $config['app_id']; + + $config['app_id'] = $config['component_app_id']; + + return EasyWeChat\Factory::openPlatform($this->buildConfig($config))->$type($authorizerAppId, $config['refresh_token']); + } + + protected function buildConfig(array $config) + { + $config['response_type'] = DelegationResponse::class; + + return $config; + } +} diff --git a/vendor/easywechat-composer/easywechat-composer/src/EasyWeChat.php b/vendor/easywechat-composer/easywechat-composer/src/EasyWeChat.php new file mode 100644 index 0000000..4ff3d9b --- /dev/null +++ b/vendor/easywechat-composer/easywechat-composer/src/EasyWeChat.php @@ -0,0 +1,79 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChatComposer; + +use EasyWeChatComposer\Delegation\DelegationOptions; + +class EasyWeChat +{ + /** + * @var array + */ + protected static $config = []; + + /** + * Encryption key. + * + * @var string + */ + protected static $encryptionKey; + + /** + * @param array $config + */ + public static function mergeConfig(array $config) + { + static::$config = array_merge(static::$config, $config); + } + + /** + * @return array + */ + public static function config() + { + return static::$config; + } + + /** + * Set encryption key. + * + * @param string $key + * + * @return static + */ + public static function setEncryptionKey(string $key) + { + static::$encryptionKey = $key; + + return new static(); + } + + /** + * Get encryption key. + * + * @return string + */ + public static function getEncryptionKey(): string + { + return static::$encryptionKey; + } + + /** + * @return \EasyWeChatComposer\Delegation\DelegationOptions + */ + public static function withDelegation() + { + return new DelegationOptions(); + } +} diff --git a/vendor/easywechat-composer/easywechat-composer/src/Encryption/DefaultEncrypter.php b/vendor/easywechat-composer/easywechat-composer/src/Encryption/DefaultEncrypter.php new file mode 100644 index 0000000..2c4cd53 --- /dev/null +++ b/vendor/easywechat-composer/easywechat-composer/src/Encryption/DefaultEncrypter.php @@ -0,0 +1,89 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChatComposer\Encryption; + +use EasyWeChatComposer\Contracts\Encrypter; +use EasyWeChatComposer\Exceptions\DecryptException; +use EasyWeChatComposer\Exceptions\EncryptException; + +class DefaultEncrypter implements Encrypter +{ + /** + * @var string + */ + protected $key; + + /** + * @var string + */ + protected $cipher; + + /** + * @param string $key + * @param string $cipher + */ + public function __construct($key, $cipher = 'AES-256-CBC') + { + $this->key = $key; + $this->cipher = $cipher; + } + + /** + * Encrypt the given value. + * + * @param string $value + * + * @return string + * + * @throws \EasyWeChatComposer\Exceptions\EncryptException + */ + public function encrypt($value) + { + $iv = random_bytes(openssl_cipher_iv_length($this->cipher)); + + $value = openssl_encrypt($value, $this->cipher, $this->key, 0, $iv); + + if ($value === false) { + throw new EncryptException('Could not encrypt the data.'); + } + + $iv = base64_encode($iv); + + return base64_encode(json_encode(compact('iv', 'value'))); + } + + /** + * Decrypt the given value. + * + * @param string $payload + * + * @return string + * + * @throws \EasyWeChatComposer\Exceptions\DecryptException + */ + public function decrypt($payload) + { + $payload = json_decode(base64_decode($payload), true); + + $iv = base64_decode($payload['iv']); + + $decrypted = openssl_decrypt($payload['value'], $this->cipher, $this->key, 0, $iv); + + if ($decrypted === false) { + throw new DecryptException('Could not decrypt the data.'); + } + + return $decrypted; + } +} diff --git a/vendor/easywechat-composer/easywechat-composer/src/Exceptions/DecryptException.php b/vendor/easywechat-composer/easywechat-composer/src/Exceptions/DecryptException.php new file mode 100644 index 0000000..e210d1f --- /dev/null +++ b/vendor/easywechat-composer/easywechat-composer/src/Exceptions/DecryptException.php @@ -0,0 +1,21 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChatComposer\Exceptions; + +use Exception; + +class DecryptException extends Exception +{ + // +} diff --git a/vendor/easywechat-composer/easywechat-composer/src/Exceptions/DelegationException.php b/vendor/easywechat-composer/easywechat-composer/src/Exceptions/DelegationException.php new file mode 100644 index 0000000..0af9c2d --- /dev/null +++ b/vendor/easywechat-composer/easywechat-composer/src/Exceptions/DelegationException.php @@ -0,0 +1,42 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChatComposer\Exceptions; + +use Exception; + +class DelegationException extends Exception +{ + /** + * @var string + */ + protected $exception; + + /** + * @param string $exception + */ + public function setException($exception) + { + $this->exception = $exception; + + return $this; + } + + /** + * @return string + */ + public function getException() + { + return $this->exception; + } +} diff --git a/vendor/easywechat-composer/easywechat-composer/src/Exceptions/EncryptException.php b/vendor/easywechat-composer/easywechat-composer/src/Exceptions/EncryptException.php new file mode 100644 index 0000000..f88f8f4 --- /dev/null +++ b/vendor/easywechat-composer/easywechat-composer/src/Exceptions/EncryptException.php @@ -0,0 +1,21 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChatComposer\Exceptions; + +use Exception; + +class EncryptException extends Exception +{ + // +} diff --git a/vendor/easywechat-composer/easywechat-composer/src/Extension.php b/vendor/easywechat-composer/easywechat-composer/src/Extension.php new file mode 100644 index 0000000..6a521d1 --- /dev/null +++ b/vendor/easywechat-composer/easywechat-composer/src/Extension.php @@ -0,0 +1,143 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChatComposer; + +use EasyWeChat\Kernel\Contracts\EventHandlerInterface; +use Pimple\Container; +use ReflectionClass; + +class Extension +{ + /** + * @var \Pimple\Container + */ + protected $app; + + /** + * @var string + */ + protected $manifestPath; + + /** + * @var array|null + */ + protected $manifest; + + /** + * @param \Pimple\Container $app + */ + public function __construct(Container $app) + { + $this->app = $app; + $this->manifestPath = __DIR__.'/../extensions.php'; + } + + /** + * Get observers. + * + * @return array + */ + public function observers(): array + { + if ($this->shouldIgnore()) { + return []; + } + + $observers = []; + + foreach ($this->getManifest() as $name => $extra) { + $observers = array_merge($observers, $extra['observers'] ?? []); + } + + return array_map([$this, 'listObserver'], array_filter($observers, [$this, 'validateObserver'])); + } + + /** + * @param mixed $observer + * + * @return bool + */ + protected function isDisable($observer): bool + { + return in_array($observer, $this->app->config->get('disable_observers', [])); + } + + /** + * Get the observers should be ignore. + * + * @return bool + */ + protected function shouldIgnore(): bool + { + return !file_exists($this->manifestPath) || $this->isDisable('*'); + } + + /** + * Validate the given observer. + * + * @param mixed $observer + * + * @return bool + * + * @throws \ReflectionException + */ + protected function validateObserver($observer): bool + { + return !$this->isDisable($observer) + && (new ReflectionClass($observer))->implementsInterface(EventHandlerInterface::class) + && $this->accessible($observer); + } + + /** + * Determine whether the given observer is accessible. + * + * @param string $observer + * + * @return bool + */ + protected function accessible($observer): bool + { + if (!method_exists($observer, 'getAccessor')) { + return true; + } + + return in_array(get_class($this->app), (array) $observer::getAccessor()); + } + + /** + * @param mixed $observer + * + * @return array + */ + protected function listObserver($observer): array + { + $condition = method_exists($observer, 'onCondition') ? $observer::onCondition() : '*'; + + return [$observer, $condition]; + } + + /** + * Get the easywechat manifest. + * + * @return array + */ + protected function getManifest(): array + { + if (!is_null($this->manifest)) { + return $this->manifest; + } + + return $this->manifest = file_exists($this->manifestPath) ? require $this->manifestPath : []; + } +} diff --git a/vendor/easywechat-composer/easywechat-composer/src/Http/DelegationResponse.php b/vendor/easywechat-composer/easywechat-composer/src/Http/DelegationResponse.php new file mode 100644 index 0000000..329eb54 --- /dev/null +++ b/vendor/easywechat-composer/easywechat-composer/src/Http/DelegationResponse.php @@ -0,0 +1,25 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChatComposer\Http; + +class DelegationResponse extends Response +{ + /** + * @return string + */ + public function getBodyContents() + { + return $this->response->getBodyContents(); + } +} diff --git a/vendor/easywechat-composer/easywechat-composer/src/Http/Response.php b/vendor/easywechat-composer/easywechat-composer/src/Http/Response.php new file mode 100644 index 0000000..534bf54 --- /dev/null +++ b/vendor/easywechat-composer/easywechat-composer/src/Http/Response.php @@ -0,0 +1,104 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChatComposer\Http; + +use EasyWeChat\Kernel\Contracts\Arrayable; +use EasyWeChat\Kernel\Http\Response as HttpResponse; +use JsonSerializable; + +class Response implements Arrayable, JsonSerializable +{ + /** + * @var \EasyWeChat\Kernel\Http\Response + */ + protected $response; + + /** + * @var array + */ + protected $array; + + /** + * @param \EasyWeChat\Kernel\Http\Response $response + */ + public function __construct(HttpResponse $response) + { + $this->response = $response; + } + + /** + * @see \ArrayAccess::offsetExists + * + * @param string $offset + * + * @return bool + */ + public function offsetExists($offset) + { + return isset($this->toArray()[$offset]); + } + + /** + * @see \ArrayAccess::offsetGet + * + * @param string $offset + * + * @return mixed + */ + public function offsetGet($offset) + { + return $this->toArray()[$offset] ?? null; + } + + /** + * @see \ArrayAccess::offsetSet + * + * @param string $offset + * @param mixed $value + */ + public function offsetSet($offset, $value) + { + // + } + + /** + * @see \ArrayAccess::offsetUnset + * + * @param string $offset + */ + public function offsetUnset($offset) + { + // + } + + /** + * Get the instance as an array. + * + * @return array + */ + public function toArray() + { + return $this->array ?: $this->array = $this->response->toArray(); + } + + /** + * Convert the object into something JSON serializable. + * + * @return array + */ + public function jsonSerialize() + { + return $this->toArray(); + } +} diff --git a/vendor/easywechat-composer/easywechat-composer/src/Laravel/Http/Controllers/DelegatesController.php b/vendor/easywechat-composer/easywechat-composer/src/Laravel/Http/Controllers/DelegatesController.php new file mode 100644 index 0000000..ad014d8 --- /dev/null +++ b/vendor/easywechat-composer/easywechat-composer/src/Laravel/Http/Controllers/DelegatesController.php @@ -0,0 +1,49 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChatComposer\Laravel\Http\Controllers; + +use EasyWeChatComposer\Delegation\Hydrate; +use EasyWeChatComposer\Encryption\DefaultEncrypter; +use Illuminate\Http\Request; +use Throwable; + +class DelegatesController +{ + /** + * @param \Illuminate\Http\Request $request + * @param \EasyWeChatComposer\Encryption\DefaultEncrypter $encrypter + * + * @return \Illuminate\Http\Response + */ + public function __invoke(Request $request, DefaultEncrypter $encrypter) + { + try { + $data = json_decode($encrypter->decrypt($request->get('encrypted')), true); + + $hydrate = new Hydrate($data); + + $response = $hydrate->handle(); + + return response()->json([ + 'response_type' => get_class($response), + 'response' => $encrypter->encrypt($response->getBodyContents()), + ]); + } catch (Throwable $t) { + return [ + 'exception' => get_class($t), + 'message' => $t->getMessage(), + ]; + } + } +} diff --git a/vendor/easywechat-composer/easywechat-composer/src/Laravel/ServiceProvider.php b/vendor/easywechat-composer/easywechat-composer/src/Laravel/ServiceProvider.php new file mode 100644 index 0000000..4c43b04 --- /dev/null +++ b/vendor/easywechat-composer/easywechat-composer/src/Laravel/ServiceProvider.php @@ -0,0 +1,116 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChatComposer\Laravel; + +use EasyWeChatComposer\EasyWeChat; +use EasyWeChatComposer\Encryption\DefaultEncrypter; +use Illuminate\Foundation\Application; +use Illuminate\Support\Arr; +use Illuminate\Support\Facades\Cache; +use Illuminate\Support\Facades\Route; +use Illuminate\Support\ServiceProvider as LaravelServiceProvider; +use RuntimeException; + +class ServiceProvider extends LaravelServiceProvider +{ + /** + * Bootstrap any application services. + */ + public function boot() + { + $this->registerRoutes(); + $this->publishes([ + __DIR__.'/config.php' => config_path('easywechat-composer.php'), + ]); + + EasyWeChat::setEncryptionKey( + $defaultKey = $this->getKey() + ); + + EasyWeChat::withDelegation() + ->toHost($this->config('delegation.host')) + ->ability($this->config('delegation.enabled')); + + $this->app->when(DefaultEncrypter::class)->needs('$key')->give($defaultKey); + } + + /** + * Register routes. + */ + protected function registerRoutes() + { + Route::prefix('easywechat-composer')->namespace('EasyWeChatComposer\Laravel\Http\Controllers')->group(function () { + $this->loadRoutesFrom(__DIR__.'/routes.php'); + }); + } + + /** + * Register any application services. + */ + public function register() + { + $this->configure(); + } + + /** + * Register config. + */ + protected function configure() + { + $this->mergeConfigFrom( + __DIR__.'/config.php', 'easywechat-composer' + ); + } + + /** + * Get the specified configuration value. + * + * @param string|null $key + * @param mixed $default + * + * @return mixed + */ + protected function config($key = null, $default = null) + { + $config = $this->app['config']->get('easywechat-composer'); + + if (is_null($key)) { + return $config; + } + + return Arr::get($config, $key, $default); + } + + /** + * @return string + */ + protected function getKey() + { + return $this->config('encryption.key') ?: $this->getMd5Key(); + } + + /** + * @return string + */ + protected function getMd5Key() + { + $ttl = (version_compare(Application::VERSION, '5.8') === -1) ? 30 : 1800; + + return Cache::remember('easywechat-composer.encryption_key', $ttl, function () { + throw_unless(file_exists($path = base_path('composer.lock')), RuntimeException::class, 'No encryption key provided.'); + + return md5_file($path); + }); + } +} diff --git a/vendor/easywechat-composer/easywechat-composer/src/Laravel/config.php b/vendor/easywechat-composer/easywechat-composer/src/Laravel/config.php new file mode 100644 index 0000000..5deabef --- /dev/null +++ b/vendor/easywechat-composer/easywechat-composer/src/Laravel/config.php @@ -0,0 +1,29 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +return [ + + 'encryption' => [ + + 'key' => env('EASYWECHAT_KEY'), + + ], + + 'delegation' => [ + + 'enabled' => env('EASYWECHAT_DELEGATION', false), + + 'host' => env('EASYWECHAT_DELEGATION_HOST'), + ], + +]; diff --git a/vendor/easywechat-composer/easywechat-composer/src/Laravel/routes.php b/vendor/easywechat-composer/easywechat-composer/src/Laravel/routes.php new file mode 100644 index 0000000..6a3041a --- /dev/null +++ b/vendor/easywechat-composer/easywechat-composer/src/Laravel/routes.php @@ -0,0 +1,16 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +use Illuminate\Support\Facades\Route; + +Route::post('delegate', 'DelegatesController'); diff --git a/vendor/easywechat-composer/easywechat-composer/src/ManifestManager.php b/vendor/easywechat-composer/easywechat-composer/src/ManifestManager.php new file mode 100644 index 0000000..e1af69c --- /dev/null +++ b/vendor/easywechat-composer/easywechat-composer/src/ManifestManager.php @@ -0,0 +1,127 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChatComposer; + +use Composer\Plugin\PluginInterface; + +class ManifestManager +{ + const PACKAGE_TYPE = 'easywechat-extension'; + + const EXTRA_OBSERVER = 'observers'; + + /** + * The vendor path. + * + * @var string + */ + protected $vendorPath; + + /** + * The manifest path. + * + * @var string + */ + protected $manifestPath; + + /** + * @param string $vendorPath + * @param string|null $manifestPath + */ + public function __construct(string $vendorPath, string $manifestPath = null) + { + $this->vendorPath = $vendorPath; + $this->manifestPath = $manifestPath ?: $vendorPath.'/easywechat-composer/easywechat-composer/extensions.php'; + } + + /** + * Remove manifest file. + * + * @return $this + */ + public function unlink() + { + if (file_exists($this->manifestPath)) { + @unlink($this->manifestPath); + } + + return $this; + } + + /** + * Build the manifest file. + */ + public function build() + { + $packages = []; + + if (file_exists($installed = $this->vendorPath.'/composer/installed.json')) { + $packages = json_decode(file_get_contents($installed), true); + if (version_compare(PluginInterface::PLUGIN_API_VERSION, '2.0.0', 'ge')) { + $packages = $packages['packages']; + } + } + + $this->write($this->map($packages)); + } + + /** + * @param array $packages + * + * @return array + */ + protected function map(array $packages): array + { + $manifest = []; + + $packages = array_filter($packages, function ($package) { + if(isset($package['type'])){ + return $package['type'] === self::PACKAGE_TYPE; + } + }); + + foreach ($packages as $package) { + $manifest[$package['name']] = [self::EXTRA_OBSERVER => $package['extra'][self::EXTRA_OBSERVER] ?? []]; + } + + return $manifest; + } + + /** + * Write the manifest array to a file. + * + * @param array $manifest + */ + protected function write(array $manifest) + { + file_put_contents( + $this->manifestPath, + 'invalidate($this->manifestPath); + } + + /** + * Invalidate the given file. + * + * @param string $file + */ + protected function invalidate($file) + { + if (function_exists('opcache_invalidate')) { + @opcache_invalidate($file, true); + } + } +} diff --git a/vendor/easywechat-composer/easywechat-composer/src/Plugin.php b/vendor/easywechat-composer/easywechat-composer/src/Plugin.php new file mode 100644 index 0000000..cd9e504 --- /dev/null +++ b/vendor/easywechat-composer/easywechat-composer/src/Plugin.php @@ -0,0 +1,107 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChatComposer; + +use Composer\Composer; +use Composer\EventDispatcher\EventSubscriberInterface; +use Composer\Installer\PackageEvent; +use Composer\Installer\PackageEvents; +use Composer\IO\IOInterface; +use Composer\Plugin\Capable; +use Composer\Plugin\PluginInterface; +use Composer\Script\Event; +use Composer\Script\ScriptEvents; + +class Plugin implements PluginInterface, EventSubscriberInterface, Capable +{ + /** + * @var bool + */ + protected $activated = true; + + /** + * Apply plugin modifications to Composer. + */ + public function activate(Composer $composer, IOInterface $io) + { + // + } + + /** + * Remove any hooks from Composer. + * + * This will be called when a plugin is deactivated before being + * uninstalled, but also before it gets upgraded to a new version + * so the old one can be deactivated and the new one activated. + */ + public function deactivate(Composer $composer, IOInterface $io) + { + // + } + + /** + * Prepare the plugin to be uninstalled. + * + * This will be called after deactivate. + */ + public function uninstall(Composer $composer, IOInterface $io) + { + } + + /** + * @return array + */ + public function getCapabilities() + { + return [ + 'Composer\Plugin\Capability\CommandProvider' => 'EasyWeChatComposer\Commands\Provider', + ]; + } + + /** + * Listen events. + * + * @return array + */ + public static function getSubscribedEvents() + { + return [ + PackageEvents::PRE_PACKAGE_UNINSTALL => 'prePackageUninstall', + ScriptEvents::POST_AUTOLOAD_DUMP => 'postAutoloadDump', + ]; + } + + /** + * @param \Composer\Installer\PackageEvent + */ + public function prePackageUninstall(PackageEvent $event) + { + if ($event->getOperation()->getPackage()->getName() === 'overtrue/wechat') { + $this->activated = false; + } + } + + public function postAutoloadDump(Event $event) + { + if (!$this->activated) { + return; + } + + $manifest = new ManifestManager( + rtrim($event->getComposer()->getConfig()->get('vendor-dir'), '/') + ); + + $manifest->unlink()->build(); + } +} diff --git a/vendor/easywechat-composer/easywechat-composer/src/Traits/MakesHttpRequests.php b/vendor/easywechat-composer/easywechat-composer/src/Traits/MakesHttpRequests.php new file mode 100644 index 0000000..091a75c --- /dev/null +++ b/vendor/easywechat-composer/easywechat-composer/src/Traits/MakesHttpRequests.php @@ -0,0 +1,110 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChatComposer\Traits; + +use EasyWeChat\Kernel\Http\StreamResponse; +use EasyWeChat\Kernel\Traits\ResponseCastable; +use EasyWeChatComposer\Contracts\Encrypter; +use EasyWeChatComposer\EasyWeChat; +use EasyWeChatComposer\Encryption\DefaultEncrypter; +use EasyWeChatComposer\Exceptions\DelegationException; +use GuzzleHttp\Client; +use GuzzleHttp\ClientInterface; + +trait MakesHttpRequests +{ + use ResponseCastable; + + /** + * @var \GuzzleHttp\ClientInterface + */ + protected $httpClient; + + /** + * @var \EasyWeChatComposer\Contracts\Encrypter + */ + protected $encrypter; + + /** + * @param string $endpoint + * @param array $payload + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + protected function request($endpoint, array $payload) + { + $response = $this->getHttpClient()->request('POST', $endpoint, [ + 'form_params' => $this->buildFormParams($payload), + ]); + + $parsed = $this->parseResponse($response); + + return $this->detectAndCastResponseToType( + $this->getEncrypter()->decrypt($parsed['response']), + ($parsed['response_type'] === StreamResponse::class) ? 'raw' : $this->app['config']['response_type'] + ); + } + + /** + * @param array $payload + * + * @return array + */ + protected function buildFormParams($payload) + { + return [ + 'encrypted' => $this->getEncrypter()->encrypt(json_encode($payload)), + ]; + } + + /** + * @param \Psr\Http\Message\ResponseInterface $response + * + * @return array + */ + protected function parseResponse($response) + { + $result = json_decode((string) $response->getBody(), true); + + if (isset($result['exception'])) { + throw (new DelegationException($result['message']))->setException($result['exception']); + } + + return $result; + } + + /** + * @return \GuzzleHttp\ClientInterface + */ + protected function getHttpClient(): ClientInterface + { + return $this->httpClient ?: $this->httpClient = new Client([ + 'base_uri' => $this->app['config']['delegation']['host'], + ]); + } + + /** + * @return \EasyWeChatComposer\Contracts\Encrypter + */ + protected function getEncrypter(): Encrypter + { + return $this->encrypter ?: $this->encrypter = new DefaultEncrypter( + EasyWeChat::getEncryptionKey() + ); + } +} diff --git a/vendor/easywechat-composer/easywechat-composer/src/Traits/WithAggregator.php b/vendor/easywechat-composer/easywechat-composer/src/Traits/WithAggregator.php new file mode 100644 index 0000000..a3eb16e --- /dev/null +++ b/vendor/easywechat-composer/easywechat-composer/src/Traits/WithAggregator.php @@ -0,0 +1,60 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChatComposer\Traits; + +use EasyWeChat\Kernel\BaseClient; +use EasyWeChatComposer\Delegation\DelegationTo; +use EasyWeChatComposer\EasyWeChat; + +trait WithAggregator +{ + /** + * Aggregate. + */ + protected function aggregate() + { + foreach (EasyWeChat::config() as $key => $value) { + $this['config']->set($key, $value); + } + } + + /** + * @return bool + */ + public function shouldDelegate($id) + { + return $this['config']->get('delegation.enabled') + && $this->offsetGet($id) instanceof BaseClient; + } + + /** + * @return $this + */ + public function shouldntDelegate() + { + $this['config']->set('delegation.enabled', false); + + return $this; + } + + /** + * @param string $id + * + * @return \EasyWeChatComposer\Delegation + */ + public function delegateTo($id) + { + return new DelegationTo($this, $id); + } +} diff --git a/vendor/easywechat-composer/easywechat-composer/tests/ManifestManagerTest.php b/vendor/easywechat-composer/easywechat-composer/tests/ManifestManagerTest.php new file mode 100644 index 0000000..23b8e2c --- /dev/null +++ b/vendor/easywechat-composer/easywechat-composer/tests/ManifestManagerTest.php @@ -0,0 +1,37 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChatComposer\Tests; + +use EasyWeChatComposer\ManifestManager; +use PHPUnit\Framework\TestCase; + +class ManifestManagerTest extends TestCase +{ + private $vendorPath; + private $manifestPath; + + protected function getManifestManager() + { + return new ManifestManager( + $this->vendorPath = __DIR__.'/__fixtures__/vendor/', + $this->manifestPath = __DIR__.'/__fixtures__/extensions.php' + ); + } + + public function testUnlink() + { + $this->assertInstanceOf(ManifestManager::class, $this->getManifestManager()->unlink()); + $this->assertFalse(file_exists($this->manifestPath)); + } +} diff --git a/vendor/overtrue/wechat/CHANGELOG.md b/vendor/overtrue/wechat/CHANGELOG.md new file mode 100644 index 0000000..df42aa6 --- /dev/null +++ b/vendor/overtrue/wechat/CHANGELOG.md @@ -0,0 +1,1401 @@ +# Change Log + +## [Unreleased](https://github.com/overtrue/wechat/tree/HEAD) + +[Full Changelog](https://github.com/overtrue/wechat/compare/4.0.0...HEAD) + +**Closed issues:** + +- 能否增加对symfony4的支持 [\#1044](https://github.com/overtrue/wechat/issues/1044) + +## [4.0.0](https://github.com/overtrue/wechat/tree/4.0.0) (2017-12-11) +[Full Changelog](https://github.com/overtrue/wechat/compare/3.3.21...4.0.0) + +**Closed issues:** + +- filecache.php 文件 createPathIfNeeded\(string $path\) : bool [\#1046](https://github.com/overtrue/wechat/issues/1046) +- 沙箱模式的Notify总是出错:Invalid request payloads. [\#1045](https://github.com/overtrue/wechat/issues/1045) +- 你好我是SwooleDistributed框架的作者 [\#1040](https://github.com/overtrue/wechat/issues/1040) + +## [3.3.21](https://github.com/overtrue/wechat/tree/3.3.21) (2017-12-10) +[Full Changelog](https://github.com/overtrue/wechat/compare/4.0.0-beta.4...3.3.21) + +**Closed issues:** + +- 开启开放平台自动路由后报错 [\#1042](https://github.com/overtrue/wechat/issues/1042) +- 关于3.x升级4.x的问题 [\#1041](https://github.com/overtrue/wechat/issues/1041) +- 获取不了unionid [\#1038](https://github.com/overtrue/wechat/issues/1038) +- authorizer\_refresh\_token刷新问题 [\#1033](https://github.com/overtrue/wechat/issues/1033) +- lumen+swoole无法获取request信息。 [\#1032](https://github.com/overtrue/wechat/issues/1032) +- 上传素材报错, empty post data hint [\#1031](https://github.com/overtrue/wechat/issues/1031) +- 开放平台不支持全网发布接入检测(第三方) [\#1029](https://github.com/overtrue/wechat/issues/1029) +- 公众号模板消息不兼容跳转小程序 [\#1025](https://github.com/overtrue/wechat/issues/1025) +- swoole下无法使用 [\#1017](https://github.com/overtrue/wechat/issues/1017) +- 请教有没有高清素材下载方法? [\#997](https://github.com/overtrue/wechat/issues/997) +- 自动回复多图文素材,错误 [\#996](https://github.com/overtrue/wechat/issues/996) +- xml解释失败 [\#989](https://github.com/overtrue/wechat/issues/989) +- Curl error 77 [\#982](https://github.com/overtrue/wechat/issues/982) +- 3.1.10 H5支付不晓得算不算BUG的BUG [\#968](https://github.com/overtrue/wechat/issues/968) +- 请问是否有遇到微信扫码或内部打开外部网站出现请求2次的情况 [\#963](https://github.com/overtrue/wechat/issues/963) +- 请问4.0何时正式发布? [\#962](https://github.com/overtrue/wechat/issues/962) +- dev-master 不能用于laravel5.1 [\#952](https://github.com/overtrue/wechat/issues/952) +- 请教小程序的模板消息是否支持 [\#920](https://github.com/overtrue/wechat/issues/920) +- 模板消息的颜色设置问题 [\#914](https://github.com/overtrue/wechat/issues/914) +- 英文文档跳转问题 [\#854](https://github.com/overtrue/wechat/issues/854) +- \[4.0\] 功能测试 [\#849](https://github.com/overtrue/wechat/issues/849) +- \[4.0\] 命名变更 [\#743](https://github.com/overtrue/wechat/issues/743) + +**Merged pull requests:** + +- Scrutinizer Auto-Fixes [\#1043](https://github.com/overtrue/wechat/pull/1043) ([scrutinizer-auto-fixer](https://github.com/scrutinizer-auto-fixer)) +- 修复解密小程序转发信息数据\(wx.getShareInfo\)失败的问题 [\#1037](https://github.com/overtrue/wechat/pull/1037) ([yyqqing](https://github.com/yyqqing)) +- 修復微信支付沙盒模式的通知結果本地校驗失敗錯誤。 [\#1036](https://github.com/overtrue/wechat/pull/1036) ([amyuki](https://github.com/amyuki)) +- 修复 verifyTicket 使用不了自定义缓存的问题 [\#1034](https://github.com/overtrue/wechat/pull/1034) ([mingyoung](https://github.com/mingyoung)) +- 🚧 Auto discover extensions. [\#1027](https://github.com/overtrue/wechat/pull/1027) ([mingyoung](https://github.com/mingyoung)) + +## [4.0.0-beta.4](https://github.com/overtrue/wechat/tree/4.0.0-beta.4) (2017-11-21) +[Full Changelog](https://github.com/overtrue/wechat/compare/3.3.20...4.0.0-beta.4) + +**Closed issues:** + +- Order对象的$attributes中不能传入device\_info参数 [\#1030](https://github.com/overtrue/wechat/issues/1030) +- 默认文件缓存的路径是否可以简单修改? [\#1023](https://github.com/overtrue/wechat/issues/1023) +- 3.3.17 版本获取 token 的问题 [\#1022](https://github.com/overtrue/wechat/issues/1022) +- \[V3\] AccessToken.php:243 [\#1021](https://github.com/overtrue/wechat/issues/1021) + +**Merged pull requests:** + +- more detailed cache key. [\#1028](https://github.com/overtrue/wechat/pull/1028) ([mingyoung](https://github.com/mingyoung)) +- Apply fixes from StyleCI [\#1026](https://github.com/overtrue/wechat/pull/1026) ([mingyoung](https://github.com/mingyoung)) +- Specify the request instance. [\#1024](https://github.com/overtrue/wechat/pull/1024) ([mingyoung](https://github.com/mingyoung)) + +## [3.3.20](https://github.com/overtrue/wechat/tree/3.3.20) (2017-11-13) +[Full Changelog](https://github.com/overtrue/wechat/compare/3.3.18...3.3.20) + +## [3.3.18](https://github.com/overtrue/wechat/tree/3.3.18) (2017-11-11) +[Full Changelog](https://github.com/overtrue/wechat/compare/3.3.17...3.3.18) + +**Closed issues:** + +- 临时二维码接口无法生成以字符串为参数的二维码 [\#1020](https://github.com/overtrue/wechat/issues/1020) +- 现金红包出现了500错误,跟进显示http\_error:true [\#1016](https://github.com/overtrue/wechat/issues/1016) +- 4.0 企业微信agent OA的错误 [\#1015](https://github.com/overtrue/wechat/issues/1015) +- 求thinkphp框架demo [\#1010](https://github.com/overtrue/wechat/issues/1010) +- 沙箱模式获取验签 key 时产生无限循环 , 无法正常获取 [\#1009](https://github.com/overtrue/wechat/issues/1009) +- JSSDK里面url导致的invalid signature错误 [\#1002](https://github.com/overtrue/wechat/issues/1002) +- 微信支付沙箱模式下,回调验签错误 [\#998](https://github.com/overtrue/wechat/issues/998) +- 有微信退款回调接口吗? [\#985](https://github.com/overtrue/wechat/issues/985) +- 希望兼容新出的微信H5支付 [\#966](https://github.com/overtrue/wechat/issues/966) +- 小程序生成无限量二维码接口缺少参数 [\#965](https://github.com/overtrue/wechat/issues/965) + +**Merged pull requests:** + +- 查询企业付款接口参数调整,加入企业付款到银行卡接口(RSA 参数加密待完成) [\#1019](https://github.com/overtrue/wechat/pull/1019) ([tianyong90](https://github.com/tianyong90)) +- Token AESKey can be null. [\#1013](https://github.com/overtrue/wechat/pull/1013) ([mingyoung](https://github.com/mingyoung)) +- Apply fixes from StyleCI [\#1012](https://github.com/overtrue/wechat/pull/1012) ([mingyoung](https://github.com/mingyoung)) +- Add Mini-program tester's binding/unbinding feature [\#1011](https://github.com/overtrue/wechat/pull/1011) ([caikeal](https://github.com/caikeal)) +- Apply fixes from StyleCI [\#1008](https://github.com/overtrue/wechat/pull/1008) ([overtrue](https://github.com/overtrue)) +- Apply fixes from StyleCI [\#1007](https://github.com/overtrue/wechat/pull/1007) ([overtrue](https://github.com/overtrue)) +- Added open-platform's mini-program code management [\#1003](https://github.com/overtrue/wechat/pull/1003) ([caikeal](https://github.com/caikeal)) +- Cleanup payment [\#1001](https://github.com/overtrue/wechat/pull/1001) ([mingyoung](https://github.com/mingyoung)) +- Unify get stream. [\#995](https://github.com/overtrue/wechat/pull/995) ([mingyoung](https://github.com/mingyoung)) +- Add appCode `page` param. [\#991](https://github.com/overtrue/wechat/pull/991) ([mingyoung](https://github.com/mingyoung)) + +## [3.3.17](https://github.com/overtrue/wechat/tree/3.3.17) (2017-10-27) +[Full Changelog](https://github.com/overtrue/wechat/compare/4.0.0-beta.3...3.3.17) + +**Closed issues:** + +- open platform component\_verify\_ticket 错误 [\#984](https://github.com/overtrue/wechat/issues/984) +- 请教下载语音后的文件不完整怎么处理? [\#980](https://github.com/overtrue/wechat/issues/980) +- 微信支付 API 调用下单解析缓缓 [\#977](https://github.com/overtrue/wechat/issues/977) +- 是否可以加入微信收款(个人转账版)服务接口 [\#970](https://github.com/overtrue/wechat/issues/970) +- 微信公众号消息加解密方式‘兼容模式’也需要填写‘aes\_key’参数,不能为空 [\#967](https://github.com/overtrue/wechat/issues/967) +- 第三方平台 接收消息一直报错 但是能回复消息 也会提示错误 [\#961](https://github.com/overtrue/wechat/issues/961) +- 中文官网无法访问 [\#960](https://github.com/overtrue/wechat/issues/960) +- laravel队列中使用了SDK报Component verify ticket does not exists. [\#958](https://github.com/overtrue/wechat/issues/958) +- 接口调用次数每日限额清零方法没有? [\#953](https://github.com/overtrue/wechat/issues/953) +- 获取access\_toekn失败之后抛出异常的地方,能够与其他地方统一使用下述这个 resolveResponse 返回数据 [\#951](https://github.com/overtrue/wechat/issues/951) +- 官网挂了 [\#950](https://github.com/overtrue/wechat/issues/950) +- 无法接收到菜单点击事件推送的消息 [\#949](https://github.com/overtrue/wechat/issues/949) +- 请教这个sdk是否可用于android 或者ios 登录? [\#948](https://github.com/overtrue/wechat/issues/948) +- 关于access token 后端分布式部署的中控服务器的问题 [\#947](https://github.com/overtrue/wechat/issues/947) +- 4.0 不支持laravel 5.2? [\#946](https://github.com/overtrue/wechat/issues/946) +- log不能打印出来 [\#945](https://github.com/overtrue/wechat/issues/945) +- EasyWeChat.org域名挂了?? [\#940](https://github.com/overtrue/wechat/issues/940) +- 微信静默授权的时候,页面上老是会显示一段很长的英文Redirecting to http://xxxx,很影响用户体验,有没有什么方法可以去掉,保留空白页,或者允许自定义显示内容 [\#939](https://github.com/overtrue/wechat/issues/939) +- 微信小程序生成二维码(接口B)微信扫描不出来结果 [\#938](https://github.com/overtrue/wechat/issues/938) +- 官网可否支持看老版本的文档? [\#937](https://github.com/overtrue/wechat/issues/937) +- 客服发送消息 收到的中文信息被unicode 编码 [\#935](https://github.com/overtrue/wechat/issues/935) +- 有多个商户时,订单通知的 $payment 怎么创建 [\#934](https://github.com/overtrue/wechat/issues/934) +- console中使用$app-\>user-\>get报错 [\#932](https://github.com/overtrue/wechat/issues/932) +- PC端扫描登录的问题 [\#930](https://github.com/overtrue/wechat/issues/930) +- 关于小程序支付的疑问 [\#912](https://github.com/overtrue/wechat/issues/912) +- 服务商api模式使用可以更加详细吗 [\#653](https://github.com/overtrue/wechat/issues/653) + +**Merged pull requests:** + +- 修正 微信公众号要求 所有接口使用 HTTPS 方式访问 [\#988](https://github.com/overtrue/wechat/pull/988) ([drogjh](https://github.com/drogjh)) +- Apply fixes from StyleCI [\#987](https://github.com/overtrue/wechat/pull/987) ([mingyoung](https://github.com/mingyoung)) +- 修复微信收款(个人转账版)商户添加、查询含有多余字段导致签名失败的问题 [\#986](https://github.com/overtrue/wechat/pull/986) ([chenhaizano](https://github.com/chenhaizano)) +- Add merchant client. [\#983](https://github.com/overtrue/wechat/pull/983) ([mingyoung](https://github.com/mingyoung)) +- Fix PKCS7 unpad issue. [\#981](https://github.com/overtrue/wechat/pull/981) ([mingyoung](https://github.com/mingyoung)) +- 💯 Add unit tests. [\#979](https://github.com/overtrue/wechat/pull/979) ([mingyoung](https://github.com/mingyoung)) +- Apply fixes from StyleCI [\#978](https://github.com/overtrue/wechat/pull/978) ([overtrue](https://github.com/overtrue)) +- Add sub-merchant support. [\#976](https://github.com/overtrue/wechat/pull/976) ([mingyoung](https://github.com/mingyoung)) +- Apply fixes from StyleCI [\#974](https://github.com/overtrue/wechat/pull/974) ([overtrue](https://github.com/overtrue)) +- Apply fixes from StyleCI [\#973](https://github.com/overtrue/wechat/pull/973) ([mingyoung](https://github.com/mingyoung)) +- Refactoring payment [\#972](https://github.com/overtrue/wechat/pull/972) ([mingyoung](https://github.com/mingyoung)) +- Fix request method. [\#964](https://github.com/overtrue/wechat/pull/964) ([mingyoung](https://github.com/mingyoung)) +- MiniProgram template. [\#959](https://github.com/overtrue/wechat/pull/959) ([mingyoung](https://github.com/mingyoung)) +- 企业微信 jssdk ticket [\#954](https://github.com/overtrue/wechat/pull/954) ([mingyoung](https://github.com/mingyoung)) +- Scrutinizer Auto-Fixes [\#944](https://github.com/overtrue/wechat/pull/944) ([scrutinizer-auto-fixer](https://github.com/scrutinizer-auto-fixer)) +- 简化子商户js config [\#943](https://github.com/overtrue/wechat/pull/943) ([HanSon](https://github.com/HanSon)) +- Apply fixes from StyleCI [\#942](https://github.com/overtrue/wechat/pull/942) ([overtrue](https://github.com/overtrue)) +- 支持子商户JS CONFIG生成 [\#941](https://github.com/overtrue/wechat/pull/941) ([HanSon](https://github.com/HanSon)) + +## [4.0.0-beta.3](https://github.com/overtrue/wechat/tree/4.0.0-beta.3) (2017-09-23) +[Full Changelog](https://github.com/overtrue/wechat/compare/3.3.16...4.0.0-beta.3) + +**Closed issues:** + +- 退款结果通知 [\#858](https://github.com/overtrue/wechat/issues/858) + +**Merged pull requests:** + +- Update Application.php [\#936](https://github.com/overtrue/wechat/pull/936) ([HanSon](https://github.com/HanSon)) + +## [3.3.16](https://github.com/overtrue/wechat/tree/3.3.16) (2017-09-20) +[Full Changelog](https://github.com/overtrue/wechat/compare/3.3.15...3.3.16) + +**Closed issues:** + +- 希望能增加获取回复数据的方法 [\#929](https://github.com/overtrue/wechat/issues/929) +- 3.3 版本 数据类型不对导致无法运行 [\#928](https://github.com/overtrue/wechat/issues/928) + +**Merged pull requests:** + +- 增加退款回调处理 [\#931](https://github.com/overtrue/wechat/pull/931) ([leo108](https://github.com/leo108)) + +## [3.3.15](https://github.com/overtrue/wechat/tree/3.3.15) (2017-09-13) +[Full Changelog](https://github.com/overtrue/wechat/compare/3.3.14...3.3.15) + +**Closed issues:** + +- 微信 for windows 发送文件的时候报错 [\#927](https://github.com/overtrue/wechat/issues/927) + +## [3.3.14](https://github.com/overtrue/wechat/tree/3.3.14) (2017-09-13) +[Full Changelog](https://github.com/overtrue/wechat/compare/4.0.0-beta.2...3.3.14) + +**Closed issues:** + +- 请教授权的时候什么方法拿到用户是否关注了本公众号? [\#926](https://github.com/overtrue/wechat/issues/926) + +## [4.0.0-beta.2](https://github.com/overtrue/wechat/tree/4.0.0-beta.2) (2017-09-12) +[Full Changelog](https://github.com/overtrue/wechat/compare/4.0.0-beta.1...4.0.0-beta.2) + +**Closed issues:** + +- readme.md写错了? [\#923](https://github.com/overtrue/wechat/issues/923) +- token验证成功,但还是回复暂时不可用,困扰1个星期多了,真心求助!!!有偿都可以!! [\#922](https://github.com/overtrue/wechat/issues/922) +- 条件判断错了,stripos返回的是“返回在字符串 haystack 中 needle 首次出现的数字位置。”,所以不能直接作为条件判断 [\#915](https://github.com/overtrue/wechat/issues/915) +- README中的链接是否错误 [\#913](https://github.com/overtrue/wechat/issues/913) +- 测试公众号无法接受用户信息 [\#911](https://github.com/overtrue/wechat/issues/911) +- ReadMe文件过期 [\#910](https://github.com/overtrue/wechat/issues/910) +- 开放平台服务,取消授权会有哪些参数过来? [\#909](https://github.com/overtrue/wechat/issues/909) +- token无法验证 [\#908](https://github.com/overtrue/wechat/issues/908) +- laravel 5.4 composer 失败 [\#907](https://github.com/overtrue/wechat/issues/907) +- 开放平台:组件ticket无法通过 [\#904](https://github.com/overtrue/wechat/issues/904) +- 官方网站一直登陆不了,浙江丽水地区 [\#903](https://github.com/overtrue/wechat/issues/903) +- \[4.0\] Pimple\Exception\UnknownIdentifierException [\#901](https://github.com/overtrue/wechat/issues/901) +- 4.0 报错“Your requirements could not be resolved to an installable set of packages.” [\#898](https://github.com/overtrue/wechat/issues/898) + +**Merged pull requests:** + +- 修改通过ticket换取二维码图片地址的逻辑 [\#925](https://github.com/overtrue/wechat/pull/925) ([Gwill](https://github.com/Gwill)) +- make domain more flexible [\#924](https://github.com/overtrue/wechat/pull/924) ([HanSon](https://github.com/HanSon)) +- add code & domain comment [\#921](https://github.com/overtrue/wechat/pull/921) ([HanSon](https://github.com/HanSon)) +- Apply fixes from StyleCI [\#919](https://github.com/overtrue/wechat/pull/919) ([overtrue](https://github.com/overtrue)) +- \[3.1\] Custom PreAuthCode Support [\#918](https://github.com/overtrue/wechat/pull/918) ([freyo](https://github.com/freyo)) +- 修改acess\_token无效时微信返回错误码的判断 [\#916](https://github.com/overtrue/wechat/pull/916) ([blackjune](https://github.com/blackjune)) +- \[4.0\] Add optional 'request' parameter to notify handler methods [\#905](https://github.com/overtrue/wechat/pull/905) ([edwardaa](https://github.com/edwardaa)) +- Apply fixes from StyleCI [\#902](https://github.com/overtrue/wechat/pull/902) ([overtrue](https://github.com/overtrue)) +- Apply fixes from StyleCI [\#897](https://github.com/overtrue/wechat/pull/897) ([overtrue](https://github.com/overtrue)) +- 增加OAuth中Guzzle\Client的配置项的设置 [\#893](https://github.com/overtrue/wechat/pull/893) ([khsing](https://github.com/khsing)) +- Apply fixes from StyleCI [\#887](https://github.com/overtrue/wechat/pull/887) ([overtrue](https://github.com/overtrue)) +- Scrutinizer Auto-Fixes [\#884](https://github.com/overtrue/wechat/pull/884) ([scrutinizer-auto-fixer](https://github.com/scrutinizer-auto-fixer)) + +## [4.0.0-beta.1](https://github.com/overtrue/wechat/tree/4.0.0-beta.1) (2017-08-31) +[Full Changelog](https://github.com/overtrue/wechat/compare/4.0.0-alpha.2...4.0.0-beta.1) + +**Closed issues:** + +- http://easywechat.org/ 网站访问不了了? [\#896](https://github.com/overtrue/wechat/issues/896) +- 关于缓存,请问为什么key中包含appId \* 2,有什么讲究吗? [\#892](https://github.com/overtrue/wechat/issues/892) +- 小程序调用解密程序报-41003错误 [\#891](https://github.com/overtrue/wechat/issues/891) +- 小程序调用加密数据解密时报错,不存在方法 [\#890](https://github.com/overtrue/wechat/issues/890) +- 有关4.0使用文档的问题 [\#883](https://github.com/overtrue/wechat/issues/883) +- \[4.0\] PHP最低版本能否降到7.0 [\#880](https://github.com/overtrue/wechat/issues/880) + +**Merged pull requests:** + +- \[4.0\] Pass proper arguments to the Response constructor [\#895](https://github.com/overtrue/wechat/pull/895) ([edwardaa](https://github.com/edwardaa)) +- Fix baseUrl and json issues. [\#894](https://github.com/overtrue/wechat/pull/894) ([mingyoung](https://github.com/mingyoung)) +- Apply fixes from StyleCI [\#889](https://github.com/overtrue/wechat/pull/889) ([overtrue](https://github.com/overtrue)) +- Scrutinizer Auto-Fixes [\#885](https://github.com/overtrue/wechat/pull/885) ([scrutinizer-auto-fixer](https://github.com/scrutinizer-auto-fixer)) +- Apply fixes from StyleCI [\#882](https://github.com/overtrue/wechat/pull/882) ([overtrue](https://github.com/overtrue)) +- 补充通用卡接口 [\#881](https://github.com/overtrue/wechat/pull/881) ([XiaoLer](https://github.com/XiaoLer)) +- Apply fixes from StyleCI [\#879](https://github.com/overtrue/wechat/pull/879) ([overtrue](https://github.com/overtrue)) +- \[3.1\] Payment/API 没有使用全局的 cache [\#878](https://github.com/overtrue/wechat/pull/878) ([edwardaa](https://github.com/edwardaa)) +- Add JSON\_UNESCAPED\_UNICODE option. [\#874](https://github.com/overtrue/wechat/pull/874) ([mingyoung](https://github.com/mingyoung)) +- update \_\_set\_state magic method to static [\#872](https://github.com/overtrue/wechat/pull/872) ([8090Lambert](https://github.com/8090Lambert)) + +## [4.0.0-alpha.2](https://github.com/overtrue/wechat/tree/4.0.0-alpha.2) (2017-08-20) +[Full Changelog](https://github.com/overtrue/wechat/compare/4.0.0-alpha.1...4.0.0-alpha.2) + +**Closed issues:** + +- 你好,怎么用的 [\#869](https://github.com/overtrue/wechat/issues/869) + +**Merged pull requests:** + +- Tweak dir [\#871](https://github.com/overtrue/wechat/pull/871) ([mingyoung](https://github.com/mingyoung)) +- Fix mini-program guard. [\#870](https://github.com/overtrue/wechat/pull/870) ([mingyoung](https://github.com/mingyoung)) + +## [4.0.0-alpha.1](https://github.com/overtrue/wechat/tree/4.0.0-alpha.1) (2017-08-14) +[Full Changelog](https://github.com/overtrue/wechat/compare/3.3.13...4.0.0-alpha.1) + +**Closed issues:** + +- 对doctrine/cache依赖的版本锁定 [\#867](https://github.com/overtrue/wechat/issues/867) + +## [3.3.13](https://github.com/overtrue/wechat/tree/3.3.13) (2017-08-13) +[Full Changelog](https://github.com/overtrue/wechat/compare/3.3.12...3.3.13) + +**Closed issues:** + +- 文档中网页授权实例写的不明确 [\#850](https://github.com/overtrue/wechat/issues/850) +- \[意见\]作者能否提供getTokenFromServer方法扩展从外部第三方获取access\_token [\#837](https://github.com/overtrue/wechat/issues/837) +- invalid credential, access\_token is invalid or not latest [\#808](https://github.com/overtrue/wechat/issues/808) +- \[4.0\] 重构卡券 [\#806](https://github.com/overtrue/wechat/issues/806) +- \[4.0\] 重构 Broadcasting [\#805](https://github.com/overtrue/wechat/issues/805) +- \[4.0\] 变更日志 [\#746](https://github.com/overtrue/wechat/issues/746) + +**Merged pull requests:** + +- Fixed open-platform authorizer server token. [\#866](https://github.com/overtrue/wechat/pull/866) ([mingyoung](https://github.com/mingyoung)) +- payment\ClientTest 优化 [\#865](https://github.com/overtrue/wechat/pull/865) ([tianyong90](https://github.com/tianyong90)) +- Apply fixes from StyleCI [\#864](https://github.com/overtrue/wechat/pull/864) ([overtrue](https://github.com/overtrue)) +- 退款通知处理及相关单元测试 [\#863](https://github.com/overtrue/wechat/pull/863) ([tianyong90](https://github.com/tianyong90)) +- Apply fixes from StyleCI [\#862](https://github.com/overtrue/wechat/pull/862) ([overtrue](https://github.com/overtrue)) +- Update dependence version. [\#861](https://github.com/overtrue/wechat/pull/861) ([mingyoung](https://github.com/mingyoung)) +- Add tests. [\#859](https://github.com/overtrue/wechat/pull/859) ([mingyoung](https://github.com/mingyoung)) +- Apply fixes from StyleCI [\#857](https://github.com/overtrue/wechat/pull/857) ([overtrue](https://github.com/overtrue)) +- Payment 单元测试优化 [\#856](https://github.com/overtrue/wechat/pull/856) ([tianyong90](https://github.com/tianyong90)) +- Apply fixes from StyleCI [\#855](https://github.com/overtrue/wechat/pull/855) ([overtrue](https://github.com/overtrue)) +- lists 方法重命名为 list,相关单元测试调整 [\#853](https://github.com/overtrue/wechat/pull/853) ([tianyong90](https://github.com/tianyong90)) +- Apply fixes from StyleCI [\#852](https://github.com/overtrue/wechat/pull/852) ([overtrue](https://github.com/overtrue)) +- Payment 单元测试及部分问题修复 [\#851](https://github.com/overtrue/wechat/pull/851) ([tianyong90](https://github.com/tianyong90)) +- Apply fixes from StyleCI [\#848](https://github.com/overtrue/wechat/pull/848) ([overtrue](https://github.com/overtrue)) +- 调整 Payment\BaseClient 注入的 $app 类型 [\#847](https://github.com/overtrue/wechat/pull/847) ([tianyong90](https://github.com/tianyong90)) +- array\_merge 方法参数类型转换, type hints [\#846](https://github.com/overtrue/wechat/pull/846) ([tianyong90](https://github.com/tianyong90)) +- Fix oauth. [\#845](https://github.com/overtrue/wechat/pull/845) ([mingyoung](https://github.com/mingyoung)) +- Text message. [\#844](https://github.com/overtrue/wechat/pull/844) ([mingyoung](https://github.com/mingyoung)) +- Rename BaseService -\> BasicService. [\#843](https://github.com/overtrue/wechat/pull/843) ([overtrue](https://github.com/overtrue)) +- Apply fixes from StyleCI [\#842](https://github.com/overtrue/wechat/pull/842) ([overtrue](https://github.com/overtrue)) +- Apply fixes from StyleCI [\#841](https://github.com/overtrue/wechat/pull/841) ([overtrue](https://github.com/overtrue)) +- phpdoc types。 [\#840](https://github.com/overtrue/wechat/pull/840) ([tianyong90](https://github.com/tianyong90)) +- Apply fixes from StyleCI [\#839](https://github.com/overtrue/wechat/pull/839) ([overtrue](https://github.com/overtrue)) +- Apply fixes from StyleCI [\#836](https://github.com/overtrue/wechat/pull/836) ([overtrue](https://github.com/overtrue)) +- Apply fixes from StyleCI [\#835](https://github.com/overtrue/wechat/pull/835) ([overtrue](https://github.com/overtrue)) +- Apply fixes from StyleCI [\#833](https://github.com/overtrue/wechat/pull/833) ([mingyoung](https://github.com/mingyoung)) +- Apply fixes from StyleCI [\#831](https://github.com/overtrue/wechat/pull/831) ([overtrue](https://github.com/overtrue)) + +## [3.3.12](https://github.com/overtrue/wechat/tree/3.3.12) (2017-08-01) +[Full Changelog](https://github.com/overtrue/wechat/compare/3.3.11...3.3.12) + +**Closed issues:** + +- 能否整合微信开放平台在给出一套demo [\#816](https://github.com/overtrue/wechat/issues/816) +- 请教这个项目的支付部分,尤其是签名和结果回调,是否支持小程序? [\#814](https://github.com/overtrue/wechat/issues/814) +- 微信意图识别接口返回invalid param [\#804](https://github.com/overtrue/wechat/issues/804) +- 返回param invalid [\#803](https://github.com/overtrue/wechat/issues/803) + +**Merged pull requests:** + +- change comment word [\#830](https://github.com/overtrue/wechat/pull/830) ([tianyong90](https://github.com/tianyong90)) +- Fix getTicket. [\#829](https://github.com/overtrue/wechat/pull/829) ([mingyoung](https://github.com/mingyoung)) +- Apply fixes from StyleCI [\#827](https://github.com/overtrue/wechat/pull/827) ([overtrue](https://github.com/overtrue)) +- 修正 HasAttributes Trait 引用错误 [\#825](https://github.com/overtrue/wechat/pull/825) ([tianyong90](https://github.com/tianyong90)) +- Apply fixes from StyleCI [\#824](https://github.com/overtrue/wechat/pull/824) ([overtrue](https://github.com/overtrue)) +- Apply fixes from StyleCI [\#822](https://github.com/overtrue/wechat/pull/822) ([overtrue](https://github.com/overtrue)) +- Apply fixes from StyleCI [\#820](https://github.com/overtrue/wechat/pull/820) ([mingyoung](https://github.com/mingyoung)) +- Add subscribe message. [\#819](https://github.com/overtrue/wechat/pull/819) ([mingyoung](https://github.com/mingyoung)) +- Apply fixes from StyleCI [\#818](https://github.com/overtrue/wechat/pull/818) ([mingyoung](https://github.com/mingyoung)) +- 微信开放平台帐号管理 [\#817](https://github.com/overtrue/wechat/pull/817) ([XiaoLer](https://github.com/XiaoLer)) +- add method in comment [\#813](https://github.com/overtrue/wechat/pull/813) ([HanSon](https://github.com/HanSon)) +- fixed guzzle version [\#812](https://github.com/overtrue/wechat/pull/812) ([HanSon](https://github.com/HanSon)) +- Apply fixes from StyleCI [\#811](https://github.com/overtrue/wechat/pull/811) ([mingyoung](https://github.com/mingyoung)) +- Downgrade to php 7.0 [\#809](https://github.com/overtrue/wechat/pull/809) ([HanSon](https://github.com/HanSon)) + +## [3.3.11](https://github.com/overtrue/wechat/tree/3.3.11) (2017-07-17) +[Full Changelog](https://github.com/overtrue/wechat/compare/4.0.0-alpha1...3.3.11) + +**Closed issues:** + +- 请添加 「退款原因」 参数 [\#802](https://github.com/overtrue/wechat/issues/802) + +## [4.0.0-alpha1](https://github.com/overtrue/wechat/tree/4.0.0-alpha1) (2017-07-17) +[Full Changelog](https://github.com/overtrue/wechat/compare/3.3.10...4.0.0-alpha1) + +**Closed issues:** + +- Overtrue\Wechat\Media not found [\#801](https://github.com/overtrue/wechat/issues/801) +- 在微信的接口配置时Token 无效,可任意输入 [\#800](https://github.com/overtrue/wechat/issues/800) + +## [3.3.10](https://github.com/overtrue/wechat/tree/3.3.10) (2017-07-13) +[Full Changelog](https://github.com/overtrue/wechat/compare/3.3.9...3.3.10) + +**Closed issues:** + +- 第三方平台refresh\_token的保存问题 [\#798](https://github.com/overtrue/wechat/issues/798) +- 网页授权共享session已晚 [\#792](https://github.com/overtrue/wechat/issues/792) + +**Merged pull requests:** + +- 临时二维码也是支持scene\_str的,这里补充上 [\#797](https://github.com/overtrue/wechat/pull/797) ([lornewang](https://github.com/lornewang)) +- Apply fixes from StyleCI [\#795](https://github.com/overtrue/wechat/pull/795) ([overtrue](https://github.com/overtrue)) +- add card message type [\#794](https://github.com/overtrue/wechat/pull/794) ([IanGely](https://github.com/IanGely)) +- add staff message type wxcard [\#793](https://github.com/overtrue/wechat/pull/793) ([IanGely](https://github.com/IanGely)) + +## [3.3.9](https://github.com/overtrue/wechat/tree/3.3.9) (2017-07-07) +[Full Changelog](https://github.com/overtrue/wechat/compare/3.3.8...3.3.9) + +**Closed issues:** + +- \[4.0\] Http 模块 [\#678](https://github.com/overtrue/wechat/issues/678) +- \[4.0\] Http 请求类 [\#582](https://github.com/overtrue/wechat/issues/582) + +**Merged pull requests:** + +- Apply fixes from StyleCI [\#791](https://github.com/overtrue/wechat/pull/791) ([overtrue](https://github.com/overtrue)) +- Add get user portrait method. [\#790](https://github.com/overtrue/wechat/pull/790) ([getive](https://github.com/getive)) +- \[Feature\] Move directories [\#789](https://github.com/overtrue/wechat/pull/789) ([overtrue](https://github.com/overtrue)) +- \[Feature\] Move traits to kernel. [\#788](https://github.com/overtrue/wechat/pull/788) ([overtrue](https://github.com/overtrue)) +- Apply fixes from StyleCI [\#787](https://github.com/overtrue/wechat/pull/787) ([overtrue](https://github.com/overtrue)) +- Apply fixes from StyleCI [\#786](https://github.com/overtrue/wechat/pull/786) ([overtrue](https://github.com/overtrue)) + +## [3.3.8](https://github.com/overtrue/wechat/tree/3.3.8) (2017-07-07) +[Full Changelog](https://github.com/overtrue/wechat/compare/3.3.7...3.3.8) + +**Closed issues:** + +- $temporary-\>getStream\($media\_id\) 与 file\_get\_contents\(\) 有区别??? [\#742](https://github.com/overtrue/wechat/issues/742) + +## [3.3.7](https://github.com/overtrue/wechat/tree/3.3.7) (2017-07-06) +[Full Changelog](https://github.com/overtrue/wechat/compare/3.3.6...3.3.7) + +**Closed issues:** + +- 多添加一个$option [\#772](https://github.com/overtrue/wechat/issues/772) +- 消息群发,指定openid群发视频时,微信报错invalid message type hint: \[JUs0Oa0779ge25\] [\#757](https://github.com/overtrue/wechat/issues/757) + +## [3.3.6](https://github.com/overtrue/wechat/tree/3.3.6) (2017-07-06) +[Full Changelog](https://github.com/overtrue/wechat/compare/3.3.5...3.3.6) + +**Fixed bugs:** + +- 素材管理,如果media\_id不存在会保存网页返回的错误代码 [\#592](https://github.com/overtrue/wechat/issues/592) + +**Closed issues:** + +- https://easywechat.org网站证书刚过期了,知会作者一声 [\#781](https://github.com/overtrue/wechat/issues/781) +- access\_token 是否能不内部主动请求微信 [\#778](https://github.com/overtrue/wechat/issues/778) +- 门店创建API \($poi-\>create\) 建议返回 poi\_id / exception [\#774](https://github.com/overtrue/wechat/issues/774) +- 扩展门店小程序错误 [\#762](https://github.com/overtrue/wechat/issues/762) +- \[4.0\] jssdk 抽出独立模块 [\#754](https://github.com/overtrue/wechat/issues/754) +- \[4.0\] 消息加密解密模块提取到 Kernel [\#753](https://github.com/overtrue/wechat/issues/753) +- 网页能授权但无法获取用户信息,代码跟官方文档一样。 [\#713](https://github.com/overtrue/wechat/issues/713) + +**Merged pull requests:** + +- Feature: BaseService. [\#785](https://github.com/overtrue/wechat/pull/785) ([overtrue](https://github.com/overtrue)) +- Apply fixes from StyleCI [\#784](https://github.com/overtrue/wechat/pull/784) ([overtrue](https://github.com/overtrue)) +- Apply fixes from StyleCI [\#783](https://github.com/overtrue/wechat/pull/783) ([mingyoung](https://github.com/mingyoung)) + +## [3.3.5](https://github.com/overtrue/wechat/tree/3.3.5) (2017-07-04) +[Full Changelog](https://github.com/overtrue/wechat/compare/3.3.4...3.3.5) + +**Implemented enhancements:** + +- 并发下access\_token存在脏写隐患 [\#696](https://github.com/overtrue/wechat/issues/696) + +**Merged pull requests:** + +- Apply fixes from StyleCI [\#780](https://github.com/overtrue/wechat/pull/780) ([overtrue](https://github.com/overtrue)) + +## [3.3.4](https://github.com/overtrue/wechat/tree/3.3.4) (2017-07-04) +[Full Changelog](https://github.com/overtrue/wechat/compare/3.3.3...3.3.4) + +**Closed issues:** + +- 网页授权获取用户信息无法打开授权页面 [\#773](https://github.com/overtrue/wechat/issues/773) +- Class 'EasyWechat\Foundation\Application' not found [\#769](https://github.com/overtrue/wechat/issues/769) +- 获取小程序二维码报错 [\#766](https://github.com/overtrue/wechat/issues/766) +- Call to undefined method EasyWeChat\Server\Guard::setRequest\(\) [\#765](https://github.com/overtrue/wechat/issues/765) +- 网页授权问题,提示scopes类型错误 [\#764](https://github.com/overtrue/wechat/issues/764) +- 门店小程序扩展错误问题 [\#763](https://github.com/overtrue/wechat/issues/763) +- 微信开发者平台,全网发布怎么通过 [\#761](https://github.com/overtrue/wechat/issues/761) +- 微信网页授权重复请求报code无效 [\#714](https://github.com/overtrue/wechat/issues/714) + +**Merged pull requests:** + +- 新版客服功能-获取聊天记录 [\#775](https://github.com/overtrue/wechat/pull/775) ([wuwenbao](https://github.com/wuwenbao)) +- Fix mini-program qrcode. [\#768](https://github.com/overtrue/wechat/pull/768) ([mingyoung](https://github.com/mingyoung)) +- Add code comments [\#756](https://github.com/overtrue/wechat/pull/756) ([daxiong123](https://github.com/daxiong123)) + +## [3.3.3](https://github.com/overtrue/wechat/tree/3.3.3) (2017-06-22) +[Full Changelog](https://github.com/overtrue/wechat/compare/3.3.2...3.3.3) + +**Implemented enhancements:** + +- \[4.0\] Trait HasHttpRequests [\#671](https://github.com/overtrue/wechat/issues/671) +- \[4.0\] 缓存抽象成 trait: InteractsWithCache [\#670](https://github.com/overtrue/wechat/issues/670) +- \[4.0\] 返回值类型可配置 [\#661](https://github.com/overtrue/wechat/issues/661) +- \[4.0\] 报错信息可选 [\#596](https://github.com/overtrue/wechat/issues/596) +- \[4.0\] 简化并完善开发者配置项 [\#584](https://github.com/overtrue/wechat/issues/584) + +**Fixed bugs:** + +- open\_platform.oauth 过早的获取 access token [\#701](https://github.com/overtrue/wechat/issues/701) + +**Closed issues:** + +- 微信网页支付配置生成 [\#751](https://github.com/overtrue/wechat/issues/751) +- configForJSSDKPayment [\#744](https://github.com/overtrue/wechat/issues/744) +- 发现微信上有管理公众号留言的接口,不知道是不是新出的 [\#721](https://github.com/overtrue/wechat/issues/721) +- oauth能获取用户信息,再通过access\_token与用户openid去获取信息,部分用户的信息为空 [\#720](https://github.com/overtrue/wechat/issues/720) +- 接入多个公众号 [\#718](https://github.com/overtrue/wechat/issues/718) +- guzzle curl error28 - 去哪设置默认timeout ? [\#715](https://github.com/overtrue/wechat/issues/715) +- 使用$server-\>getMessage\(\);报错 [\#712](https://github.com/overtrue/wechat/issues/712) +- 怎样从数据库中调取配置 [\#711](https://github.com/overtrue/wechat/issues/711) +- \[4.0\] 支持企业微信 [\#707](https://github.com/overtrue/wechat/issues/707) +- defaultColor does not work. [\#703](https://github.com/overtrue/wechat/issues/703) +- 是否支持H5支付 [\#694](https://github.com/overtrue/wechat/issues/694) +- 生成AccessToken时,似乎没有调用自定义缓存的delete方法 [\#693](https://github.com/overtrue/wechat/issues/693) +- \[4.0\] PSR-6 缓存接口 [\#692](https://github.com/overtrue/wechat/issues/692) +- 微信支付沙盒模式支持配置文件配置 [\#690](https://github.com/overtrue/wechat/issues/690) +- \[4.0\] 优化服务提供器结构 [\#689](https://github.com/overtrue/wechat/issues/689) +- 强制项目不要自动获取AccessToken [\#688](https://github.com/overtrue/wechat/issues/688) +- 小程序解密$encryptedData数据 [\#687](https://github.com/overtrue/wechat/issues/687) +- 微信坑爹timestamp已经解决不需要configForJSSDKPayment改变timestamp中s大小写 [\#686](https://github.com/overtrue/wechat/issues/686) +- \[4.0\] 所有 API 改名为 Client. [\#677](https://github.com/overtrue/wechat/issues/677) +- sandbox\_signkey 过期 [\#675](https://github.com/overtrue/wechat/issues/675) +- 接口配置失败 [\#672](https://github.com/overtrue/wechat/issues/672) +- 下载语音文件偶尔报错:ErrorException: is\_readable\(\) expects parameter 1 to be a valid path [\#667](https://github.com/overtrue/wechat/issues/667) +- 微信支付沙箱地址混乱 [\#665](https://github.com/overtrue/wechat/issues/665) +- 开放平台自动回复出错,提示“该服务号暂时无法提供服务” [\#654](https://github.com/overtrue/wechat/issues/654) +- \[4.0\]自定义微信API的区域接入点 [\#636](https://github.com/overtrue/wechat/issues/636) +- 在命令行使用easywechat如何关闭日志 [\#601](https://github.com/overtrue/wechat/issues/601) +- \[4.0\] PHP 版本最低要求 7.1 [\#586](https://github.com/overtrue/wechat/issues/586) +- \[4.0\] 简化微信 API 请求 [\#583](https://github.com/overtrue/wechat/issues/583) +- \[4.0\] 自定义 endpoint [\#521](https://github.com/overtrue/wechat/issues/521) + +**Merged pull requests:** + +- Apply fixes from StyleCI [\#750](https://github.com/overtrue/wechat/pull/750) ([overtrue](https://github.com/overtrue)) +- Apply fixes from StyleCI [\#749](https://github.com/overtrue/wechat/pull/749) ([overtrue](https://github.com/overtrue)) +- Apply fixes from StyleCI [\#747](https://github.com/overtrue/wechat/pull/747) ([overtrue](https://github.com/overtrue)) +- Apply fixes from StyleCI [\#745](https://github.com/overtrue/wechat/pull/745) ([overtrue](https://github.com/overtrue)) +- Apply fixes from StyleCI [\#740](https://github.com/overtrue/wechat/pull/740) ([mingyoung](https://github.com/mingyoung)) +- Apply fixes from StyleCI [\#737](https://github.com/overtrue/wechat/pull/737) ([mingyoung](https://github.com/mingyoung)) +- 分模块静态调用 [\#734](https://github.com/overtrue/wechat/pull/734) ([mingyoung](https://github.com/mingyoung)) +- Revert "Apply fixes from StyleCI" [\#731](https://github.com/overtrue/wechat/pull/731) ([overtrue](https://github.com/overtrue)) +- Apply fixes from StyleCI [\#730](https://github.com/overtrue/wechat/pull/730) ([overtrue](https://github.com/overtrue)) +- Apply fixes from StyleCI [\#729](https://github.com/overtrue/wechat/pull/729) ([overtrue](https://github.com/overtrue)) +- Revert "Apply fixes from StyleCI" [\#728](https://github.com/overtrue/wechat/pull/728) ([overtrue](https://github.com/overtrue)) +- Apply fixes from StyleCI [\#727](https://github.com/overtrue/wechat/pull/727) ([overtrue](https://github.com/overtrue)) +- 修复Https 请求判断不准 [\#726](https://github.com/overtrue/wechat/pull/726) ([xutl](https://github.com/xutl)) +- Apply fixes from StyleCI [\#725](https://github.com/overtrue/wechat/pull/725) ([mingyoung](https://github.com/mingyoung)) +- Apply fixes from StyleCI [\#724](https://github.com/overtrue/wechat/pull/724) ([mingyoung](https://github.com/mingyoung)) +- Apply fixes from StyleCI [\#723](https://github.com/overtrue/wechat/pull/723) ([mingyoung](https://github.com/mingyoung)) +- Correction notes [\#722](https://github.com/overtrue/wechat/pull/722) ([PersiLiao](https://github.com/PersiLiao)) +- Apply fixes from StyleCI [\#717](https://github.com/overtrue/wechat/pull/717) ([mingyoung](https://github.com/mingyoung)) +- 新增图文消息留言管理接口 [\#716](https://github.com/overtrue/wechat/pull/716) ([mingyoung](https://github.com/mingyoung)) +- Apply fixes from StyleCI [\#710](https://github.com/overtrue/wechat/pull/710) ([mingyoung](https://github.com/mingyoung)) +- Apply fixes from StyleCI [\#709](https://github.com/overtrue/wechat/pull/709) ([mingyoung](https://github.com/mingyoung)) +- Apply fixes from StyleCI [\#708](https://github.com/overtrue/wechat/pull/708) ([mingyoung](https://github.com/mingyoung)) +- Apply fixes from StyleCI [\#706](https://github.com/overtrue/wechat/pull/706) ([overtrue](https://github.com/overtrue)) +- 命令行下不打印日志 [\#705](https://github.com/overtrue/wechat/pull/705) ([mingyoung](https://github.com/mingyoung)) +- add defaultColor [\#704](https://github.com/overtrue/wechat/pull/704) ([damonto](https://github.com/damonto)) +- Fix [\#702](https://github.com/overtrue/wechat/pull/702) ([mingyoung](https://github.com/mingyoung)) +- Add api. [\#700](https://github.com/overtrue/wechat/pull/700) ([mingyoung](https://github.com/mingyoung)) +- Rename method. [\#699](https://github.com/overtrue/wechat/pull/699) ([mingyoung](https://github.com/mingyoung)) +- Apply fixes from StyleCI [\#698](https://github.com/overtrue/wechat/pull/698) ([mingyoung](https://github.com/mingyoung)) +- 修正素材管理中的返回值文档注释,正确的类型应该是集合,而不是字符串。 [\#695](https://github.com/overtrue/wechat/pull/695) ([starlight36](https://github.com/starlight36)) +- Payment sandbox config. [\#691](https://github.com/overtrue/wechat/pull/691) ([mingyoung](https://github.com/mingyoung)) +- Apply fixes from StyleCI [\#684](https://github.com/overtrue/wechat/pull/684) ([mingyoung](https://github.com/mingyoung)) +- Apply fixes from StyleCI [\#683](https://github.com/overtrue/wechat/pull/683) ([mingyoung](https://github.com/mingyoung)) +- Apply fixes from StyleCI [\#682](https://github.com/overtrue/wechat/pull/682) ([mingyoung](https://github.com/mingyoung)) +- Apply fixes from StyleCI [\#681](https://github.com/overtrue/wechat/pull/681) ([mingyoung](https://github.com/mingyoung)) +- Apply fixes from StyleCI [\#680](https://github.com/overtrue/wechat/pull/680) ([mingyoung](https://github.com/mingyoung)) +- Apply fixes from StyleCI [\#679](https://github.com/overtrue/wechat/pull/679) ([mingyoung](https://github.com/mingyoung)) +- Apply fixes from StyleCI [\#676](https://github.com/overtrue/wechat/pull/676) ([mingyoung](https://github.com/mingyoung)) +- checks via composer. [\#673](https://github.com/overtrue/wechat/pull/673) ([mingyoung](https://github.com/mingyoung)) +- Apply fixes from StyleCI [\#668](https://github.com/overtrue/wechat/pull/668) ([overtrue](https://github.com/overtrue)) +- Correct payment sandbox endpoint and add a method to get sandbox sign key [\#666](https://github.com/overtrue/wechat/pull/666) ([skyred](https://github.com/skyred)) + +## [3.3.2](https://github.com/overtrue/wechat/tree/3.3.2) (2017-04-27) +[Full Changelog](https://github.com/overtrue/wechat/compare/3.3.1...3.3.2) + +**Implemented enhancements:** + +- \[4.0\] Open Platform 模块 [\#587](https://github.com/overtrue/wechat/issues/587) +- \[4.0\] 微信支付 sandbox模式 [\#507](https://github.com/overtrue/wechat/issues/507) + +**Closed issues:** + +- \[4.0\] staff 模块改名为 customer service [\#585](https://github.com/overtrue/wechat/issues/585) + +**Merged pull requests:** + +- Module rename. [\#664](https://github.com/overtrue/wechat/pull/664) ([mingyoung](https://github.com/mingyoung)) +- Merge branch master into branch develop. [\#663](https://github.com/overtrue/wechat/pull/663) ([mingyoung](https://github.com/mingyoung)) +- Apply fixes from StyleCI [\#662](https://github.com/overtrue/wechat/pull/662) ([mingyoung](https://github.com/mingyoung)) +- Fix payment tools API [\#660](https://github.com/overtrue/wechat/pull/660) ([mingyoung](https://github.com/mingyoung)) +- Avoid ambiguity [\#659](https://github.com/overtrue/wechat/pull/659) ([mingyoung](https://github.com/mingyoung)) +- Support Payment Sandbox mode [\#658](https://github.com/overtrue/wechat/pull/658) ([skyred](https://github.com/skyred)) +- Apply fixes from StyleCI [\#656](https://github.com/overtrue/wechat/pull/656) ([overtrue](https://github.com/overtrue)) +- Mini program datacube. [\#655](https://github.com/overtrue/wechat/pull/655) ([mingyoung](https://github.com/mingyoung)) + +## [3.3.1](https://github.com/overtrue/wechat/tree/3.3.1) (2017-04-16) +[Full Changelog](https://github.com/overtrue/wechat/compare/3.3.0...3.3.1) + +**Closed issues:** + +- 微信第三方平台缓存位置,是否可以在配置文件中自定义 [\#648](https://github.com/overtrue/wechat/issues/648) +- 微信开放平台authorizer token缓存问题 [\#644](https://github.com/overtrue/wechat/issues/644) +- 微信开放平台发起网页授权bug [\#638](https://github.com/overtrue/wechat/issues/638) +- 微信公众号不能回复接收到的消息,日志无报错 [\#637](https://github.com/overtrue/wechat/issues/637) +- \[4.0\]黑名单管理 [\#538](https://github.com/overtrue/wechat/issues/538) + +**Merged pull requests:** + +- optimizes [\#652](https://github.com/overtrue/wechat/pull/652) ([mingyoung](https://github.com/mingyoung)) + +## [3.3.0](https://github.com/overtrue/wechat/tree/3.3.0) (2017-04-13) +[Full Changelog](https://github.com/overtrue/wechat/compare/3.2.7...3.3.0) + +**Closed issues:** + +- 微信接口获取openid是怎么排序的? [\#650](https://github.com/overtrue/wechat/issues/650) +- 缺少网页扫码支付接口 [\#647](https://github.com/overtrue/wechat/issues/647) +- 微信下的单的默认过期时间是多少啊 [\#645](https://github.com/overtrue/wechat/issues/645) +- 在获取用户信息是出错 [\#643](https://github.com/overtrue/wechat/issues/643) +- 调用$app =app\('wechat'\);时报错Use of undefined constant CURLOPT\_IPRESOLVE - assumed 'CURLOPT\_IPRESOLVE' [\#633](https://github.com/overtrue/wechat/issues/633) +- 提示找不到EasyWeChat\Server\Guard::setRequest\(\)方法 [\#626](https://github.com/overtrue/wechat/issues/626) +- 开放平台接收ComponentVerifyTicket,会出现Undefined index: FromUserName [\#623](https://github.com/overtrue/wechat/issues/623) +- 美国移动网络获取不到accessToken [\#610](https://github.com/overtrue/wechat/issues/610) +- 开放平台 APP 微信登录 [\#604](https://github.com/overtrue/wechat/issues/604) + +**Merged pull requests:** + +- Merge from open-platform branch. [\#651](https://github.com/overtrue/wechat/pull/651) ([mingyoung](https://github.com/mingyoung)) +- Update code for open-platform [\#649](https://github.com/overtrue/wechat/pull/649) ([mingyoung](https://github.com/mingyoung)) +- Code cleanup & refactoring. [\#646](https://github.com/overtrue/wechat/pull/646) ([mingyoung](https://github.com/mingyoung)) +- support cash coupon [\#642](https://github.com/overtrue/wechat/pull/642) ([HanSon](https://github.com/HanSon)) +- ♻️ All tests have been namespaced. [\#641](https://github.com/overtrue/wechat/pull/641) ([mingyoung](https://github.com/mingyoung)) +- tweak code. [\#640](https://github.com/overtrue/wechat/pull/640) ([mingyoung](https://github.com/mingyoung)) +- modify oauth property [\#639](https://github.com/overtrue/wechat/pull/639) ([jekst](https://github.com/jekst)) +- Apply fixes from StyleCI [\#635](https://github.com/overtrue/wechat/pull/635) ([overtrue](https://github.com/overtrue)) +- ✨ Blacklist. [\#634](https://github.com/overtrue/wechat/pull/634) ([mingyoung](https://github.com/mingyoung)) +- 🔨 Refactoring for mini-program. [\#632](https://github.com/overtrue/wechat/pull/632) ([mingyoung](https://github.com/mingyoung)) + +## [3.2.7](https://github.com/overtrue/wechat/tree/3.2.7) (2017-03-31) +[Full Changelog](https://github.com/overtrue/wechat/compare/3.2.6...3.2.7) + +**Closed issues:** + +- 不管哪个公众号,只要填写 这个接口地址,都能配置或应用成功,实际上是不成功的,不到怎么找错。。 [\#611](https://github.com/overtrue/wechat/issues/611) + +**Merged pull requests:** + +- 修复一个创建卡券时的 bug, 添加获取微信门店类目表的api [\#631](https://github.com/overtrue/wechat/pull/631) ([Hexor](https://github.com/Hexor)) + +## [3.2.6](https://github.com/overtrue/wechat/tree/3.2.6) (2017-03-31) +[Full Changelog](https://github.com/overtrue/wechat/compare/3.2.5...3.2.6) + +**Closed issues:** + +- 我想大量发模板消息,但send每次都等待返回太慢,有啥解决办法吗? [\#630](https://github.com/overtrue/wechat/issues/630) +- 3.2开放平台缺少authorizer\_token和authorization [\#629](https://github.com/overtrue/wechat/issues/629) +- 微信开发平台接受消息报Invalid request signature bug [\#625](https://github.com/overtrue/wechat/issues/625) +- 图文上传thumb\_media\_id 返回 {"errcode":40007,"errmsg":"invalid media\_id hint: \[\]"} [\#622](https://github.com/overtrue/wechat/issues/622) +- Encryptor基类hack导致小程序的sessionKey base64\_decode失败 [\#614](https://github.com/overtrue/wechat/issues/614) +- 是否有 2.1 升级到最新版的方案? [\#609](https://github.com/overtrue/wechat/issues/609) +- laravel5.3 安装 "overtrue/wechat:~3.1 失败 [\#607](https://github.com/overtrue/wechat/issues/607) +- overtrue/wechat和phpdoc包依赖冲突。 [\#605](https://github.com/overtrue/wechat/issues/605) +- \[bug\]2个问题 [\#597](https://github.com/overtrue/wechat/issues/597) +- 微信第三方平台开发是否只做了一部分? [\#594](https://github.com/overtrue/wechat/issues/594) +- \[4.0\] ServiceProvider 移动到各自模块里 [\#588](https://github.com/overtrue/wechat/issues/588) +- Cannot use EasyWeChat\OpenPlatform\Traits\VerifyTicket as VerifyTicket because the name is already in use [\#579](https://github.com/overtrue/wechat/issues/579) +- 授权state值怎么设置 [\#573](https://github.com/overtrue/wechat/issues/573) +- mini\_app get jscode problem, report appid & secret value is null [\#569](https://github.com/overtrue/wechat/issues/569) +- 小程序生成二维码问题 [\#568](https://github.com/overtrue/wechat/issues/568) + +**Merged pull requests:** + +- Update OpenPlatform AppId [\#624](https://github.com/overtrue/wechat/pull/624) ([jeftom](https://github.com/jeftom)) +- Apply fixes from StyleCI [\#621](https://github.com/overtrue/wechat/pull/621) ([overtrue](https://github.com/overtrue)) +- Apply fixes from StyleCI [\#618](https://github.com/overtrue/wechat/pull/618) ([overtrue](https://github.com/overtrue)) +- Compatible with php5.5 [\#617](https://github.com/overtrue/wechat/pull/617) ([mingyoung](https://github.com/mingyoung)) +- Make the testcase works. [\#616](https://github.com/overtrue/wechat/pull/616) ([mingyoung](https://github.com/mingyoung)) +- Fix mini-program decryptor [\#615](https://github.com/overtrue/wechat/pull/615) ([mingyoung](https://github.com/mingyoung)) +- Missing message handling [\#613](https://github.com/overtrue/wechat/pull/613) ([mingyoung](https://github.com/mingyoung)) +- Apply fixes from StyleCI [\#612](https://github.com/overtrue/wechat/pull/612) ([overtrue](https://github.com/overtrue)) +- 添加卡券创建二维码接口 [\#608](https://github.com/overtrue/wechat/pull/608) ([forecho](https://github.com/forecho)) +- 开放平台大幅重构并且添加测试 [\#606](https://github.com/overtrue/wechat/pull/606) ([tsunamilx](https://github.com/tsunamilx)) +- Update MessageBuilder.php [\#603](https://github.com/overtrue/wechat/pull/603) ([U2Fsd](https://github.com/U2Fsd)) +- 生成 js添加到卡包接口 增加fixed\_begintimestamp、outer\_str字段 [\#602](https://github.com/overtrue/wechat/pull/602) ([gychg](https://github.com/gychg)) +- tests for speed [\#600](https://github.com/overtrue/wechat/pull/600) ([mingyoung](https://github.com/mingyoung)) +- Update test files [\#599](https://github.com/overtrue/wechat/pull/599) ([mingyoung](https://github.com/mingyoung)) +- 允许自定义ticket缓存key [\#598](https://github.com/overtrue/wechat/pull/598) ([XiaoLer](https://github.com/XiaoLer)) +- delete top color [\#595](https://github.com/overtrue/wechat/pull/595) ([HanSon](https://github.com/HanSon)) +- Add payment scan notify handler [\#593](https://github.com/overtrue/wechat/pull/593) ([acgrid](https://github.com/acgrid)) +- Apply fixes from StyleCI [\#591](https://github.com/overtrue/wechat/pull/591) ([overtrue](https://github.com/overtrue)) +- Upgrade packages version to 4.0 [\#590](https://github.com/overtrue/wechat/pull/590) ([reatang](https://github.com/reatang)) +- Move providers to module dir. \#588 [\#589](https://github.com/overtrue/wechat/pull/589) ([overtrue](https://github.com/overtrue)) +- 把OpenPlatform中的组件依赖解耦 [\#581](https://github.com/overtrue/wechat/pull/581) ([reatang](https://github.com/reatang)) + +## [3.2.5](https://github.com/overtrue/wechat/tree/3.2.5) (2017-02-04) +[Full Changelog](https://github.com/overtrue/wechat/compare/3.2.4...3.2.5) + +**Merged pull requests:** + +- fix naming [\#580](https://github.com/overtrue/wechat/pull/580) ([mingyoung](https://github.com/mingyoung)) +- Allow client code configure its own GuzzleHTTP handler [\#578](https://github.com/overtrue/wechat/pull/578) ([acgrid](https://github.com/acgrid)) + +## [3.2.4](https://github.com/overtrue/wechat/tree/3.2.4) (2017-01-24) +[Full Changelog](https://github.com/overtrue/wechat/compare/3.2.3...3.2.4) + +**Closed issues:** + +- 如何在其他框架下使用$app-\>payment-\>handleNotify [\#574](https://github.com/overtrue/wechat/issues/574) +- 前后端分离单页下获取的config,认证失败 [\#565](https://github.com/overtrue/wechat/issues/565) +- 支付签名错误 [\#563](https://github.com/overtrue/wechat/issues/563) + +**Merged pull requests:** + +- Update Authorizer.php [\#577](https://github.com/overtrue/wechat/pull/577) ([ww380459000](https://github.com/ww380459000)) +- 补全通用卡接口 [\#575](https://github.com/overtrue/wechat/pull/575) ([XiaoLer](https://github.com/XiaoLer)) +- require ext-SimpleXML [\#572](https://github.com/overtrue/wechat/pull/572) ([garveen](https://github.com/garveen)) +- fix README Contribution link [\#571](https://github.com/overtrue/wechat/pull/571) ([zhwei](https://github.com/zhwei)) +- Add user data decryption. [\#570](https://github.com/overtrue/wechat/pull/570) ([mingyoung](https://github.com/mingyoung)) +- change request parameter [\#567](https://github.com/overtrue/wechat/pull/567) ([cloudsthere](https://github.com/cloudsthere)) +- 完善小程序代码 [\#566](https://github.com/overtrue/wechat/pull/566) ([mingyoung](https://github.com/mingyoung)) +- 添加小程序支持 [\#564](https://github.com/overtrue/wechat/pull/564) ([mingyoung](https://github.com/mingyoung)) + +## [3.2.3](https://github.com/overtrue/wechat/tree/3.2.3) (2017-01-04) +[Full Changelog](https://github.com/overtrue/wechat/compare/3.2.2...3.2.3) + +**Closed issues:** + +- 文档里的自定义菜单中,group\_id是否为tag\_id的误写? [\#561](https://github.com/overtrue/wechat/issues/561) +- Open Platform有简明的使用文档吗?3ks [\#560](https://github.com/overtrue/wechat/issues/560) +- 刷新access\_token有效期,未发现有相关的封装 [\#540](https://github.com/overtrue/wechat/issues/540) + +**Merged pull requests:** + +- Update Card.php [\#562](https://github.com/overtrue/wechat/pull/562) ([XiaoLer](https://github.com/XiaoLer)) +- Apply fixes from StyleCI [\#559](https://github.com/overtrue/wechat/pull/559) ([overtrue](https://github.com/overtrue)) +- Update API.php [\#558](https://github.com/overtrue/wechat/pull/558) ([drogjh](https://github.com/drogjh)) +- optimized code [\#557](https://github.com/overtrue/wechat/pull/557) ([mingyoung](https://github.com/mingyoung)) + +## [3.2.2](https://github.com/overtrue/wechat/tree/3.2.2) (2016-12-27) +[Full Changelog](https://github.com/overtrue/wechat/compare/3.2.1...3.2.2) + +**Closed issues:** + +- How to get authorize url? [\#555](https://github.com/overtrue/wechat/issues/555) + +**Merged pull requests:** + +- fixed downloadBill method result [\#556](https://github.com/overtrue/wechat/pull/556) ([hidehalo](https://github.com/hidehalo)) +- add config:log.permission for monolog [\#554](https://github.com/overtrue/wechat/pull/554) ([woshizoufeng](https://github.com/woshizoufeng)) +- Improve open platform support. [\#553](https://github.com/overtrue/wechat/pull/553) ([mingyoung](https://github.com/mingyoung)) +- Improve. [\#552](https://github.com/overtrue/wechat/pull/552) ([mingyoung](https://github.com/mingyoung)) +- add $forceRefresh param to js-\>ticket\(\) method [\#551](https://github.com/overtrue/wechat/pull/551) ([leo108](https://github.com/leo108)) + +## [3.2.1](https://github.com/overtrue/wechat/tree/3.2.1) (2016-12-20) +[Full Changelog](https://github.com/overtrue/wechat/compare/3.2.0...3.2.1) + +**Merged pull requests:** + +- 增加小程序用jscode获取用户信息的接口 [\#550](https://github.com/overtrue/wechat/pull/550) ([soone](https://github.com/soone)) + +## [3.2.0](https://github.com/overtrue/wechat/tree/3.2.0) (2016-12-19) +[Full Changelog](https://github.com/overtrue/wechat/compare/3.1.9...3.2.0) + +**Closed issues:** + +- 喵喵喵 [\#545](https://github.com/overtrue/wechat/issues/545) +- HttpException with uploadArticle API [\#544](https://github.com/overtrue/wechat/issues/544) +- 是否有接入小程序的计划 [\#543](https://github.com/overtrue/wechat/issues/543) +- "Call to undefined method Overtrue\Socialite\Providers\WeChat Provider::driver\(\) [\#536](https://github.com/overtrue/wechat/issues/536) +- 服务端Server模块回复音乐消息出错 [\#533](https://github.com/overtrue/wechat/issues/533) +- 用户授权出现The key "access\_token" could not be empty [\#527](https://github.com/overtrue/wechat/issues/527) + +**Merged pull requests:** + +- Apply fixes from StyleCI [\#549](https://github.com/overtrue/wechat/pull/549) ([overtrue](https://github.com/overtrue)) +- 添加摇一摇周边模块 [\#548](https://github.com/overtrue/wechat/pull/548) ([allen05ren](https://github.com/allen05ren)) +- Make some compatible. [\#542](https://github.com/overtrue/wechat/pull/542) ([mingyoung](https://github.com/mingyoung)) +- Apply fixes from StyleCI [\#541](https://github.com/overtrue/wechat/pull/541) ([overtrue](https://github.com/overtrue)) +- 改变了http 中 json 方法的接口, 从而支持 添加 添加 query参数 [\#539](https://github.com/overtrue/wechat/pull/539) ([shoaly](https://github.com/shoaly)) +- 提交 [\#537](https://github.com/overtrue/wechat/pull/537) ([shoaly](https://github.com/shoaly)) +- Apply fixes from StyleCI [\#535](https://github.com/overtrue/wechat/pull/535) ([overtrue](https://github.com/overtrue)) + +## [3.1.9](https://github.com/overtrue/wechat/tree/3.1.9) (2016-12-01) +[Full Changelog](https://github.com/overtrue/wechat/compare/3.1.8...3.1.9) + +**Closed issues:** + +- 还是不懂怎么获取unionid [\#531](https://github.com/overtrue/wechat/issues/531) +- Scope 参数错误或没有 Scope 权限 [\#528](https://github.com/overtrue/wechat/issues/528) +- $\_SERVER\['SERVER\_ADDR'\] 在mac php7中获取不到 [\#520](https://github.com/overtrue/wechat/issues/520) +- 能否永久素材其他类型封装个download方法,跟临时一样 [\#505](https://github.com/overtrue/wechat/issues/505) +- V3.1 JSSDK使用疑惑 [\#503](https://github.com/overtrue/wechat/issues/503) +- 如何加入QQ群 [\#501](https://github.com/overtrue/wechat/issues/501) +- 能否在下一个版本把企业的相关接口整合集成进去 [\#496](https://github.com/overtrue/wechat/issues/496) +- 既然使用了monolog,那么在Application::initializeLogger只使用了文件流的特定形式来记录日志是否合理? [\#494](https://github.com/overtrue/wechat/issues/494) +- configForShareAddress [\#482](https://github.com/overtrue/wechat/issues/482) +- 更新微信文章的时候MatialEasyWeChat\Material,如果设置了show\_pic\_cover和content\_source\_url不会生效 [\#470](https://github.com/overtrue/wechat/issues/470) +- 请问 SDK 是否支持授权接入的公众号接口调用? [\#438](https://github.com/overtrue/wechat/issues/438) +- 通过unionid发送信息。 [\#411](https://github.com/overtrue/wechat/issues/411) +- 【新增】设备管理 [\#77](https://github.com/overtrue/wechat/issues/77) + +**Merged pull requests:** + +- Add support wechat open platform. [\#532](https://github.com/overtrue/wechat/pull/532) ([mingyoung](https://github.com/mingyoung)) +- Applied fixes from StyleCI [\#530](https://github.com/overtrue/wechat/pull/530) ([overtrue](https://github.com/overtrue)) +- 新增硬件设备api [\#529](https://github.com/overtrue/wechat/pull/529) ([soone](https://github.com/soone)) + +## [3.1.8](https://github.com/overtrue/wechat/tree/3.1.8) (2016-11-23) +[Full Changelog](https://github.com/overtrue/wechat/compare/3.1.7...3.1.8) + +**Closed issues:** + +- SCAN 事件会出现无法提供服务 [\#525](https://github.com/overtrue/wechat/issues/525) + +## [3.1.7](https://github.com/overtrue/wechat/tree/3.1.7) (2016-10-26) +[Full Changelog](https://github.com/overtrue/wechat/compare/3.1.6...3.1.7) + +**Closed issues:** + +- preg\_replace unicode 的兼容问题 [\#515](https://github.com/overtrue/wechat/issues/515) + +**Merged pull requests:** + +- support psr-http-message-bridge 1.0 [\#524](https://github.com/overtrue/wechat/pull/524) ([wppd](https://github.com/wppd)) +- Applied fixes from StyleCI [\#523](https://github.com/overtrue/wechat/pull/523) ([overtrue](https://github.com/overtrue)) +- for \#520 [\#522](https://github.com/overtrue/wechat/pull/522) ([jinchun](https://github.com/jinchun)) + +## [3.1.6](https://github.com/overtrue/wechat/tree/3.1.6) (2016-10-19) +[Full Changelog](https://github.com/overtrue/wechat/compare/3.1.5...3.1.6) + +**Closed issues:** + +- PHP Fatal error: Uncaught HttpException [\#517](https://github.com/overtrue/wechat/issues/517) +- 微信支付回调出错 [\#514](https://github.com/overtrue/wechat/issues/514) + +**Merged pull requests:** + +- Fix xml preg replace [\#519](https://github.com/overtrue/wechat/pull/519) ([springjk](https://github.com/springjk)) +- fix the DOC [\#518](https://github.com/overtrue/wechat/pull/518) ([ac1982](https://github.com/ac1982)) + +## [3.1.5](https://github.com/overtrue/wechat/tree/3.1.5) (2016-10-13) +[Full Changelog](https://github.com/overtrue/wechat/compare/3.1.4...3.1.5) + +**Closed issues:** + +- wechat 在 larave l5.3 使用 passport 包下无法安装 [\#513](https://github.com/overtrue/wechat/issues/513) + +**Merged pull requests:** + +- Applied fixes from StyleCI [\#512](https://github.com/overtrue/wechat/pull/512) ([overtrue](https://github.com/overtrue)) + +## [3.1.4](https://github.com/overtrue/wechat/tree/3.1.4) (2016-10-12) +[Full Changelog](https://github.com/overtrue/wechat/compare/2.1.39...3.1.4) + +**Closed issues:** + +- 微信卡券特殊票券创建之后为什么无法更新卡券信息一致提示code非法。 [\#511](https://github.com/overtrue/wechat/issues/511) +- 请添加 「退款方式」 参数 [\#509](https://github.com/overtrue/wechat/issues/509) +- 2.1.40命名空间巨变引发的重大问题\(疑似提错版本了\) [\#508](https://github.com/overtrue/wechat/issues/508) +- 卡券核销、查询建议 [\#506](https://github.com/overtrue/wechat/issues/506) +- 支付重复回调问题 [\#504](https://github.com/overtrue/wechat/issues/504) + +**Merged pull requests:** + +- Changed method doc to the right accepted param type [\#510](https://github.com/overtrue/wechat/pull/510) ([marianoasselborn](https://github.com/marianoasselborn)) +- 增加判断是否有人工客服帐号,避免出现无账号时候,头像为默认头像的情况 [\#502](https://github.com/overtrue/wechat/pull/502) ([hello2t](https://github.com/hello2t)) +- Applied fixes from StyleCI [\#500](https://github.com/overtrue/wechat/pull/500) ([overtrue](https://github.com/overtrue)) +- 为initializeLogger日志初始话函数添加判断分支 [\#499](https://github.com/overtrue/wechat/pull/499) ([403studio](https://github.com/403studio)) + +## [2.1.39](https://github.com/overtrue/wechat/tree/2.1.39) (2016-09-05) +[Full Changelog](https://github.com/overtrue/wechat/compare/2.1.41...2.1.39) + +## [2.1.41](https://github.com/overtrue/wechat/tree/2.1.41) (2016-09-05) +[Full Changelog](https://github.com/overtrue/wechat/compare/3.1.3...2.1.41) + +**Closed issues:** + +- 调用接口次数超过最大限制问题 [\#493](https://github.com/overtrue/wechat/issues/493) +- 微信退款证书报错 Unable to set private key file [\#492](https://github.com/overtrue/wechat/issues/492) +- 微信支付存在问题 [\#489](https://github.com/overtrue/wechat/issues/489) +- 预支付下单 response body 为空 [\#488](https://github.com/overtrue/wechat/issues/488) +- https check issue [\#486](https://github.com/overtrue/wechat/issues/486) + +**Merged pull requests:** + +- update composer.json [\#498](https://github.com/overtrue/wechat/pull/498) ([ac1982](https://github.com/ac1982)) +- use openssl instead of mcrypt [\#497](https://github.com/overtrue/wechat/pull/497) ([ac1982](https://github.com/ac1982)) +- 修复 with 方法带数据的问题 [\#491](https://github.com/overtrue/wechat/pull/491) ([XiaoLer](https://github.com/XiaoLer)) + +## [3.1.3](https://github.com/overtrue/wechat/tree/3.1.3) (2016-08-08) +[Full Changelog](https://github.com/overtrue/wechat/compare/3.1.2...3.1.3) + +**Closed issues:** + +- Laravel中写的最简单的例子在phpunit出错。 [\#485](https://github.com/overtrue/wechat/issues/485) +- 微信的消息回复的FromUserName和ToUserName是不是对调了 [\#484](https://github.com/overtrue/wechat/issues/484) +- 微信红包不能发给别的公众号的用户吗 [\#483](https://github.com/overtrue/wechat/issues/483) +- 用户授权登录问题 [\#481](https://github.com/overtrue/wechat/issues/481) +- cURL error 56: SSLRead\(\) return error -9806 [\#473](https://github.com/overtrue/wechat/issues/473) +- 会员卡开卡字段文档有错误 [\#471](https://github.com/overtrue/wechat/issues/471) +- Getting more done in GitHub with ZenHub [\#439](https://github.com/overtrue/wechat/issues/439) +- 微信支付下单错误 [\#376](https://github.com/overtrue/wechat/issues/376) + +**Merged pull requests:** + +- update the File class to recognize pdf file. [\#480](https://github.com/overtrue/wechat/pull/480) ([ac1982](https://github.com/ac1982)) +- update testActivateUserForm [\#478](https://github.com/overtrue/wechat/pull/478) ([wangniuniu](https://github.com/wangniuniu)) +- Scrutinizer Auto-Fixes [\#477](https://github.com/overtrue/wechat/pull/477) ([scrutinizer-auto-fixer](https://github.com/scrutinizer-auto-fixer)) +- Applied fixes from StyleCI [\#476](https://github.com/overtrue/wechat/pull/476) ([overtrue](https://github.com/overtrue)) +- Scrutinizer Auto-Fixes [\#475](https://github.com/overtrue/wechat/pull/475) ([scrutinizer-auto-fixer](https://github.com/scrutinizer-auto-fixer)) +- 开放自定义prefix和缓存键值方法 [\#474](https://github.com/overtrue/wechat/pull/474) ([XiaoLer](https://github.com/XiaoLer)) +- Applied fixes from StyleCI [\#469](https://github.com/overtrue/wechat/pull/469) ([overtrue](https://github.com/overtrue)) +- modify stats [\#468](https://github.com/overtrue/wechat/pull/468) ([wangniuniu](https://github.com/wangniuniu)) + +## [3.1.2](https://github.com/overtrue/wechat/tree/3.1.2) (2016-07-21) +[Full Changelog](https://github.com/overtrue/wechat/compare/2.1.38...3.1.2) + +**Closed issues:** + +- 素材管理中,上传图文下的上传图片,关于返回内容的差异 [\#466](https://github.com/overtrue/wechat/issues/466) +- spbill\_create\_ip参数设置 [\#461](https://github.com/overtrue/wechat/issues/461) + +**Merged pull requests:** + +- 更新获取标签下粉丝列表方法 [\#467](https://github.com/overtrue/wechat/pull/467) ([dingdayu](https://github.com/dingdayu)) +- Applied fixes from StyleCI [\#465](https://github.com/overtrue/wechat/pull/465) ([overtrue](https://github.com/overtrue)) +- card module. [\#464](https://github.com/overtrue/wechat/pull/464) ([wangniuniu](https://github.com/wangniuniu)) +- Applied fixes from StyleCI [\#463](https://github.com/overtrue/wechat/pull/463) ([overtrue](https://github.com/overtrue)) +- Scrutinizer Auto-Fixes [\#462](https://github.com/overtrue/wechat/pull/462) ([scrutinizer-auto-fixer](https://github.com/scrutinizer-auto-fixer)) + +## [2.1.38](https://github.com/overtrue/wechat/tree/2.1.38) (2016-07-16) +[Full Changelog](https://github.com/overtrue/wechat/compare/3.1.1...2.1.38) + +**Closed issues:** + +- 请问卡券管理功能整合上日程表了吗 [\#454](https://github.com/overtrue/wechat/issues/454) + +**Merged pull requests:** + +- Typo. [\#460](https://github.com/overtrue/wechat/pull/460) ([tianyong90](https://github.com/tianyong90)) +- Applied fixes from StyleCI [\#459](https://github.com/overtrue/wechat/pull/459) ([overtrue](https://github.com/overtrue)) +- add voice recognition [\#458](https://github.com/overtrue/wechat/pull/458) ([leniy](https://github.com/leniy)) +- Applied fixes from StyleCI [\#457](https://github.com/overtrue/wechat/pull/457) ([overtrue](https://github.com/overtrue)) +- Update API.php [\#456](https://github.com/overtrue/wechat/pull/456) ([marvin8212](https://github.com/marvin8212)) +- Update XML.php [\#455](https://github.com/overtrue/wechat/pull/455) ([canon4ever](https://github.com/canon4ever)) + +## [3.1.1](https://github.com/overtrue/wechat/tree/3.1.1) (2016-07-12) +[Full Changelog](https://github.com/overtrue/wechat/compare/3.1.0...3.1.1) + +**Closed issues:** + +- 拿到code=CODE&state=STATE之后怎么拿到openid? [\#452](https://github.com/overtrue/wechat/issues/452) +- 安装出错 [\#450](https://github.com/overtrue/wechat/issues/450) +- 自定义菜单接口\(新版\)出错 [\#448](https://github.com/overtrue/wechat/issues/448) +- h5上没法打开微信app授权界面 [\#447](https://github.com/overtrue/wechat/issues/447) +- 重构卡券 [\#76](https://github.com/overtrue/wechat/issues/76) + +**Merged pull requests:** + +- typos. [\#453](https://github.com/overtrue/wechat/pull/453) ([tianye](https://github.com/tianye)) +- edit readme.md [\#451](https://github.com/overtrue/wechat/pull/451) ([tianyong90](https://github.com/tianyong90)) +- Add cache driver config. [\#449](https://github.com/overtrue/wechat/pull/449) ([dingdayu](https://github.com/dingdayu)) + +## [3.1.0](https://github.com/overtrue/wechat/tree/3.1.0) (2016-06-28) +[Full Changelog](https://github.com/overtrue/wechat/compare/3.0.21...3.1.0) + +**Merged pull requests:** + +- Applied fixes from StyleCI [\#446](https://github.com/overtrue/wechat/pull/446) ([overtrue](https://github.com/overtrue)) +- New Staff API. [\#445](https://github.com/overtrue/wechat/pull/445) ([overtrue](https://github.com/overtrue)) +- 2.1 [\#444](https://github.com/overtrue/wechat/pull/444) ([dongnanyanhai](https://github.com/dongnanyanhai)) +- Fix path. [\#443](https://github.com/overtrue/wechat/pull/443) ([overtrue](https://github.com/overtrue)) + +## [3.0.21](https://github.com/overtrue/wechat/tree/3.0.21) (2016-06-17) +[Full Changelog](https://github.com/overtrue/wechat/compare/3.0.1...3.0.21) + +**Closed issues:** + +- scan出现公众号暂时无法服务的消息 [\#436](https://github.com/overtrue/wechat/issues/436) +- scan出现公众号暂时无法服务的消息 [\#435](https://github.com/overtrue/wechat/issues/435) +- 用户标签接口无法使用 [\#433](https://github.com/overtrue/wechat/issues/433) +- WeChatProvider下的getAuthUrl个人觉得应该暴露出来 [\#432](https://github.com/overtrue/wechat/issues/432) +- 支持二维码扫描进入公众号推送的SCAN事件 [\#431](https://github.com/overtrue/wechat/issues/431) +- \[3.0\] EasyWeChat\Support\XML::parse方法会将空节点解析为空数组,而不是空字符串 [\#426](https://github.com/overtrue/wechat/issues/426) +- 下载二维码, $qrcode-\>download\($ticket,$paths\); 目录参数不可加入 中文 [\#420](https://github.com/overtrue/wechat/issues/420) +- \[help want\]Is hard to change default configuration of GuzzleHttp [\#415](https://github.com/overtrue/wechat/issues/415) +- PHP7.0 curl\_setopt 设置问题 [\#413](https://github.com/overtrue/wechat/issues/413) +- 无法通知微信支付完成 [\#412](https://github.com/overtrue/wechat/issues/412) +- 如何获取用户的unionid? [\#407](https://github.com/overtrue/wechat/issues/407) +- 是否支持多框架 [\#406](https://github.com/overtrue/wechat/issues/406) +- fuckTheWeChatInvalidJSON [\#405](https://github.com/overtrue/wechat/issues/405) +- Class 'GuzzleHttp\Middleware' not found [\#404](https://github.com/overtrue/wechat/issues/404) +- 支付统一下单接口签名错误 [\#402](https://github.com/overtrue/wechat/issues/402) +- payment里没有configForJSSDKPayment方法 [\#401](https://github.com/overtrue/wechat/issues/401) +- 查询支付的地址多了一个空格,导致查询失败,去掉最后的那个空格后就好了 [\#393](https://github.com/overtrue/wechat/issues/393) +- 网页授权过不了 [\#392](https://github.com/overtrue/wechat/issues/392) +- 微信AccessToken被动更新可能会有并发更新的情况出现 [\#390](https://github.com/overtrue/wechat/issues/390) +- 临时素材下载,文件名和扩展名之间会有2个\[.\] [\#389](https://github.com/overtrue/wechat/issues/389) +- 有一个地方变量名对不上 [\#380](https://github.com/overtrue/wechat/issues/380) +- 自定义缓存 [\#379](https://github.com/overtrue/wechat/issues/379) +- https://easywechat.org/ 底部 “开始使用” url拼错 [\#378](https://github.com/overtrue/wechat/issues/378) +- 在server.php里面调用yii的model,一直报错 [\#375](https://github.com/overtrue/wechat/issues/375) +- overture/wechat 2.1.36\(客服消息转发错误\) [\#374](https://github.com/overtrue/wechat/issues/374) +- 建议支持开发模式下禁用验证 [\#373](https://github.com/overtrue/wechat/issues/373) +- https://easywechat.org/ 导航 首页 about:blank [\#370](https://github.com/overtrue/wechat/issues/370) +- laravel 下session问题 [\#369](https://github.com/overtrue/wechat/issues/369) +- 关于Access——toekn [\#368](https://github.com/overtrue/wechat/issues/368) +- 返回支付页面时报错:"access\_token" could not be empty [\#367](https://github.com/overtrue/wechat/issues/367) +- xampp下js-\>config报错 [\#366](https://github.com/overtrue/wechat/issues/366) +- 官方文档有误 [\#360](https://github.com/overtrue/wechat/issues/360) +- \[BUG\] 微信收货地址无法成功 [\#359](https://github.com/overtrue/wechat/issues/359) +- 无法获取 $message-\>ScanCodeInfo-\>ScanType 对象 [\#358](https://github.com/overtrue/wechat/issues/358) +- \[Bugs\] 项目文档首页跳转问题 [\#357](https://github.com/overtrue/wechat/issues/357) +- Business和UnifiedOrder没有定义 [\#356](https://github.com/overtrue/wechat/issues/356) +- 你的网站访问不了。。。。https://easywechat.org/ [\#352](https://github.com/overtrue/wechat/issues/352) +- 连续多次执行微信支付退款报错 [\#348](https://github.com/overtrue/wechat/issues/348) +- 客服操作 都是 -1 错误 [\#344](https://github.com/overtrue/wechat/issues/344) +- 请使用openssl 而不是不安全的mcrypt来加密 [\#342](https://github.com/overtrue/wechat/issues/342) +- 文本类型的通知消息 [\#341](https://github.com/overtrue/wechat/issues/341) +- 服务器配置https 并且 通过阿里云 https cdn之后, 会出现 https 判断语句失效 [\#338](https://github.com/overtrue/wechat/issues/338) +- 作者请问者个sdk支持企业号吗? [\#336](https://github.com/overtrue/wechat/issues/336) +- laravel 5.1引入包报错 [\#331](https://github.com/overtrue/wechat/issues/331) +- 申请退款有问题 [\#328](https://github.com/overtrue/wechat/issues/328) +- 订单相关接口bug [\#327](https://github.com/overtrue/wechat/issues/327) +- 临时素材接口无法使用 [\#319](https://github.com/overtrue/wechat/issues/319) +- 使用sendNormal\(\),sendGroup\(\)发送红包时,报Undefined index: HTTP\_CLIENT\_IP [\#316](https://github.com/overtrue/wechat/issues/316) +- v3中微信卡券功能缺失? [\#307](https://github.com/overtrue/wechat/issues/307) +- 测试 [\#305](https://github.com/overtrue/wechat/issues/305) +- \[3.0\] 永久素材上传视频无法上传问题 [\#304](https://github.com/overtrue/wechat/issues/304) +- Cannot destroy active lambda function [\#296](https://github.com/overtrue/wechat/issues/296) +- 微信支付-》企业付款也可以增加个类上去,跟企业红包类似 [\#232](https://github.com/overtrue/wechat/issues/232) + +**Merged pull requests:** + +- Applied fixes from StyleCI [\#442](https://github.com/overtrue/wechat/pull/442) ([overtrue](https://github.com/overtrue)) +- NGINX HTTPS无法签名 [\#441](https://github.com/overtrue/wechat/pull/441) ([ares333](https://github.com/ares333)) +- Develop [\#440](https://github.com/overtrue/wechat/pull/440) ([overtrue](https://github.com/overtrue)) +- Develop [\#437](https://github.com/overtrue/wechat/pull/437) ([overtrue](https://github.com/overtrue)) +- Applied fixes from StyleCI [\#434](https://github.com/overtrue/wechat/pull/434) ([overtrue](https://github.com/overtrue)) +- 修改错误提示信息,方便跟踪错误 [\#430](https://github.com/overtrue/wechat/pull/430) ([zerozh](https://github.com/zerozh)) +- Develop [\#429](https://github.com/overtrue/wechat/pull/429) ([overtrue](https://github.com/overtrue)) +- Applied fixes from StyleCI [\#428](https://github.com/overtrue/wechat/pull/428) ([overtrue](https://github.com/overtrue)) +- Applied fixes from StyleCI [\#427](https://github.com/overtrue/wechat/pull/427) ([overtrue](https://github.com/overtrue)) +- Applied fixes from StyleCI [\#425](https://github.com/overtrue/wechat/pull/425) ([overtrue](https://github.com/overtrue)) +- update annotation [\#424](https://github.com/overtrue/wechat/pull/424) ([lilocon](https://github.com/lilocon)) +- Develop [\#421](https://github.com/overtrue/wechat/pull/421) ([overtrue](https://github.com/overtrue)) +- Set default timeout. [\#419](https://github.com/overtrue/wechat/pull/419) ([overtrue](https://github.com/overtrue)) +- Develop [\#418](https://github.com/overtrue/wechat/pull/418) ([overtrue](https://github.com/overtrue)) +- Develop [\#416](https://github.com/overtrue/wechat/pull/416) ([overtrue](https://github.com/overtrue)) +- better implementation for prepare oauth callback url [\#414](https://github.com/overtrue/wechat/pull/414) ([lichunqiang](https://github.com/lichunqiang)) +- Develop [\#410](https://github.com/overtrue/wechat/pull/410) ([overtrue](https://github.com/overtrue)) +- Applied fixes from StyleCI [\#409](https://github.com/overtrue/wechat/pull/409) ([overtrue](https://github.com/overtrue)) +- 增加微信支付服务商支持 [\#408](https://github.com/overtrue/wechat/pull/408) ([takatost](https://github.com/takatost)) +- Develop [\#403](https://github.com/overtrue/wechat/pull/403) ([overtrue](https://github.com/overtrue)) +- Applied fixes from StyleCI [\#400](https://github.com/overtrue/wechat/pull/400) ([overtrue](https://github.com/overtrue)) +- Scrutinizer Auto-Fixes [\#399](https://github.com/overtrue/wechat/pull/399) ([scrutinizer-auto-fixer](https://github.com/scrutinizer-auto-fixer)) +- Develop [\#398](https://github.com/overtrue/wechat/pull/398) ([overtrue](https://github.com/overtrue)) +- Develop [\#397](https://github.com/overtrue/wechat/pull/397) ([overtrue](https://github.com/overtrue)) +- Applied fixes from StyleCI [\#396](https://github.com/overtrue/wechat/pull/396) ([overtrue](https://github.com/overtrue)) +- Typo & Improve code. [\#395](https://github.com/overtrue/wechat/pull/395) ([jinchun](https://github.com/jinchun)) +- Develop [\#394](https://github.com/overtrue/wechat/pull/394) ([overtrue](https://github.com/overtrue)) +- Bugfix close \#389 [\#391](https://github.com/overtrue/wechat/pull/391) ([overtrue](https://github.com/overtrue)) +- Update NoticeNoticeTest.php [\#388](https://github.com/overtrue/wechat/pull/388) ([xiabeifeng](https://github.com/xiabeifeng)) +- Update Notice.php [\#387](https://github.com/overtrue/wechat/pull/387) ([xiabeifeng](https://github.com/xiabeifeng)) +- Tests for \#384 [\#386](https://github.com/overtrue/wechat/pull/386) ([xiabeifeng](https://github.com/xiabeifeng)) +- Improve Notice API. [\#384](https://github.com/overtrue/wechat/pull/384) ([xiabeifeng](https://github.com/xiabeifeng)) +- 对应根 版本依赖 [\#382](https://github.com/overtrue/wechat/pull/382) ([parkshinhye](https://github.com/parkshinhye)) +- Develop [\#381](https://github.com/overtrue/wechat/pull/381) ([overtrue](https://github.com/overtrue)) +- Develop [\#377](https://github.com/overtrue/wechat/pull/377) ([overtrue](https://github.com/overtrue)) +- Fix test for \#371 [\#372](https://github.com/overtrue/wechat/pull/372) ([overtrue](https://github.com/overtrue)) +- 刷卡支付不需要notify\_url参数 [\#371](https://github.com/overtrue/wechat/pull/371) ([lilocon](https://github.com/lilocon)) +- Applied fixes from StyleCI [\#365](https://github.com/overtrue/wechat/pull/365) ([overtrue](https://github.com/overtrue)) +- Applied fixes from StyleCI [\#364](https://github.com/overtrue/wechat/pull/364) ([overtrue](https://github.com/overtrue)) +- Merge Develop [\#363](https://github.com/overtrue/wechat/pull/363) ([overtrue](https://github.com/overtrue)) +- Update composer.json [\#361](https://github.com/overtrue/wechat/pull/361) ([jaychan](https://github.com/jaychan)) +- Applied fixes from StyleCI [\#355](https://github.com/overtrue/wechat/pull/355) ([overtrue](https://github.com/overtrue)) +- \[ci skip\]fix document typo [\#354](https://github.com/overtrue/wechat/pull/354) ([lichunqiang](https://github.com/lichunqiang)) +- 自定义Logger [\#353](https://github.com/overtrue/wechat/pull/353) ([lilocon](https://github.com/lilocon)) +- Update Refund.php [\#351](https://github.com/overtrue/wechat/pull/351) ([jaring](https://github.com/jaring)) +- Applied fixes from StyleCI [\#350](https://github.com/overtrue/wechat/pull/350) ([overtrue](https://github.com/overtrue)) +- OpenSSL bugfix. [\#349](https://github.com/overtrue/wechat/pull/349) ([overtrue](https://github.com/overtrue)) +- Applied fixes from StyleCI [\#347](https://github.com/overtrue/wechat/pull/347) ([overtrue](https://github.com/overtrue)) +- Applied fixes from StyleCI [\#346](https://github.com/overtrue/wechat/pull/346) ([overtrue](https://github.com/overtrue)) +- Merge Develop [\#345](https://github.com/overtrue/wechat/pull/345) ([overtrue](https://github.com/overtrue)) +- 添加代码提示 [\#343](https://github.com/overtrue/wechat/pull/343) ([lilocon](https://github.com/lilocon)) +- Applied fixes from StyleCI [\#340](https://github.com/overtrue/wechat/pull/340) ([overtrue](https://github.com/overtrue)) +- Fix bug: Payment::downloadBill\(\) response error. [\#339](https://github.com/overtrue/wechat/pull/339) ([overtrue](https://github.com/overtrue)) +- change get\_client\_ip to get\_server\_ip [\#335](https://github.com/overtrue/wechat/pull/335) ([tianyong90](https://github.com/tianyong90)) +- Payment SSL. [\#334](https://github.com/overtrue/wechat/pull/334) ([overtrue](https://github.com/overtrue)) +- Add a helper to get correct client ip address. fixed \#316 [\#333](https://github.com/overtrue/wechat/pull/333) ([tianyong90](https://github.com/tianyong90)) +- Dependency Bugfix. overtrue/laravel-wechat\#24 [\#332](https://github.com/overtrue/wechat/pull/332) ([overtrue](https://github.com/overtrue)) +- Applied fixes from StyleCI [\#330](https://github.com/overtrue/wechat/pull/330) ([overtrue](https://github.com/overtrue)) +- Merge Develop [\#329](https://github.com/overtrue/wechat/pull/329) ([overtrue](https://github.com/overtrue)) +- Applied fixes from StyleCI [\#326](https://github.com/overtrue/wechat/pull/326) ([overtrue](https://github.com/overtrue)) +- Add order default notify\_url. [\#325](https://github.com/overtrue/wechat/pull/325) ([foreverglory](https://github.com/foreverglory)) +- Revert "Applied fixes from StyleCI" [\#323](https://github.com/overtrue/wechat/pull/323) ([overtrue](https://github.com/overtrue)) +- Applied fixes from StyleCI [\#322](https://github.com/overtrue/wechat/pull/322) ([overtrue](https://github.com/overtrue)) +- Develop [\#321](https://github.com/overtrue/wechat/pull/321) ([overtrue](https://github.com/overtrue)) +- Applied fixes from StyleCI [\#320](https://github.com/overtrue/wechat/pull/320) ([overtrue](https://github.com/overtrue)) +- 模板消息添加【 获取模板列表】和【 删除模板】接口 [\#318](https://github.com/overtrue/wechat/pull/318) ([forecho](https://github.com/forecho)) +- Applied fixes from StyleCI [\#314](https://github.com/overtrue/wechat/pull/314) ([overtrue](https://github.com/overtrue)) +- fix Temporary upload bug [\#313](https://github.com/overtrue/wechat/pull/313) ([mani95lisa](https://github.com/mani95lisa)) +- Applied fixes from StyleCI [\#312](https://github.com/overtrue/wechat/pull/312) ([overtrue](https://github.com/overtrue)) +- MerchantPay Class [\#311](https://github.com/overtrue/wechat/pull/311) ([ac1982](https://github.com/ac1982)) +- Applied fixes from StyleCI [\#309](https://github.com/overtrue/wechat/pull/309) ([overtrue](https://github.com/overtrue)) +- Merge Develop [\#308](https://github.com/overtrue/wechat/pull/308) ([overtrue](https://github.com/overtrue)) +- 删除裂变红包接口中的ip参数 [\#306](https://github.com/overtrue/wechat/pull/306) ([xjchengo](https://github.com/xjchengo)) +- fix code style and some spelling mistakes [\#303](https://github.com/overtrue/wechat/pull/303) ([jinchun](https://github.com/jinchun)) +- Merge Develop [\#302](https://github.com/overtrue/wechat/pull/302) ([overtrue](https://github.com/overtrue)) +- Add method for app payment [\#301](https://github.com/overtrue/wechat/pull/301) ([lichunqiang](https://github.com/lichunqiang)) +- Removed the return syntax [\#300](https://github.com/overtrue/wechat/pull/300) ([lichunqiang](https://github.com/lichunqiang)) +- add return tag [\#299](https://github.com/overtrue/wechat/pull/299) ([lichunqiang](https://github.com/lichunqiang)) +- Merge Develop [\#298](https://github.com/overtrue/wechat/pull/298) ([overtrue](https://github.com/overtrue)) +- Applied fixes from StyleCI [\#297](https://github.com/overtrue/wechat/pull/297) ([overtrue](https://github.com/overtrue)) +- \[ci skip\]Update .gitattributes [\#295](https://github.com/overtrue/wechat/pull/295) ([lichunqiang](https://github.com/lichunqiang)) +- Merge Develop [\#294](https://github.com/overtrue/wechat/pull/294) ([overtrue](https://github.com/overtrue)) + +## [3.0.1](https://github.com/overtrue/wechat/tree/3.0.1) (2016-02-19) +[Full Changelog](https://github.com/overtrue/wechat/compare/3.0...3.0.1) + +**Closed issues:** + +- composer 安装 3.0版本,报错如下: [\#291](https://github.com/overtrue/wechat/issues/291) +- \[3.0\] 下载永久素材时,微信返回的Content-Type不正确,导致出错。 [\#290](https://github.com/overtrue/wechat/issues/290) +- 挖个坑,自己跳 [\#147](https://github.com/overtrue/wechat/issues/147) + +**Merged pull requests:** + +- Applied fixes from StyleCI [\#293](https://github.com/overtrue/wechat/pull/293) ([overtrue](https://github.com/overtrue)) +- Merge Develop [\#292](https://github.com/overtrue/wechat/pull/292) ([overtrue](https://github.com/overtrue)) + +## [3.0](https://github.com/overtrue/wechat/tree/3.0) (2016-02-17) +[Full Changelog](https://github.com/overtrue/wechat/compare/2.1.0...3.0) + +**Implemented enhancements:** + +- MIME json 格式检查优化 [\#49](https://github.com/overtrue/wechat/issues/49) +- 获取 refresh\_token,access\_token [\#43](https://github.com/overtrue/wechat/issues/43) +- 关于API\_TOKEN\_REFRESH [\#20](https://github.com/overtrue/wechat/issues/20) + +**Closed issues:** + +- \[3.0\] 无法获取用户分组信息 [\#285](https://github.com/overtrue/wechat/issues/285) +- 新的laravel 5.2 不能兼容了 [\#284](https://github.com/overtrue/wechat/issues/284) +- \[3.0\]Message/Article类的$properties内的source\_url没有正常转换为content\_source\_url. [\#281](https://github.com/overtrue/wechat/issues/281) +- 3.0删除个性菜单失败 [\#280](https://github.com/overtrue/wechat/issues/280) +- 也许你该给一个代码贡献规范 [\#277](https://github.com/overtrue/wechat/issues/277) +- 3.0网页授权时scope为snsapi\_base得不到openid [\#276](https://github.com/overtrue/wechat/issues/276) +- wechat3.0中 有2个地方的js调用参数不一样,超哥没有提供 [\#272](https://github.com/overtrue/wechat/issues/272) +- 我想知道2.X和3.0有什么大的区别! [\#270](https://github.com/overtrue/wechat/issues/270) +- 2.1: Link 消息类型没有实现 [\#269](https://github.com/overtrue/wechat/issues/269) +- 关于模板消息换行的问题 [\#266](https://github.com/overtrue/wechat/issues/266) +- easywechat Invalid request [\#265](https://github.com/overtrue/wechat/issues/265) +- 40029不合法的oauth\_code [\#264](https://github.com/overtrue/wechat/issues/264) +- 下载素材的一个小问题 [\#263](https://github.com/overtrue/wechat/issues/263) +- \[2.1\] 微信自定义菜单结构变更导致`Menu::get\(\)` 无法读取个性化菜单 [\#262](https://github.com/overtrue/wechat/issues/262) +- payment中是不是不包含H5和JS的生成配置文件的方法了? [\#261](https://github.com/overtrue/wechat/issues/261) +- payment下prepare方法bug [\#260](https://github.com/overtrue/wechat/issues/260) +- UserServiceProvider中似乎忘记注册user.group了 [\#256](https://github.com/overtrue/wechat/issues/256) +- 2.1.X版媒体下载没有扩展名 [\#252](https://github.com/overtrue/wechat/issues/252) +- 为什么所有的子模块在自己的库都是develop分支 [\#247](https://github.com/overtrue/wechat/issues/247) +- 网页授权使用跳转的bug [\#246](https://github.com/overtrue/wechat/issues/246) +- typo of variable [\#245](https://github.com/overtrue/wechat/issues/245) +- The implementation class of ServerServiceProvider missing an important [\#244](https://github.com/overtrue/wechat/issues/244) +- \[3.0\]\[payment\] 两个可能的bug [\#235](https://github.com/overtrue/wechat/issues/235) +- 发送多图文 [\#233](https://github.com/overtrue/wechat/issues/233) +- 自定义菜单返回应该把个性化自定义菜单也一起返回 [\#231](https://github.com/overtrue/wechat/issues/231) +- 发送模板消息 CRUL 错误 [\#223](https://github.com/overtrue/wechat/issues/223) +- 客服接口暂时测到有3个bug,麻烦修复 [\#222](https://github.com/overtrue/wechat/issues/222) +- JSSDK access\_token missing [\#211](https://github.com/overtrue/wechat/issues/211) +- Js.php/ticket [\#210](https://github.com/overtrue/wechat/issues/210) +- 微信支付里有一个收货地址共享 ,超哥你这里没有,可以加一下不? [\#204](https://github.com/overtrue/wechat/issues/204) +- 小问题 [\#203](https://github.com/overtrue/wechat/issues/203) +- 网页授权 跳转 [\#202](https://github.com/overtrue/wechat/issues/202) +- access token 重复添加的问题 [\#201](https://github.com/overtrue/wechat/issues/201) +- authorize snsapi\_base 下可以获取unionid [\#198](https://github.com/overtrue/wechat/issues/198) +- 网页授权 [\#189](https://github.com/overtrue/wechat/issues/189) +- 一点建议 [\#188](https://github.com/overtrue/wechat/issues/188) +- 接口更新-新增临时素材接口变动 [\#186](https://github.com/overtrue/wechat/issues/186) +- 接入多个公众号不用id [\#185](https://github.com/overtrue/wechat/issues/185) +- \[Insight\] Files should not be executable [\#184](https://github.com/overtrue/wechat/issues/184) +- 建议不要写死Http [\#183](https://github.com/overtrue/wechat/issues/183) +- laravel4.2安装不成功 [\#182](https://github.com/overtrue/wechat/issues/182) +- 是否支持laravel4.2 [\#181](https://github.com/overtrue/wechat/issues/181) +- 微信出个性化菜单了,希望支持 [\#180](https://github.com/overtrue/wechat/issues/180) +- 3.0 composer依赖Symfony2.7。能不能支持Symfony3.0? [\#179](https://github.com/overtrue/wechat/issues/179) +- 发送链接类消息错误 [\#175](https://github.com/overtrue/wechat/issues/175) +- Throw Exception的时候 Intel server status 设置为200是不是好一些 [\#174](https://github.com/overtrue/wechat/issues/174) +- 生成临时二维码时,返回EventKey不是传递的值 [\#173](https://github.com/overtrue/wechat/issues/173) +- 关于素材获取的一个建议 [\#172](https://github.com/overtrue/wechat/issues/172) +- 能否增加微信APP支付相关方法 [\#171](https://github.com/overtrue/wechat/issues/171) +- 微信回调URL回调不到 [\#170](https://github.com/overtrue/wechat/issues/170) +- 素材管理添加永久素材返回JSON/XML内容错误 [\#169](https://github.com/overtrue/wechat/issues/169) +- \[消息的使用\] 中 \[上传素材文件\] 的文档示例貌似有误 [\#168](https://github.com/overtrue/wechat/issues/168) +- 素材管理里的download方法不是很符合sdk一站式的解决. [\#165](https://github.com/overtrue/wechat/issues/165) +- \[Wechat\]不合法的oauth\_code' in /src/Wechat/Http.php:124 [\#164](https://github.com/overtrue/wechat/issues/164) +- AccessToken Expired Error Code [\#163](https://github.com/overtrue/wechat/issues/163) +- 素材管理接口出错 [\#162](https://github.com/overtrue/wechat/issues/162) +- 两处代码php5.4才能运行 [\#158](https://github.com/overtrue/wechat/issues/158) +- extension is null when calling `download video` in wechat.media [\#157](https://github.com/overtrue/wechat/issues/157) +- Payment/UnifiedOrder does not support serialize or create by array [\#155](https://github.com/overtrue/wechat/issues/155) +- 没有找到"微信支付-\>查询订单"相关功能 [\#150](https://github.com/overtrue/wechat/issues/150) +- 请教,Cache::setter中your\_custom\_set\_cache怎么使用 [\#149](https://github.com/overtrue/wechat/issues/149) +- 发生异常时, 希望能把发送和接收的原始数据记录下来. [\#148](https://github.com/overtrue/wechat/issues/148) +- 发送红包,证书错误 [\#144](https://github.com/overtrue/wechat/issues/144) +- 发视频消息总返回 -1 [\#143](https://github.com/overtrue/wechat/issues/143) +- 关于PHP版本 [\#141](https://github.com/overtrue/wechat/issues/141) +- Server消息回复必须以事件方式吗? [\#140](https://github.com/overtrue/wechat/issues/140) +- 微信支付相关文档细化 [\#138](https://github.com/overtrue/wechat/issues/138) +- 好奇地问个问题,这项目的测试用例放在哪? [\#135](https://github.com/overtrue/wechat/issues/135) +- 试了两次,真的不会用 [\#134](https://github.com/overtrue/wechat/issues/134) +- 不知道这算不算是个BUG [\#133](https://github.com/overtrue/wechat/issues/133) +- 微信小店 [\#130](https://github.com/overtrue/wechat/issues/130) +- 多次遇到 accesstoken 无效的问题 [\#129](https://github.com/overtrue/wechat/issues/129) +- MCH\_KEY 微信支付 [\#128](https://github.com/overtrue/wechat/issues/128) +- 使用flightphp框架,验证URL的时候,在Apache下接入成功,在Nginx接入失败 [\#126](https://github.com/overtrue/wechat/issues/126) +- 好东西!可惜没有我需要的微信红包 [\#125](https://github.com/overtrue/wechat/issues/125) +- Cache存储部件可定制 [\#120](https://github.com/overtrue/wechat/issues/120) +- 关于Bag [\#119](https://github.com/overtrue/wechat/issues/119) +- 将代码部署到负载均衡上如何管理access token [\#118](https://github.com/overtrue/wechat/issues/118) +- 消息接受和回复时,如果不对消息做回复,该如何做? [\#117](https://github.com/overtrue/wechat/issues/117) +- 请教一个问题 [\#116](https://github.com/overtrue/wechat/issues/116) +- 关于 Cache [\#115](https://github.com/overtrue/wechat/issues/115) +- 如何才能获取普通的access\_token [\#113](https://github.com/overtrue/wechat/issues/113) +- $HTTP\_RAW\_POST\_DATA DEPRECATED [\#111](https://github.com/overtrue/wechat/issues/111) +- App支付缺少错误码 [\#109](https://github.com/overtrue/wechat/issues/109) +- 当用户信息有 " 字符时系统出错 \(用户与用户组管理接口\) [\#107](https://github.com/overtrue/wechat/issues/107) +- 提示错误 [\#106](https://github.com/overtrue/wechat/issues/106) +- 使用企业号的时候 接入失败啊,在验证url的时候 [\#104](https://github.com/overtrue/wechat/issues/104) +- 支付签名错误 [\#101](https://github.com/overtrue/wechat/issues/101) +- 微信支付.$payment-\>getConfig\(\)调用时候\[Wechat\]系统繁忙,此时请开发者稍候再试. [\#96](https://github.com/overtrue/wechat/issues/96) +- wechat/src/Wechat/Payment/UnifiedOrder.php 小问题 [\#94](https://github.com/overtrue/wechat/issues/94) +- 请教laravel中如何在微信支付中 catch UnifiedOrder 抛出的异常? [\#93](https://github.com/overtrue/wechat/issues/93) +- 是否可以增加一个第三方接口融合功能 [\#91](https://github.com/overtrue/wechat/issues/91) +- 订单查询 [\#90](https://github.com/overtrue/wechat/issues/90) +- 如何不下载图片,通过mediaId获取图片存储的URL [\#89](https://github.com/overtrue/wechat/issues/89) +- 'Undefined index: HTTP\_HOST' [\#88](https://github.com/overtrue/wechat/issues/88) +- Undefined index: HTTP\_HOST [\#87](https://github.com/overtrue/wechat/issues/87) +- 不能上传gif格式的图片素材 [\#84](https://github.com/overtrue/wechat/issues/84) +- OAuth重构 [\#74](https://github.com/overtrue/wechat/issues/74) +- \[3.0\] Tasks [\#50](https://github.com/overtrue/wechat/issues/50) +- appId 和 appSecret不要作为各个类的构造参数 [\#114](https://github.com/overtrue/wechat/issues/114) +- 增加debug相关的选项 [\#112](https://github.com/overtrue/wechat/issues/112) +- 好像没有获取自动回复数据接口 [\#108](https://github.com/overtrue/wechat/issues/108) +- js端查看微信卡券接口 chooseCard [\#79](https://github.com/overtrue/wechat/issues/79) +- 【新增】支付 [\#78](https://github.com/overtrue/wechat/issues/78) +- 模板消息重构 [\#75](https://github.com/overtrue/wechat/issues/75) +- 素材下载自动识别MIME生成后缀 [\#54](https://github.com/overtrue/wechat/issues/54) +- \[建议\] 深度结合微信多图文与素材管理 [\#46](https://github.com/overtrue/wechat/issues/46) +- 群发功能 [\#18](https://github.com/overtrue/wechat/issues/18) + +**Merged pull requests:** + +- 3.0 [\#289](https://github.com/overtrue/wechat/pull/289) ([overtrue](https://github.com/overtrue)) +- Merge Develop [\#288](https://github.com/overtrue/wechat/pull/288) ([overtrue](https://github.com/overtrue)) +- Applied fixes from StyleCI [\#287](https://github.com/overtrue/wechat/pull/287) ([overtrue](https://github.com/overtrue)) +- Applied fixes from StyleCI [\#286](https://github.com/overtrue/wechat/pull/286) ([overtrue](https://github.com/overtrue)) +- Fix bug in batchGet method. [\#283](https://github.com/overtrue/wechat/pull/283) ([tianyong90](https://github.com/tianyong90)) +- Typo. [\#279](https://github.com/overtrue/wechat/pull/279) ([overtrue](https://github.com/overtrue)) +- Add contribution guide. resolves \#277 [\#278](https://github.com/overtrue/wechat/pull/278) ([overtrue](https://github.com/overtrue)) +- Develop [\#274](https://github.com/overtrue/wechat/pull/274) ([overtrue](https://github.com/overtrue)) +- Applied fixes from StyleCI [\#273](https://github.com/overtrue/wechat/pull/273) ([overtrue](https://github.com/overtrue)) +- Develop [\#271](https://github.com/overtrue/wechat/pull/271) ([overtrue](https://github.com/overtrue)) +- Merge Develop [\#268](https://github.com/overtrue/wechat/pull/268) ([overtrue](https://github.com/overtrue)) +- Applied fixes from StyleCI [\#267](https://github.com/overtrue/wechat/pull/267) ([overtrue](https://github.com/overtrue)) +- Update QRCode.php [\#258](https://github.com/overtrue/wechat/pull/258) ([webshiyue](https://github.com/webshiyue)) +- Add tests for LuckyMoney. [\#255](https://github.com/overtrue/wechat/pull/255) ([tianyong90](https://github.com/tianyong90)) +- CS. [\#254](https://github.com/overtrue/wechat/pull/254) ([overtrue](https://github.com/overtrue)) +- Scrutinizer Auto-Fixes [\#253](https://github.com/overtrue/wechat/pull/253) ([scrutinizer-auto-fixer](https://github.com/scrutinizer-auto-fixer)) +- Applied fixes from StyleCI [\#251](https://github.com/overtrue/wechat/pull/251) ([overtrue](https://github.com/overtrue)) +- Applied fixes from StyleCI [\#250](https://github.com/overtrue/wechat/pull/250) ([overtrue](https://github.com/overtrue)) +- Merge Develop [\#249](https://github.com/overtrue/wechat/pull/249) ([overtrue](https://github.com/overtrue)) +- Merge Develop [\#248](https://github.com/overtrue/wechat/pull/248) ([overtrue](https://github.com/overtrue)) +- Merge from Develop [\#243](https://github.com/overtrue/wechat/pull/243) ([overtrue](https://github.com/overtrue)) +- Applied fixes from StyleCI [\#242](https://github.com/overtrue/wechat/pull/242) ([overtrue](https://github.com/overtrue)) +- Applied fixes from StyleCI [\#241](https://github.com/overtrue/wechat/pull/241) ([overtrue](https://github.com/overtrue)) +- Add Luckymoney. [\#240](https://github.com/overtrue/wechat/pull/240) ([tianyong90](https://github.com/tianyong90)) +- Applied fixes from StyleCI [\#237](https://github.com/overtrue/wechat/pull/237) ([overtrue](https://github.com/overtrue)) +- Applied fixes from StyleCI [\#234](https://github.com/overtrue/wechat/pull/234) ([overtrue](https://github.com/overtrue)) +- Multiple News Items Support [\#230](https://github.com/overtrue/wechat/pull/230) ([fanglinks](https://github.com/fanglinks)) +- Applied fixes from StyleCI [\#221](https://github.com/overtrue/wechat/pull/221) ([overtrue](https://github.com/overtrue)) +- \[3.0\]\[Bugfix\]发送图文消息缺少type [\#217](https://github.com/overtrue/wechat/pull/217) ([sunbiao0526](https://github.com/sunbiao0526)) +- fix Js.php 获取自定义cache对象 [\#215](https://github.com/overtrue/wechat/pull/215) ([sunbiao0526](https://github.com/sunbiao0526)) +- Applied fixes from StyleCI [\#197](https://github.com/overtrue/wechat/pull/197) ([overtrue](https://github.com/overtrue)) +- Add alias [\#196](https://github.com/overtrue/wechat/pull/196) ([ruchengtang](https://github.com/ruchengtang)) +- Applied fixes from StyleCI [\#195](https://github.com/overtrue/wechat/pull/195) ([overtrue](https://github.com/overtrue)) +- Applied fixes from StyleCI [\#194](https://github.com/overtrue/wechat/pull/194) ([overtrue](https://github.com/overtrue)) +- Add Broadcast. [\#193](https://github.com/overtrue/wechat/pull/193) ([ruchengtang](https://github.com/ruchengtang)) +- 微信红包类优化 [\#190](https://github.com/overtrue/wechat/pull/190) ([tianyong90](https://github.com/tianyong90)) +- Update ServerServiceProvider.php [\#187](https://github.com/overtrue/wechat/pull/187) ([ghost](https://github.com/ghost)) +- Update README\_EN.md [\#178](https://github.com/overtrue/wechat/pull/178) ([spekulatius](https://github.com/spekulatius)) +- 添加群发消息文档 [\#177](https://github.com/overtrue/wechat/pull/177) ([ruchengtang](https://github.com/ruchengtang)) +- 群发消息 [\#176](https://github.com/overtrue/wechat/pull/176) ([ruchengtang](https://github.com/ruchengtang)) +- Master [\#167](https://github.com/overtrue/wechat/pull/167) ([xiaohome](https://github.com/xiaohome)) +- 微信小店 [\#166](https://github.com/overtrue/wechat/pull/166) ([xiaohome](https://github.com/xiaohome)) +- 红包类更新 [\#161](https://github.com/overtrue/wechat/pull/161) ([overtrue](https://github.com/overtrue)) +- 加入摇一摇红包类,红包类提升至Overtrue命名空间 [\#160](https://github.com/overtrue/wechat/pull/160) ([tianyong90](https://github.com/tianyong90)) +- 2.1 [\#159](https://github.com/overtrue/wechat/pull/159) ([overtrue](https://github.com/overtrue)) +- Update QRCode.php [\#156](https://github.com/overtrue/wechat/pull/156) ([ruchengtang](https://github.com/ruchengtang)) +- 修复使用!=,来判断0 != null 的时候的一个bug [\#154](https://github.com/overtrue/wechat/pull/154) ([Liv1020](https://github.com/Liv1020)) +- 调整多客服类删除客服方法 [\#151](https://github.com/overtrue/wechat/pull/151) ([tianyong90](https://github.com/tianyong90)) +- 修复个bug [\#146](https://github.com/overtrue/wechat/pull/146) ([xiaohome](https://github.com/xiaohome)) +- Update README.md [\#142](https://github.com/overtrue/wechat/pull/142) ([parkshinhye](https://github.com/parkshinhye)) +- Fix code style to PSR-2 [\#139](https://github.com/overtrue/wechat/pull/139) ([tianyong90](https://github.com/tianyong90)) +- 加入红包工具类,支持现金和裂变红包的发送及查询 [\#137](https://github.com/overtrue/wechat/pull/137) ([tianyong90](https://github.com/tianyong90)) +- 卡券类批量获取卡券ID方法支持仅获取指定状态卡券 [\#132](https://github.com/overtrue/wechat/pull/132) ([tianyong90](https://github.com/tianyong90)) +- 添加客服 卡券回复!!! [\#124](https://github.com/overtrue/wechat/pull/124) ([parkshinhye](https://github.com/parkshinhye)) +- 调整退款类中一处异常抛出逻辑并修正单词拼写错误 [\#122](https://github.com/overtrue/wechat/pull/122) ([tianyong90](https://github.com/tianyong90)) +- 加入创建卡券货架接口 [\#121](https://github.com/overtrue/wechat/pull/121) ([tianyong90](https://github.com/tianyong90)) +- 增加退款类 [\#105](https://github.com/overtrue/wechat/pull/105) ([jaring](https://github.com/jaring)) +- 增加获取用户已领取卡券方法 [\#103](https://github.com/overtrue/wechat/pull/103) ([tenstone](https://github.com/tenstone)) +- Scrutinizer Auto-Fixes [\#100](https://github.com/overtrue/wechat/pull/100) ([scrutinizer-auto-fixer](https://github.com/scrutinizer-auto-fixer)) +- 修正二维码类中生成卡券二维码方法 [\#99](https://github.com/overtrue/wechat/pull/99) ([tianyong90](https://github.com/tianyong90)) +- 卡券接口加入添加测试白名单方法 [\#98](https://github.com/overtrue/wechat/pull/98) ([tianyong90](https://github.com/tianyong90)) +- 依样画葫芦写了一个查询订单,更改了UnifiedOrder中Http初始化 [\#95](https://github.com/overtrue/wechat/pull/95) ([jaring](https://github.com/jaring)) +- accessToken根据appId变化 [\#92](https://github.com/overtrue/wechat/pull/92) ([keepeye](https://github.com/keepeye)) +- Fix payment sign bug. [\#82](https://github.com/overtrue/wechat/pull/82) ([0i](https://github.com/0i)) +- \[wiki\] wechat payment [\#81](https://github.com/overtrue/wechat/pull/81) ([0i](https://github.com/0i)) + +## [2.1.0](https://github.com/overtrue/wechat/tree/2.1.0) (2015-08-18) +[Full Changelog](https://github.com/overtrue/wechat/compare/2.0.35...2.1.0) + +**Merged pull requests:** + +- Wechat Payment [\#80](https://github.com/overtrue/wechat/pull/80) ([0i](https://github.com/0i)) + +## [2.0.35](https://github.com/overtrue/wechat/tree/2.0.35) (2015-08-11) +[Full Changelog](https://github.com/overtrue/wechat/compare/2.0.1...2.0.35) + +**Implemented enhancements:** + +- Overtrue\Wechat\Http识别JSON的问题 [\#47](https://github.com/overtrue/wechat/issues/47) + +**Fixed bugs:** + +- 模板消息简单格式无效 [\#34](https://github.com/overtrue/wechat/issues/34) + +**Closed issues:** + +- $data是数组,title输出不了内容 [\#73](https://github.com/overtrue/wechat/issues/73) +- 回调是如何传递外部参数的? [\#72](https://github.com/overtrue/wechat/issues/72) +- 【建议】可以添加微信js的功能吗? [\#71](https://github.com/overtrue/wechat/issues/71) +- Message::make\('link'\) 无效 [\#70](https://github.com/overtrue/wechat/issues/70) +- 监听消息 返回Bad Request [\#65](https://github.com/overtrue/wechat/issues/65) +- 微信素材管理小改版,求跟上~ [\#64](https://github.com/overtrue/wechat/issues/64) +- 在新浪SAE平台上的部署问题 [\#63](https://github.com/overtrue/wechat/issues/63) +- $xmlInput = file\_get\_contents\('php://input'\);貌似在某些版本的PHP有问题还是怎的 [\#57](https://github.com/overtrue/wechat/issues/57) +- 卡券的 attachExtension 方法 [\#56](https://github.com/overtrue/wechat/issues/56) +- 网页授权$auth-\>authorize\(\) 后还需要保存access\_token吗? [\#53](https://github.com/overtrue/wechat/issues/53) +- php 5.6版本下出现错误(5.6以下版本正常) [\#51](https://github.com/overtrue/wechat/issues/51) +- 消息发送后服务器无法正确返回响应 [\#48](https://github.com/overtrue/wechat/issues/48) +- token验证失败 [\#45](https://github.com/overtrue/wechat/issues/45) +- 微信关注自动回复问题 [\#44](https://github.com/overtrue/wechat/issues/44) +- js sdk config 建议增加 beta 字段 [\#35](https://github.com/overtrue/wechat/issues/35) +- 关于Util\HTTP::encode\(\)中的urlencode\(\)/urldecode\(\)成组操作的疑问 [\#31](https://github.com/overtrue/wechat/issues/31) +- Media::updateNews\(\) 方法与微信API不一致 [\#29](https://github.com/overtrue/wechat/issues/29) +- 希望能有一个ThinkPHP的使用示例 [\#28](https://github.com/overtrue/wechat/issues/28) +- 事件消息 [\#22](https://github.com/overtrue/wechat/issues/22) +- 模板消息notice [\#21](https://github.com/overtrue/wechat/issues/21) +- 关于获取(接收)用户发送消息 [\#19](https://github.com/overtrue/wechat/issues/19) +- 微信公众号绑定的一点问题,请教。 [\#16](https://github.com/overtrue/wechat/issues/16) +- 获取素材列表错误 [\#15](https://github.com/overtrue/wechat/issues/15) + +**Merged pull requests:** + +- Scrutinizer Auto-Fixes [\#69](https://github.com/overtrue/wechat/pull/69) ([scrutinizer-auto-fixer](https://github.com/scrutinizer-auto-fixer)) +- Scrutinizer Auto-Fixes [\#68](https://github.com/overtrue/wechat/pull/68) ([scrutinizer-auto-fixer](https://github.com/scrutinizer-auto-fixer)) +- Scrutinizer Auto-Fixes [\#67](https://github.com/overtrue/wechat/pull/67) ([scrutinizer-auto-fixer](https://github.com/scrutinizer-auto-fixer)) +- Fixed StyleCI config [\#66](https://github.com/overtrue/wechat/pull/66) ([GrahamCampbell](https://github.com/GrahamCampbell)) +- 洁癖爆发了。。。 [\#62](https://github.com/overtrue/wechat/pull/62) ([TheNorthMemory](https://github.com/TheNorthMemory)) +- fix: js getUrl use Url::current\(\) [\#61](https://github.com/overtrue/wechat/pull/61) ([wdjwxh](https://github.com/wdjwxh)) +- bug-fix: add x-forwarded-host for Url::current [\#60](https://github.com/overtrue/wechat/pull/60) ([wdjwxh](https://github.com/wdjwxh)) +- Fix request method for User::batchGet\(\), should be POST with JSON. [\#59](https://github.com/overtrue/wechat/pull/59) ([acgrid](https://github.com/acgrid)) +- optimize some code [\#58](https://github.com/overtrue/wechat/pull/58) ([tabalt](https://github.com/tabalt)) +- 增加使用media id发送图文消息的功能 [\#52](https://github.com/overtrue/wechat/pull/52) ([zengohm](https://github.com/zengohm)) +- fix Staff::delete, let it works [\#42](https://github.com/overtrue/wechat/pull/42) ([TheNorthMemory](https://github.com/TheNorthMemory)) +- 支持自定义菜单类型:下发消息media\_id、跳转图文消息view\_limited [\#40](https://github.com/overtrue/wechat/pull/40) ([acgrid](https://github.com/acgrid)) +- docline comments & fix AccessToken parameter typos [\#39](https://github.com/overtrue/wechat/pull/39) ([TheNorthMemory](https://github.com/TheNorthMemory)) +- Merge from master [\#38](https://github.com/overtrue/wechat/pull/38) ([overtrue](https://github.com/overtrue)) +- 客服接口Bugfix [\#37](https://github.com/overtrue/wechat/pull/37) ([overtrue](https://github.com/overtrue)) +- fix Staff and AccessToken typos [\#36](https://github.com/overtrue/wechat/pull/36) ([TheNorthMemory](https://github.com/TheNorthMemory)) +- Update QRCode.php [\#33](https://github.com/overtrue/wechat/pull/33) ([refear99](https://github.com/refear99)) +- English Readme [\#32](https://github.com/overtrue/wechat/pull/32) ([hareluya](https://github.com/hareluya)) +- 更新图文消息方法Media::updateNews\(\)与微信API不一致 [\#30](https://github.com/overtrue/wechat/pull/30) ([acgrid](https://github.com/acgrid)) +- 代码之美在于不断修正 :\) [\#27](https://github.com/overtrue/wechat/pull/27) ([TheNorthMemory](https://github.com/TheNorthMemory)) +- the json\_encode $depth parameter was added@5.5.0 [\#26](https://github.com/overtrue/wechat/pull/26) ([TheNorthMemory](https://github.com/TheNorthMemory)) +- fix \#4 for PHP5.3 [\#25](https://github.com/overtrue/wechat/pull/25) ([TheNorthMemory](https://github.com/TheNorthMemory)) +- fix \#4 for PHP5.3 [\#23](https://github.com/overtrue/wechat/pull/23) ([TheNorthMemory](https://github.com/TheNorthMemory)) +- Update QRCode.php [\#17](https://github.com/overtrue/wechat/pull/17) ([gundanx10](https://github.com/gundanx10)) + +## [2.0.1](https://github.com/overtrue/wechat/tree/2.0.1) (2015-05-08) +[Full Changelog](https://github.com/overtrue/wechat/compare/2.0.0...2.0.1) + +**Closed issues:** + +- 2.0版本使用问题 [\#14](https://github.com/overtrue/wechat/issues/14) + +## [2.0.0](https://github.com/overtrue/wechat/tree/2.0.0) (2015-05-07) +[Full Changelog](https://github.com/overtrue/wechat/compare/1.0.1...2.0.0) + +**Closed issues:** + +- 素材管理 -- 部分图片下载失败 [\#13](https://github.com/overtrue/wechat/issues/13) +- 素材管理 -- 图片下载失败 [\#12](https://github.com/overtrue/wechat/issues/12) +- 请问这样判断Mcrypt到底准不准? [\#11](https://github.com/overtrue/wechat/issues/11) +- 好奇怪啊,开发者中心的服务器配置已经提交并验证成功了,可是message不起作用 [\#10](https://github.com/overtrue/wechat/issues/10) +- 网页授权一刷新页面就出现40029 不合法的oauth\_code [\#8](https://github.com/overtrue/wechat/issues/8) +- mcrypt\_module\_open error [\#7](https://github.com/overtrue/wechat/issues/7) +- composer update 之后报错 [\#6](https://github.com/overtrue/wechat/issues/6) +- 今天开始,授权时候一直报40029,invalid code的错误 [\#5](https://github.com/overtrue/wechat/issues/5) +- Using $this when not in object context [\#4](https://github.com/overtrue/wechat/issues/4) +- 监听事件时不区分 $target(监听所有event和message) [\#3](https://github.com/overtrue/wechat/issues/3) +- Does this support Oauth already? [\#1](https://github.com/overtrue/wechat/issues/1) + +**Merged pull requests:** + +- Fix wiki url error [\#9](https://github.com/overtrue/wechat/pull/9) ([sinoon](https://github.com/sinoon)) +- Update Bag.php [\#2](https://github.com/overtrue/wechat/pull/2) ([zerozh](https://github.com/zerozh)) + +## [1.0.1](https://github.com/overtrue/wechat/tree/1.0.1) (2015-03-19) +[Full Changelog](https://github.com/overtrue/wechat/compare/1.0...1.0.1) + +## [1.0](https://github.com/overtrue/wechat/tree/1.0) (2015-03-13) + + +\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)* \ No newline at end of file diff --git a/vendor/overtrue/wechat/CONTRIBUTING.md b/vendor/overtrue/wechat/CONTRIBUTING.md new file mode 100644 index 0000000..134204f --- /dev/null +++ b/vendor/overtrue/wechat/CONTRIBUTING.md @@ -0,0 +1,67 @@ +# Contribute + +## Introduction + +First, thank you for considering contributing to wechat! It's people like you that make the open source community such a great community! 😊 + +We welcome any type of contribution, not only code. You can help with +- **QA**: file bug reports, the more details you can give the better (e.g. screenshots with the console open) +- **Marketing**: writing blog posts, howto's, printing stickers, ... +- **Community**: presenting the project at meetups, organizing a dedicated meetup for the local community, ... +- **Code**: take a look at the [open issues](issues). Even if you can't write code, commenting on them, showing that you care about a given issue matters. It helps us triage them. +- **Money**: we welcome financial contributions in full transparency on our [open collective](https://opencollective.com/wechat). + +## Your First Contribution + +Working on your first Pull Request? You can learn how from this *free* series, [How to Contribute to an Open Source Project on GitHub](https://egghead.io/series/how-to-contribute-to-an-open-source-project-on-github). + +## Submitting code + +Any code change should be submitted as a pull request. The description should explain what the code does and give steps to execute it. The pull request should also contain tests. + +## Code review process + +The bigger the pull request, the longer it will take to review and merge. Try to break down large pull requests in smaller chunks that are easier to review and merge. +It is also always helpful to have some context for your pull request. What was the purpose? Why does it matter to you? + +## Financial contributions + +We also welcome financial contributions in full transparency on our [open collective](https://opencollective.com/wechat). +Anyone can file an expense. If the expense makes sense for the development of the community, it will be "merged" in the ledger of our open collective by the core contributors and the person who filed the expense will be reimbursed. + +## Questions + +If you have any questions, create an [issue](issue) (protip: do a quick search first to see if someone else didn't ask the same question before!). +You can also reach us at hello@wechat.opencollective.com. + +## Credits + +### Contributors + +Thank you to all the people who have already contributed to wechat! + + + +### Backers + +Thank you to all our backers! [[Become a backer](https://opencollective.com/wechat#backer)] + + + + +### Sponsors + +Thank you to all our sponsors! (please ask your company to also support this open source project by [becoming a sponsor](https://opencollective.com/wechat#sponsor)) + + + + + + + + + + + + + \ No newline at end of file diff --git a/vendor/overtrue/wechat/LICENSE b/vendor/overtrue/wechat/LICENSE new file mode 100644 index 0000000..f80ba02 --- /dev/null +++ b/vendor/overtrue/wechat/LICENSE @@ -0,0 +1,22 @@ +The MIT License (MIT) + +Copyright (c) overtrue + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + diff --git a/vendor/overtrue/wechat/README.md b/vendor/overtrue/wechat/README.md new file mode 100644 index 0000000..655787a --- /dev/null +++ b/vendor/overtrue/wechat/README.md @@ -0,0 +1,99 @@ +

EasyWeChat

+ +📦 一个 PHP 微信开发 SDK。 + +[![Test Status](https://github.com/w7corp/easywechat/workflows/Test/badge.svg)](https://github.com/w7corp/easywechat/actions) +[![Lint Status](https://github.com/w7corp/easywechat/workflows/Lint/badge.svg)](https://github.com/w7corp/easywechat/actions) +[![Latest Stable Version](https://poser.pugx.org/w7corp/easywechat/v/stable.svg)](https://packagist.org/packages/w7corp/easywechat) +[![Latest Unstable Version](https://poser.pugx.org/w7corp/easywechat/v/unstable.svg)](https://packagist.org/packages/w7corp/easywechat) +[![Total Downloads](https://poser.pugx.org/w7corp/easywechat/downloads)](https://packagist.org/packages/w7corp/easywechat) +[![License](https://poser.pugx.org/w7corp/easywechat/license)](https://packagist.org/packages/w7corp/easywechat) +[![huntr](https://cdn.huntr.dev/huntr_security_badge_mono.svg)](https://huntr.dev) + +> 📣 **公告** +> +> 为了更好的推进项目发展,保障项目更新迭代速度,EasyWeChat 正式并入微擎旗下,加上微擎团队的助力,将会为大家提供更强大更稳固更多元化的开源项目。 +> +> - 微擎与 EasyWeChat 结合,基于微擎技术资源方面的优势,将积极发展 EasyWeChat 的开源社区,将为 EasyWeChat 开源项目注入巨大活力。 +> - EasyWeChat 原作者 overtrue 将继续担任开源项目的核心开发者,继续参与项目的发展规划,共同打造更强大的开源生态社区。 +> - 项目从 6.0 版本开始将修改包名为 `w7corp/easywechat`,5.x 及以下版本不受影响。 + +> 🚨 注意:请 PR 时往 5.x 提交,感谢您的贡献! + + +## Requirement + +1. PHP >= 7.4 +2. **[Composer](https://getcomposer.org/)** +3. openssl 拓展 +4. fileinfo 拓展(素材管理模块需要用到) + +## Installation + +```shell +$ composer require "overtrue/wechat:^5.0" -vvv +``` + +## Usage + +基本使用(以服务端为例): + +```php + 'wx3cf0f39249eb0exxx', + 'secret' => 'f1c242f4f28f735d4687abb469072xxx', + 'token' => 'easywechat', + 'log' => [ + 'level' => 'debug', + 'file' => '/tmp/easywechat.log', + ], + // ... +]; + +$app = Factory::officialAccount($options); + +$server = $app->server; +$user = $app->user; + +$server->push(function($message) use ($user) { + $fromUser = $user->get($message['FromUserName']); + + return "{$fromUser->nickname} 您好!欢迎关注 overtrue!"; +}); + +$server->serve()->send(); +``` + +更多请参考 [https://www.easywechat.com/](https://www.easywechat.com/)。 + +## Documentation + +[官网](https://www.easywechat.com) · [教程](https://www.aliyundrive.com/s/6CwgtkiBqFV) · [讨论](https://github.com/w7corp/easywechat/discussions) · [微信公众平台](https://mp.weixin.qq.com/wiki) · [WeChat Official](http://admin.wechat.com/wiki) + +## Integration + +[Laravel 5 拓展包: overtrue/laravel-wechat](https://github.com/overtrue/laravel-wechat) + +## Contributors + +This project exists thanks to all the people who contribute. [[Contribute](CONTRIBUTING.md)]. + + + +## PHP 扩展包开发 + +> 想知道如何从零开始构建 PHP 扩展包? +> +> 请关注我的实战课程,我会在此课程中分享一些扩展开发经验 —— [《PHP 扩展包实战教程 - 从入门到发布》](https://learnku.com/courses/creating-package) + + +## License + +MIT + + +[![FOSSA Status](https://app.fossa.io/api/projects/git%2Bgithub.com%2Fovertrue%2Fwechat.svg?type=large)](https://app.fossa.io/projects/git%2Bgithub.com%2Fovertrue%2Fwechat?ref=badge_large) diff --git a/vendor/overtrue/wechat/SECURITY.md b/vendor/overtrue/wechat/SECURITY.md new file mode 100644 index 0000000..c03d2cf --- /dev/null +++ b/vendor/overtrue/wechat/SECURITY.md @@ -0,0 +1,21 @@ +# 更新策略 + +从最初的稳定版本开始,EasyWeChat 的每个发行分支都会得到两年的全面支持。在这期间,被报告的错误和安全问题会被修复并发布。 +在这两年的积极支持期之后,每个分支再被支持一年,只针对关键安全问题。在此期间的发布是根据需要进行的:根据报告的数量,可能有多个版本发布,也可能没有。 + +## 当前支持版本情况 + +| 版本 | 发布日期 | 积极维护更新 | 安全性修复 | +| ------- | ---------------- | -------------------- | ------------------------- | +| 6.x | 2022.02.02 | 2024.02.02 | 2025.02.02 | +| 5.x | 2020.07.27 | 2022.07.27 | 2023.07.27 | +| 4.x | 2017.12.12 | 2019.12.12 | 2020.12.12 | +| 3.x | 2016.02.19 | 2018.02.19 | 2019.02.19 | +| 2.x | 2015.05.06 | 2017.05.06 | 2018.05.06 | +| 1.x | 2015.02.13 | 2017.02.13 | 2017.02.13 | + + +## 报告安全问题 + + +如果您发现 EasyWeChat 有安全漏洞,请发送电子邮件至 anzhengchao@gmail.com。所有的安全漏洞都会得到及时的解决。 diff --git a/vendor/overtrue/wechat/composer.json b/vendor/overtrue/wechat/composer.json new file mode 100644 index 0000000..bc7b976 --- /dev/null +++ b/vendor/overtrue/wechat/composer.json @@ -0,0 +1,89 @@ +{ + "name": "overtrue/wechat", + "description": "微信SDK", + "keywords": [ + "easywechat", + "wechat", + "weixin", + "weixin-sdk", + "sdk" + ], + "license": "MIT", + "authors": [ + { + "name": "overtrue", + "email": "anzhengchao@gmail.com" + } + ], + "require": { + "php": ">=7.4", + "ext-fileinfo": "*", + "ext-openssl": "*", + "ext-simplexml": "*", + "easywechat-composer/easywechat-composer": "^1.1", + "guzzlehttp/guzzle": "^6.2 || ^7.0", + "monolog/monolog": "^1.22 || ^2.0", + "overtrue/socialite": "^3.2 || ^4.0", + "pimple/pimple": "^3.0", + "psr/simple-cache": "^1.0||^2.0||^3.0", + "symfony/cache": "^3.3 || ^4.3 || ^5.0 || ^6.0", + "symfony/event-dispatcher": "^4.3 || ^5.0 || ^6.0", + "symfony/http-foundation": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0", + "symfony/psr-http-message-bridge": "^0.3 || ^1.0 || ^2.0", + "ext-libxml": "*" + }, + "require-dev": { + "friendsofphp/php-cs-fixer": "^3.5.0", + "brainmaestro/composer-git-hooks": "^2.7", + "mikey179/vfsstream": "^1.6", + "mockery/mockery": "^1.2.3", + "phpstan/phpstan": "^0.12.0", + "phpunit/phpunit": "^9.3", + "dms/phpunit-arraysubset-asserts": "^0.2.0" + }, + "autoload": { + "psr-4": { + "EasyWeChat\\": "src/" + }, + "files": [ + "src/Kernel/Support/Helpers.php", + "src/Kernel/Helpers.php" + ] + }, + "autoload-dev": { + "psr-4": { + "EasyWeChat\\Tests\\": "tests/" + } + }, + "extra": { + "hooks": { + "pre-commit": [ + "composer test", + "composer fix-style" + ], + "pre-push": [ + "composer test", + "composer fix-style" + ] + } + }, + "scripts": { + "post-update-cmd": [ + "cghooks update" + ], + "post-merge": "composer install", + "post-install-cmd": [ + "cghooks add --ignore-lock", + "cghooks update" + ], + "phpstan": "vendor/bin/phpstan analyse", + "check-style": "vendor/bin/php-cs-fixer fix --using-cache=no --diff --config=.php-cs-fixer.dist.php --dry-run --ansi", + "fix-style": "vendor/bin/php-cs-fixer fix --using-cache=no --config=.php-cs-fixer.dist.php --ansi", + "test": "vendor/bin/phpunit --colors=always --testdox" + }, + "config": { + "allow-plugins": { + "easywechat-composer/easywechat-composer": true + } + } +} diff --git a/vendor/overtrue/wechat/src/BasicService/Application.php b/vendor/overtrue/wechat/src/BasicService/Application.php new file mode 100644 index 0000000..e4b1e8a --- /dev/null +++ b/vendor/overtrue/wechat/src/BasicService/Application.php @@ -0,0 +1,39 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\BasicService; + +use EasyWeChat\Kernel\ServiceContainer; + +/** + * Class Application. + * + * @author overtrue + * + * @property \EasyWeChat\BasicService\Jssdk\Client $jssdk + * @property \EasyWeChat\BasicService\Media\Client $media + * @property \EasyWeChat\BasicService\QrCode\Client $qrcode + * @property \EasyWeChat\BasicService\Url\Client $url + * @property \EasyWeChat\BasicService\ContentSecurity\Client $content_security + */ +class Application extends ServiceContainer +{ + /** + * @var array + */ + protected $providers = [ + Jssdk\ServiceProvider::class, + QrCode\ServiceProvider::class, + Media\ServiceProvider::class, + Url\ServiceProvider::class, + ContentSecurity\ServiceProvider::class, + ]; +} diff --git a/vendor/overtrue/wechat/src/BasicService/ContentSecurity/Client.php b/vendor/overtrue/wechat/src/BasicService/ContentSecurity/Client.php new file mode 100644 index 0000000..bad4236 --- /dev/null +++ b/vendor/overtrue/wechat/src/BasicService/ContentSecurity/Client.php @@ -0,0 +1,116 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\BasicService\ContentSecurity; + +use EasyWeChat\Kernel\BaseClient; +use EasyWeChat\Kernel\Exceptions\InvalidArgumentException; + +/** + * Class Client. + * + * @author tianyong90 <412039588@qq.com> + */ +class Client extends BaseClient +{ + /** + * Text content security check. + * + * @param string $text + * @param array $extra + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function checkText(string $text, array $extra = []) + { + $params = array_merge(['content' => $text], $extra); + + return $this->httpPostJson('wxa/msg_sec_check', $params); + } + + /** + * Image security check. + * + * @param string $path + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function checkImage(string $path) + { + return $this->httpUpload('wxa/img_sec_check', ['media' => $path]); + } + + /** + * Media security check. + * + * @param string $mediaUrl + * @param int $mediaType + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + */ + public function checkMediaAsync(string $mediaUrl, int $mediaType) + { + /* + * 1:音频;2:图片 + */ + $mediaTypes = [1, 2]; + + if (!in_array($mediaType, $mediaTypes, true)) { + throw new InvalidArgumentException('media type must be 1 or 2'); + } + + $params = [ + 'media_url' => $mediaUrl, + 'media_type' => $mediaType, + ]; + + return $this->httpPostJson('wxa/media_check_async', $params); + } + + /** + * Image security check async. + * + * @param string $mediaUrl + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function checkImageAsync(string $mediaUrl) + { + return $this->checkMediaAsync($mediaUrl, 2); + } + + /** + * Audio security check async. + * + * @param string $mediaUrl + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function checkAudioAsync(string $mediaUrl) + { + return $this->checkMediaAsync($mediaUrl, 1); + } +} diff --git a/vendor/overtrue/wechat/src/BasicService/ContentSecurity/ServiceProvider.php b/vendor/overtrue/wechat/src/BasicService/ContentSecurity/ServiceProvider.php new file mode 100644 index 0000000..3645de9 --- /dev/null +++ b/vendor/overtrue/wechat/src/BasicService/ContentSecurity/ServiceProvider.php @@ -0,0 +1,31 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\BasicService\ContentSecurity; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +/** + * Class ServiceProvider. + */ +class ServiceProvider implements ServiceProviderInterface +{ + /** + * {@inheritdoc}. + */ + public function register(Container $app) + { + $app['content_security'] = function ($app) { + return new Client($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/BasicService/Jssdk/Client.php b/vendor/overtrue/wechat/src/BasicService/Jssdk/Client.php new file mode 100644 index 0000000..0c0a2fa --- /dev/null +++ b/vendor/overtrue/wechat/src/BasicService/Jssdk/Client.php @@ -0,0 +1,223 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\BasicService\Jssdk; + +use EasyWeChat\Kernel\BaseClient; +use EasyWeChat\Kernel\Exceptions\RuntimeException; +use EasyWeChat\Kernel\Support; +use EasyWeChat\Kernel\Traits\InteractsWithCache; + +/** + * Class Client. + * + * @author overtrue + */ +class Client extends BaseClient +{ + use InteractsWithCache; + + /** + * @var string + */ + protected $ticketEndpoint = 'cgi-bin/ticket/getticket'; + + /** + * Current URI. + * + * @var string + */ + protected $url; + + /** + * Get config json for jsapi. + * + * @param array $jsApiList + * @param bool $debug + * @param bool $beta + * @param bool $json + * @param array $openTagList + * @param string|null $url + * + * @return array|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \EasyWeChat\Kernel\Exceptions\RuntimeException + * @throws \Psr\SimpleCache\InvalidArgumentException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function buildConfig(array $jsApiList, bool $debug = false, bool $beta = false, bool $json = true, array $openTagList = [], string $url = null) + { + $config = array_merge(compact('debug', 'beta', 'jsApiList', 'openTagList'), $this->configSignature($url)); + + return $json ? json_encode($config) : $config; + } + + /** + * Return jsapi config as a PHP array. + * + * @param array $apis + * @param bool $debug + * @param bool $beta + * @param array $openTagList + * @param string|null $url + * + * @return array|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \EasyWeChat\Kernel\Exceptions\RuntimeException + * @throws \Psr\SimpleCache\InvalidArgumentException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function getConfigArray(array $apis, bool $debug = false, bool $beta = false, array $openTagList = [], string $url = null) + { + return $this->buildConfig($apis, $debug, $beta, false, $openTagList, $url); + } + + /** + * Get js ticket. + * + * @param bool $refresh + * @param string $type + * + * @return array + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \EasyWeChat\Kernel\Exceptions\RuntimeException + * @throws \GuzzleHttp\Exception\GuzzleException + * @throws \Psr\SimpleCache\InvalidArgumentException + */ + public function getTicket(bool $refresh = false, string $type = 'jsapi'): array + { + $cacheKey = sprintf('easywechat.basic_service.jssdk.ticket.%s.%s', $type, $this->getAppId()); + + if (!$refresh && $this->getCache()->has($cacheKey)) { + return $this->getCache()->get($cacheKey); + } + + /** @var array $result */ + $result = $this->castResponseToType( + $this->requestRaw($this->ticketEndpoint, 'GET', ['query' => ['type' => $type]]), + 'array' + ); + + $this->getCache()->set($cacheKey, $result, $result['expires_in'] - 500); + + if (!$this->getCache()->has($cacheKey)) { + throw new RuntimeException('Failed to cache jssdk ticket.'); + } + + return $result; + } + + /** + * Build signature. + * + * @param string|null $url + * @param string|null $nonce + * @param null $timestamp + * + * @return array + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \EasyWeChat\Kernel\Exceptions\RuntimeException + * @throws \GuzzleHttp\Exception\GuzzleException + * @throws \Psr\SimpleCache\InvalidArgumentException + */ + protected function configSignature(string $url = null, string $nonce = null, $timestamp = null): array + { + $url = $url ?: $this->getUrl(); + $nonce = $nonce ?: Support\Str::quickRandom(10); + $timestamp = $timestamp ?: time(); + + return [ + 'appId' => $this->getAppId(), + 'nonceStr' => $nonce, + 'timestamp' => $timestamp, + 'url' => $url, + 'signature' => $this->getTicketSignature($this->getTicket()['ticket'], $nonce, $timestamp, $url), + ]; + } + + /** + * Sign the params. + * + * @param string $ticket + * @param string $nonce + * @param int $timestamp + * @param string $url + * + * @return string + */ + public function getTicketSignature($ticket, $nonce, $timestamp, $url): string + { + return sha1(sprintf('jsapi_ticket=%s&noncestr=%s×tamp=%s&url=%s', $ticket, $nonce, $timestamp, $url)); + } + + /** + * @return string + */ + public function dictionaryOrderSignature() + { + $params = func_get_args(); + + sort($params, SORT_STRING); + + return sha1(implode('', $params)); + } + + /** + * Set current url. + * + * @param string $url + * + * @return $this + */ + public function setUrl(string $url) + { + $this->url = $url; + + return $this; + } + + /** + * Get current url. + * + * @return string + */ + public function getUrl(): string + { + if ($this->url) { + return $this->url; + } + + return Support\current_url(); + } + + /** + * @return string + */ + protected function getAppId() + { + return $this->app['config']->get('app_id'); + } + + /** + * @return string + */ + protected function getAgentId() + { + return $this->app['config']->get('agent_id'); + } +} diff --git a/vendor/overtrue/wechat/src/BasicService/Jssdk/ServiceProvider.php b/vendor/overtrue/wechat/src/BasicService/Jssdk/ServiceProvider.php new file mode 100644 index 0000000..5581a1e --- /dev/null +++ b/vendor/overtrue/wechat/src/BasicService/Jssdk/ServiceProvider.php @@ -0,0 +1,33 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\BasicService\Jssdk; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +/** + * Class ServiceProvider. + * + * @author overtrue + */ +class ServiceProvider implements ServiceProviderInterface +{ + /** + * {@inheritdoc}. + */ + public function register(Container $app) + { + $app['jssdk'] = function ($app) { + return new Client($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/BasicService/Media/Client.php b/vendor/overtrue/wechat/src/BasicService/Media/Client.php new file mode 100644 index 0000000..73345d8 --- /dev/null +++ b/vendor/overtrue/wechat/src/BasicService/Media/Client.php @@ -0,0 +1,207 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\BasicService\Media; + +use EasyWeChat\Kernel\BaseClient; +use EasyWeChat\Kernel\Exceptions\InvalidArgumentException; +use EasyWeChat\Kernel\Http\StreamResponse; + +/** + * Class Client. + * + * @author overtrue + */ +class Client extends BaseClient +{ + /** + * Allow media type. + * + * @var array + */ + protected $allowTypes = ['image', 'voice', 'video', 'thumb']; + + /** + * Upload image. + * + * @param string $path + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function uploadImage($path) + { + return $this->upload('image', $path); + } + + /** + * Upload video. + * + * @param string $path + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function uploadVideo($path) + { + return $this->upload('video', $path); + } + + /** + * @param string $path + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function uploadVoice($path) + { + return $this->upload('voice', $path); + } + + /** + * @param string $path + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function uploadThumb($path) + { + return $this->upload('thumb', $path); + } + + /** + * Upload temporary material. + * + * @param string $type + * @param string $path + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function upload(string $type, string $path) + { + if (!file_exists($path) || !is_readable($path)) { + throw new InvalidArgumentException(sprintf("File does not exist, or the file is unreadable: '%s'", $path)); + } + + if (!in_array($type, $this->allowTypes, true)) { + throw new InvalidArgumentException(sprintf("Unsupported media type: '%s'", $type)); + } + + return $this->httpUpload('cgi-bin/media/upload', ['media' => $path], ['type' => $type]); + } + + /** + * @param string $path + * @param string $title + * @param string $description + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function uploadVideoForBroadcasting(string $path, string $title, string $description) + { + $response = $this->uploadVideo($path); + /** @var array $arrayResponse */ + $arrayResponse = $this->detectAndCastResponseToType($response, 'array'); + + if (!empty($arrayResponse['media_id'])) { + return $this->createVideoForBroadcasting($arrayResponse['media_id'], $title, $description); + } + + return $response; + } + + /** + * @param string $mediaId + * @param string $title + * @param string $description + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function createVideoForBroadcasting(string $mediaId, string $title, string $description) + { + return $this->httpPostJson('cgi-bin/media/uploadvideo', [ + 'media_id' => $mediaId, + 'title' => $title, + 'description' => $description, + ]); + } + + /** + * Fetch item from WeChat server. + * + * @param string $mediaId + * + * @return \EasyWeChat\Kernel\Http\StreamResponse|\Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function get(string $mediaId) + { + $response = $this->requestRaw('cgi-bin/media/get', 'GET', [ + 'query' => [ + 'media_id' => $mediaId, + ], + ]); + + if (false !== stripos($response->getHeaderLine('Content-disposition'), 'attachment')) { + return StreamResponse::buildFromPsrResponse($response); + } + + return $this->castResponseToType($response, $this->app['config']->get('response_type')); + } + + /** + * @param string $mediaId + * + * @return array|\EasyWeChat\Kernel\Http\Response|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function getJssdkMedia(string $mediaId) + { + $response = $this->requestRaw('cgi-bin/media/get/jssdk', 'GET', [ + 'query' => [ + 'media_id' => $mediaId, + ], + ]); + + if (false !== stripos($response->getHeaderLine('Content-disposition'), 'attachment')) { + return StreamResponse::buildFromPsrResponse($response); + } + + return $this->castResponseToType($response, $this->app['config']->get('response_type')); + } +} diff --git a/vendor/overtrue/wechat/src/BasicService/Media/ServiceProvider.php b/vendor/overtrue/wechat/src/BasicService/Media/ServiceProvider.php new file mode 100644 index 0000000..45de142 --- /dev/null +++ b/vendor/overtrue/wechat/src/BasicService/Media/ServiceProvider.php @@ -0,0 +1,44 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +/** + * ServiceProvider.php. + * + * This file is part of the wechat. + * + * (c) overtrue + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\BasicService\Media; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +/** + * Class ServiceProvider. + * + * @author overtrue + */ +class ServiceProvider implements ServiceProviderInterface +{ + /** + * {@inheritdoc}. + */ + public function register(Container $app) + { + $app['media'] = function ($app) { + return new Client($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/BasicService/QrCode/Client.php b/vendor/overtrue/wechat/src/BasicService/QrCode/Client.php new file mode 100644 index 0000000..92caeeb --- /dev/null +++ b/vendor/overtrue/wechat/src/BasicService/QrCode/Client.php @@ -0,0 +1,115 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\BasicService\QrCode; + +use EasyWeChat\Kernel\BaseClient; + +/** + * Class Client. + * + * @author overtrue + */ +class Client extends BaseClient +{ + public const DAY = 86400; + public const SCENE_MAX_VALUE = 100000; + public const SCENE_QR_CARD = 'QR_CARD'; + public const SCENE_QR_TEMPORARY = 'QR_SCENE'; + public const SCENE_QR_TEMPORARY_STR = 'QR_STR_SCENE'; + public const SCENE_QR_FOREVER = 'QR_LIMIT_SCENE'; + public const SCENE_QR_FOREVER_STR = 'QR_LIMIT_STR_SCENE'; + + /** + * Create forever QR code. + * + * @param string|int $sceneValue + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + */ + public function forever($sceneValue) + { + if (is_int($sceneValue) && $sceneValue > 0 && $sceneValue < self::SCENE_MAX_VALUE) { + $type = self::SCENE_QR_FOREVER; + $sceneKey = 'scene_id'; + } else { + $type = self::SCENE_QR_FOREVER_STR; + $sceneKey = 'scene_str'; + } + $scene = [$sceneKey => $sceneValue]; + + return $this->create($type, $scene, false); + } + + /** + * Create temporary QR code. + * + * @param string|int $sceneValue + * @param int|null $expireSeconds + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + */ + public function temporary($sceneValue, $expireSeconds = null) + { + if (is_int($sceneValue) && $sceneValue > 0) { + $type = self::SCENE_QR_TEMPORARY; + $sceneKey = 'scene_id'; + } else { + $type = self::SCENE_QR_TEMPORARY_STR; + $sceneKey = 'scene_str'; + } + $scene = [$sceneKey => $sceneValue]; + + return $this->create($type, $scene, true, $expireSeconds); + } + + /** + * Return url for ticket. + * Detail: https://mp.weixin.qq.com/wiki?t=resource/res_main&id=mp1443433542 . + * + * @param string $ticket + * + * @return string + */ + public function url($ticket) + { + return sprintf('https://mp.weixin.qq.com/cgi-bin/showqrcode?ticket=%s', urlencode($ticket)); + } + + /** + * Create a QrCode. + * + * @param string $actionName + * @param array $actionInfo + * @param bool $temporary + * @param int $expireSeconds + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + protected function create($actionName, $actionInfo, $temporary = true, $expireSeconds = null) + { + null !== $expireSeconds || $expireSeconds = 7 * self::DAY; + + $params = [ + 'action_name' => $actionName, + 'action_info' => ['scene' => $actionInfo], + ]; + + if ($temporary) { + $params['expire_seconds'] = min($expireSeconds, 30 * self::DAY); + } + + return $this->httpPostJson('cgi-bin/qrcode/create', $params); + } +} diff --git a/vendor/overtrue/wechat/src/BasicService/QrCode/ServiceProvider.php b/vendor/overtrue/wechat/src/BasicService/QrCode/ServiceProvider.php new file mode 100644 index 0000000..1638c66 --- /dev/null +++ b/vendor/overtrue/wechat/src/BasicService/QrCode/ServiceProvider.php @@ -0,0 +1,31 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\BasicService\QrCode; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +/** + * Class ServiceProvider. + */ +class ServiceProvider implements ServiceProviderInterface +{ + /** + * {@inheritdoc}. + */ + public function register(Container $app) + { + $app['qrcode'] = function ($app) { + return new Client($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/BasicService/Url/Client.php b/vendor/overtrue/wechat/src/BasicService/Url/Client.php new file mode 100644 index 0000000..0363b52 --- /dev/null +++ b/vendor/overtrue/wechat/src/BasicService/Url/Client.php @@ -0,0 +1,42 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\BasicService\Url; + +use EasyWeChat\Kernel\BaseClient; + +/** + * Class Client. + * + * @author overtrue + */ +class Client extends BaseClient +{ + /** + * Shorten the url. + * + * @param string $url + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function shorten(string $url) + { + $params = [ + 'action' => 'long2short', + 'long_url' => $url, + ]; + + return $this->httpPostJson('cgi-bin/shorturl', $params); + } +} diff --git a/vendor/overtrue/wechat/src/BasicService/Url/ServiceProvider.php b/vendor/overtrue/wechat/src/BasicService/Url/ServiceProvider.php new file mode 100644 index 0000000..6740bb8 --- /dev/null +++ b/vendor/overtrue/wechat/src/BasicService/Url/ServiceProvider.php @@ -0,0 +1,31 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\BasicService\Url; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +/** + * Class ServiceProvider. + */ +class ServiceProvider implements ServiceProviderInterface +{ + /** + * {@inheritdoc}. + */ + public function register(Container $app) + { + $app['url'] = function ($app) { + return new Client($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/Factory.php b/vendor/overtrue/wechat/src/Factory.php new file mode 100644 index 0000000..295b4ff --- /dev/null +++ b/vendor/overtrue/wechat/src/Factory.php @@ -0,0 +1,54 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat; + +/** + * Class Factory. + * + * @method static \EasyWeChat\Payment\Application payment(array $config) + * @method static \EasyWeChat\MiniProgram\Application miniProgram(array $config) + * @method static \EasyWeChat\OpenPlatform\Application openPlatform(array $config) + * @method static \EasyWeChat\OfficialAccount\Application officialAccount(array $config) + * @method static \EasyWeChat\BasicService\Application basicService(array $config) + * @method static \EasyWeChat\Work\Application work(array $config) + * @method static \EasyWeChat\OpenWork\Application openWork(array $config) + * @method static \EasyWeChat\MicroMerchant\Application microMerchant(array $config) + */ +class Factory +{ + /** + * @param string $name + * @param array $config + * + * @return \EasyWeChat\Kernel\ServiceContainer + */ + public static function make($name, array $config) + { + $namespace = Kernel\Support\Str::studly($name); + $application = "\\EasyWeChat\\{$namespace}\\Application"; + + return new $application($config); + } + + /** + * Dynamically pass methods to the application. + * + * @param string $name + * @param array $arguments + * + * @return mixed + */ + public static function __callStatic($name, $arguments) + { + return self::make($name, ...$arguments); + } +} diff --git a/vendor/overtrue/wechat/src/Kernel/AccessToken.php b/vendor/overtrue/wechat/src/Kernel/AccessToken.php new file mode 100644 index 0000000..bbf84ec --- /dev/null +++ b/vendor/overtrue/wechat/src/Kernel/AccessToken.php @@ -0,0 +1,284 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Kernel; + +use EasyWeChat\Kernel\Contracts\AccessTokenInterface; +use EasyWeChat\Kernel\Exceptions\HttpException; +use EasyWeChat\Kernel\Exceptions\InvalidArgumentException; +use EasyWeChat\Kernel\Exceptions\RuntimeException; +use EasyWeChat\Kernel\Traits\HasHttpRequests; +use EasyWeChat\Kernel\Traits\InteractsWithCache; +use Psr\Http\Message\RequestInterface; +use Psr\Http\Message\ResponseInterface; + +/** + * Class AccessToken. + * + * @author overtrue + */ +abstract class AccessToken implements AccessTokenInterface +{ + use HasHttpRequests; + use InteractsWithCache; + + /** + * @var \EasyWeChat\Kernel\ServiceContainer + */ + protected $app; + + /** + * @var string + */ + protected $requestMethod = 'GET'; + + /** + * @var string + */ + protected $endpointToGetToken; + + /** + * @var string + */ + protected $queryName; + + /** + * @var array + */ + protected $token; + + /** + * @var string + */ + protected $tokenKey = 'access_token'; + + /** + * @var string + */ + protected $cachePrefix = 'easywechat.kernel.access_token.'; + + /** + * AccessToken constructor. + * + * @param \EasyWeChat\Kernel\ServiceContainer $app + */ + public function __construct(ServiceContainer $app) + { + $this->app = $app; + } + + public function getLastToken(): array + { + return $this->token; + } + + /** + * @return array + * + * @throws \EasyWeChat\Kernel\Exceptions\HttpException + * @throws \Psr\SimpleCache\InvalidArgumentException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \EasyWeChat\Kernel\Exceptions\RuntimeException + */ + public function getRefreshedToken(): array + { + return $this->getToken(true); + } + + /** + * @param bool $refresh + * + * @return array + * + * @throws \EasyWeChat\Kernel\Exceptions\HttpException + * @throws \Psr\SimpleCache\InvalidArgumentException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \EasyWeChat\Kernel\Exceptions\RuntimeException + */ + public function getToken(bool $refresh = false): array + { + $cacheKey = $this->getCacheKey(); + $cache = $this->getCache(); + + if (!$refresh && $cache->has($cacheKey) && $result = $cache->get($cacheKey)) { + return $result; + } + + /** @var array $token */ + $token = $this->requestToken($this->getCredentials(), true); + + $this->setToken($token[$this->tokenKey], $token['expires_in'] ?? 7200); + + $this->token = $token; + + $this->app->events->dispatch(new Events\AccessTokenRefreshed($this)); + + return $token; + } + + /** + * @param string $token + * @param int $lifetime + * + * @return \EasyWeChat\Kernel\Contracts\AccessTokenInterface + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \EasyWeChat\Kernel\Exceptions\RuntimeException + * @throws \Psr\SimpleCache\InvalidArgumentException + */ + public function setToken(string $token, int $lifetime = 7200): AccessTokenInterface + { + $this->getCache()->set($this->getCacheKey(), [ + $this->tokenKey => $token, + 'expires_in' => $lifetime, + ], $lifetime); + + if (!$this->getCache()->has($this->getCacheKey())) { + throw new RuntimeException('Failed to cache access token.'); + } + + return $this; + } + + /** + * @return \EasyWeChat\Kernel\Contracts\AccessTokenInterface + * + * @throws \EasyWeChat\Kernel\Exceptions\HttpException + * @throws \Psr\SimpleCache\InvalidArgumentException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \EasyWeChat\Kernel\Exceptions\RuntimeException + */ + public function refresh(): AccessTokenInterface + { + $this->getToken(true); + + return $this; + } + + /** + * @param array $credentials + * @param bool $toArray + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\HttpException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + */ + public function requestToken(array $credentials, $toArray = false) + { + $response = $this->sendRequest($credentials); + $result = json_decode($response->getBody()->getContents(), true); + $formatted = $this->castResponseToType($response, $this->app['config']->get('response_type')); + + if (empty($result[$this->tokenKey])) { + throw new HttpException('Request access_token fail: '.json_encode($result, JSON_UNESCAPED_UNICODE), $response, $formatted); + } + + return $toArray ? $result : $formatted; + } + + /** + * @param \Psr\Http\Message\RequestInterface $request + * @param array $requestOptions + * + * @return \Psr\Http\Message\RequestInterface + * + * @throws \EasyWeChat\Kernel\Exceptions\HttpException + * @throws \Psr\SimpleCache\InvalidArgumentException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \EasyWeChat\Kernel\Exceptions\RuntimeException + */ + public function applyToRequest(RequestInterface $request, array $requestOptions = []): RequestInterface + { + parse_str($request->getUri()->getQuery(), $query); + + $query = http_build_query(array_merge($this->getQuery(), $query)); + + return $request->withUri($request->getUri()->withQuery($query)); + } + + /** + * Send http request. + * + * @param array $credentials + * + * @return ResponseInterface + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + protected function sendRequest(array $credentials): ResponseInterface + { + $options = [ + ('GET' === $this->requestMethod) ? 'query' : 'json' => $credentials, + ]; + + return $this->setHttpClient($this->app['http_client'])->request($this->getEndpoint(), $this->requestMethod, $options); + } + + /** + * @return string + */ + protected function getCacheKey() + { + return $this->cachePrefix.md5(json_encode($this->getCredentials())); + } + + /** + * The request query will be used to add to the request. + * + * @return array + * + * @throws \EasyWeChat\Kernel\Exceptions\HttpException + * @throws \Psr\SimpleCache\InvalidArgumentException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \EasyWeChat\Kernel\Exceptions\RuntimeException + */ + protected function getQuery(): array + { + return [$this->queryName ?? $this->tokenKey => $this->getToken()[$this->tokenKey]]; + } + + /** + * @return string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + */ + public function getEndpoint(): string + { + if (empty($this->endpointToGetToken)) { + throw new InvalidArgumentException('No endpoint for access token request.'); + } + + return $this->endpointToGetToken; + } + + /** + * @return string + */ + public function getTokenKey() + { + return $this->tokenKey; + } + + /** + * Credential for get token. + * + * @return array + */ + abstract protected function getCredentials(): array; +} diff --git a/vendor/overtrue/wechat/src/Kernel/BaseClient.php b/vendor/overtrue/wechat/src/Kernel/BaseClient.php new file mode 100644 index 0000000..ed02f0d --- /dev/null +++ b/vendor/overtrue/wechat/src/Kernel/BaseClient.php @@ -0,0 +1,286 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Kernel; + +use EasyWeChat\Kernel\Contracts\AccessTokenInterface; +use EasyWeChat\Kernel\Http\Response; +use EasyWeChat\Kernel\Traits\HasHttpRequests; +use GuzzleHttp\MessageFormatter; +use GuzzleHttp\Middleware; +use Psr\Http\Message\RequestInterface; +use Psr\Http\Message\ResponseInterface; +use Psr\Log\LogLevel; + +/** + * Class BaseClient. + * + * @author overtrue + */ +class BaseClient +{ + use HasHttpRequests { + request as performRequest; + } + + /** + * @var \EasyWeChat\Kernel\ServiceContainer + */ + protected $app; + /** + * @var \EasyWeChat\Kernel\Contracts\AccessTokenInterface|null + */ + protected $accessToken = null; + /** + * @var string + */ + protected $baseUri; + + /** + * BaseClient constructor. + * + * @param \EasyWeChat\Kernel\ServiceContainer $app + * @param \EasyWeChat\Kernel\Contracts\AccessTokenInterface|null $accessToken + */ + public function __construct(ServiceContainer $app, AccessTokenInterface $accessToken = null) + { + $this->app = $app; + $this->accessToken = $accessToken ?? $this->app['access_token']; + } + + /** + * GET request. + * + * @param string $url + * @param array $query + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function httpGet(string $url, array $query = []) + { + return $this->request($url, 'GET', ['query' => $query]); + } + + /** + * POST request. + * + * @param string $url + * @param array $data + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function httpPost(string $url, array $data = []) + { + return $this->request($url, 'POST', ['form_params' => $data]); + } + + /** + * JSON request. + * + * @param string $url + * @param array $data + * @param array $query + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function httpPostJson(string $url, array $data = [], array $query = []) + { + return $this->request($url, 'POST', ['query' => $query, 'json' => $data]); + } + + /** + * Upload file. + * + * @param string $url + * @param array $files + * @param array $form + * @param array $query + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function httpUpload(string $url, array $files = [], array $form = [], array $query = []) + { + $multipart = []; + $headers = []; + + if (isset($form['filename'])) { + $headers = [ + 'Content-Disposition' => 'form-data; name="media"; filename="'.$form['filename'].'"' + ]; + } + + foreach ($files as $name => $path) { + $multipart[] = [ + 'name' => $name, + 'contents' => fopen($path, 'r'), + 'headers' => $headers + ]; + } + + foreach ($form as $name => $contents) { + $multipart[] = compact('name', 'contents'); + } + + return $this->request( + $url, + 'POST', + ['query' => $query, 'multipart' => $multipart, 'connect_timeout' => 30, 'timeout' => 30, 'read_timeout' => 30] + ); + } + + /** + * @return AccessTokenInterface + */ + public function getAccessToken(): AccessTokenInterface + { + return $this->accessToken; + } + + /** + * @param \EasyWeChat\Kernel\Contracts\AccessTokenInterface $accessToken + * + * @return $this + */ + public function setAccessToken(AccessTokenInterface $accessToken) + { + $this->accessToken = $accessToken; + + return $this; + } + + /** + * @param string $url + * @param string $method + * @param array $options + * @param bool $returnRaw + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function request(string $url, string $method = 'GET', array $options = [], $returnRaw = false) + { + if (empty($this->middlewares)) { + $this->registerHttpMiddlewares(); + } + + $response = $this->performRequest($url, $method, $options); + + $this->app->events->dispatch(new Events\HttpResponseCreated($response)); + + return $returnRaw ? $response : $this->castResponseToType($response, $this->app->config->get('response_type')); + } + + /** + * @param string $url + * @param string $method + * @param array $options + * + * @return \EasyWeChat\Kernel\Http\Response + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function requestRaw(string $url, string $method = 'GET', array $options = []) + { + return Response::buildFromPsrResponse($this->request($url, $method, $options, true)); + } + + /** + * Register Guzzle middlewares. + */ + protected function registerHttpMiddlewares() + { + // retry + $this->pushMiddleware($this->retryMiddleware(), 'retry'); + // access token + $this->pushMiddleware($this->accessTokenMiddleware(), 'access_token'); + // log + $this->pushMiddleware($this->logMiddleware(), 'log'); + } + + /** + * Attache access token to request query. + * + * @return \Closure + */ + protected function accessTokenMiddleware() + { + return function (callable $handler) { + return function (RequestInterface $request, array $options) use ($handler) { + if ($this->accessToken) { + $request = $this->accessToken->applyToRequest($request, $options); + } + + return $handler($request, $options); + }; + }; + } + + /** + * Log the request. + * + * @return \Closure + */ + protected function logMiddleware() + { + $formatter = new MessageFormatter($this->app['config']['http.log_template'] ?? MessageFormatter::DEBUG); + + return Middleware::log($this->app['logger'], $formatter, LogLevel::DEBUG); + } + + /** + * Return retry middleware. + * + * @return \Closure + */ + protected function retryMiddleware() + { + return Middleware::retry( + function ( + $retries, + RequestInterface $request, + ResponseInterface $response = null + ) { + // Limit the number of retries to 2 + if ($retries < $this->app->config->get('http.max_retries', 1) && $response && $body = $response->getBody()) { + // Retry on server errors + $response = json_decode($body, true); + + if (!empty($response['errcode']) && in_array(abs($response['errcode']), [40001, 40014, 42001], true)) { + $this->accessToken->refresh(); + $this->app['logger']->debug('Retrying with refreshed access token.'); + + return true; + } + } + + return false; + }, + function () { + return abs($this->app->config->get('http.retry_delay', 500)); + } + ); + } +} diff --git a/vendor/overtrue/wechat/src/Kernel/Clauses/Clause.php b/vendor/overtrue/wechat/src/Kernel/Clauses/Clause.php new file mode 100644 index 0000000..b798f32 --- /dev/null +++ b/vendor/overtrue/wechat/src/Kernel/Clauses/Clause.php @@ -0,0 +1,75 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Kernel\Clauses; + +/** + * Class Clause. + * + * @author mingyoung + */ +class Clause +{ + /** + * @var array + */ + protected $clauses = [ + 'where' => [], + ]; + + /** + * @param mixed ...$args + * + * @return $this + */ + public function where(...$args) + { + array_push($this->clauses['where'], $args); + + return $this; + } + + /** + * @param mixed $payload + * + * @return bool + */ + public function intercepted($payload) + { + return (bool) $this->interceptWhereClause($payload); + } + + /** + * @param mixed $payload + * + * @return bool + */ + protected function interceptWhereClause($payload) + { + foreach ($this->clauses['where'] as $item) { + list($key, $value) = $item; + + if (!isset($payload[$key])) { + continue; + } + + if (is_array($value) && !in_array($payload[$key], $value)) { + return true; + } + + if (!is_array($value) && $payload[$key] !== $value) { + return true; + } + } + + return false; + } +} diff --git a/vendor/overtrue/wechat/src/Kernel/Config.php b/vendor/overtrue/wechat/src/Kernel/Config.php new file mode 100644 index 0000000..081f6fd --- /dev/null +++ b/vendor/overtrue/wechat/src/Kernel/Config.php @@ -0,0 +1,23 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Kernel; + +use EasyWeChat\Kernel\Support\Collection; + +/** + * Class Config. + * + * @author overtrue + */ +class Config extends Collection +{ +} diff --git a/vendor/overtrue/wechat/src/Kernel/Contracts/AccessTokenInterface.php b/vendor/overtrue/wechat/src/Kernel/Contracts/AccessTokenInterface.php new file mode 100644 index 0000000..56f4a4d --- /dev/null +++ b/vendor/overtrue/wechat/src/Kernel/Contracts/AccessTokenInterface.php @@ -0,0 +1,40 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Kernel\Contracts; + +use Psr\Http\Message\RequestInterface; + +/** + * Interface AuthorizerAccessToken. + * + * @author overtrue + */ +interface AccessTokenInterface +{ + /** + * @return array + */ + public function getToken(): array; + + /** + * @return \EasyWeChat\Kernel\Contracts\AccessTokenInterface + */ + public function refresh(): self; + + /** + * @param \Psr\Http\Message\RequestInterface $request + * @param array $requestOptions + * + * @return \Psr\Http\Message\RequestInterface + */ + public function applyToRequest(RequestInterface $request, array $requestOptions = []): RequestInterface; +} diff --git a/vendor/overtrue/wechat/src/Kernel/Contracts/Arrayable.php b/vendor/overtrue/wechat/src/Kernel/Contracts/Arrayable.php new file mode 100644 index 0000000..d947f8f --- /dev/null +++ b/vendor/overtrue/wechat/src/Kernel/Contracts/Arrayable.php @@ -0,0 +1,29 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Kernel\Contracts; + +use ArrayAccess; + +/** + * Interface Arrayable. + * + * @author overtrue + */ +interface Arrayable extends ArrayAccess +{ + /** + * Get the instance as an array. + * + * @return array + */ + public function toArray(); +} diff --git a/vendor/overtrue/wechat/src/Kernel/Contracts/EventHandlerInterface.php b/vendor/overtrue/wechat/src/Kernel/Contracts/EventHandlerInterface.php new file mode 100644 index 0000000..c9d116c --- /dev/null +++ b/vendor/overtrue/wechat/src/Kernel/Contracts/EventHandlerInterface.php @@ -0,0 +1,25 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Kernel\Contracts; + +/** + * Interface EventHandlerInterface. + * + * @author mingyoung + */ +interface EventHandlerInterface +{ + /** + * @param mixed $payload + */ + public function handle($payload = null); +} diff --git a/vendor/overtrue/wechat/src/Kernel/Contracts/MediaInterface.php b/vendor/overtrue/wechat/src/Kernel/Contracts/MediaInterface.php new file mode 100644 index 0000000..63768cf --- /dev/null +++ b/vendor/overtrue/wechat/src/Kernel/Contracts/MediaInterface.php @@ -0,0 +1,25 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Kernel\Contracts; + +/** + * Interface MediaInterface. + * + * @author overtrue + */ +interface MediaInterface extends MessageInterface +{ + /** + * @return string + */ + public function getMediaId(): string; +} diff --git a/vendor/overtrue/wechat/src/Kernel/Contracts/MessageInterface.php b/vendor/overtrue/wechat/src/Kernel/Contracts/MessageInterface.php new file mode 100644 index 0000000..29ddb57 --- /dev/null +++ b/vendor/overtrue/wechat/src/Kernel/Contracts/MessageInterface.php @@ -0,0 +1,35 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Kernel\Contracts; + +/** + * Interface MessageInterface. + * + * @author overtrue + */ +interface MessageInterface +{ + /** + * @return string + */ + public function getType(): string; + + /** + * @return array + */ + public function transformForJsonRequest(): array; + + /** + * @return string + */ + public function transformToXml(): string; +} diff --git a/vendor/overtrue/wechat/src/Kernel/Decorators/FinallyResult.php b/vendor/overtrue/wechat/src/Kernel/Decorators/FinallyResult.php new file mode 100644 index 0000000..e698bbf --- /dev/null +++ b/vendor/overtrue/wechat/src/Kernel/Decorators/FinallyResult.php @@ -0,0 +1,35 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Kernel\Decorators; + +/** + * Class FinallyResult. + * + * @author overtrue + */ +class FinallyResult +{ + /** + * @var mixed + */ + public $content; + + /** + * FinallyResult constructor. + * + * @param mixed $content + */ + public function __construct($content) + { + $this->content = $content; + } +} diff --git a/vendor/overtrue/wechat/src/Kernel/Decorators/TerminateResult.php b/vendor/overtrue/wechat/src/Kernel/Decorators/TerminateResult.php new file mode 100644 index 0000000..cf1042d --- /dev/null +++ b/vendor/overtrue/wechat/src/Kernel/Decorators/TerminateResult.php @@ -0,0 +1,35 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Kernel\Decorators; + +/** + * Class TerminateResult. + * + * @author overtrue + */ +class TerminateResult +{ + /** + * @var mixed + */ + public $content; + + /** + * FinallyResult constructor. + * + * @param mixed $content + */ + public function __construct($content) + { + $this->content = $content; + } +} diff --git a/vendor/overtrue/wechat/src/Kernel/Encryptor.php b/vendor/overtrue/wechat/src/Kernel/Encryptor.php new file mode 100644 index 0000000..a154809 --- /dev/null +++ b/vendor/overtrue/wechat/src/Kernel/Encryptor.php @@ -0,0 +1,219 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Kernel; + +use EasyWeChat\Kernel\Exceptions\RuntimeException; +use EasyWeChat\Kernel\Support\AES; +use EasyWeChat\Kernel\Support\XML; +use Throwable; +use function EasyWeChat\Kernel\Support\str_random; + +/** + * Class Encryptor. + * + * @author overtrue + */ +class Encryptor +{ + public const ERROR_INVALID_SIGNATURE = -40001; // Signature verification failed + public const ERROR_PARSE_XML = -40002; // Parse XML failed + public const ERROR_CALC_SIGNATURE = -40003; // Calculating the signature failed + public const ERROR_INVALID_AES_KEY = -40004; // Invalid AESKey + public const ERROR_INVALID_APP_ID = -40005; // Check AppID failed + public const ERROR_ENCRYPT_AES = -40006; // AES EncryptionInterface failed + public const ERROR_DECRYPT_AES = -40007; // AES decryption failed + public const ERROR_INVALID_XML = -40008; // Invalid XML + public const ERROR_BASE64_ENCODE = -40009; // Base64 encoding failed + public const ERROR_BASE64_DECODE = -40010; // Base64 decoding failed + public const ERROR_XML_BUILD = -40011; // XML build failed + public const ILLEGAL_BUFFER = -41003; // Illegal buffer + + /** + * App id. + * + * @var string + */ + protected $appId; + + /** + * App token. + * + * @var string + */ + protected $token; + + /** + * @var string + */ + protected $aesKey; + + /** + * Block size. + * + * @var int + */ + protected $blockSize = 32; + + /** + * Constructor. + * + * @param string $appId + * @param string|null $token + * @param string|null $aesKey + */ + public function __construct(string $appId, string $token = null, string $aesKey = null) + { + $this->appId = $appId; + $this->token = $token; + $this->aesKey = base64_decode($aesKey.'=', true); + } + + /** + * Get the app token. + * + * @return string + */ + public function getToken(): string + { + return $this->token; + } + + /** + * Encrypt the message and return XML. + * + * @param string $xml + * @param string $nonce + * @param int $timestamp + * + * @return string + * + * @throws \EasyWeChat\Kernel\Exceptions\RuntimeException + */ + public function encrypt($xml, $nonce = null, $timestamp = null): string + { + try { + $xml = $this->pkcs7Pad(str_random(16).pack('N', strlen($xml)).$xml.$this->appId, $this->blockSize); + + $encrypted = base64_encode(AES::encrypt( + $xml, + $this->aesKey, + substr($this->aesKey, 0, 16), + OPENSSL_RAW_DATA | OPENSSL_ZERO_PADDING + )); + // @codeCoverageIgnoreStart + } catch (Throwable $e) { + throw new RuntimeException($e->getMessage(), self::ERROR_ENCRYPT_AES); + } + // @codeCoverageIgnoreEnd + + !is_null($nonce) || $nonce = substr($this->appId, 0, 10); + !is_null($timestamp) || $timestamp = time(); + + $response = [ + 'Encrypt' => $encrypted, + 'MsgSignature' => $this->signature($this->token, $timestamp, $nonce, $encrypted), + 'TimeStamp' => $timestamp, + 'Nonce' => $nonce, + ]; + + //生成响应xml + return XML::build($response); + } + + /** + * Decrypt message. + * + * @param string $content + * @param string $msgSignature + * @param string $nonce + * @param string $timestamp + * + * @return string + * + * @throws \EasyWeChat\Kernel\Exceptions\RuntimeException + */ + public function decrypt($content, $msgSignature, $nonce, $timestamp): string + { + $signature = $this->signature($this->token, $timestamp, $nonce, $content); + + if ($signature !== $msgSignature) { + throw new RuntimeException('Invalid Signature.', self::ERROR_INVALID_SIGNATURE); + } + + $decrypted = AES::decrypt( + base64_decode($content, true), + $this->aesKey, + substr($this->aesKey, 0, 16), + OPENSSL_RAW_DATA | OPENSSL_ZERO_PADDING + ); + $result = $this->pkcs7Unpad($decrypted); + $content = substr($result, 16, strlen($result)); + $contentLen = unpack('N', substr($content, 0, 4))[1]; + + if (trim(substr($content, $contentLen + 4)) !== $this->appId) { + throw new RuntimeException('Invalid appId.', self::ERROR_INVALID_APP_ID); + } + + return substr($content, 4, $contentLen); + } + + /** + * Get SHA1. + * + * @return string + */ + public function signature(): string + { + $array = func_get_args(); + sort($array, SORT_STRING); + + return sha1(implode($array)); + } + + /** + * PKCS#7 pad. + * + * @param string $text + * @param int $blockSize + * + * @return string + * + * @throws \EasyWeChat\Kernel\Exceptions\RuntimeException + */ + public function pkcs7Pad(string $text, int $blockSize): string + { + if ($blockSize > 256) { + throw new RuntimeException('$blockSize may not be more than 256'); + } + $padding = $blockSize - (strlen($text) % $blockSize); + $pattern = chr($padding); + + return $text.str_repeat($pattern, $padding); + } + + /** + * PKCS#7 unpad. + * + * @param string $text + * + * @return string + */ + public function pkcs7Unpad(string $text): string + { + $pad = ord(substr($text, -1)); + if ($pad < 1 || $pad > $this->blockSize) { + $pad = 0; + } + + return substr($text, 0, (strlen($text) - $pad)); + } +} diff --git a/vendor/overtrue/wechat/src/Kernel/Events/AccessTokenRefreshed.php b/vendor/overtrue/wechat/src/Kernel/Events/AccessTokenRefreshed.php new file mode 100644 index 0000000..a829901 --- /dev/null +++ b/vendor/overtrue/wechat/src/Kernel/Events/AccessTokenRefreshed.php @@ -0,0 +1,35 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Kernel\Events; + +use EasyWeChat\Kernel\AccessToken; + +/** + * Class AccessTokenRefreshed. + * + * @author mingyoung + */ +class AccessTokenRefreshed +{ + /** + * @var \EasyWeChat\Kernel\AccessToken + */ + public $accessToken; + + /** + * @param \EasyWeChat\Kernel\AccessToken $accessToken + */ + public function __construct(AccessToken $accessToken) + { + $this->accessToken = $accessToken; + } +} diff --git a/vendor/overtrue/wechat/src/Kernel/Events/ApplicationInitialized.php b/vendor/overtrue/wechat/src/Kernel/Events/ApplicationInitialized.php new file mode 100644 index 0000000..89d67fe --- /dev/null +++ b/vendor/overtrue/wechat/src/Kernel/Events/ApplicationInitialized.php @@ -0,0 +1,35 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Kernel\Events; + +use EasyWeChat\Kernel\ServiceContainer; + +/** + * Class ApplicationInitialized. + * + * @author mingyoung + */ +class ApplicationInitialized +{ + /** + * @var \EasyWeChat\Kernel\ServiceContainer + */ + public $app; + + /** + * @param \EasyWeChat\Kernel\ServiceContainer $app + */ + public function __construct(ServiceContainer $app) + { + $this->app = $app; + } +} diff --git a/vendor/overtrue/wechat/src/Kernel/Events/HttpResponseCreated.php b/vendor/overtrue/wechat/src/Kernel/Events/HttpResponseCreated.php new file mode 100644 index 0000000..2257260 --- /dev/null +++ b/vendor/overtrue/wechat/src/Kernel/Events/HttpResponseCreated.php @@ -0,0 +1,35 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Kernel\Events; + +use Psr\Http\Message\ResponseInterface; + +/** + * Class HttpResponseCreated. + * + * @author mingyoung + */ +class HttpResponseCreated +{ + /** + * @var \Psr\Http\Message\ResponseInterface + */ + public $response; + + /** + * @param \Psr\Http\Message\ResponseInterface $response + */ + public function __construct(ResponseInterface $response) + { + $this->response = $response; + } +} diff --git a/vendor/overtrue/wechat/src/Kernel/Events/ServerGuardResponseCreated.php b/vendor/overtrue/wechat/src/Kernel/Events/ServerGuardResponseCreated.php new file mode 100644 index 0000000..3ab9925 --- /dev/null +++ b/vendor/overtrue/wechat/src/Kernel/Events/ServerGuardResponseCreated.php @@ -0,0 +1,35 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Kernel\Events; + +use Symfony\Component\HttpFoundation\Response; + +/** + * Class ServerGuardResponseCreated. + * + * @author mingyoung + */ +class ServerGuardResponseCreated +{ + /** + * @var \Symfony\Component\HttpFoundation\Response + */ + public $response; + + /** + * @param \Symfony\Component\HttpFoundation\Response $response + */ + public function __construct(Response $response) + { + $this->response = $response; + } +} diff --git a/vendor/overtrue/wechat/src/Kernel/Exceptions/BadRequestException.php b/vendor/overtrue/wechat/src/Kernel/Exceptions/BadRequestException.php new file mode 100644 index 0000000..a0b4f91 --- /dev/null +++ b/vendor/overtrue/wechat/src/Kernel/Exceptions/BadRequestException.php @@ -0,0 +1,21 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Kernel\Exceptions; + +/** + * Class BadRequestException. + * + * @author overtrue + */ +class BadRequestException extends Exception +{ +} diff --git a/vendor/overtrue/wechat/src/Kernel/Exceptions/DecryptException.php b/vendor/overtrue/wechat/src/Kernel/Exceptions/DecryptException.php new file mode 100644 index 0000000..f29acca --- /dev/null +++ b/vendor/overtrue/wechat/src/Kernel/Exceptions/DecryptException.php @@ -0,0 +1,16 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Kernel\Exceptions; + +class DecryptException extends Exception +{ +} diff --git a/vendor/overtrue/wechat/src/Kernel/Exceptions/Exception.php b/vendor/overtrue/wechat/src/Kernel/Exceptions/Exception.php new file mode 100644 index 0000000..9eba298 --- /dev/null +++ b/vendor/overtrue/wechat/src/Kernel/Exceptions/Exception.php @@ -0,0 +1,23 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Kernel\Exceptions; + +use Exception as BaseException; + +/** + * Class Exception. + * + * @author overtrue + */ +class Exception extends BaseException +{ +} diff --git a/vendor/overtrue/wechat/src/Kernel/Exceptions/HttpException.php b/vendor/overtrue/wechat/src/Kernel/Exceptions/HttpException.php new file mode 100644 index 0000000..8ab130d --- /dev/null +++ b/vendor/overtrue/wechat/src/Kernel/Exceptions/HttpException.php @@ -0,0 +1,52 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Kernel\Exceptions; + +use Psr\Http\Message\ResponseInterface; + +/** + * Class HttpException. + * + * @author overtrue + */ +class HttpException extends Exception +{ + /** + * @var \Psr\Http\Message\ResponseInterface|null + */ + public $response; + + /** + * @var \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string|null + */ + public $formattedResponse; + + /** + * HttpException constructor. + * + * @param string $message + * @param \Psr\Http\Message\ResponseInterface|null $response + * @param null $formattedResponse + * @param int|null $code + */ + public function __construct($message, ResponseInterface $response = null, $formattedResponse = null, $code = null) + { + parent::__construct($message, $code); + + $this->response = $response; + $this->formattedResponse = $formattedResponse; + + if ($response) { + $response->getBody()->rewind(); + } + } +} diff --git a/vendor/overtrue/wechat/src/Kernel/Exceptions/InvalidArgumentException.php b/vendor/overtrue/wechat/src/Kernel/Exceptions/InvalidArgumentException.php new file mode 100644 index 0000000..386a144 --- /dev/null +++ b/vendor/overtrue/wechat/src/Kernel/Exceptions/InvalidArgumentException.php @@ -0,0 +1,21 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Kernel\Exceptions; + +/** + * Class InvalidArgumentException. + * + * @author overtrue + */ +class InvalidArgumentException extends Exception +{ +} diff --git a/vendor/overtrue/wechat/src/Kernel/Exceptions/InvalidConfigException.php b/vendor/overtrue/wechat/src/Kernel/Exceptions/InvalidConfigException.php new file mode 100644 index 0000000..1e4ae2a --- /dev/null +++ b/vendor/overtrue/wechat/src/Kernel/Exceptions/InvalidConfigException.php @@ -0,0 +1,21 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Kernel\Exceptions; + +/** + * Class InvalidConfigException. + * + * @author overtrue + */ +class InvalidConfigException extends Exception +{ +} diff --git a/vendor/overtrue/wechat/src/Kernel/Exceptions/RuntimeException.php b/vendor/overtrue/wechat/src/Kernel/Exceptions/RuntimeException.php new file mode 100644 index 0000000..25f2f5b --- /dev/null +++ b/vendor/overtrue/wechat/src/Kernel/Exceptions/RuntimeException.php @@ -0,0 +1,21 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Kernel\Exceptions; + +/** + * Class RuntimeException. + * + * @author overtrue + */ +class RuntimeException extends Exception +{ +} diff --git a/vendor/overtrue/wechat/src/Kernel/Exceptions/UnboundServiceException.php b/vendor/overtrue/wechat/src/Kernel/Exceptions/UnboundServiceException.php new file mode 100644 index 0000000..78ea85c --- /dev/null +++ b/vendor/overtrue/wechat/src/Kernel/Exceptions/UnboundServiceException.php @@ -0,0 +1,21 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Kernel\Exceptions; + +/** + * Class InvalidConfigException. + * + * @author overtrue + */ +class UnboundServiceException extends Exception +{ +} diff --git a/vendor/overtrue/wechat/src/Kernel/Helpers.php b/vendor/overtrue/wechat/src/Kernel/Helpers.php new file mode 100644 index 0000000..3ea48a4 --- /dev/null +++ b/vendor/overtrue/wechat/src/Kernel/Helpers.php @@ -0,0 +1,57 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Kernel; + +use EasyWeChat\Kernel\Contracts\Arrayable; +use EasyWeChat\Kernel\Exceptions\RuntimeException; +use EasyWeChat\Kernel\Support\Arr; +use EasyWeChat\Kernel\Support\Collection; + +function data_get($data, $key, $default = null) +{ + switch (true) { + case is_array($data): + return Arr::get($data, $key, $default); + case $data instanceof Collection: + return $data->get($key, $default); + case $data instanceof Arrayable: + return Arr::get($data->toArray(), $key, $default); + case $data instanceof \ArrayIterator: + return $data->getArrayCopy()[$key] ?? $default; + case $data instanceof \ArrayAccess: + return $data[$key] ?? $default; + case $data instanceof \IteratorAggregate && $data->getIterator() instanceof \ArrayIterator: + return $data->getIterator()->getArrayCopy()[$key] ?? $default; + case is_object($data): + return $data->{$key} ?? $default; + default: + throw new RuntimeException(sprintf('Can\'t access data with key "%s"', $key)); + } +} + +function data_to_array($data) +{ + switch (true) { + case is_array($data): + return $data; + case $data instanceof Collection: + return $data->all(); + case $data instanceof Arrayable: + return $data->toArray(); + case $data instanceof \IteratorAggregate && $data->getIterator() instanceof \ArrayIterator: + return $data->getIterator()->getArrayCopy(); + case $data instanceof \ArrayIterator: + return $data->getArrayCopy(); + default: + throw new RuntimeException(sprintf('Can\'t transform data to array')); + } +} diff --git a/vendor/overtrue/wechat/src/Kernel/Http/Response.php b/vendor/overtrue/wechat/src/Kernel/Http/Response.php new file mode 100644 index 0000000..401857a --- /dev/null +++ b/vendor/overtrue/wechat/src/Kernel/Http/Response.php @@ -0,0 +1,121 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Kernel\Http; + +use EasyWeChat\Kernel\Support\Collection; +use EasyWeChat\Kernel\Support\XML; +use GuzzleHttp\Psr7\Response as GuzzleResponse; +use Psr\Http\Message\ResponseInterface; + +/** + * Class Response. + * + * @author overtrue + */ +class Response extends GuzzleResponse +{ + /** + * @return string + */ + public function getBodyContents() + { + $this->getBody()->rewind(); + $contents = $this->getBody()->getContents(); + $this->getBody()->rewind(); + + return $contents; + } + + /** + * @param \Psr\Http\Message\ResponseInterface $response + * + * @return \EasyWeChat\Kernel\Http\Response + */ + public static function buildFromPsrResponse(ResponseInterface $response) + { + return new static( + $response->getStatusCode(), + $response->getHeaders(), + $response->getBody(), + $response->getProtocolVersion(), + $response->getReasonPhrase() + ); + } + + /** + * Build to json. + * + * @return string + */ + public function toJson() + { + return json_encode($this->toArray()); + } + + /** + * Build to array. + * + * @return array + */ + public function toArray() + { + $content = $this->removeControlCharacters($this->getBodyContents()); + + if (false !== stripos($this->getHeaderLine('Content-Type'), 'xml') || 0 === stripos($content, 'toArray()); + } + + /** + * @return object + */ + public function toObject() + { + return json_decode($this->toJson()); + } + + /** + * @return bool|string + */ + public function __toString() + { + return $this->getBodyContents(); + } + + /** + * @param string $content + * + * @return string + */ + protected function removeControlCharacters(string $content) + { + return \preg_replace('/[\x00-\x1F\x80-\x9F]/u', '', \mb_convert_encoding($content, 'UTF-8', 'UTF-8')); + } +} diff --git a/vendor/overtrue/wechat/src/Kernel/Http/StreamResponse.php b/vendor/overtrue/wechat/src/Kernel/Http/StreamResponse.php new file mode 100644 index 0000000..104e8c3 --- /dev/null +++ b/vendor/overtrue/wechat/src/Kernel/Http/StreamResponse.php @@ -0,0 +1,86 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Kernel\Http; + +use EasyWeChat\Kernel\Exceptions\InvalidArgumentException; +use EasyWeChat\Kernel\Exceptions\RuntimeException; +use EasyWeChat\Kernel\Support\File; + +/** + * Class StreamResponse. + * + * @author overtrue + */ +class StreamResponse extends Response +{ + /** + * @param string $directory + * @param string $filename + * @param bool $appendSuffix + * + * @return bool|int + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \EasyWeChat\Kernel\Exceptions\RuntimeException + */ + public function save(string $directory, string $filename = '', bool $appendSuffix = true) + { + $this->getBody()->rewind(); + + $directory = rtrim($directory, '/'); + + if (!is_dir($directory)) { + mkdir($directory, 0755, true); // @codeCoverageIgnore + } + + if (!is_writable($directory)) { + throw new InvalidArgumentException(sprintf("'%s' is not writable.", $directory)); + } + + $contents = $this->getBody()->getContents(); + + if (empty($contents) || '{' === $contents[0]) { + throw new RuntimeException('Invalid media response content.'); + } + + if (empty($filename)) { + if (preg_match('/filename="(?.*?)"/', $this->getHeaderLine('Content-Disposition'), $match)) { + $filename = $match['filename']; + } else { + $filename = md5($contents); + } + } + + if ($appendSuffix && empty(pathinfo($filename, PATHINFO_EXTENSION))) { + $filename .= File::getStreamExt($contents); + } + + file_put_contents($directory.'/'.$filename, $contents); + + return $filename; + } + + /** + * @param string $directory + * @param string $filename + * @param bool $appendSuffix + * + * @return bool|int + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \EasyWeChat\Kernel\Exceptions\RuntimeException + */ + public function saveAs(string $directory, string $filename, bool $appendSuffix = true) + { + return $this->save($directory, $filename, $appendSuffix); + } +} diff --git a/vendor/overtrue/wechat/src/Kernel/Log/LogManager.php b/vendor/overtrue/wechat/src/Kernel/Log/LogManager.php new file mode 100644 index 0000000..870b46f --- /dev/null +++ b/vendor/overtrue/wechat/src/Kernel/Log/LogManager.php @@ -0,0 +1,594 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Kernel\Log; + +use EasyWeChat\Kernel\ServiceContainer; +use InvalidArgumentException; +use Monolog\Formatter\LineFormatter; +use Monolog\Handler\ErrorLogHandler; +use Monolog\Handler\FormattableHandlerInterface; +use Monolog\Handler\HandlerInterface; +use Monolog\Handler\RotatingFileHandler; +use Monolog\Handler\SlackWebhookHandler; +use Monolog\Handler\StreamHandler; +use Monolog\Handler\SyslogHandler; +use Monolog\Handler\WhatFailureGroupHandler; +use Monolog\Logger as Monolog; +use Psr\Log\LoggerInterface; + +/** + * Class LogManager. + * + * @author overtrue + */ +class LogManager implements LoggerInterface +{ + /** + * @var \EasyWeChat\Kernel\ServiceContainer + */ + protected $app; + + /** + * The array of resolved channels. + * + * @var array + */ + protected $channels = []; + + /** + * The registered custom driver creators. + * + * @var array + */ + protected $customCreators = []; + + /** + * The Log levels. + * + * @var array + */ + protected $levels = [ + 'debug' => Monolog::DEBUG, + 'info' => Monolog::INFO, + 'notice' => Monolog::NOTICE, + 'warning' => Monolog::WARNING, + 'error' => Monolog::ERROR, + 'critical' => Monolog::CRITICAL, + 'alert' => Monolog::ALERT, + 'emergency' => Monolog::EMERGENCY, + ]; + + /** + * LogManager constructor. + * + * @param \EasyWeChat\Kernel\ServiceContainer $app + */ + public function __construct(ServiceContainer $app) + { + $this->app = $app; + } + + /** + * Create a new, on-demand aggregate logger instance. + * + * @param array $channels + * @param string|null $channel + * + * @return \Psr\Log\LoggerInterface + * + * @throws \Exception + */ + public function stack(array $channels, $channel = null) + { + return $this->createStackDriver(compact('channels', 'channel')); + } + + /** + * Get a log channel instance. + * + * @param string|null $channel + * + * @return mixed + * + * @throws \Exception + */ + public function channel($channel = null) + { + return $this->driver($channel); + } + + /** + * Get a log driver instance. + * + * @param string|null $driver + * + * @return mixed + * + * @throws \Exception + */ + public function driver($driver = null) + { + return $this->get($driver ?? $this->getDefaultDriver()); + } + + /** + * Attempt to get the log from the local cache. + * + * @param string $name + * + * @return \Psr\Log\LoggerInterface + * + * @throws \Exception + */ + protected function get($name) + { + try { + return $this->channels[$name] ?? ($this->channels[$name] = $this->resolve($name)); + } catch (\Throwable $e) { + $logger = $this->createEmergencyLogger(); + + $logger->emergency('Unable to create configured logger. Using emergency logger.', [ + 'exception' => $e, + ]); + + return $logger; + } + } + + /** + * Resolve the given log instance by name. + * + * @param string $name + * + * @return \Psr\Log\LoggerInterface + * + * @throws InvalidArgumentException + */ + protected function resolve($name) + { + $config = $this->app['config']->get(\sprintf('log.channels.%s', $name)); + + if (is_null($config)) { + throw new InvalidArgumentException(\sprintf('Log [%s] is not defined.', $name)); + } + + if (isset($this->customCreators[$config['driver']])) { + return $this->callCustomCreator($config); + } + + $driverMethod = 'create'.ucfirst($config['driver']).'Driver'; + + if (method_exists($this, $driverMethod)) { + return $this->{$driverMethod}($config); + } + + throw new InvalidArgumentException(\sprintf('Driver [%s] is not supported.', $config['driver'])); + } + + /** + * Create an emergency log handler to avoid white screens of death. + * + * @return \Monolog\Logger + * + * @throws \Exception + */ + protected function createEmergencyLogger() + { + return new Monolog('EasyWeChat', $this->prepareHandlers([new StreamHandler( + \sys_get_temp_dir().'/easywechat/easywechat.log', + $this->level(['level' => 'debug']) + )])); + } + + /** + * Call a custom driver creator. + * + * @param array $config + * + * @return mixed + */ + protected function callCustomCreator(array $config) + { + return $this->customCreators[$config['driver']]($this->app, $config); + } + + /** + * Create an aggregate log driver instance. + * + * @param array $config + * + * @return \Monolog\Logger + * + * @throws \Exception + */ + protected function createStackDriver(array $config) + { + $handlers = []; + + foreach ($config['channels'] ?? [] as $channel) { + $handlers = \array_merge($handlers, $this->channel($channel)->getHandlers()); + } + + if ($config['ignore_exceptions'] ?? false) { + $handlers = [new WhatFailureGroupHandler($handlers)]; + } + + return new Monolog($this->parseChannel($config), $handlers); + } + + /** + * Create an instance of the single file log driver. + * + * @param array $config + * + * @return \Psr\Log\LoggerInterface + * + * @throws \Exception + */ + protected function createSingleDriver(array $config) + { + return new Monolog($this->parseChannel($config), [ + $this->prepareHandler(new StreamHandler( + $config['path'], + $this->level($config), + $config['bubble'] ?? true, + $config['permission'] ?? null, + $config['locking'] ?? false + ), $config), + ]); + } + + /** + * Create an instance of the daily file log driver. + * + * @param array $config + * + * @return \Psr\Log\LoggerInterface + */ + protected function createDailyDriver(array $config) + { + return new Monolog($this->parseChannel($config), [ + $this->prepareHandler(new RotatingFileHandler( + $config['path'], + $config['days'] ?? 7, + $this->level($config), + $config['bubble'] ?? true, + $config['permission'] ?? null, + $config['locking'] ?? false + ), $config), + ]); + } + + /** + * Create an instance of the Slack log driver. + * + * @param array $config + * + * @return \Psr\Log\LoggerInterface + * @throws \Monolog\Handler\MissingExtensionException + */ + protected function createSlackDriver(array $config) + { + return new Monolog($this->parseChannel($config), [ + $this->prepareHandler(new SlackWebhookHandler( + $config['url'], + $config['channel'] ?? null, + $config['username'] ?? 'EasyWeChat', + $config['attachment'] ?? true, + $config['emoji'] ?? ':boom:', + $config['short'] ?? false, + $config['context'] ?? true, + $this->level($config), + $config['bubble'] ?? true, + $config['exclude_fields'] ?? [] + ), $config), + ]); + } + + /** + * Create an instance of the syslog log driver. + * + * @param array $config + * + * @return \Psr\Log\LoggerInterface + */ + protected function createSyslogDriver(array $config) + { + return new Monolog($this->parseChannel($config), [ + $this->prepareHandler(new SyslogHandler( + 'EasyWeChat', + $config['facility'] ?? LOG_USER, + $this->level($config) + ), $config), + ]); + } + + /** + * Create an instance of the "error log" log driver. + * + * @param array $config + * + * @return \Psr\Log\LoggerInterface + */ + protected function createErrorlogDriver(array $config) + { + return new Monolog($this->parseChannel($config), [ + $this->prepareHandler( + new ErrorLogHandler( + $config['type'] ?? ErrorLogHandler::OPERATING_SYSTEM, + $this->level($config) + ) + ), + ]); + } + + /** + * Prepare the handlers for usage by Monolog. + * + * @param array $handlers + * + * @return array + */ + protected function prepareHandlers(array $handlers): array + { + foreach ($handlers as $key => $handler) { + $handlers[$key] = $this->prepareHandler($handler); + } + + return $handlers; + } + + /** + * Prepare the handler for usage by Monolog. + * + * @param \Monolog\Handler\HandlerInterface $handler + * @param array $config + * + * @return \Monolog\Handler\HandlerInterface + */ + protected function prepareHandler(HandlerInterface $handler, array $config = []) + { + if (!isset($config['formatter'])) { + if ($handler instanceof FormattableHandlerInterface) { + $handler->setFormatter($this->formatter()); + } + } + + return $handler; + } + + /** + * Get a Monolog formatter instance. + * + * @return \Monolog\Formatter\FormatterInterface + */ + protected function formatter() + { + $formatter = new LineFormatter(null, null, true, true); + $formatter->includeStacktraces(); + + return $formatter; + } + + /** + * Extract the log channel from the given configuration. + * + * @param array $config + * + * @return string + */ + protected function parseChannel(array $config): string + { + return $config['name'] ?? 'EasyWeChat'; + } + + /** + * Parse the string level into a Monolog constant. + * + * @param array $config + * + * @return int + * + * @throws InvalidArgumentException + */ + protected function level(array $config): int + { + $level = $config['level'] ?? 'debug'; + + if (isset($this->levels[$level])) { + return $this->levels[$level]; + } + + throw new InvalidArgumentException('Invalid log level.'); + } + + /** + * Get the default log driver name. + * + * @return string + */ + public function getDefaultDriver(): ?string + { + return $this->app['config']['log.default']; + } + + /** + * Set the default log driver name. + * + * @param string $name + */ + public function setDefaultDriver($name) + { + $this->app['config']['log.default'] = $name; + } + + /** + * Register a custom driver creator Closure. + * + * @param string $driver + * @param \Closure $callback + * + * @return $this + */ + public function extend(string $driver, \Closure $callback): LogManager + { + $this->customCreators[$driver] = $callback->bindTo($this, $this); + + return $this; + } + + /** + * System is unusable. + * + * @param string $message + * @param array $context + * + * @return void + * + * @throws \Exception + */ + public function emergency($message, array $context = []): void + { + $this->driver()->emergency($message, $context); + } + + /** + * Action must be taken immediately. + * + * Example: Entire website down, database unavailable, etc. This should + * trigger the SMS alerts and wake you up. + * + * @param string $message + * @param array $context + * + * @return void + * + * @throws \Exception + */ + public function alert($message, array $context = []): void + { + $this->driver()->alert($message, $context); + } + + /** + * Critical conditions. + * + * Example: Application component unavailable, unexpected exception. + * + * @param string $message + * @param array $context + * + * @throws \Exception + */ + public function critical($message, array $context = []): void + { + $this->driver()->critical($message, $context); + } + + /** + * Runtime errors that do not require immediate action but should typically + * be logged and monitored. + * + * @param string $message + * @param array $context + * + * @throws \Exception + */ + public function error($message, array $context = []): void + { + $this->driver()->error($message, $context); + } + + /** + * Exceptional occurrences that are not errors. + * + * Example: Use of deprecated APIs, poor use of an API, undesirable things + * that are not necessarily wrong. + * + * @param string $message + * @param array $context + * + * @throws \Exception + */ + public function warning($message, array $context = []): void + { + $this->driver()->warning($message, $context); + } + + /** + * Normal but significant events. + * + * @param string $message + * @param array $context + * + * @throws \Exception + */ + public function notice($message, array $context = []): void + { + $this->driver()->notice($message, $context); + } + + /** + * Interesting events. + * + * Example: User logs in, SQL logs. + * + * @param string $message + * @param array $context + * + * @throws \Exception + */ + public function info($message, array $context = []): void + { + $this->driver()->info($message, $context); + } + + /** + * Detailed debug information. + * + * @param string $message + * @param array $context + * + * @throws \Exception + */ + public function debug($message, array $context = []): void + { + $this->driver()->debug($message, $context); + } + + /** + * Logs with an arbitrary level. + * + * @param mixed $level + * @param string $message + * @param array $context + * + * @throws \Exception + */ + public function log($level, $message, array $context = []): void + { + $this->driver()->log($level, $message, $context); + } + + /** + * Dynamically call the default driver instance. + * + * @param string $method + * @param array $parameters + * + * @throws \Exception + */ + public function __call($method, $parameters) + { + return $this->driver()->$method(...$parameters); + } +} diff --git a/vendor/overtrue/wechat/src/Kernel/Messages/Article.php b/vendor/overtrue/wechat/src/Kernel/Messages/Article.php new file mode 100644 index 0000000..4792a1f --- /dev/null +++ b/vendor/overtrue/wechat/src/Kernel/Messages/Article.php @@ -0,0 +1,58 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Kernel\Messages; + +/** + * Class Article. + */ +class Article extends Message +{ + /** + * @var string + */ + protected $type = 'mpnews'; + + /** + * Properties. + * + * @var array + */ + protected $properties = [ + 'thumb_media_id', + 'author', + 'title', + 'content', + 'digest', + 'source_url', + 'show_cover', + ]; + + /** + * Aliases of attribute. + * + * @var array + */ + protected $jsonAliases = [ + 'content_source_url' => 'source_url', + 'show_cover_pic' => 'show_cover', + ]; + + /** + * @var array + */ + protected $required = [ + 'thumb_media_id', + 'title', + 'content', + 'show_cover', + ]; +} diff --git a/vendor/overtrue/wechat/src/Kernel/Messages/Card.php b/vendor/overtrue/wechat/src/Kernel/Messages/Card.php new file mode 100644 index 0000000..0e21231 --- /dev/null +++ b/vendor/overtrue/wechat/src/Kernel/Messages/Card.php @@ -0,0 +1,52 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +/** + * Card.php. + * + * @author overtrue + * @copyright 2015 overtrue + * + * @see https://github.com/overtrue + * @see http://overtrue.me + */ + +namespace EasyWeChat\Kernel\Messages; + +/** + * Class Card. + */ +class Card extends Message +{ + /** + * Message type. + * + * @var string + */ + protected $type = 'wxcard'; + + /** + * Properties. + * + * @var array + */ + protected $properties = ['card_id']; + + /** + * Media constructor. + * + * @param string $cardId + */ + public function __construct(string $cardId) + { + parent::__construct(['card_id' => $cardId]); + } +} diff --git a/vendor/overtrue/wechat/src/Kernel/Messages/DeviceEvent.php b/vendor/overtrue/wechat/src/Kernel/Messages/DeviceEvent.php new file mode 100644 index 0000000..ae57910 --- /dev/null +++ b/vendor/overtrue/wechat/src/Kernel/Messages/DeviceEvent.php @@ -0,0 +1,40 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Kernel\Messages; + +/** + * Class DeviceEvent. + * + * @property string $media_id + */ +class DeviceEvent extends Message +{ + /** + * Messages type. + * + * @var string + */ + protected $type = 'device_event'; + + /** + * Properties. + * + * @var array + */ + protected $properties = [ + 'device_type', + 'device_id', + 'content', + 'session_id', + 'open_id', + ]; +} diff --git a/vendor/overtrue/wechat/src/Kernel/Messages/DeviceText.php b/vendor/overtrue/wechat/src/Kernel/Messages/DeviceText.php new file mode 100644 index 0000000..87e627a --- /dev/null +++ b/vendor/overtrue/wechat/src/Kernel/Messages/DeviceText.php @@ -0,0 +1,50 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Kernel\Messages; + +/** + * Class DeviceText. + * + * @property string $content + */ +class DeviceText extends Message +{ + /** + * Messages type. + * + * @var string + */ + protected $type = 'device_text'; + + /** + * Properties. + * + * @var array + */ + protected $properties = [ + 'device_type', + 'device_id', + 'content', + 'session_id', + 'open_id', + ]; + + public function toXmlArray() + { + return [ + 'DeviceType' => $this->get('device_type'), + 'DeviceID' => $this->get('device_id'), + 'SessionID' => $this->get('session_id'), + 'Content' => base64_encode($this->get('content')), + ]; + } +} diff --git a/vendor/overtrue/wechat/src/Kernel/Messages/File.php b/vendor/overtrue/wechat/src/Kernel/Messages/File.php new file mode 100644 index 0000000..a14c42f --- /dev/null +++ b/vendor/overtrue/wechat/src/Kernel/Messages/File.php @@ -0,0 +1,25 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Kernel\Messages; + +/** + * Class Image. + * + * @property string $media_id + */ +class File extends Media +{ + /** + * @var string + */ + protected $type = 'file'; +} diff --git a/vendor/overtrue/wechat/src/Kernel/Messages/Image.php b/vendor/overtrue/wechat/src/Kernel/Messages/Image.php new file mode 100644 index 0000000..982033b --- /dev/null +++ b/vendor/overtrue/wechat/src/Kernel/Messages/Image.php @@ -0,0 +1,27 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Kernel\Messages; + +/** + * Class Image. + * + * @property string $media_id + */ +class Image extends Media +{ + /** + * Messages type. + * + * @var string + */ + protected $type = 'image'; +} diff --git a/vendor/overtrue/wechat/src/Kernel/Messages/InteractiveTaskCard.php b/vendor/overtrue/wechat/src/Kernel/Messages/InteractiveTaskCard.php new file mode 100644 index 0000000..e0f7d13 --- /dev/null +++ b/vendor/overtrue/wechat/src/Kernel/Messages/InteractiveTaskCard.php @@ -0,0 +1,49 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Kernel\Messages; + +/** + * Class InteractiveTaskCard. + * + * @description 企业微信 interactive_taskcard 任务卡片消息类型 + * + * @author xyj2156 + * @date 2021年5月25日 15:21:03 + * + * @property string $title + * @property string $description + * @property string $url + * @property string $task_id + * @property array $btn + */ +class InteractiveTaskCard extends Message +{ + /** + * Messages type. + * + * @var string + */ + protected $type = 'interactive_taskcard'; + + /** + * Properties. + * + * @var array + */ + protected $properties = [ + 'title', + 'description', + 'url', + 'task_id', + 'btn', + ]; +} diff --git a/vendor/overtrue/wechat/src/Kernel/Messages/Link.php b/vendor/overtrue/wechat/src/Kernel/Messages/Link.php new file mode 100644 index 0000000..9c126b5 --- /dev/null +++ b/vendor/overtrue/wechat/src/Kernel/Messages/Link.php @@ -0,0 +1,36 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Kernel\Messages; + +/** + * Class Link. + */ +class Link extends Message +{ + /** + * Messages type. + * + * @var string + */ + protected $type = 'link'; + + /** + * Properties. + * + * @var array + */ + protected $properties = [ + 'title', + 'description', + 'url', + ]; +} diff --git a/vendor/overtrue/wechat/src/Kernel/Messages/Location.php b/vendor/overtrue/wechat/src/Kernel/Messages/Location.php new file mode 100644 index 0000000..f10351b --- /dev/null +++ b/vendor/overtrue/wechat/src/Kernel/Messages/Location.php @@ -0,0 +1,38 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Kernel\Messages; + +/** + * Class Location. + */ +class Location extends Message +{ + /** + * Messages type. + * + * @var string + */ + protected $type = 'location'; + + /** + * Properties. + * + * @var array + */ + protected $properties = [ + 'latitude', + 'longitude', + 'scale', + 'label', + 'precision', + ]; +} diff --git a/vendor/overtrue/wechat/src/Kernel/Messages/Media.php b/vendor/overtrue/wechat/src/Kernel/Messages/Media.php new file mode 100644 index 0000000..d8706fe --- /dev/null +++ b/vendor/overtrue/wechat/src/Kernel/Messages/Media.php @@ -0,0 +1,70 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Kernel\Messages; + +use EasyWeChat\Kernel\Contracts\MediaInterface; +use EasyWeChat\Kernel\Support\Str; + +/** + * Class Media. + */ +class Media extends Message implements MediaInterface +{ + /** + * Properties. + * + * @var array + */ + protected $properties = ['media_id']; + + /** + * @var array + */ + protected $required = [ + 'media_id', + ]; + + /** + * MaterialClient constructor. + * + * @param string $mediaId + * @param string $type + * @param array $attributes + */ + public function __construct(string $mediaId, $type = null, array $attributes = []) + { + parent::__construct(array_merge(['media_id' => $mediaId], $attributes)); + + !empty($type) && $this->setType($type); + } + + /** + * @return string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + */ + public function getMediaId(): string + { + $this->checkRequiredAttributes(); + + return $this->get('media_id'); + } + + public function toXmlArray() + { + return [ + Str::studly($this->getType()) => [ + 'MediaId' => $this->get('media_id'), + ], + ]; + } +} diff --git a/vendor/overtrue/wechat/src/Kernel/Messages/Message.php b/vendor/overtrue/wechat/src/Kernel/Messages/Message.php new file mode 100644 index 0000000..3135cb1 --- /dev/null +++ b/vendor/overtrue/wechat/src/Kernel/Messages/Message.php @@ -0,0 +1,210 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Kernel\Messages; + +use EasyWeChat\Kernel\Contracts\MessageInterface; +use EasyWeChat\Kernel\Exceptions\RuntimeException; +use EasyWeChat\Kernel\Support\XML; +use EasyWeChat\Kernel\Traits\HasAttributes; + +/** + * Class Messages. + */ +abstract class Message implements MessageInterface +{ + use HasAttributes; + + public const TEXT = 2; + public const IMAGE = 4; + public const VOICE = 8; + public const VIDEO = 16; + public const SHORT_VIDEO = 32; + public const LOCATION = 64; + public const LINK = 128; + public const DEVICE_EVENT = 256; + public const DEVICE_TEXT = 512; + public const FILE = 1024; + public const TEXT_CARD = 2048; + public const TRANSFER = 4096; + public const EVENT = 1048576; + public const MINIPROGRAM_PAGE = 2097152; + public const MINIPROGRAM_NOTICE = 4194304; + public const ALL = self::TEXT | self::IMAGE | self::VOICE | self::VIDEO | self::SHORT_VIDEO | self::LOCATION | self::LINK + | self::DEVICE_EVENT | self::DEVICE_TEXT | self::FILE | self::TEXT_CARD | self::TRANSFER | self::EVENT + | self::MINIPROGRAM_PAGE | self::MINIPROGRAM_NOTICE; + + /** + * @var string + */ + protected $type; + + /** + * @var int + */ + protected $id; + + /** + * @var string + */ + protected $to; + + /** + * @var string + */ + protected $from; + + /** + * @var array + */ + protected $properties = []; + + /** + * @var array + */ + protected $jsonAliases = []; + + /** + * Message constructor. + * + * @param array $attributes + */ + public function __construct(array $attributes = []) + { + $this->setAttributes($attributes); + } + + /** + * Return type name message. + * + * @return string + */ + public function getType(): string + { + return $this->type; + } + + /** + * @param string $type + */ + public function setType(string $type) + { + $this->type = $type; + } + + /** + * Magic getter. + * + * @param string $property + * + * @return mixed + */ + public function __get($property) + { + if (property_exists($this, $property)) { + return $this->$property; + } + + return $this->getAttribute($property); + } + + /** + * Magic setter. + * + * @param string $property + * @param mixed $value + * + * @return Message + */ + public function __set($property, $value) + { + if (property_exists($this, $property)) { + $this->$property = $value; + } else { + $this->setAttribute($property, $value); + } + + return $this; + } + + /** + * @param array $appends + * + * @return array + */ + public function transformForJsonRequestWithoutType(array $appends = []) + { + return $this->transformForJsonRequest($appends, false); + } + + /** + * @param array $appends + * @param bool $withType + * + * @return array + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + */ + public function transformForJsonRequest(array $appends = [], $withType = true): array + { + if (!$withType) { + return $this->propertiesToArray([], $this->jsonAliases); + } + $messageType = $this->getType(); + $data = array_merge(['msgtype' => $messageType], $appends); + + $data[$messageType] = array_merge($data[$messageType] ?? [], $this->propertiesToArray([], $this->jsonAliases)); + + return $data; + } + + /** + * @param array $appends + * @param bool $returnAsArray + * + * @return string + */ + public function transformToXml(array $appends = [], bool $returnAsArray = false): string + { + $data = array_merge(['MsgType' => $this->getType()], $this->toXmlArray(), $appends); + + return $returnAsArray ? $data : XML::build($data); + } + + /** + * @param array $data + * @param array $aliases + * + * @return array + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + */ + protected function propertiesToArray(array $data, array $aliases = []): array + { + $this->checkRequiredAttributes(); + + foreach ($this->attributes as $property => $value) { + if (is_null($value) && !$this->isRequired($property)) { + continue; + } + $alias = array_search($property, $aliases, true); + + $data[$alias ?: $property] = $this->get($property); + } + + return $data; + } + + public function toXmlArray() + { + throw new RuntimeException(sprintf('Class "%s" cannot support transform to XML message.', __CLASS__)); + } +} diff --git a/vendor/overtrue/wechat/src/Kernel/Messages/MiniProgramPage.php b/vendor/overtrue/wechat/src/Kernel/Messages/MiniProgramPage.php new file mode 100644 index 0000000..e4973b1 --- /dev/null +++ b/vendor/overtrue/wechat/src/Kernel/Messages/MiniProgramPage.php @@ -0,0 +1,31 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Kernel\Messages; + +/** + * Class MiniProgramPage. + */ +class MiniProgramPage extends Message +{ + protected $type = 'miniprogrampage'; + + protected $properties = [ + 'title', + 'appid', + 'pagepath', + 'thumb_media_id', + ]; + + protected $required = [ + 'thumb_media_id', 'appid', 'pagepath', + ]; +} diff --git a/vendor/overtrue/wechat/src/Kernel/Messages/MiniprogramNotice.php b/vendor/overtrue/wechat/src/Kernel/Messages/MiniprogramNotice.php new file mode 100644 index 0000000..c18b259 --- /dev/null +++ b/vendor/overtrue/wechat/src/Kernel/Messages/MiniprogramNotice.php @@ -0,0 +1,13 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Kernel\Messages; + +/** + * Class Music. + * + * @property string $url + * @property string $hq_url + * @property string $title + * @property string $description + * @property string $thumb_media_id + * @property string $format + */ +class Music extends Message +{ + /** + * Messages type. + * + * @var string + */ + protected $type = 'music'; + + /** + * Properties. + * + * @var array + */ + protected $properties = [ + 'title', + 'description', + 'url', + 'hq_url', + 'thumb_media_id', + 'format', + ]; + + /** + * Aliases of attribute. + * + * @var array + */ + protected $jsonAliases = [ + 'musicurl' => 'url', + 'hqmusicurl' => 'hq_url', + ]; + + public function toXmlArray() + { + $music = [ + 'Music' => [ + 'Title' => $this->get('title'), + 'Description' => $this->get('description'), + 'MusicUrl' => $this->get('url'), + 'HQMusicUrl' => $this->get('hq_url'), + ], + ]; + if ($thumbMediaId = $this->get('thumb_media_id')) { + $music['Music']['ThumbMediaId'] = $thumbMediaId; + } + + return $music; + } +} diff --git a/vendor/overtrue/wechat/src/Kernel/Messages/News.php b/vendor/overtrue/wechat/src/Kernel/Messages/News.php new file mode 100644 index 0000000..2ad46e8 --- /dev/null +++ b/vendor/overtrue/wechat/src/Kernel/Messages/News.php @@ -0,0 +1,73 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Kernel\Messages; + +/** + * Class News. + * + * @author overtrue + */ +class News extends Message +{ + /** + * @var string + */ + protected $type = 'news'; + + /** + * @var array + */ + protected $properties = [ + 'items', + ]; + + /** + * News constructor. + * + * @param array $items + */ + public function __construct(array $items = []) + { + parent::__construct(compact('items')); + } + + /** + * @param array $data + * @param array $aliases + * + * @return array + */ + public function propertiesToArray(array $data, array $aliases = []): array + { + return ['articles' => array_map(function ($item) { + if ($item instanceof NewsItem) { + return $item->toJsonArray(); + } + }, $this->get('items'))]; + } + + public function toXmlArray() + { + $items = []; + + foreach ($this->get('items') as $item) { + if ($item instanceof NewsItem) { + $items[] = $item->toXmlArray(); + } + } + + return [ + 'ArticleCount' => count($items), + 'Articles' => $items, + ]; + } +} diff --git a/vendor/overtrue/wechat/src/Kernel/Messages/NewsItem.php b/vendor/overtrue/wechat/src/Kernel/Messages/NewsItem.php new file mode 100644 index 0000000..50bf336 --- /dev/null +++ b/vendor/overtrue/wechat/src/Kernel/Messages/NewsItem.php @@ -0,0 +1,57 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Kernel\Messages; + +/** + * Class NewsItem. + */ +class NewsItem extends Message +{ + /** + * Messages type. + * + * @var string + */ + protected $type = 'news'; + + /** + * Properties. + * + * @var array + */ + protected $properties = [ + 'title', + 'description', + 'url', + 'image', + ]; + + public function toJsonArray() + { + return [ + 'title' => $this->get('title'), + 'description' => $this->get('description'), + 'url' => $this->get('url'), + 'picurl' => $this->get('image'), + ]; + } + + public function toXmlArray() + { + return [ + 'Title' => $this->get('title'), + 'Description' => $this->get('description'), + 'Url' => $this->get('url'), + 'PicUrl' => $this->get('image'), + ]; + } +} diff --git a/vendor/overtrue/wechat/src/Kernel/Messages/Raw.php b/vendor/overtrue/wechat/src/Kernel/Messages/Raw.php new file mode 100644 index 0000000..53f2a78 --- /dev/null +++ b/vendor/overtrue/wechat/src/Kernel/Messages/Raw.php @@ -0,0 +1,56 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Kernel\Messages; + +/** + * Class Raw. + */ +class Raw extends Message +{ + /** + * @var string + */ + protected $type = 'raw'; + + /** + * Properties. + * + * @var array + */ + protected $properties = ['content']; + + /** + * Constructor. + * + * @param string $content + */ + public function __construct(string $content) + { + parent::__construct(['content' => strval($content)]); + } + + /** + * @param array $appends + * @param bool $withType + * + * @return array + */ + public function transformForJsonRequest(array $appends = [], $withType = true): array + { + return json_decode($this->content, true) ?? []; + } + + public function __toString() + { + return $this->get('content') ?? ''; + } +} diff --git a/vendor/overtrue/wechat/src/Kernel/Messages/ReplyInteractiveTaskCard.php b/vendor/overtrue/wechat/src/Kernel/Messages/ReplyInteractiveTaskCard.php new file mode 100644 index 0000000..f917935 --- /dev/null +++ b/vendor/overtrue/wechat/src/Kernel/Messages/ReplyInteractiveTaskCard.php @@ -0,0 +1,60 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Kernel\Messages; + +/** + * Class ReplyInteractiveTaskCard + * + * @property array{'replace_name':string} $properties + * + * @description 专门为回复 InteractiveTaskCard 类型任务卡片消息而创建的类型 + * @author xyj2156 + * + * @package App\Extend\EnterpriseApplication\BusinessWX\Message + */ +class ReplyInteractiveTaskCard extends Message +{ + /** + * Message Type + * + * @var string + */ + protected $type = 'update_taskcard'; + + /** + * Properties. + * + * @var array + */ + protected $properties = [ + 'replace_name', + ]; + + /** + * ReplyInteractiveTaskCard constructor. + * + * @param string $replace_name + */ + public function __construct(string $replace_name = '') + { + parent::__construct(compact('replace_name')); + } + + public function toXmlArray() + { + return [ + 'TaskCard' => [ + 'ReplaceName' => $this->get('replace_name'), + ], + ]; + } +} diff --git a/vendor/overtrue/wechat/src/Kernel/Messages/ShortVideo.php b/vendor/overtrue/wechat/src/Kernel/Messages/ShortVideo.php new file mode 100644 index 0000000..1dc1db9 --- /dev/null +++ b/vendor/overtrue/wechat/src/Kernel/Messages/ShortVideo.php @@ -0,0 +1,30 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Kernel\Messages; + +/** + * Class ShortVideo. + * + * @property string $title + * @property string $media_id + * @property string $description + * @property string $thumb_media_id + */ +class ShortVideo extends Video +{ + /** + * Messages type. + * + * @var string + */ + protected $type = 'shortvideo'; +} diff --git a/vendor/overtrue/wechat/src/Kernel/Messages/TaskCard.php b/vendor/overtrue/wechat/src/Kernel/Messages/TaskCard.php new file mode 100644 index 0000000..d02c411 --- /dev/null +++ b/vendor/overtrue/wechat/src/Kernel/Messages/TaskCard.php @@ -0,0 +1,44 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Kernel\Messages; + +/** + * Class TaskCard. + * + * @property string $title + * @property string $description + * @property string $url + * @property string $task_id + * @property array $btn + */ +class TaskCard extends Message +{ + /** + * Messages type. + * + * @var string + */ + protected $type = 'taskcard'; + + /** + * Properties. + * + * @var array + */ + protected $properties = [ + 'title', + 'description', + 'url', + 'task_id', + 'btn', + ]; +} diff --git a/vendor/overtrue/wechat/src/Kernel/Messages/Text.php b/vendor/overtrue/wechat/src/Kernel/Messages/Text.php new file mode 100644 index 0000000..050e54a --- /dev/null +++ b/vendor/overtrue/wechat/src/Kernel/Messages/Text.php @@ -0,0 +1,54 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Kernel\Messages; + +/** + * Class Text. + * + * @property string $content + */ +class Text extends Message +{ + /** + * Message type. + * + * @var string + */ + protected $type = 'text'; + + /** + * Properties. + * + * @var array + */ + protected $properties = ['content']; + + /** + * Text constructor. + * + * @param string $content + */ + public function __construct(string $content = '') + { + parent::__construct(compact('content')); + } + + /** + * @return array + */ + public function toXmlArray() + { + return [ + 'Content' => $this->get('content'), + ]; + } +} diff --git a/vendor/overtrue/wechat/src/Kernel/Messages/TextCard.php b/vendor/overtrue/wechat/src/Kernel/Messages/TextCard.php new file mode 100644 index 0000000..edfb7c5 --- /dev/null +++ b/vendor/overtrue/wechat/src/Kernel/Messages/TextCard.php @@ -0,0 +1,40 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Kernel\Messages; + +/** + * Class Text. + * + * @property string $title + * @property string $description + * @property string $url + */ +class TextCard extends Message +{ + /** + * Messages type. + * + * @var string + */ + protected $type = 'textcard'; + + /** + * Properties. + * + * @var array + */ + protected $properties = [ + 'title', + 'description', + 'url', + ]; +} diff --git a/vendor/overtrue/wechat/src/Kernel/Messages/Transfer.php b/vendor/overtrue/wechat/src/Kernel/Messages/Transfer.php new file mode 100644 index 0000000..ff27d1a --- /dev/null +++ b/vendor/overtrue/wechat/src/Kernel/Messages/Transfer.php @@ -0,0 +1,56 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Kernel\Messages; + +/** + * Class Transfer. + * + * @property string $to + * @property string $account + */ +class Transfer extends Message +{ + /** + * Messages type. + * + * @var string + */ + protected $type = 'transfer_customer_service'; + + /** + * Properties. + * + * @var array + */ + protected $properties = [ + 'account', + ]; + + /** + * Transfer constructor. + * + * @param string|null $account + */ + public function __construct(string $account = null) + { + parent::__construct(compact('account')); + } + + public function toXmlArray() + { + return empty($this->get('account')) ? [] : [ + 'TransInfo' => [ + 'KfAccount' => $this->get('account'), + ], + ]; + } +} diff --git a/vendor/overtrue/wechat/src/Kernel/Messages/Video.php b/vendor/overtrue/wechat/src/Kernel/Messages/Video.php new file mode 100644 index 0000000..90f72a0 --- /dev/null +++ b/vendor/overtrue/wechat/src/Kernel/Messages/Video.php @@ -0,0 +1,65 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Kernel\Messages; + +/** + * Class Video. + * + * @property string $video + * @property string $title + * @property string $media_id + * @property string $description + * @property string $thumb_media_id + */ +class Video extends Media +{ + /** + * Messages type. + * + * @var string + */ + protected $type = 'video'; + + /** + * Properties. + * + * @var array + */ + protected $properties = [ + 'title', + 'description', + 'media_id', + 'thumb_media_id', + ]; + + /** + * Video constructor. + * + * @param string $mediaId + * @param array $attributes + */ + public function __construct(string $mediaId, array $attributes = []) + { + parent::__construct($mediaId, 'video', $attributes); + } + + public function toXmlArray() + { + return [ + 'Video' => [ + 'MediaId' => $this->get('media_id'), + 'Title' => $this->get('title'), + 'Description' => $this->get('description'), + ], + ]; + } +} diff --git a/vendor/overtrue/wechat/src/Kernel/Messages/Voice.php b/vendor/overtrue/wechat/src/Kernel/Messages/Voice.php new file mode 100644 index 0000000..ff723ea --- /dev/null +++ b/vendor/overtrue/wechat/src/Kernel/Messages/Voice.php @@ -0,0 +1,37 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Kernel\Messages; + +/** + * Class Voice. + * + * @property string $media_id + */ +class Voice extends Media +{ + /** + * Messages type. + * + * @var string + */ + protected $type = 'voice'; + + /** + * Properties. + * + * @var array + */ + protected $properties = [ + 'media_id', + 'recognition', + ]; +} diff --git a/vendor/overtrue/wechat/src/Kernel/Providers/ConfigServiceProvider.php b/vendor/overtrue/wechat/src/Kernel/Providers/ConfigServiceProvider.php new file mode 100644 index 0000000..24ff919 --- /dev/null +++ b/vendor/overtrue/wechat/src/Kernel/Providers/ConfigServiceProvider.php @@ -0,0 +1,39 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Kernel\Providers; + +use EasyWeChat\Kernel\Config; +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +/** + * Class ConfigServiceProvider. + * + * @author overtrue + */ +class ConfigServiceProvider implements ServiceProviderInterface +{ + /** + * Registers services on the given container. + * + * This method should only be used to configure services and parameters. + * It should not get services. + * + * @param Container $pimple A container instance + */ + public function register(Container $pimple) + { + !isset($pimple['config']) && $pimple['config'] = function ($app) { + return new Config($app->getConfig()); + }; + } +} diff --git a/vendor/overtrue/wechat/src/Kernel/Providers/EventDispatcherServiceProvider.php b/vendor/overtrue/wechat/src/Kernel/Providers/EventDispatcherServiceProvider.php new file mode 100644 index 0000000..97b2b99 --- /dev/null +++ b/vendor/overtrue/wechat/src/Kernel/Providers/EventDispatcherServiceProvider.php @@ -0,0 +1,47 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Kernel\Providers; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; +use Symfony\Component\EventDispatcher\EventDispatcher; + +/** + * Class EventDispatcherServiceProvider. + * + * @author mingyoung + */ +class EventDispatcherServiceProvider implements ServiceProviderInterface +{ + /** + * Registers services on the given container. + * + * This method should only be used to configure services and parameters. + * It should not get services. + * + * @param Container $pimple A container instance + */ + public function register(Container $pimple) + { + !isset($pimple['events']) && $pimple['events'] = function ($app) { + $dispatcher = new EventDispatcher(); + + foreach ($app->config->get('events.listen', []) as $event => $listeners) { + foreach ($listeners as $listener) { + $dispatcher->addListener($event, $listener); + } + } + + return $dispatcher; + }; + } +} diff --git a/vendor/overtrue/wechat/src/Kernel/Providers/ExtensionServiceProvider.php b/vendor/overtrue/wechat/src/Kernel/Providers/ExtensionServiceProvider.php new file mode 100644 index 0000000..1d8badd --- /dev/null +++ b/vendor/overtrue/wechat/src/Kernel/Providers/ExtensionServiceProvider.php @@ -0,0 +1,39 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Kernel\Providers; + +use EasyWeChatComposer\Extension; +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +/** + * Class ExtensionServiceProvider. + * + * @author overtrue + */ +class ExtensionServiceProvider implements ServiceProviderInterface +{ + /** + * Registers services on the given container. + * + * This method should only be used to configure services and parameters. + * It should not get services. + * + * @param Container $pimple A container instance + */ + public function register(Container $pimple) + { + !isset($pimple['extension']) && $pimple['extension'] = function ($app) { + return new Extension($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/Kernel/Providers/HttpClientServiceProvider.php b/vendor/overtrue/wechat/src/Kernel/Providers/HttpClientServiceProvider.php new file mode 100644 index 0000000..e21edfa --- /dev/null +++ b/vendor/overtrue/wechat/src/Kernel/Providers/HttpClientServiceProvider.php @@ -0,0 +1,39 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Kernel\Providers; + +use GuzzleHttp\Client; +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +/** + * Class HttpClientServiceProvider. + * + * @author overtrue + */ +class HttpClientServiceProvider implements ServiceProviderInterface +{ + /** + * Registers services on the given container. + * + * This method should only be used to configure services and parameters. + * It should not get services. + * + * @param Container $pimple A container instance + */ + public function register(Container $pimple) + { + !isset($pimple['http_client']) && $pimple['http_client'] = function ($app) { + return new Client($app['config']->get('http', [])); + }; + } +} diff --git a/vendor/overtrue/wechat/src/Kernel/Providers/LogServiceProvider.php b/vendor/overtrue/wechat/src/Kernel/Providers/LogServiceProvider.php new file mode 100644 index 0000000..88058bb --- /dev/null +++ b/vendor/overtrue/wechat/src/Kernel/Providers/LogServiceProvider.php @@ -0,0 +1,47 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Kernel\Providers; + +use EasyWeChat\Kernel\Log\LogManager; +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +/** + * Class LoggingServiceProvider. + * + * @author overtrue + */ +class LogServiceProvider implements ServiceProviderInterface +{ + /** + * Registers services on the given container. + * + * This method should only be used to configure services and parameters. + * It should not get services. + * + * @param Container $pimple A container instance + */ + public function register(Container $pimple) + { + !isset($pimple['log']) && $pimple['log'] = function ($app) { + $config = $app['config']->get('log'); + + if (!empty($config)) { + $app->rebind('config', $app['config']->merge($config)); + } + + return new LogManager($app); + }; + + !isset($pimple['logger']) && $pimple['logger'] = $pimple['log']; + } +} diff --git a/vendor/overtrue/wechat/src/Kernel/Providers/RequestServiceProvider.php b/vendor/overtrue/wechat/src/Kernel/Providers/RequestServiceProvider.php new file mode 100644 index 0000000..d38522e --- /dev/null +++ b/vendor/overtrue/wechat/src/Kernel/Providers/RequestServiceProvider.php @@ -0,0 +1,39 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Kernel\Providers; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; +use Symfony\Component\HttpFoundation\Request; + +/** + * Class RequestServiceProvider. + * + * @author overtrue + */ +class RequestServiceProvider implements ServiceProviderInterface +{ + /** + * Registers services on the given container. + * + * This method should only be used to configure services and parameters. + * It should not get services. + * + * @param Container $pimple A container instance + */ + public function register(Container $pimple) + { + !isset($pimple['request']) && $pimple['request'] = function () { + return Request::createFromGlobals(); + }; + } +} diff --git a/vendor/overtrue/wechat/src/Kernel/ServerGuard.php b/vendor/overtrue/wechat/src/Kernel/ServerGuard.php new file mode 100644 index 0000000..066b220 --- /dev/null +++ b/vendor/overtrue/wechat/src/Kernel/ServerGuard.php @@ -0,0 +1,375 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Kernel; + +use EasyWeChat\Kernel\Contracts\MessageInterface; +use EasyWeChat\Kernel\Exceptions\BadRequestException; +use EasyWeChat\Kernel\Exceptions\InvalidArgumentException; +use EasyWeChat\Kernel\Messages\Message; +use EasyWeChat\Kernel\Messages\News; +use EasyWeChat\Kernel\Messages\NewsItem; +use EasyWeChat\Kernel\Messages\Raw as RawMessage; +use EasyWeChat\Kernel\Messages\Text; +use EasyWeChat\Kernel\Support\XML; +use EasyWeChat\Kernel\Traits\Observable; +use EasyWeChat\Kernel\Traits\ResponseCastable; +use Symfony\Component\HttpFoundation\Response; + +/** + * Class ServerGuard. + * + * 1. url 里的 signature 只是将 token+nonce+timestamp 得到的签名,只是用于验证当前请求的,在公众号环境下一直有 + * 2. 企业号消息发送时是没有的,因为固定为完全模式,所以 url 里不会存在 signature, 只有 msg_signature 用于解密消息的 + * + * @author overtrue + */ +class ServerGuard +{ + use Observable; + use ResponseCastable; + + /** + * @var bool + */ + protected $alwaysValidate = false; + + /** + * Empty string. + */ + public const SUCCESS_EMPTY_RESPONSE = 'success'; + + /** + * @var array + */ + public const MESSAGE_TYPE_MAPPING = [ + 'text' => Message::TEXT, + 'image' => Message::IMAGE, + 'voice' => Message::VOICE, + 'video' => Message::VIDEO, + 'shortvideo' => Message::SHORT_VIDEO, + 'location' => Message::LOCATION, + 'link' => Message::LINK, + 'device_event' => Message::DEVICE_EVENT, + 'device_text' => Message::DEVICE_TEXT, + 'event' => Message::EVENT, + 'file' => Message::FILE, + 'miniprogrampage' => Message::MINIPROGRAM_PAGE, + ]; + + /** + * @var \EasyWeChat\Kernel\ServiceContainer + */ + protected $app; + + /** + * Constructor. + * + * @codeCoverageIgnore + * + * @param \EasyWeChat\Kernel\ServiceContainer $app + */ + public function __construct(ServiceContainer $app) + { + $this->app = $app; + + foreach ($this->app->extension->observers() as $observer) { + call_user_func_array([$this, 'push'], $observer); + } + } + + /** + * Handle and return response. + * + * @return Response + * + * @throws BadRequestException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function serve(): Response + { + $this->app['logger']->debug('Request received:', [ + 'method' => $this->app['request']->getMethod(), + 'uri' => $this->app['request']->getUri(), + 'content-type' => $this->app['request']->getContentType(), + 'content' => $this->app['request']->getContent(), + ]); + + $response = $this->validate()->resolve(); + + $this->app['logger']->debug('Server response created:', ['content' => $response->getContent()]); + + return $response; + } + + /** + * @return $this + * + * @throws \EasyWeChat\Kernel\Exceptions\BadRequestException + */ + public function validate() + { + if (!$this->alwaysValidate && !$this->isSafeMode()) { + return $this; + } + + if ($this->app['request']->get('signature') !== $this->signature([ + $this->getToken(), + $this->app['request']->get('timestamp'), + $this->app['request']->get('nonce'), + ])) { + throw new BadRequestException('Invalid request signature.', 400); + } + + return $this; + } + + /** + * Force validate request. + * + * @return $this + */ + public function forceValidate() + { + $this->alwaysValidate = true; + + return $this; + } + + /** + * Get request message. + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|string + * + * @throws BadRequestException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function getMessage() + { + $message = $this->parseMessage($this->app['request']->getContent(false)); + + if (!is_array($message) || empty($message)) { + throw new BadRequestException('No message received.'); + } + + if ($this->isSafeMode() && !empty($message['Encrypt'])) { + $message = $this->decryptMessage($message); + + // Handle JSON format. + $dataSet = json_decode($message, true); + + if ($dataSet && (JSON_ERROR_NONE === json_last_error())) { + return $dataSet; + } + + $message = XML::parse($message); + } + + return $this->detectAndCastResponseToType($message, $this->app->config->get('response_type')); + } + + /** + * Resolve server request and return the response. + * + * @return \Symfony\Component\HttpFoundation\Response + * + * @throws \EasyWeChat\Kernel\Exceptions\BadRequestException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + protected function resolve(): Response + { + $result = $this->handleRequest(); + + if ($this->shouldReturnRawResponse()) { + $response = new Response($result['response']); + } else { + $response = new Response( + $this->buildResponse($result['to'], $result['from'], $result['response']), + 200, + ['Content-Type' => 'application/xml'] + ); + } + + $this->app->events->dispatch(new Events\ServerGuardResponseCreated($response)); + + return $response; + } + + /** + * @return string|null + */ + protected function getToken() + { + return $this->app['config']['token']; + } + + /** + * @param string $to + * @param string $from + * @param \EasyWeChat\Kernel\Contracts\MessageInterface|string|int $message + * + * @return string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + */ + public function buildResponse(string $to, string $from, $message) + { + if (empty($message) || self::SUCCESS_EMPTY_RESPONSE === $message) { + return self::SUCCESS_EMPTY_RESPONSE; + } + + if ($message instanceof RawMessage) { + return $message->get('content', self::SUCCESS_EMPTY_RESPONSE); + } + + if (is_string($message) || is_numeric($message)) { + $message = new Text((string) $message); + } + + if (is_array($message) && reset($message) instanceof NewsItem) { + $message = new News($message); + } + + if (!($message instanceof Message)) { + throw new InvalidArgumentException(sprintf('Invalid Messages type "%s".', gettype($message))); + } + + return $this->buildReply($to, $from, $message); + } + + /** + * Handle request. + * + * @return array + * + * @throws \EasyWeChat\Kernel\Exceptions\BadRequestException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + protected function handleRequest(): array + { + $castedMessage = $this->getMessage(); + + $messageArray = $this->detectAndCastResponseToType($castedMessage, 'array'); + + $response = $this->dispatch(self::MESSAGE_TYPE_MAPPING[$messageArray['MsgType'] ?? $messageArray['msg_type'] ?? 'text'], $castedMessage); + + return [ + 'to' => $messageArray['FromUserName'] ?? '', + 'from' => $messageArray['ToUserName'] ?? '', + 'response' => $response, + ]; + } + + /** + * Build reply XML. + * + * @param string $to + * @param string $from + * @param \EasyWeChat\Kernel\Contracts\MessageInterface $message + * + * @return string + */ + protected function buildReply(string $to, string $from, MessageInterface $message): string + { + $prepends = [ + 'ToUserName' => $to, + 'FromUserName' => $from, + 'CreateTime' => time(), + 'MsgType' => $message->getType(), + ]; + + $response = $message->transformToXml($prepends); + + if ($this->isSafeMode()) { + $this->app['logger']->debug('Messages safe mode is enabled.'); + $response = $this->app['encryptor']->encrypt($response); + } + + return $response; + } + + /** + * @param array $params + * + * @return string + */ + protected function signature(array $params) + { + sort($params, SORT_STRING); + + return sha1(implode($params)); + } + + /** + * Parse message array from raw php input. + * + * @param string $content + * + * @return array + * + * @throws \EasyWeChat\Kernel\Exceptions\BadRequestException + */ + protected function parseMessage($content) + { + try { + if (0 === stripos($content, '<')) { + $content = XML::parse($content); + } else { + // Handle JSON format. + $dataSet = json_decode($content, true); + if ($dataSet && (JSON_ERROR_NONE === json_last_error())) { + $content = $dataSet; + } + } + + return (array) $content; + } catch (\Exception $e) { + throw new BadRequestException(sprintf('Invalid message content:(%s) %s', $e->getCode(), $e->getMessage()), $e->getCode()); + } + } + + /** + * Check the request message safe mode. + * + * @return bool + */ + protected function isSafeMode(): bool + { + return $this->app['request']->get('signature') && 'aes' === $this->app['request']->get('encrypt_type'); + } + + /** + * @return bool + */ + protected function shouldReturnRawResponse(): bool + { + return false; + } + + /** + * @param array $message + * + * @return mixed + */ + protected function decryptMessage(array $message) + { + return $message = $this->app['encryptor']->decrypt( + $message['Encrypt'], + $this->app['request']->get('msg_signature'), + $this->app['request']->get('nonce'), + $this->app['request']->get('timestamp') + ); + } +} diff --git a/vendor/overtrue/wechat/src/Kernel/ServiceContainer.php b/vendor/overtrue/wechat/src/Kernel/ServiceContainer.php new file mode 100644 index 0000000..be1e0a1 --- /dev/null +++ b/vendor/overtrue/wechat/src/Kernel/ServiceContainer.php @@ -0,0 +1,167 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Kernel; + +use EasyWeChat\Kernel\Providers\ConfigServiceProvider; +use EasyWeChat\Kernel\Providers\EventDispatcherServiceProvider; +use EasyWeChat\Kernel\Providers\ExtensionServiceProvider; +use EasyWeChat\Kernel\Providers\HttpClientServiceProvider; +use EasyWeChat\Kernel\Providers\LogServiceProvider; +use EasyWeChat\Kernel\Providers\RequestServiceProvider; +use EasyWeChatComposer\Traits\WithAggregator; +use Pimple\Container; + +/** + * Class ServiceContainer. + * + * @author overtrue + * + * @property \EasyWeChat\Kernel\Config $config + * @property \Symfony\Component\HttpFoundation\Request $request + * @property \GuzzleHttp\Client $http_client + * @property \Monolog\Logger $logger + * @property \Symfony\Component\EventDispatcher\EventDispatcher $events + */ +class ServiceContainer extends Container +{ + use WithAggregator; + + /** + * @var string + */ + protected $id; + + /** + * @var array + */ + protected $providers = []; + + /** + * @var array + */ + protected $defaultConfig = []; + + /** + * @var array + */ + protected $userConfig = []; + + /** + * Constructor. + * + * @param array $config + * @param array $prepends + * @param string|null $id + */ + public function __construct(array $config = [], array $prepends = [], string $id = null) + { + $this->userConfig = $config; + + parent::__construct($prepends); + + $this->registerProviders($this->getProviders()); + + $this->id = $id; + + $this->aggregate(); + + $this->events->dispatch(new Events\ApplicationInitialized($this)); + } + + /** + * @return string + */ + public function getId() + { + return $this->id ?? $this->id = md5(json_encode($this->userConfig)); + } + + /** + * @return array + */ + public function getConfig() + { + $base = [ + // http://docs.guzzlephp.org/en/stable/request-options.html + 'http' => [ + 'timeout' => 30.0, + 'base_uri' => 'https://api.weixin.qq.com/', + ], + ]; + + return array_replace_recursive($base, $this->defaultConfig, $this->userConfig); + } + + /** + * Return all providers. + * + * @return array + */ + public function getProviders() + { + return array_merge([ + ConfigServiceProvider::class, + LogServiceProvider::class, + RequestServiceProvider::class, + HttpClientServiceProvider::class, + ExtensionServiceProvider::class, + EventDispatcherServiceProvider::class, + ], $this->providers); + } + + /** + * @param string $id + * @param mixed $value + */ + public function rebind($id, $value) + { + $this->offsetUnset($id); + $this->offsetSet($id, $value); + } + + /** + * Magic get access. + * + * @param string $id + * + * @return mixed + */ + public function __get($id) + { + if ($this->shouldDelegate($id)) { + return $this->delegateTo($id); + } + + return $this->offsetGet($id); + } + + /** + * Magic set access. + * + * @param string $id + * @param mixed $value + */ + public function __set($id, $value) + { + $this->offsetSet($id, $value); + } + + /** + * @param array $providers + */ + public function registerProviders(array $providers) + { + foreach ($providers as $provider) { + parent::register(new $provider()); + } + } +} diff --git a/vendor/overtrue/wechat/src/Kernel/Support/AES.php b/vendor/overtrue/wechat/src/Kernel/Support/AES.php new file mode 100644 index 0000000..73b1b24 --- /dev/null +++ b/vendor/overtrue/wechat/src/Kernel/Support/AES.php @@ -0,0 +1,85 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Kernel\Support; + +/** + * Class AES. + * + * @author overtrue + */ +class AES +{ + /** + * @param string $text + * @param string $key + * @param string $iv + * @param int $option + * + * @return string + */ + public static function encrypt(string $text, string $key, string $iv, int $option = OPENSSL_RAW_DATA): string + { + self::validateKey($key); + self::validateIv($iv); + + return openssl_encrypt($text, self::getMode($key), $key, $option, $iv); + } + + /** + * @param string $cipherText + * @param string $key + * @param string $iv + * @param int $option + * @param string|null $method + * + * @return string + */ + public static function decrypt(string $cipherText, string $key, string $iv, int $option = OPENSSL_RAW_DATA, $method = null): string + { + self::validateKey($key); + self::validateIv($iv); + + return openssl_decrypt($cipherText, $method ?: self::getMode($key), $key, $option, $iv); + } + + /** + * @param string $key + * + * @return string + */ + public static function getMode($key) + { + return 'aes-'.(8 * strlen($key)).'-cbc'; + } + + /** + * @param string $key + */ + public static function validateKey(string $key) + { + if (!in_array(strlen($key), [16, 24, 32], true)) { + throw new \InvalidArgumentException(sprintf('Key length must be 16, 24, or 32 bytes; got key len (%s).', strlen($key))); + } + } + + /** + * @param string $iv + * + * @throws \InvalidArgumentException + */ + public static function validateIv(string $iv) + { + if (!empty($iv) && 16 !== strlen($iv)) { + throw new \InvalidArgumentException('IV length must be 16 bytes.'); + } + } +} diff --git a/vendor/overtrue/wechat/src/Kernel/Support/Arr.php b/vendor/overtrue/wechat/src/Kernel/Support/Arr.php new file mode 100644 index 0000000..c251da2 --- /dev/null +++ b/vendor/overtrue/wechat/src/Kernel/Support/Arr.php @@ -0,0 +1,466 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Kernel\Support; + +/** + * Array helper from Illuminate\Support\Arr. + */ +class Arr +{ + /** + * Add an element to an array using "dot" notation if it doesn't exist. + * + * @param array $array + * @param string $key + * @param mixed $value + * + * @return array + */ + public static function add(array $array, $key, $value) + { + if (is_null(static::get($array, $key))) { + static::set($array, $key, $value); + } + + return $array; + } + + /** + * Cross join the given arrays, returning all possible permutations. + * + * @param array ...$arrays + * + * @return array + */ + public static function crossJoin(...$arrays) + { + $results = [[]]; + + foreach ($arrays as $index => $array) { + $append = []; + + foreach ($results as $product) { + foreach ($array as $item) { + $product[$index] = $item; + + $append[] = $product; + } + } + + $results = $append; + } + + return $results; + } + + /** + * Divide an array into two arrays. One with keys and the other with values. + * + * @param array $array + * + * @return array + */ + public static function divide(array $array) + { + return [array_keys($array), array_values($array)]; + } + + /** + * Flatten a multi-dimensional associative array with dots. + * + * @param array $array + * @param string $prepend + * + * @return array + */ + public static function dot(array $array, $prepend = '') + { + $results = []; + + foreach ($array as $key => $value) { + if (is_array($value) && !empty($value)) { + $results = array_merge($results, static::dot($value, $prepend.$key.'.')); + } else { + $results[$prepend.$key] = $value; + } + } + + return $results; + } + + /** + * Get all of the given array except for a specified array of items. + * + * @param array $array + * @param array|string $keys + * + * @return array + */ + public static function except(array $array, $keys) + { + static::forget($array, $keys); + + return $array; + } + + /** + * Determine if the given key exists in the provided array. + * + * @param array $array + * @param string|int $key + * + * @return bool + */ + public static function exists(array $array, $key) + { + return array_key_exists($key, $array); + } + + /** + * Return the first element in an array passing a given truth test. + * + * @param array $array + * @param callable|null $callback + * @param mixed $default + * + * @return mixed + */ + public static function first(array $array, callable $callback = null, $default = null) + { + if (is_null($callback)) { + if (empty($array)) { + return $default; + } + + foreach ($array as $item) { + return $item; + } + } + + foreach ($array as $key => $value) { + if (call_user_func($callback, $value, $key)) { + return $value; + } + } + + return $default; + } + + /** + * Return the last element in an array passing a given truth test. + * + * @param array $array + * @param callable|null $callback + * @param mixed $default + * + * @return mixed + */ + public static function last(array $array, callable $callback = null, $default = null) + { + if (is_null($callback)) { + return empty($array) ? $default : end($array); + } + + return static::first(array_reverse($array, true), $callback, $default); + } + + /** + * Flatten a multi-dimensional array into a single level. + * + * @param array $array + * @param int $depth + * + * @return array + */ + public static function flatten(array $array, $depth = \PHP_INT_MAX) + { + return array_reduce($array, function ($result, $item) use ($depth) { + $item = $item instanceof Collection ? $item->all() : $item; + + if (!is_array($item)) { + return array_merge($result, [$item]); + } elseif (1 === $depth) { + return array_merge($result, array_values($item)); + } + + return array_merge($result, static::flatten($item, $depth - 1)); + }, []); + } + + /** + * Remove one or many array items from a given array using "dot" notation. + * + * @param array $array + * @param array|string $keys + */ + public static function forget(array &$array, $keys) + { + $original = &$array; + + $keys = (array) $keys; + + if (0 === count($keys)) { + return; + } + + foreach ($keys as $key) { + // if the exact key exists in the top-level, remove it + if (static::exists($array, $key)) { + unset($array[$key]); + + continue; + } + + $parts = explode('.', $key); + + // clean up before each pass + $array = &$original; + + while (count($parts) > 1) { + $part = array_shift($parts); + + if (isset($array[$part]) && is_array($array[$part])) { + $array = &$array[$part]; + } else { + continue 2; + } + } + + unset($array[array_shift($parts)]); + } + } + + /** + * Get an item from an array using "dot" notation. + * + * @param array $array + * @param string $key + * @param mixed $default + * + * @return mixed + */ + public static function get(array $array, $key, $default = null) + { + if (is_null($key)) { + return $array; + } + + if (static::exists($array, $key)) { + return $array[$key]; + } + + foreach (explode('.', $key) as $segment) { + if (static::exists($array, $segment)) { + $array = $array[$segment]; + } else { + return $default; + } + } + + return $array; + } + + /** + * Check if an item or items exist in an array using "dot" notation. + * + * @param array $array + * @param string|array $keys + * + * @return bool + */ + public static function has(array $array, $keys) + { + if (is_null($keys)) { + return false; + } + + $keys = (array) $keys; + + if (empty($array)) { + return false; + } + + if ($keys === []) { + return false; + } + + foreach ($keys as $key) { + $subKeyArray = $array; + + if (static::exists($array, $key)) { + continue; + } + + foreach (explode('.', $key) as $segment) { + if (static::exists($subKeyArray, $segment)) { + $subKeyArray = $subKeyArray[$segment]; + } else { + return false; + } + } + } + + return true; + } + + /** + * Determines if an array is associative. + * + * An array is "associative" if it doesn't have sequential numerical keys beginning with zero. + * + * @param array $array + * + * @return bool + */ + public static function isAssoc(array $array) + { + $keys = array_keys($array); + + return array_keys($keys) !== $keys; + } + + /** + * Get a subset of the items from the given array. + * + * @param array $array + * @param array|string $keys + * + * @return array + */ + public static function only(array $array, $keys) + { + return array_intersect_key($array, array_flip((array) $keys)); + } + + /** + * Push an item onto the beginning of an array. + * + * @param array $array + * @param mixed $value + * @param mixed $key + * + * @return array + */ + public static function prepend(array $array, $value, $key = null) + { + if (is_null($key)) { + array_unshift($array, $value); + } else { + $array = [$key => $value] + $array; + } + + return $array; + } + + /** + * Get a value from the array, and remove it. + * + * @param array $array + * @param string $key + * @param mixed $default + * + * @return mixed + */ + public static function pull(array &$array, $key, $default = null) + { + $value = static::get($array, $key, $default); + + static::forget($array, $key); + + return $value; + } + + /** + * Get a 1 value from an array. + * + * @param array $array + * @param int|null $amount + * + * @return mixed + * + * @throws \InvalidArgumentException + */ + public static function random(array $array, int $amount = null) + { + if (is_null($amount)) { + return $array[array_rand($array)]; + } + + $keys = array_rand($array, $amount); + + $results = []; + + foreach ((array) $keys as $key) { + $results[] = $array[$key]; + } + + return $results; + } + + /** + * Set an array item to a given value using "dot" notation. + * + * If no key is given to the method, the entire array will be replaced. + * + * @param array $array + * @param string $key + * @param mixed $value + * + * @return array + */ + public static function set(array &$array, string $key, $value) + { + $keys = explode('.', $key); + + while (count($keys) > 1) { + $key = array_shift($keys); + + // If the key doesn't exist at this depth, we will just create an empty array + // to hold the next value, allowing us to create the arrays to hold final + // values at the correct depth. Then we'll keep digging into the array. + if (!isset($array[$key]) || !is_array($array[$key])) { + $array[$key] = []; + } + + $array = &$array[$key]; + } + + $array[array_shift($keys)] = $value; + + return $array; + } + + /** + * Filter the array using the given callback. + * + * @param array $array + * @param callable $callback + * + * @return array + */ + public static function where(array $array, callable $callback) + { + return array_filter($array, $callback, ARRAY_FILTER_USE_BOTH); + } + + /** + * If the given value is not an array, wrap it in one. + * + * @param mixed $value + * + * @return array + */ + public static function wrap($value) + { + return !is_array($value) ? [$value] : $value; + } +} diff --git a/vendor/overtrue/wechat/src/Kernel/Support/ArrayAccessible.php b/vendor/overtrue/wechat/src/Kernel/Support/ArrayAccessible.php new file mode 100644 index 0000000..72e0b04 --- /dev/null +++ b/vendor/overtrue/wechat/src/Kernel/Support/ArrayAccessible.php @@ -0,0 +1,66 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Kernel\Support; + +use ArrayAccess; +use ArrayIterator; +use EasyWeChat\Kernel\Contracts\Arrayable; +use IteratorAggregate; + +/** + * Class ArrayAccessible. + * + * @author overtrue + */ +class ArrayAccessible implements ArrayAccess, IteratorAggregate, Arrayable +{ + private $array; + + public function __construct(array $array = []) + { + $this->array = $array; + } + + public function offsetExists($offset) + { + return array_key_exists($offset, $this->array); + } + + public function offsetGet($offset) + { + return $this->array[$offset]; + } + + public function offsetSet($offset, $value) + { + if (null === $offset) { + $this->array[] = $value; + } else { + $this->array[$offset] = $value; + } + } + + public function offsetUnset($offset) + { + unset($this->array[$offset]); + } + + public function getIterator() + { + return new ArrayIterator($this->array); + } + + public function toArray() + { + return $this->array; + } +} diff --git a/vendor/overtrue/wechat/src/Kernel/Support/Collection.php b/vendor/overtrue/wechat/src/Kernel/Support/Collection.php new file mode 100644 index 0000000..d1b77a9 --- /dev/null +++ b/vendor/overtrue/wechat/src/Kernel/Support/Collection.php @@ -0,0 +1,440 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Kernel\Support; + +use ArrayAccess; +use ArrayIterator; +use Countable; +use EasyWeChat\Kernel\Contracts\Arrayable; +use IteratorAggregate; +use JsonSerializable; +use Serializable; + +/** + * Class Collection. + */ +class Collection implements ArrayAccess, Countable, IteratorAggregate, JsonSerializable, Serializable, Arrayable +{ + /** + * The collection data. + * + * @var array + */ + protected $items = []; + + /** + * set data. + * + * @param array $items + */ + public function __construct(array $items = []) + { + foreach ($items as $key => $value) { + $this->set($key, $value); + } + } + + /** + * Return all items. + * + * @return array + */ + public function all() + { + return $this->items; + } + + /** + * Return specific items. + * + * @param array $keys + * + * @return \EasyWeChat\Kernel\Support\Collection + */ + public function only(array $keys) + { + $return = []; + + foreach ($keys as $key) { + $value = $this->get($key); + + if (!is_null($value)) { + $return[$key] = $value; + } + } + + return new static($return); + } + + /** + * Get all items except for those with the specified keys. + * + * @param mixed $keys + * + * @return static + */ + public function except($keys) + { + $keys = is_array($keys) ? $keys : func_get_args(); + + return new static(Arr::except($this->items, $keys)); + } + + /** + * Merge data. + * + * @param Collection|array $items + * + * @return \EasyWeChat\Kernel\Support\Collection + */ + public function merge($items) + { + $clone = new static($this->all()); + + foreach ($items as $key => $value) { + $clone->set($key, $value); + } + + return $clone; + } + + /** + * To determine Whether the specified element exists. + * + * @param string $key + * + * @return bool + */ + public function has($key) + { + return !is_null(Arr::get($this->items, $key)); + } + + /** + * Retrieve the first item. + * + * @return mixed + */ + public function first() + { + return reset($this->items); + } + + /** + * Retrieve the last item. + * + * @return bool + */ + public function last() + { + $end = end($this->items); + + reset($this->items); + + return $end; + } + + /** + * add the item value. + * + * @param string $key + * @param mixed $value + */ + public function add($key, $value) + { + Arr::set($this->items, $key, $value); + } + + /** + * Set the item value. + * + * @param string $key + * @param mixed $value + */ + public function set($key, $value) + { + Arr::set($this->items, $key, $value); + } + + /** + * Retrieve item from Collection. + * + * @param string $key + * @param mixed $default + * + * @return mixed + */ + public function get($key, $default = null) + { + return Arr::get($this->items, $key, $default); + } + + /** + * Remove item form Collection. + * + * @param string $key + */ + public function forget($key) + { + Arr::forget($this->items, $key); + } + + /** + * Build to array. + * + * @return array + */ + public function toArray() + { + return $this->all(); + } + + /** + * Build to json. + * + * @param int $option + * + * @return string + */ + public function toJson($option = JSON_UNESCAPED_UNICODE) + { + return json_encode($this->all(), $option); + } + + /** + * To string. + * + * @return string + */ + public function __toString() + { + return $this->toJson(); + } + + /** + * (PHP 5 >= 5.4.0)
+ * Specify data which should be serialized to JSON. + * + * @see http://php.net/manual/en/jsonserializable.jsonserialize.php + * + * @return mixed data which can be serialized by json_encode, + * which is a value of any type other than a resource + */ + #[\ReturnTypeWillChange] + public function jsonSerialize() + { + return $this->items; + } + + public function __serialize(): array + { + return $this->items; + } + + /** + * (PHP 5 >= 5.1.0)
+ * String representation of object. + * + * @see http://php.net/manual/en/serializable.serialize.php + * + * @return string the string representation of the object or null + */ + public function serialize() + { + return serialize($this->items); + } + + /** + * (PHP 5 >= 5.0.0)
+ * Retrieve an external iterator. + * + * @see http://php.net/manual/en/iteratoraggregate.getiterator.php + * + * @return \ArrayIterator An instance of an object implementing Iterator or + * Traversable + */ + #[\ReturnTypeWillChange] + public function getIterator() + { + return new ArrayIterator($this->items); + } + + /** + * (PHP 5 >= 5.1.0)
+ * Count elements of an object. + * + * @see http://php.net/manual/en/countable.count.php + * + * @return int the custom count as an integer. + *

+ *

+ * The return value is cast to an integer + */ + #[\ReturnTypeWillChange] + public function count() + { + return count($this->items); + } + + public function __unserialize(array $data): void + { + $this->items = $data; + } + + /** + * (PHP 5 >= 5.1.0)
+ * Constructs the object. + * + * @see http://php.net/manual/en/serializable.unserialize.php + * + * @param string $serialized

+ * The string representation of the object. + *

+ * + * @return mixed|void + */ + public function unserialize($serialized) + { + return $this->items = unserialize($serialized); + } + + /** + * Get a data by key. + * + * @param string $key + * + * @return mixed + */ + public function __get($key) + { + return $this->get($key); + } + + /** + * Assigns a value to the specified data. + * + * @param string $key + * @param mixed $value + */ + public function __set($key, $value) + { + $this->set($key, $value); + } + + /** + * Whether or not an data exists by key. + * + * @param string $key + * + * @return bool + */ + public function __isset($key) + { + return $this->has($key); + } + + /** + * Unset an data by key. + * + * @param string $key + */ + public function __unset($key) + { + $this->forget($key); + } + + /** + * var_export. + * + * @param array $properties + * + * @return array + */ + public static function __set_state(array $properties) + { + return (new static($properties))->all(); + } + + /** + * (PHP 5 >= 5.0.0)
+ * Whether a offset exists. + * + * @see http://php.net/manual/en/arrayaccess.offsetexists.php + * + * @param mixed $offset

+ * An offset to check for. + *

+ * + * @return bool true on success or false on failure. + * The return value will be casted to boolean if non-boolean was returned + */ + #[\ReturnTypeWillChange] + public function offsetExists($offset) + { + return $this->has($offset); + } + + /** + * (PHP 5 >= 5.0.0)
+ * Offset to unset. + * + * @see http://php.net/manual/en/arrayaccess.offsetunset.php + * + * @param mixed $offset

+ * The offset to unset. + *

+ */ + #[\ReturnTypeWillChange] + public function offsetUnset($offset) + { + if ($this->offsetExists($offset)) { + $this->forget($offset); + } + } + + /** + * (PHP 5 >= 5.0.0)
+ * Offset to retrieve. + * + * @see http://php.net/manual/en/arrayaccess.offsetget.php + * + * @param mixed $offset

+ * The offset to retrieve. + *

+ * + * @return mixed Can return all value types + */ + #[\ReturnTypeWillChange] + public function offsetGet($offset) + { + return $this->offsetExists($offset) ? $this->get($offset) : null; + } + + /** + * (PHP 5 >= 5.0.0)
+ * Offset to set. + * + * @see http://php.net/manual/en/arrayaccess.offsetset.php + * + * @param mixed $offset

+ * The offset to assign the value to. + *

+ * @param mixed $value

+ * The value to set. + *

+ */ + #[\ReturnTypeWillChange] + public function offsetSet($offset, $value) + { + $this->set($offset, $value); + } +} diff --git a/vendor/overtrue/wechat/src/Kernel/Support/File.php b/vendor/overtrue/wechat/src/Kernel/Support/File.php new file mode 100644 index 0000000..b51b41d --- /dev/null +++ b/vendor/overtrue/wechat/src/Kernel/Support/File.php @@ -0,0 +1,135 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Kernel\Support; + +use finfo; + +/** + * Class File. + */ +class File +{ + /** + * MIME mapping. + * + * @var array + */ + protected static $extensionMap = [ + 'audio/wav' => '.wav', + 'audio/x-ms-wma' => '.wma', + 'video/x-ms-wmv' => '.wmv', + 'video/mp4' => '.mp4', + 'audio/mpeg' => '.mp3', + 'audio/amr' => '.amr', + 'application/vnd.rn-realmedia' => '.rm', + 'audio/mid' => '.mid', + 'image/bmp' => '.bmp', + 'image/gif' => '.gif', + 'image/png' => '.png', + 'image/tiff' => '.tiff', + 'image/jpeg' => '.jpg', + 'application/pdf' => '.pdf', + + // 列举更多的文件 mime, 企业号是支持的,公众平台这边之后万一也更新了呢 + 'application/msword' => '.doc', + + 'application/vnd.openxmlformats-officedocument.wordprocessingml.document' => '.docx', + 'application/vnd.openxmlformats-officedocument.wordprocessingml.template' => '.dotx', + 'application/vnd.ms-word.document.macroEnabled.12' => '.docm', + 'application/vnd.ms-word.template.macroEnabled.12' => '.dotm', + + 'application/vnd.ms-excel' => '.xls', + + 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet' => '.xlsx', + 'application/vnd.openxmlformats-officedocument.spreadsheetml.template' => '.xltx', + 'application/vnd.ms-excel.sheet.macroEnabled.12' => '.xlsm', + 'application/vnd.ms-excel.template.macroEnabled.12' => '.xltm', + 'application/vnd.ms-excel.addin.macroEnabled.12' => '.xlam', + 'application/vnd.ms-excel.sheet.binary.macroEnabled.12' => '.xlsb', + + 'application/vnd.ms-powerpoint' => '.ppt', + + 'application/vnd.openxmlformats-officedocument.presentationml.presentation' => '.pptx', + 'application/vnd.openxmlformats-officedocument.presentationml.template' => '.potx', + 'application/vnd.openxmlformats-officedocument.presentationml.slideshow' => '.ppsx', + 'application/vnd.ms-powerpoint.addin.macroEnabled.12' => '.ppam', + ]; + + /** + * File header signatures. + * + * @var array + */ + protected static $signatures = [ + 'ffd8ff' => '.jpg', + '424d' => '.bmp', + '47494638' => '.gif', + '2f55736572732f6f7665' => '.png', + '89504e47' => '.png', + '494433' => '.mp3', + 'fffb' => '.mp3', + 'fff3' => '.mp3', + '3026b2758e66cf11' => '.wma', + '52494646' => '.wav', + '57415645' => '.wav', + '41564920' => '.avi', + '000001ba' => '.mpg', + '000001b3' => '.mpg', + '2321414d52' => '.amr', + '25504446' => '.pdf', + ]; + + /** + * Return steam extension. + * + * @param string $stream + * + * @return string|false + */ + public static function getStreamExt($stream) + { + $ext = self::getExtBySignature($stream); + + try { + if (empty($ext) && is_readable($stream)) { + $stream = file_get_contents($stream); + } + } catch (\Exception $e) { + } + + $fileInfo = new finfo(FILEINFO_MIME); + + $mime = strstr($fileInfo->buffer($stream), ';', true); + + return isset(self::$extensionMap[$mime]) ? self::$extensionMap[$mime] : $ext; + } + + /** + * Get file extension by file header signature. + * + * @param string $stream + * + * @return string + */ + public static function getExtBySignature($stream) + { + $prefix = strval(bin2hex(mb_strcut($stream, 0, 10))); + + foreach (self::$signatures as $signature => $extension) { + if (0 === strpos($prefix, strval($signature))) { + return $extension; + } + } + + return ''; + } +} diff --git a/vendor/overtrue/wechat/src/Kernel/Support/Helpers.php b/vendor/overtrue/wechat/src/Kernel/Support/Helpers.php new file mode 100644 index 0000000..08d4092 --- /dev/null +++ b/vendor/overtrue/wechat/src/Kernel/Support/Helpers.php @@ -0,0 +1,131 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Kernel\Support; + +/* + * helpers. + * + * @author overtrue + */ + +/** + * Generate a signature. + * + * @param array $attributes + * @param string $key + * @param string $encryptMethod + * + * @return string + */ +function generate_sign(array $attributes, $key, $encryptMethod = 'md5') +{ + ksort($attributes); + + $attributes['key'] = $key; + + return strtoupper(call_user_func_array($encryptMethod, [urldecode(http_build_query($attributes))])); +} + +/** + * @param string $signType + * @param string $secretKey + * + * @return \Closure|string + */ +function get_encrypt_method(string $signType, string $secretKey = '') +{ + if ('HMAC-SHA256' === $signType) { + return function ($str) use ($secretKey) { + return hash_hmac('sha256', $str, $secretKey); + }; + } + + return 'md5'; +} + +/** + * Get client ip. + * + * @return string + */ +function get_client_ip() +{ + if (!empty($_SERVER['REMOTE_ADDR'])) { + $ip = $_SERVER['REMOTE_ADDR']; + } else { + // for php-cli(phpunit etc.) + $ip = defined('PHPUNIT_RUNNING') ? '127.0.0.1' : gethostbyname(gethostname()); + } + + return filter_var($ip, FILTER_VALIDATE_IP) ?: '127.0.0.1'; +} + +/** + * Get current server ip. + * + * @return string + */ +function get_server_ip() +{ + if (!empty($_SERVER['SERVER_ADDR'])) { + $ip = $_SERVER['SERVER_ADDR']; + } elseif (!empty($_SERVER['SERVER_NAME'])) { + $ip = gethostbyname($_SERVER['SERVER_NAME']); + } else { + // for php-cli(phpunit etc.) + $ip = defined('PHPUNIT_RUNNING') ? '127.0.0.1' : gethostbyname(gethostname()); + } + + return filter_var($ip, FILTER_VALIDATE_IP) ?: '127.0.0.1'; +} + +/** + * Return current url. + * + * @return string + */ +function current_url() +{ + $protocol = 'http://'; + + if ((!empty($_SERVER['HTTPS']) && 'off' !== $_SERVER['HTTPS']) || ($_SERVER['HTTP_X_FORWARDED_PROTO'] ?? 'http') === 'https') { + $protocol = 'https://'; + } + + return $protocol.$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI']; +} + +/** + * Return random string. + * + * @param string $length + * + * @return string + */ +function str_random($length) +{ + return Str::random($length); +} + +/** + * @param string $content + * @param string $publicKey + * + * @return string + */ +function rsa_public_encrypt($content, $publicKey) +{ + $encrypted = ''; + openssl_public_encrypt($content, $encrypted, openssl_pkey_get_public($publicKey), OPENSSL_PKCS1_OAEP_PADDING); + + return base64_encode($encrypted); +} diff --git a/vendor/overtrue/wechat/src/Kernel/Support/Str.php b/vendor/overtrue/wechat/src/Kernel/Support/Str.php new file mode 100644 index 0000000..3a51968 --- /dev/null +++ b/vendor/overtrue/wechat/src/Kernel/Support/Str.php @@ -0,0 +1,193 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Kernel\Support; + +use EasyWeChat\Kernel\Exceptions\RuntimeException; + +/** + * Class Str. + */ +class Str +{ + /** + * The cache of snake-cased words. + * + * @var array + */ + protected static $snakeCache = []; + + /** + * The cache of camel-cased words. + * + * @var array + */ + protected static $camelCache = []; + + /** + * The cache of studly-cased words. + * + * @var array + */ + protected static $studlyCache = []; + + /** + * Convert a value to camel case. + * + * @param string $value + * + * @return string + */ + public static function camel($value) + { + if (isset(static::$camelCache[$value])) { + return static::$camelCache[$value]; + } + + return static::$camelCache[$value] = lcfirst(static::studly($value)); + } + + /** + * Generate a more truly "random" alpha-numeric string. + * + * @param int $length + * + * @return string + * + * @throws \EasyWeChat\Kernel\Exceptions\RuntimeException + */ + public static function random($length = 16) + { + $string = ''; + + while (($len = strlen($string)) < $length) { + $size = $length - $len; + + $bytes = static::randomBytes($size); + + $string .= substr(str_replace(['/', '+', '='], '', base64_encode($bytes)), 0, $size); + } + + return $string; + } + + /** + * Generate a more truly "random" bytes. + * + * @param int $length + * + * @return string + * + * @throws RuntimeException + * + * @codeCoverageIgnore + * + * @throws \Exception + */ + public static function randomBytes($length = 16) + { + if (function_exists('random_bytes')) { + $bytes = random_bytes($length); + } elseif (function_exists('openssl_random_pseudo_bytes')) { + $bytes = openssl_random_pseudo_bytes($length, $strong); + if (false === $bytes || false === $strong) { + throw new RuntimeException('Unable to generate random string.'); + } + } else { + throw new RuntimeException('OpenSSL extension is required for PHP 5 users.'); + } + + return $bytes; + } + + /** + * Generate a "random" alpha-numeric string. + * + * Should not be considered sufficient for cryptography, etc. + * + * @param int $length + * + * @return string + */ + public static function quickRandom($length = 16) + { + $pool = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'; + + return substr(str_shuffle(str_repeat($pool, $length)), 0, $length); + } + + /** + * Convert the given string to upper-case. + * + * @param string $value + * + * @return string + */ + public static function upper($value) + { + return mb_strtoupper($value); + } + + /** + * Convert the given string to title case. + * + * @param string $value + * + * @return string + */ + public static function title($value) + { + return mb_convert_case($value, MB_CASE_TITLE, 'UTF-8'); + } + + /** + * Convert a string to snake case. + * + * @param string $value + * @param string $delimiter + * + * @return string + */ + public static function snake($value, $delimiter = '_') + { + $key = $value.$delimiter; + + if (isset(static::$snakeCache[$key])) { + return static::$snakeCache[$key]; + } + + if (!ctype_lower($value)) { + $value = strtolower(preg_replace('/(.)(?=[A-Z])/', '$1'.$delimiter, $value)); + } + + return static::$snakeCache[$key] = trim($value, '_'); + } + + /** + * Convert a value to studly caps case. + * + * @param string $value + * + * @return string + */ + public static function studly($value) + { + $key = $value; + + if (isset(static::$studlyCache[$key])) { + return static::$studlyCache[$key]; + } + + $value = ucwords(str_replace(['-', '_'], ' ', $value)); + + return static::$studlyCache[$key] = str_replace(' ', '', $value); + } +} diff --git a/vendor/overtrue/wechat/src/Kernel/Support/XML.php b/vendor/overtrue/wechat/src/Kernel/Support/XML.php new file mode 100644 index 0000000..1d22bc5 --- /dev/null +++ b/vendor/overtrue/wechat/src/Kernel/Support/XML.php @@ -0,0 +1,167 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Kernel\Support; + +use SimpleXMLElement; + +/** + * Class XML. + */ +class XML +{ + /** + * XML to array. + * + * @param string $xml XML string + * + * @return array + */ + public static function parse($xml) + { + $backup = PHP_MAJOR_VERSION < 8 ? libxml_disable_entity_loader(true) : null; + + $result = self::normalize(simplexml_load_string(self::sanitize($xml), 'SimpleXMLElement', LIBXML_COMPACT | LIBXML_NOCDATA | LIBXML_NOBLANKS)); + + PHP_MAJOR_VERSION < 8 && libxml_disable_entity_loader($backup); + + return $result; + } + + /** + * XML encode. + * + * @param mixed $data + * @param string $root + * @param string $item + * @param string $attr + * @param string $id + * + * @return string + */ + public static function build( + $data, + $root = 'xml', + $item = 'item', + $attr = '', + $id = 'id' + ) { + if (is_array($attr)) { + $_attr = []; + + foreach ($attr as $key => $value) { + $_attr[] = "{$key}=\"{$value}\""; + } + + $attr = implode(' ', $_attr); + } + + $attr = trim($attr); + $attr = empty($attr) ? '' : " {$attr}"; + $xml = "<{$root}{$attr}>"; + $xml .= self::data2Xml($data, $item, $id); + $xml .= ""; + + return $xml; + } + + /** + * Build CDATA. + * + * @param string $string + * + * @return string + */ + public static function cdata($string) + { + return sprintf('', $string); + } + + /** + * Object to array. + * + * + * @param SimpleXMLElement $obj + * + * @return array + */ + protected static function normalize($obj) + { + $result = null; + + if (is_object($obj)) { + $obj = (array) $obj; + } + + if (is_array($obj)) { + foreach ($obj as $key => $value) { + $res = self::normalize($value); + if (('@attributes' === $key) && ($key)) { + $result = $res; // @codeCoverageIgnore + } else { + $result[$key] = $res; + } + } + } else { + $result = $obj; + } + + return $result; + } + + /** + * Array to XML. + * + * @param array $data + * @param string $item + * @param string $id + * + * @return string + */ + protected static function data2Xml($data, $item = 'item', $id = 'id') + { + $xml = $attr = ''; + + foreach ($data as $key => $val) { + if (is_numeric($key)) { + $id && $attr = " {$id}=\"{$key}\""; + $key = $item; + } + + $xml .= "<{$key}{$attr}>"; + + if ((is_array($val) || is_object($val))) { + $xml .= self::data2Xml((array) $val, $item, $id); + } else { + $xml .= is_numeric($val) ? $val : self::cdata($val); + } + + $xml .= ""; + } + + return $xml; + } + + /** + * Delete invalid characters in XML. + * + * @see https://www.w3.org/TR/2008/REC-xml-20081126/#charsets - XML charset range + * @see http://php.net/manual/en/regexp.reference.escape.php - escape in UTF-8 mode + * + * @param string $xml + * + * @return string + */ + public static function sanitize($xml) + { + return preg_replace('/[^\x{9}\x{A}\x{D}\x{20}-\x{D7FF}\x{E000}-\x{FFFD}\x{10000}-\x{10FFFF}]+/u', '', $xml); + } +} diff --git a/vendor/overtrue/wechat/src/Kernel/Traits/HasAttributes.php b/vendor/overtrue/wechat/src/Kernel/Traits/HasAttributes.php new file mode 100644 index 0000000..238d9e2 --- /dev/null +++ b/vendor/overtrue/wechat/src/Kernel/Traits/HasAttributes.php @@ -0,0 +1,251 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Kernel\Traits; + +use EasyWeChat\Kernel\Exceptions\InvalidArgumentException; +use EasyWeChat\Kernel\Support\Arr; +use EasyWeChat\Kernel\Support\Str; + +/** + * Trait Attributes. + */ +trait HasAttributes +{ + /** + * @var array + */ + protected $attributes = []; + + /** + * @var bool + */ + protected $snakeable = true; + + /** + * Set Attributes. + * + * @param array $attributes + * + * @return $this + */ + public function setAttributes(array $attributes = []) + { + $this->attributes = $attributes; + + return $this; + } + + /** + * Set attribute. + * + * @param string $attribute + * @param string $value + * + * @return $this + */ + public function setAttribute($attribute, $value) + { + Arr::set($this->attributes, $attribute, $value); + + return $this; + } + + /** + * Get attribute. + * + * @param string $attribute + * @param mixed $default + * + * @return mixed + */ + public function getAttribute($attribute, $default = null) + { + return Arr::get($this->attributes, $attribute, $default); + } + + /** + * @param string $attribute + * + * @return bool + */ + public function isRequired($attribute) + { + return in_array($attribute, $this->getRequired(), true); + } + + /** + * @return array|mixed + */ + public function getRequired() + { + return property_exists($this, 'required') ? $this->required : []; + } + + /** + * Set attribute. + * + * @param string $attribute + * @param mixed $value + * + * @return $this + */ + public function with($attribute, $value) + { + $this->snakeable && $attribute = Str::snake($attribute); + + $this->setAttribute($attribute, $value); + + return $this; + } + + /** + * Override parent set() method. + * + * @param string $attribute + * @param mixed $value + * + * @return $this + */ + public function set($attribute, $value) + { + $this->setAttribute($attribute, $value); + + return $this; + } + + /** + * Override parent get() method. + * + * @param string $attribute + * @param mixed $default + * + * @return mixed + */ + public function get($attribute, $default = null) + { + return $this->getAttribute($attribute, $default); + } + + /** + * @param string $key + * + * @return bool + */ + public function has(string $key) + { + return Arr::has($this->attributes, $key); + } + + /** + * @param array $attributes + * + * @return $this + */ + public function merge(array $attributes) + { + $this->attributes = array_merge($this->attributes, $attributes); + + return $this; + } + + /** + * @param array|string $keys + * + * @return array + */ + public function only($keys) + { + return Arr::only($this->attributes, $keys); + } + + /** + * Return all items. + * + * @return array + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + */ + public function all() + { + $this->checkRequiredAttributes(); + + return $this->attributes; + } + + /** + * Magic call. + * + * @param string $method + * @param array $args + * + * @return $this + */ + public function __call($method, $args) + { + if (0 === stripos($method, 'with')) { + return $this->with(substr($method, 4), array_shift($args)); + } + + throw new \BadMethodCallException(sprintf('Method "%s" does not exists.', $method)); + } + + /** + * Magic get. + * + * @param string $property + * + * @return mixed + */ + public function __get($property) + { + return $this->get($property); + } + + /** + * Magic set. + * + * @param string $property + * @param mixed $value + * + * @return $this + */ + public function __set($property, $value) + { + return $this->with($property, $value); + } + + /** + * Whether or not an data exists by key. + * + * @param string $key + * + * @return bool + */ + public function __isset($key) + { + return isset($this->attributes[$key]); + } + + /** + * Check required attributes. + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + */ + protected function checkRequiredAttributes() + { + foreach ($this->getRequired() as $attribute) { + if (is_null($this->get($attribute))) { + throw new InvalidArgumentException(sprintf('"%s" cannot be empty.', $attribute)); + } + } + } +} diff --git a/vendor/overtrue/wechat/src/Kernel/Traits/HasHttpRequests.php b/vendor/overtrue/wechat/src/Kernel/Traits/HasHttpRequests.php new file mode 100644 index 0000000..9bf0a02 --- /dev/null +++ b/vendor/overtrue/wechat/src/Kernel/Traits/HasHttpRequests.php @@ -0,0 +1,231 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Kernel\Traits; + +use GuzzleHttp\Client; +use GuzzleHttp\ClientInterface; +use GuzzleHttp\HandlerStack; +use Psr\Http\Message\ResponseInterface; + +/** + * Trait HasHttpRequests. + * + * @author overtrue + */ +trait HasHttpRequests +{ + use ResponseCastable; + + /** + * @var \GuzzleHttp\ClientInterface + */ + protected $httpClient; + + /** + * @var array + */ + protected $middlewares = []; + + /** + * @var \GuzzleHttp\HandlerStack + */ + protected $handlerStack; + + /** + * @var array + */ + protected static $defaults = [ + 'curl' => [ + CURLOPT_IPRESOLVE => CURL_IPRESOLVE_V4, + ], + ]; + + /** + * Set guzzle default settings. + * + * @param array $defaults + */ + public static function setDefaultOptions($defaults = []) + { + self::$defaults = $defaults; + } + + /** + * Return current guzzle default settings. + * + * @return array + */ + public static function getDefaultOptions(): array + { + return self::$defaults; + } + + /** + * Set GuzzleHttp\Client. + * + * @param \GuzzleHttp\ClientInterface $httpClient + * + * @return $this + */ + public function setHttpClient(ClientInterface $httpClient) + { + $this->httpClient = $httpClient; + + return $this; + } + + /** + * Return GuzzleHttp\ClientInterface instance. + * + * @return ClientInterface + */ + public function getHttpClient(): ClientInterface + { + if (!($this->httpClient instanceof ClientInterface)) { + if (property_exists($this, 'app') && $this->app['http_client']) { + $this->httpClient = $this->app['http_client']; + } else { + $this->httpClient = new Client(['handler' => HandlerStack::create($this->getGuzzleHandler())]); + } + } + + return $this->httpClient; + } + + /** + * Add a middleware. + * + * @param callable $middleware + * @param string $name + * + * @return $this + */ + public function pushMiddleware(callable $middleware, string $name = null) + { + if (!is_null($name)) { + $this->middlewares[$name] = $middleware; + } else { + array_push($this->middlewares, $middleware); + } + + return $this; + } + + /** + * Return all middlewares. + * + * @return array + */ + public function getMiddlewares(): array + { + return $this->middlewares; + } + + /** + * Make a request. + * + * @param string $url + * @param string $method + * @param array $options + * + * @return \Psr\Http\Message\ResponseInterface + * + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function request($url, $method = 'GET', $options = []): ResponseInterface + { + $method = strtoupper($method); + + $options = array_merge(self::$defaults, $options, ['handler' => $this->getHandlerStack()]); + + $options = $this->fixJsonIssue($options); + + if (property_exists($this, 'baseUri') && !is_null($this->baseUri)) { + $options['base_uri'] = $this->baseUri; + } + + $response = $this->getHttpClient()->request($method, $url, $options); + $response->getBody()->rewind(); + + return $response; + } + + /** + * @param \GuzzleHttp\HandlerStack $handlerStack + * + * @return $this + */ + public function setHandlerStack(HandlerStack $handlerStack) + { + $this->handlerStack = $handlerStack; + + return $this; + } + + /** + * Build a handler stack. + * + * @return \GuzzleHttp\HandlerStack + */ + public function getHandlerStack(): HandlerStack + { + if ($this->handlerStack) { + return $this->handlerStack; + } + + $this->handlerStack = HandlerStack::create($this->getGuzzleHandler()); + + foreach ($this->middlewares as $name => $middleware) { + $this->handlerStack->push($middleware, $name); + } + + return $this->handlerStack; + } + + /** + * @param array $options + * + * @return array + */ + protected function fixJsonIssue(array $options): array + { + if (isset($options['json']) && is_array($options['json'])) { + $options['headers'] = array_merge($options['headers'] ?? [], ['Content-Type' => 'application/json']); + + if (empty($options['json'])) { + $options['body'] = \GuzzleHttp\json_encode($options['json'], JSON_FORCE_OBJECT); + } else { + $options['body'] = \GuzzleHttp\json_encode($options['json'], JSON_UNESCAPED_UNICODE); + } + + unset($options['json']); + } + + return $options; + } + + /** + * Get guzzle handler. + * + * @return callable + */ + protected function getGuzzleHandler() + { + if (property_exists($this, 'app') && isset($this->app['guzzle_handler'])) { + return is_string($handler = $this->app->raw('guzzle_handler')) + ? new $handler() + : $handler; + } + + return \GuzzleHttp\choose_handler(); + } +} diff --git a/vendor/overtrue/wechat/src/Kernel/Traits/InteractsWithCache.php b/vendor/overtrue/wechat/src/Kernel/Traits/InteractsWithCache.php new file mode 100644 index 0000000..6ee9e25 --- /dev/null +++ b/vendor/overtrue/wechat/src/Kernel/Traits/InteractsWithCache.php @@ -0,0 +1,105 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Kernel\Traits; + +use EasyWeChat\Kernel\Exceptions\InvalidArgumentException; +use EasyWeChat\Kernel\ServiceContainer; +use Psr\Cache\CacheItemPoolInterface; +use Psr\SimpleCache\CacheInterface as SimpleCacheInterface; +use Symfony\Component\Cache\Adapter\FilesystemAdapter; +use Symfony\Component\Cache\Psr16Cache; +use Symfony\Component\Cache\Simple\FilesystemCache; + +/** + * Trait InteractsWithCache. + * + * @author overtrue + */ +trait InteractsWithCache +{ + /** + * @var \Psr\SimpleCache\CacheInterface + */ + protected $cache; + + /** + * Get cache instance. + * + * @return \Psr\SimpleCache\CacheInterface + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + */ + public function getCache() + { + if ($this->cache) { + return $this->cache; + } + + if (property_exists($this, 'app') && $this->app instanceof ServiceContainer && isset($this->app['cache'])) { + $this->setCache($this->app['cache']); + + // Fix PHPStan error + assert($this->cache instanceof \Psr\SimpleCache\CacheInterface); + + return $this->cache; + } + + return $this->cache = $this->createDefaultCache(); + } + + /** + * Set cache instance. + * + * @param \Psr\SimpleCache\CacheInterface|\Psr\Cache\CacheItemPoolInterface $cache + * + * @return $this + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + */ + public function setCache($cache) + { + if (empty(\array_intersect([SimpleCacheInterface::class, CacheItemPoolInterface::class], \class_implements($cache)))) { + throw new InvalidArgumentException(\sprintf('The cache instance must implements %s or %s interface.', SimpleCacheInterface::class, CacheItemPoolInterface::class)); + } + + if ($cache instanceof CacheItemPoolInterface) { + if (!$this->isSymfony43OrHigher()) { + throw new InvalidArgumentException(sprintf('The cache instance must implements %s', SimpleCacheInterface::class)); + } + $cache = new Psr16Cache($cache); + } + + $this->cache = $cache; + + return $this; + } + + /** + * @return \Psr\SimpleCache\CacheInterface + */ + protected function createDefaultCache() + { + if ($this->isSymfony43OrHigher()) { + return new Psr16Cache(new FilesystemAdapter('easywechat', 1500)); + } + + return new FilesystemCache(); + } + + /** + * @return bool + */ + protected function isSymfony43OrHigher(): bool + { + return \class_exists('Symfony\Component\Cache\Psr16Cache'); + } +} diff --git a/vendor/overtrue/wechat/src/Kernel/Traits/Observable.php b/vendor/overtrue/wechat/src/Kernel/Traits/Observable.php new file mode 100644 index 0000000..ba46fd9 --- /dev/null +++ b/vendor/overtrue/wechat/src/Kernel/Traits/Observable.php @@ -0,0 +1,285 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Kernel\Traits; + +use EasyWeChat\Kernel\Clauses\Clause; +use EasyWeChat\Kernel\Contracts\EventHandlerInterface; +use EasyWeChat\Kernel\Decorators\FinallyResult; +use EasyWeChat\Kernel\Decorators\TerminateResult; +use EasyWeChat\Kernel\Exceptions\InvalidArgumentException; +use EasyWeChat\Kernel\ServiceContainer; + +/** + * Trait Observable. + * + * @author overtrue + */ +trait Observable +{ + /** + * @var array + */ + protected $handlers = []; + + /** + * @var array + */ + protected $clauses = []; + + /** + * @param \Closure|EventHandlerInterface|callable|string $handler + * @param \Closure|EventHandlerInterface|callable|string $condition + * + * @return \EasyWeChat\Kernel\Clauses\Clause + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \ReflectionException + */ + public function push($handler, $condition = '*') + { + list($handler, $condition) = $this->resolveHandlerAndCondition($handler, $condition); + + if (!isset($this->handlers[$condition])) { + $this->handlers[$condition] = []; + } + + array_push($this->handlers[$condition], $handler); + + return $this->newClause($handler); + } + + /** + * @param array $handlers + * + * @return $this + */ + public function setHandlers(array $handlers = []) + { + $this->handlers = $handlers; + + return $this; + } + + /** + * @param \Closure|EventHandlerInterface|string $handler + * @param \Closure|EventHandlerInterface|string $condition + * + * @return \EasyWeChat\Kernel\Clauses\Clause + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \ReflectionException + */ + public function unshift($handler, $condition = '*') + { + list($handler, $condition) = $this->resolveHandlerAndCondition($handler, $condition); + + if (!isset($this->handlers[$condition])) { + $this->handlers[$condition] = []; + } + + array_unshift($this->handlers[$condition], $handler); + + return $this->newClause($handler); + } + + /** + * @param string $condition + * @param \Closure|EventHandlerInterface|string $handler + * + * @return \EasyWeChat\Kernel\Clauses\Clause + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \ReflectionException + */ + public function observe($condition, $handler) + { + return $this->push($handler, $condition); + } + + /** + * @param string $condition + * @param \Closure|EventHandlerInterface|string $handler + * + * @return \EasyWeChat\Kernel\Clauses\Clause + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \ReflectionException + */ + public function on($condition, $handler) + { + return $this->push($handler, $condition); + } + + /** + * @param string|int $event + * @param mixed ...$payload + * + * @return mixed|null + */ + public function dispatch($event, $payload) + { + return $this->notify($event, $payload); + } + + /** + * @param string|int $event + * @param mixed ...$payload + * + * @return mixed|null + */ + public function notify($event, $payload) + { + $result = null; + + foreach ($this->handlers as $condition => $handlers) { + if ('*' === $condition || ($condition & $event) === $event) { + foreach ($handlers as $handler) { + if ($clause = $this->clauses[$this->getHandlerHash($handler)] ?? null) { + if ($clause->intercepted($payload)) { + continue; + } + } + + $response = $this->callHandler($handler, $payload); + + switch (true) { + case $response instanceof TerminateResult: + return $response->content; + case true === $response: + continue 2; + case false === $response: + break 3; + case !empty($response) && !($result instanceof FinallyResult): + $result = $response; + } + } + } + } + + return $result instanceof FinallyResult ? $result->content : $result; + } + + /** + * @return array + */ + public function getHandlers() + { + return $this->handlers; + } + + /** + * @param mixed $handler + * + * @return \EasyWeChat\Kernel\Clauses\Clause + */ + protected function newClause($handler): Clause + { + return $this->clauses[$this->getHandlerHash($handler)] = new Clause(); + } + + /** + * @param mixed $handler + * + * @return string + */ + protected function getHandlerHash($handler) + { + if (is_string($handler)) { + return $handler; + } + + if (is_array($handler)) { + return is_string($handler[0]) + ? $handler[0].'::'.$handler[1] + : get_class($handler[0]).$handler[1]; + } + + return spl_object_hash($handler); + } + + /** + * @param callable $handler + * @param mixed $payload + * + * @return mixed + */ + protected function callHandler(callable $handler, $payload) + { + try { + return call_user_func_array($handler, [$payload]); + } catch (\Exception $e) { + if (property_exists($this, 'app') && $this->app instanceof ServiceContainer) { + $this->app['logger']->error($e->getCode().': '.$e->getMessage(), [ + 'code' => $e->getCode(), + 'message' => $e->getMessage(), + 'file' => $e->getFile(), + 'line' => $e->getLine(), + ]); + } + } + } + + /** + * @param mixed $handler + * + * @return \Closure + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \ReflectionException + */ + protected function makeClosure($handler) + { + if (is_callable($handler)) { + return $handler; + } + + if (is_string($handler) && '*' !== $handler) { + if (!class_exists($handler)) { + throw new InvalidArgumentException(sprintf('Class "%s" not exists.', $handler)); + } + + if (!in_array(EventHandlerInterface::class, (new \ReflectionClass($handler))->getInterfaceNames(), true)) { + throw new InvalidArgumentException(sprintf('Class "%s" not an instance of "%s".', $handler, EventHandlerInterface::class)); + } + + return function ($payload) use ($handler) { + return (new $handler($this->app ?? null))->handle($payload); + }; + } + + if ($handler instanceof EventHandlerInterface) { + return function () use ($handler) { + return $handler->handle(...func_get_args()); + }; + } + + throw new InvalidArgumentException('No valid handler is found in arguments.'); + } + + /** + * @param mixed $handler + * @param mixed $condition + * + * @return array + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \ReflectionException + */ + protected function resolveHandlerAndCondition($handler, $condition): array + { + if (is_int($handler) || (is_string($handler) && !class_exists($handler))) { + list($handler, $condition) = [$condition, $handler]; + } + + return [$this->makeClosure($handler), $condition]; + } +} diff --git a/vendor/overtrue/wechat/src/Kernel/Traits/ResponseCastable.php b/vendor/overtrue/wechat/src/Kernel/Traits/ResponseCastable.php new file mode 100644 index 0000000..5492bd4 --- /dev/null +++ b/vendor/overtrue/wechat/src/Kernel/Traits/ResponseCastable.php @@ -0,0 +1,93 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Kernel\Traits; + +use EasyWeChat\Kernel\Contracts\Arrayable; +use EasyWeChat\Kernel\Exceptions\InvalidArgumentException; +use EasyWeChat\Kernel\Exceptions\InvalidConfigException; +use EasyWeChat\Kernel\Http\Response; +use EasyWeChat\Kernel\Support\Collection; +use Psr\Http\Message\ResponseInterface; + +/** + * Trait ResponseCastable. + * + * @author overtrue + */ +trait ResponseCastable +{ + /** + * @param \Psr\Http\Message\ResponseInterface $response + * @param string|null $type + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + protected function castResponseToType(ResponseInterface $response, $type = null) + { + $response = Response::buildFromPsrResponse($response); + $response->getBody()->rewind(); + + switch ($type ?? 'array') { + case 'collection': + return $response->toCollection(); + case 'array': + return $response->toArray(); + case 'object': + return $response->toObject(); + case 'raw': + return $response; + default: + if (!is_subclass_of($type, Arrayable::class)) { + throw new InvalidConfigException(sprintf('Config key "response_type" classname must be an instanceof %s', Arrayable::class)); + } + + return new $type($response); + } + } + + /** + * @param mixed $response + * @param string|null $type + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + protected function detectAndCastResponseToType($response, $type = null) + { + switch (true) { + case $response instanceof ResponseInterface: + $response = Response::buildFromPsrResponse($response); + + break; + case $response instanceof Arrayable: + $response = new Response(200, [], json_encode($response->toArray())); + + break; + case ($response instanceof Collection) || is_array($response) || is_object($response): + $response = new Response(200, [], json_encode($response)); + + break; + case is_scalar($response): + $response = new Response(200, [], (string) $response); + + break; + default: + throw new InvalidArgumentException(sprintf('Unsupported response type "%s"', gettype($response))); + } + + return $this->castResponseToType($response, $type); + } +} diff --git a/vendor/overtrue/wechat/src/MicroMerchant/Application.php b/vendor/overtrue/wechat/src/MicroMerchant/Application.php new file mode 100644 index 0000000..cd455fb --- /dev/null +++ b/vendor/overtrue/wechat/src/MicroMerchant/Application.php @@ -0,0 +1,173 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\MicroMerchant; + +use EasyWeChat\Kernel\Exceptions\InvalidArgumentException; +use EasyWeChat\Kernel\ServiceContainer; +use EasyWeChat\Kernel\Support; +use EasyWeChat\MicroMerchant\Kernel\Exceptions\InvalidSignException; + +/** + * Class Application. + * + * @author liuml + * + * @property \EasyWeChat\MicroMerchant\Certficates\Client $certficates + * @property \EasyWeChat\MicroMerchant\Material\Client $material + * @property \EasyWeChat\MicroMerchant\MerchantConfig\Client $merchantConfig + * @property \EasyWeChat\MicroMerchant\Withdraw\Client $withdraw + * @property \EasyWeChat\MicroMerchant\Media\Client $media + * + * @method mixed submitApplication(array $params) + * @method mixed getStatus(string $applymentId, string $businessCode = '') + * @method mixed upgrade(array $params) + * @method mixed getUpgradeStatus(string $subMchId = '') + */ +class Application extends ServiceContainer +{ + /** + * @var array + */ + protected $providers = [ + // Base services + Base\ServiceProvider::class, + Certficates\ServiceProvider::class, + MerchantConfig\ServiceProvider::class, + Material\ServiceProvider::class, + Withdraw\ServiceProvider::class, + Media\ServiceProvider::class, + ]; + + /** + * @var array + */ + protected $defaultConfig = [ + 'http' => [ + 'base_uri' => 'https://api.mch.weixin.qq.com/', + ], + 'log' => [ + 'default' => 'dev', // 默认使用的 channel,生产环境可以改为下面的 prod + 'channels' => [ + // 测试环境 + 'dev' => [ + 'driver' => 'single', + 'path' => '/tmp/easywechat.log', + 'level' => 'debug', + ], + // 生产环境 + 'prod' => [ + 'driver' => 'daily', + 'path' => '/tmp/easywechat.log', + 'level' => 'info', + ], + ], + ], + ]; + + /** + * @return string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + */ + public function getKey() + { + $key = $this['config']->key; + + if (empty($key)) { + throw new InvalidArgumentException('config key connot be empty.'); + } + + if (32 !== strlen($key)) { + throw new InvalidArgumentException(sprintf("'%s' should be 32 chars length.", $key)); + } + + return $key; + } + + /** + * set sub-mch-id and appid. + * + * @param string $subMchId Identification Number of Small and Micro Businessmen Reported by Service Providers + * @param string $appId Public Account ID of Service Provider + * + * @return $this + */ + public function setSubMchId(string $subMchId, string $appId = '') + { + $this['config']->set('sub_mch_id', $subMchId); + if ($appId) { + $this['config']->set('appid', $appId); + } + + return $this; + } + + /** + * setCertificate. + * + * @param string $certificate + * @param string $serialNo + * + * @return $this + */ + public function setCertificate(string $certificate, string $serialNo) + { + $this['config']->set('certificate', $certificate); + $this['config']->set('serial_no', $serialNo); + + return $this; + } + + /** + * Returning true indicates that the verification is successful, + * returning false indicates that the signature field does not exist or is empty, + * and if the signature verification is wrong, the InvalidSignException will be thrown directly. + * + * @param array $data + * + * @return bool + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \EasyWeChat\MicroMerchant\Kernel\Exceptions\InvalidSignException + */ + public function verifySignature(array $data) + { + if (!isset($data['sign']) || empty($data['sign'])) { + return false; + } + + $sign = $data['sign']; + unset($data['sign']); + + $signType = strlen($sign) > 32 ? 'HMAC-SHA256' : 'MD5'; + $secretKey = $this->getKey(); + + $encryptMethod = Support\get_encrypt_method($signType, $secretKey); + + if (Support\generate_sign($data, $secretKey, $encryptMethod) === $sign) { + return true; + } + + throw new InvalidSignException('return value signature verification error'); + } + + /** + * @param string $name + * @param array $arguments + * + * @return mixed + */ + public function __call($name, $arguments) + { + return call_user_func_array([$this['base'], $name], $arguments); + } +} diff --git a/vendor/overtrue/wechat/src/MicroMerchant/Base/Client.php b/vendor/overtrue/wechat/src/MicroMerchant/Base/Client.php new file mode 100644 index 0000000..ba92756 --- /dev/null +++ b/vendor/overtrue/wechat/src/MicroMerchant/Base/Client.php @@ -0,0 +1,126 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\MicroMerchant\Base; + +use EasyWeChat\MicroMerchant\Kernel\BaseClient; + +/** + * Class Client. + * + * @author liuml + * @DateTime 2019-05-30 14:19 + */ +class Client extends BaseClient +{ + /** + * apply to settle in to become a small micro merchant. + * + * @param array $params + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \EasyWeChat\MicroMerchant\Kernel\Exceptions\EncryptException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function submitApplication(array $params) + { + $params = $this->processParams(array_merge($params, [ + 'version' => '3.0', + 'cert_sn' => '', + 'sign_type' => 'HMAC-SHA256', + 'nonce_str' => uniqid('micro'), + ])); + + return $this->safeRequest('applyment/micro/submit', $params); + } + + /** + * query application status. + * + * @param string $applymentId + * @param string $businessCode + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function getStatus(string $applymentId, string $businessCode = '') + { + if (!empty($applymentId)) { + $params = [ + 'applyment_id' => $applymentId, + ]; + } else { + $params = [ + 'business_code' => $businessCode, + ]; + } + + $params = array_merge($params, [ + 'version' => '1.0', + 'sign_type' => 'HMAC-SHA256', + 'nonce_str' => uniqid('micro'), + ]); + + return $this->safeRequest('applyment/micro/getstate', $params); + } + + /** + * merchant upgrade api. + * + * @param array $params + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \EasyWeChat\MicroMerchant\Kernel\Exceptions\EncryptException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function upgrade(array $params) + { + $params['sub_mch_id'] = $params['sub_mch_id'] ?? $this->app['config']->sub_mch_id; + $params = $this->processParams(array_merge($params, [ + 'version' => '1.0', + 'cert_sn' => '', + 'sign_type' => 'HMAC-SHA256', + 'nonce_str' => uniqid('micro'), + ])); + + return $this->safeRequest('applyment/micro/submitupgrade', $params); + } + + /** + * get upgrade status. + * + * @param string $subMchId + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function getUpgradeStatus(string $subMchId = '') + { + return $this->safeRequest('applyment/micro/getupgradestate', [ + 'version' => '1.0', + 'sign_type' => 'HMAC-SHA256', + 'sub_mch_id' => $subMchId ?: $this->app['config']->sub_mch_id, + 'nonce_str' => uniqid('micro'), + ]); + } +} diff --git a/vendor/overtrue/wechat/src/MicroMerchant/Base/ServiceProvider.php b/vendor/overtrue/wechat/src/MicroMerchant/Base/ServiceProvider.php new file mode 100644 index 0000000..db2f056 --- /dev/null +++ b/vendor/overtrue/wechat/src/MicroMerchant/Base/ServiceProvider.php @@ -0,0 +1,33 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\MicroMerchant\Base; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +/** + * Class ServiceProvider. + * + * @author overtrue + */ +class ServiceProvider implements ServiceProviderInterface +{ + /** + * {@inheritdoc}. + */ + public function register(Container $app) + { + $app['base'] = function ($app) { + return new Client($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/MicroMerchant/Certficates/Client.php b/vendor/overtrue/wechat/src/MicroMerchant/Certficates/Client.php new file mode 100644 index 0000000..62a6cf5 --- /dev/null +++ b/vendor/overtrue/wechat/src/MicroMerchant/Certficates/Client.php @@ -0,0 +1,93 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\MicroMerchant\Certficates; + +use EasyWeChat\Kernel\Exceptions\InvalidArgumentException; +use EasyWeChat\MicroMerchant\Kernel\BaseClient; +use EasyWeChat\MicroMerchant\Kernel\Exceptions\InvalidExtensionException; + +/** + * Class Client. + * + * @author liuml + * @DateTime 2019-05-30 14:19 + */ +class Client extends BaseClient +{ + /** + * get certficates. + * + * @param bool $returnRaw + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \EasyWeChat\MicroMerchant\Kernel\Exceptions\InvalidExtensionException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function get(bool $returnRaw = false) + { + $params = [ + 'sign_type' => 'HMAC-SHA256', + 'nonce_str' => uniqid('micro'), + ]; + + if (true === $returnRaw) { + return $this->requestRaw('risk/getcertficates', $params); + } + /** @var array $response */ + $response = $this->requestArray('risk/getcertficates', $params); + + if ('SUCCESS' !== $response['return_code']) { + throw new InvalidArgumentException(sprintf('Failed to get certificate. return_code_msg: "%s" .', $response['return_code'].'('.$response['return_msg'].')')); + } + if ('SUCCESS' !== $response['result_code']) { + throw new InvalidArgumentException(sprintf('Failed to get certificate. result_err_code_desc: "%s" .', $response['result_code'].'('.$response['err_code'].'['.$response['err_code_desc'].'])')); + } + $certificates = \GuzzleHttp\json_decode($response['certificates'], true)['data'][0]; + $ciphertext = $this->decrypt($certificates['encrypt_certificate']); + unset($certificates['encrypt_certificate']); + $certificates['certificates'] = $ciphertext; + + return $certificates; + } + + /** + * decrypt ciphertext. + * + * @param array $encryptCertificate + * + * @return string + * + * @throws \EasyWeChat\MicroMerchant\Kernel\Exceptions\InvalidExtensionException + */ + public function decrypt(array $encryptCertificate) + { + if (false === extension_loaded('sodium')) { + throw new InvalidExtensionException('sodium extension is not installed,Reference link https://php.net/manual/zh/book.sodium.php'); + } + + if (false === sodium_crypto_aead_aes256gcm_is_available()) { + throw new InvalidExtensionException('aes256gcm is not currently supported'); + } + + // sodium_crypto_aead_aes256gcm_decrypt function needs to open libsodium extension. + // https://www.php.net/manual/zh/function.sodium-crypto-aead-aes256gcm-decrypt.php + return sodium_crypto_aead_aes256gcm_decrypt( + base64_decode($encryptCertificate['ciphertext'], true), + $encryptCertificate['associated_data'], + $encryptCertificate['nonce'], + $this->app['config']->apiv3_key + ); + } +} diff --git a/vendor/overtrue/wechat/src/MicroMerchant/Certficates/ServiceProvider.php b/vendor/overtrue/wechat/src/MicroMerchant/Certficates/ServiceProvider.php new file mode 100644 index 0000000..2e88b7e --- /dev/null +++ b/vendor/overtrue/wechat/src/MicroMerchant/Certficates/ServiceProvider.php @@ -0,0 +1,33 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\MicroMerchant\Certficates; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +/** + * Class ServiceProvider. + * + * @author overtrue + */ +class ServiceProvider implements ServiceProviderInterface +{ + /** + * {@inheritdoc}. + */ + public function register(Container $app) + { + $app['certficates'] = function ($app) { + return new Client($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/MicroMerchant/Kernel/BaseClient.php b/vendor/overtrue/wechat/src/MicroMerchant/Kernel/BaseClient.php new file mode 100644 index 0000000..6f49542 --- /dev/null +++ b/vendor/overtrue/wechat/src/MicroMerchant/Kernel/BaseClient.php @@ -0,0 +1,256 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\MicroMerchant\Kernel; + +use EasyWeChat\Kernel\Exceptions\InvalidArgumentException; +use EasyWeChat\Kernel\Support; +use EasyWeChat\MicroMerchant\Application; +use EasyWeChat\MicroMerchant\Kernel\Exceptions\EncryptException; +use EasyWeChat\Payment\Kernel\BaseClient as PaymentBaseClient; + +/** + * Class BaseClient. + * + * @author liuml + * @DateTime 2019-07-10 12:06 + */ +class BaseClient extends PaymentBaseClient +{ + /** + * @var string + */ + protected $certificates; + + /** + * BaseClient constructor. + * + * @param \EasyWeChat\MicroMerchant\Application $app + */ + public function __construct(Application $app) + { + $this->app = $app; + + $this->setHttpClient($this->app['http_client']); + } + + /** + * Extra request params. + * + * @return array + */ + protected function prepends() + { + return []; + } + + /** + * httpUpload. + * + * @param string $url + * @param array $files + * @param array $form + * @param array $query + * @param bool $returnResponse + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \EasyWeChat\MicroMerchant\Kernel\Exceptions\InvalidSignException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function httpUpload(string $url, array $files = [], array $form = [], array $query = [], $returnResponse = false) + { + $multipart = []; + + foreach ($files as $name => $path) { + $multipart[] = [ + 'name' => $name, + 'contents' => fopen($path, 'r'), + ]; + } + + $base = [ + 'mch_id' => $this->app['config']['mch_id'], + ]; + + $form = array_merge($base, $form); + + $form['sign'] = $this->getSign($form); + + foreach ($form as $name => $contents) { + $multipart[] = compact('name', 'contents'); + } + + $options = [ + 'query' => $query, + 'multipart' => $multipart, + 'connect_timeout' => 30, + 'timeout' => 30, + 'read_timeout' => 30, + 'cert' => $this->app['config']->get('cert_path'), + 'ssl_key' => $this->app['config']->get('key_path'), + ]; + + $this->pushMiddleware($this->logMiddleware(), 'log'); + + $response = $this->performRequest($url, 'POST', $options); + + $result = $returnResponse ? $response : $this->castResponseToType($response, $this->app->config->get('response_type')); + // auto verify signature + if ($returnResponse || 'array' !== ($this->app->config->get('response_type') ?? 'array')) { + $this->app->verifySignature($this->castResponseToType($response, 'array')); + } else { + $this->app->verifySignature($result); + } + + return $result; + } + + /** + * request. + * + * @param string $endpoint + * @param array $params + * @param string $method + * @param array $options + * @param bool $returnResponse + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \EasyWeChat\MicroMerchant\Kernel\Exceptions\InvalidSignException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + protected function request(string $endpoint, array $params = [], $method = 'post', array $options = [], $returnResponse = false) + { + $base = [ + 'mch_id' => $this->app['config']['mch_id'], + ]; + + $params = array_merge($base, $this->prepends(), $params); + $params['sign'] = $this->getSign($params); + $options = array_merge([ + 'body' => Support\XML::build($params), + ], $options); + + $this->pushMiddleware($this->logMiddleware(), 'log'); + $response = $this->performRequest($endpoint, $method, $options); + $result = $returnResponse ? $response : $this->castResponseToType($response, $this->app->config->get('response_type')); + // auto verify signature + if ($returnResponse || 'array' !== ($this->app->config->get('response_type') ?? 'array')) { + $this->app->verifySignature($this->castResponseToType($response, 'array')); + } else { + $this->app->verifySignature($result); + } + + return $result; + } + + /** + * processing parameters contain fields that require sensitive information encryption. + * + * @param array $params + * + * @return array + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \EasyWeChat\MicroMerchant\Kernel\Exceptions\EncryptException + */ + protected function processParams(array $params) + { + $serial_no = $this->app['config']->get('serial_no'); + if (null === $serial_no) { + throw new InvalidArgumentException('config serial_no connot be empty.'); + } + + $params['cert_sn'] = $serial_no; + $sensitive_fields = $this->getSensitiveFieldsName(); + foreach ($params as $k => $v) { + if (in_array($k, $sensitive_fields, true)) { + $params[$k] = $this->encryptSensitiveInformation($v); + } + } + + return $params; + } + + /** + * To id card, mobile phone number and other fields sensitive information encryption. + * + * @param string $string + * + * @return string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \EasyWeChat\MicroMerchant\Kernel\Exceptions\EncryptException + */ + protected function encryptSensitiveInformation(string $string) + { + $certificates = $this->app['config']->get('certificate'); + if (null === $certificates) { + throw new InvalidArgumentException('config certificate connot be empty.'); + } + + $encrypted = ''; + $publicKeyResource = openssl_get_publickey($certificates); + $f = openssl_public_encrypt($string, $encrypted, $publicKeyResource, OPENSSL_NO_PADDING); + openssl_free_key($publicKeyResource); + if ($f) { + return base64_encode($encrypted); + } + + throw new EncryptException('Encryption of sensitive information failed'); + } + + /** + * get sensitive fields name. + * + * @return array + */ + protected function getSensitiveFieldsName() + { + return [ + 'id_card_name', + 'id_card_number', + 'account_name', + 'account_number', + 'contact', + 'contact_phone', + 'contact_email', + 'legal_person', + 'mobile_phone', + 'email', + ]; + } + + /** + * getSign. + * + * @param array $params + * + * @return string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + */ + protected function getSign(array $params) + { + $params = array_filter($params); + + $key = $this->app->getKey(); + + $encryptMethod = Support\get_encrypt_method(Support\Arr::get($params, 'sign_type', 'MD5'), $key); + + return Support\generate_sign($params, $key, $encryptMethod); + } +} diff --git a/vendor/overtrue/wechat/src/MicroMerchant/Kernel/Exceptions/EncryptException.php b/vendor/overtrue/wechat/src/MicroMerchant/Kernel/Exceptions/EncryptException.php new file mode 100644 index 0000000..dd874ae --- /dev/null +++ b/vendor/overtrue/wechat/src/MicroMerchant/Kernel/Exceptions/EncryptException.php @@ -0,0 +1,23 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\MicroMerchant\Kernel\Exceptions; + +use EasyWeChat\Kernel\Exceptions\Exception; + +/** + * Class EncryptException. + * + * @author liuml + */ +class EncryptException extends Exception +{ +} diff --git a/vendor/overtrue/wechat/src/MicroMerchant/Kernel/Exceptions/InvalidExtensionException.php b/vendor/overtrue/wechat/src/MicroMerchant/Kernel/Exceptions/InvalidExtensionException.php new file mode 100644 index 0000000..41e21cf --- /dev/null +++ b/vendor/overtrue/wechat/src/MicroMerchant/Kernel/Exceptions/InvalidExtensionException.php @@ -0,0 +1,23 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\MicroMerchant\Kernel\Exceptions; + +use EasyWeChat\Kernel\Exceptions\Exception; + +/** + * Class InvalidExtensionException. + * + * @author liuml + */ +class InvalidExtensionException extends Exception +{ +} diff --git a/vendor/overtrue/wechat/src/MicroMerchant/Kernel/Exceptions/InvalidSignException.php b/vendor/overtrue/wechat/src/MicroMerchant/Kernel/Exceptions/InvalidSignException.php new file mode 100644 index 0000000..d09d92b --- /dev/null +++ b/vendor/overtrue/wechat/src/MicroMerchant/Kernel/Exceptions/InvalidSignException.php @@ -0,0 +1,23 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\MicroMerchant\Kernel\Exceptions; + +use EasyWeChat\Kernel\Exceptions\Exception; + +/** + * Class InvalidSignException. + * + * @author liuml + */ +class InvalidSignException extends Exception +{ +} diff --git a/vendor/overtrue/wechat/src/MicroMerchant/Material/Client.php b/vendor/overtrue/wechat/src/MicroMerchant/Material/Client.php new file mode 100644 index 0000000..ee1038a --- /dev/null +++ b/vendor/overtrue/wechat/src/MicroMerchant/Material/Client.php @@ -0,0 +1,73 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\MicroMerchant\Material; + +use EasyWeChat\MicroMerchant\Kernel\BaseClient; + +/** + * Class Client. + * + * @author liuml + * @DateTime 2019-05-30 14:19 + */ +class Client extends BaseClient +{ + /** + * update settlement card. + * + * @param array $params + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \EasyWeChat\MicroMerchant\Kernel\Exceptions\EncryptException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function setSettlementCard(array $params) + { + $params['sub_mch_id'] = $params['sub_mch_id'] ?? $this->app['config']->sub_mch_id; + $params = $this->processParams(array_merge($params, [ + 'version' => '1.0', + 'cert_sn' => '', + 'sign_type' => 'HMAC-SHA256', + 'nonce_str' => uniqid('micro'), + ])); + + return $this->safeRequest('applyment/micro/modifyarchives', $params); + } + + /** + * update contact info. + * + * @param array $params + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \EasyWeChat\MicroMerchant\Kernel\Exceptions\EncryptException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function updateContact(array $params) + { + $params['sub_mch_id'] = $params['sub_mch_id'] ?? $this->app['config']->sub_mch_id; + $params = $this->processParams(array_merge($params, [ + 'version' => '1.0', + 'cert_sn' => '', + 'sign_type' => 'HMAC-SHA256', + 'nonce_str' => uniqid('micro'), + ])); + + return $this->safeRequest('applyment/micro/modifycontactinfo', $params); + } +} diff --git a/vendor/overtrue/wechat/src/MicroMerchant/Material/ServiceProvider.php b/vendor/overtrue/wechat/src/MicroMerchant/Material/ServiceProvider.php new file mode 100644 index 0000000..dec5af7 --- /dev/null +++ b/vendor/overtrue/wechat/src/MicroMerchant/Material/ServiceProvider.php @@ -0,0 +1,33 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\MicroMerchant\Material; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +/** + * Class ServiceProvider. + * + * @author overtrue + */ +class ServiceProvider implements ServiceProviderInterface +{ + /** + * {@inheritdoc}. + */ + public function register(Container $app) + { + $app['material'] = function ($app) { + return new Client($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/MicroMerchant/Media/Client.php b/vendor/overtrue/wechat/src/MicroMerchant/Media/Client.php new file mode 100644 index 0000000..fde755b --- /dev/null +++ b/vendor/overtrue/wechat/src/MicroMerchant/Media/Client.php @@ -0,0 +1,49 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\MicroMerchant\Media; + +use EasyWeChat\Kernel\Exceptions\InvalidArgumentException; +use EasyWeChat\MicroMerchant\Kernel\BaseClient; + +/** + * Class Client. + * + * @author liuml + * @DateTime 2019-06-10 14:50 + */ +class Client extends BaseClient +{ + /** + * Upload material. + * + * @param string $path + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \EasyWeChat\MicroMerchant\Kernel\Exceptions\InvalidSignException + */ + public function upload(string $path) + { + if (!file_exists($path) || !is_readable($path)) { + throw new InvalidArgumentException(sprintf("File does not exist, or the file is unreadable: '%s'", $path)); + } + + $form = [ + 'media_hash' => strtolower(md5_file($path)), + 'sign_type' => 'HMAC-SHA256', + ]; + + return $this->httpUpload('secapi/mch/uploadmedia', ['media' => $path], $form); + } +} diff --git a/vendor/overtrue/wechat/src/MicroMerchant/Media/ServiceProvider.php b/vendor/overtrue/wechat/src/MicroMerchant/Media/ServiceProvider.php new file mode 100644 index 0000000..9d46a84 --- /dev/null +++ b/vendor/overtrue/wechat/src/MicroMerchant/Media/ServiceProvider.php @@ -0,0 +1,44 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +/** + * ServiceProvider.php. + * + * This file is part of the wechat. + * + * (c) overtrue + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\MicroMerchant\Media; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +/** + * Class ServiceProvider. + * + * @author overtrue + */ +class ServiceProvider implements ServiceProviderInterface +{ + /** + * {@inheritdoc}. + */ + public function register(Container $app) + { + $app['media'] = function ($app) { + return new Client($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/MicroMerchant/MerchantConfig/Client.php b/vendor/overtrue/wechat/src/MicroMerchant/MerchantConfig/Client.php new file mode 100644 index 0000000..c8573af --- /dev/null +++ b/vendor/overtrue/wechat/src/MicroMerchant/MerchantConfig/Client.php @@ -0,0 +1,134 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\MicroMerchant\MerchantConfig; + +use EasyWeChat\MicroMerchant\Kernel\BaseClient; + +/** + * Class Client. + * + * @author liuml + * @DateTime 2019-05-30 14:19 + */ +class Client extends BaseClient +{ + /** + * Service providers configure recommendation functions for small and micro businesses. + * + * @param string $subAppId + * @param string $subscribeAppId + * @param string $receiptAppId + * @param string $subMchId + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function setFollowConfig(string $subAppId, string $subscribeAppId, string $receiptAppId = '', string $subMchId = '') + { + $params = [ + 'sub_appid' => $subAppId, + 'sub_mch_id' => $subMchId ?: $this->app['config']->sub_mch_id, + ]; + + if (!empty($subscribeAppId)) { + $params['subscribe_appid'] = $subscribeAppId; + } else { + $params['receipt_appid'] = $receiptAppId; + } + + return $this->safeRequest('secapi/mkt/addrecommendconf', array_merge($params, [ + 'sign_type' => 'HMAC-SHA256', + 'nonce_str' => uniqid('micro'), + ])); + } + + /** + * Configure the new payment directory. + * + * @param string $jsapiPath + * @param string $appId + * @param string $subMchId + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function addPath(string $jsapiPath, string $appId = '', string $subMchId = '') + { + return $this->addConfig([ + 'appid' => $appId ?: $this->app['config']->appid, + 'sub_mch_id' => $subMchId ?: $this->app['config']->sub_mch_id, + 'jsapi_path' => $jsapiPath, + ]); + } + + /** + * bind appid. + * + * @param string $subAppId + * @param string $appId + * @param string $subMchId + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function bindAppId(string $subAppId, string $appId = '', string $subMchId = '') + { + return $this->addConfig([ + 'appid' => $appId ?: $this->app['config']->appid, + 'sub_mch_id' => $subMchId ?: $this->app['config']->sub_mch_id, + 'sub_appid' => $subAppId, + ]); + } + + /** + * add sub dev config. + * + * @param array $params + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + private function addConfig(array $params) + { + return $this->safeRequest('secapi/mch/addsubdevconfig', $params); + } + + /** + * query Sub Dev Config. + * + * @param string $subMchId + * @param string $appId + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function getConfig(string $subMchId = '', string $appId = '') + { + return $this->safeRequest('secapi/mch/querysubdevconfig', [ + 'sub_mch_id' => $subMchId ?: $this->app['config']->sub_mch_id, + 'appid' => $appId ?: $this->app['config']->appid, + ]); + } +} diff --git a/vendor/overtrue/wechat/src/MicroMerchant/MerchantConfig/ServiceProvider.php b/vendor/overtrue/wechat/src/MicroMerchant/MerchantConfig/ServiceProvider.php new file mode 100644 index 0000000..5b78710 --- /dev/null +++ b/vendor/overtrue/wechat/src/MicroMerchant/MerchantConfig/ServiceProvider.php @@ -0,0 +1,33 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\MicroMerchant\MerchantConfig; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +/** + * Class ServiceProvider. + * + * @author overtrue + */ +class ServiceProvider implements ServiceProviderInterface +{ + /** + * {@inheritdoc}. + */ + public function register(Container $app) + { + $app['merchantConfig'] = function ($app) { + return new Client($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/MicroMerchant/Withdraw/Client.php b/vendor/overtrue/wechat/src/MicroMerchant/Withdraw/Client.php new file mode 100644 index 0000000..c96c363 --- /dev/null +++ b/vendor/overtrue/wechat/src/MicroMerchant/Withdraw/Client.php @@ -0,0 +1,67 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\MicroMerchant\Withdraw; + +use EasyWeChat\MicroMerchant\Kernel\BaseClient; + +/** + * Class Client. + * + * @author liuml + * @DateTime 2019-05-30 14:19 + */ +class Client extends BaseClient +{ + /** + * Query withdrawal status. + * + * @param string $date + * @param string $subMchId + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function queryWithdrawalStatus($date, $subMchId = '') + { + return $this->safeRequest('fund/queryautowithdrawbydate', [ + 'date' => $date, + 'sign_type' => 'HMAC-SHA256', + 'nonce_str' => uniqid('micro'), + 'sub_mch_id' => $subMchId ?: $this->app['config']->sub_mch_id, + ]); + } + + /** + * Re-initiation of withdrawal. + * + * @param string $date + * @param string $subMchId + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function requestWithdraw($date, $subMchId = '') + { + return $this->safeRequest('fund/reautowithdrawbydate', [ + 'date' => $date, + 'sign_type' => 'HMAC-SHA256', + 'nonce_str' => uniqid('micro'), + 'sub_mch_id' => $subMchId ?: $this->app['config']->sub_mch_id, + ]); + } +} diff --git a/vendor/overtrue/wechat/src/MicroMerchant/Withdraw/ServiceProvider.php b/vendor/overtrue/wechat/src/MicroMerchant/Withdraw/ServiceProvider.php new file mode 100644 index 0000000..b9c0141 --- /dev/null +++ b/vendor/overtrue/wechat/src/MicroMerchant/Withdraw/ServiceProvider.php @@ -0,0 +1,33 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\MicroMerchant\Withdraw; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +/** + * Class ServiceProvider. + * + * @author overtrue + */ +class ServiceProvider implements ServiceProviderInterface +{ + /** + * {@inheritdoc}. + */ + public function register(Container $app) + { + $app['withdraw'] = function ($app) { + return new Client($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/MiniProgram/ActivityMessage/Client.php b/vendor/overtrue/wechat/src/MiniProgram/ActivityMessage/Client.php new file mode 100644 index 0000000..16f273d --- /dev/null +++ b/vendor/overtrue/wechat/src/MiniProgram/ActivityMessage/Client.php @@ -0,0 +1,85 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\MiniProgram\ActivityMessage; + +use EasyWeChat\Kernel\BaseClient; +use EasyWeChat\Kernel\Exceptions\InvalidArgumentException; + +class Client extends BaseClient +{ + /** + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function createActivityId() + { + return $this->httpGet('cgi-bin/message/wxopen/activityid/create'); + } + + /** + * @param string $activityId + * @param int $state + * @param array $params + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function updateMessage(string $activityId, int $state = 0, array $params = []) + { + if (!in_array($state, [0, 1], true)) { + throw new InvalidArgumentException('"state" should be "0" or "1".'); + } + + $params = $this->formatParameters($params); + + $params = [ + 'activity_id' => $activityId, + 'target_state' => $state, + 'template_info' => ['parameter_list' => $params], + ]; + + return $this->httpPostJson('cgi-bin/message/wxopen/updatablemsg/send', $params); + } + + /** + * @param array $params + * + * @return array + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + */ + protected function formatParameters(array $params) + { + $formatted = []; + + foreach ($params as $name => $value) { + if (!in_array($name, ['member_count', 'room_limit', 'path', 'version_type'], true)) { + continue; + } + + if ('version_type' === $name && !in_array($value, ['develop', 'trial', 'release'], true)) { + throw new InvalidArgumentException('Invalid value of attribute "version_type".'); + } + + $formatted[] = [ + 'name' => $name, + 'value' => strval($value), + ]; + } + + return $formatted; + } +} diff --git a/vendor/overtrue/wechat/src/MiniProgram/ActivityMessage/ServiceProvider.php b/vendor/overtrue/wechat/src/MiniProgram/ActivityMessage/ServiceProvider.php new file mode 100644 index 0000000..fa7d3cf --- /dev/null +++ b/vendor/overtrue/wechat/src/MiniProgram/ActivityMessage/ServiceProvider.php @@ -0,0 +1,28 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\MiniProgram\ActivityMessage; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +class ServiceProvider implements ServiceProviderInterface +{ + /** + * {@inheritdoc}. + */ + public function register(Container $app) + { + $app['activity_message'] = function ($app) { + return new Client($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/MiniProgram/AppCode/Client.php b/vendor/overtrue/wechat/src/MiniProgram/AppCode/Client.php new file mode 100644 index 0000000..82d2af2 --- /dev/null +++ b/vendor/overtrue/wechat/src/MiniProgram/AppCode/Client.php @@ -0,0 +1,92 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\MiniProgram\AppCode; + +use EasyWeChat\Kernel\BaseClient; +use EasyWeChat\Kernel\Http\StreamResponse; + +/** + * Class Client. + * + * @author mingyoung + */ +class Client extends BaseClient +{ + /** + * Get AppCode. + * + * @param string $path + * @param array $optional + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + */ + public function get(string $path, array $optional = []) + { + $params = array_merge([ + 'path' => $path, + ], $optional); + + return $this->getStream('wxa/getwxacode', $params); + } + + /** + * Get AppCode unlimit. + * + * @param string $scene + * @param array $optional + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + */ + public function getUnlimit(string $scene, array $optional = []) + { + $params = array_merge([ + 'scene' => $scene, + ], $optional); + + return $this->getStream('wxa/getwxacodeunlimit', $params); + } + + /** + * Create QrCode. + * + * @param string $path + * @param int|null $width + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + */ + public function getQrCode(string $path, int $width = null) + { + return $this->getStream('cgi-bin/wxaapp/createwxaqrcode', compact('path', 'width')); + } + + /** + * Get stream. + * + * @param string $endpoint + * @param array $params + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + protected function getStream(string $endpoint, array $params) + { + $response = $this->requestRaw($endpoint, 'POST', ['json' => $params]); + + if (false !== stripos($response->getHeaderLine('Content-disposition'), 'attachment')) { + return StreamResponse::buildFromPsrResponse($response); + } + + return $this->castResponseToType($response, $this->app['config']->get('response_type')); + } +} diff --git a/vendor/overtrue/wechat/src/MiniProgram/AppCode/ServiceProvider.php b/vendor/overtrue/wechat/src/MiniProgram/AppCode/ServiceProvider.php new file mode 100644 index 0000000..fefdc22 --- /dev/null +++ b/vendor/overtrue/wechat/src/MiniProgram/AppCode/ServiceProvider.php @@ -0,0 +1,33 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\MiniProgram\AppCode; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +/** + * Class ServiceProvider. + * + * @author mingyoung + */ +class ServiceProvider implements ServiceProviderInterface +{ + /** + * {@inheritdoc}. + */ + public function register(Container $app) + { + $app['app_code'] = function ($app) { + return new Client($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/MiniProgram/Application.php b/vendor/overtrue/wechat/src/MiniProgram/Application.php new file mode 100644 index 0000000..d012c2b --- /dev/null +++ b/vendor/overtrue/wechat/src/MiniProgram/Application.php @@ -0,0 +1,122 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\MiniProgram; + +use EasyWeChat\BasicService; +use EasyWeChat\Kernel\ServiceContainer; + +/** + * Class Application. + * + * @author mingyoung + * + * @property \EasyWeChat\MiniProgram\Auth\AccessToken $access_token + * @property \EasyWeChat\MiniProgram\DataCube\Client $data_cube + * @property \EasyWeChat\MiniProgram\AppCode\Client $app_code + * @property \EasyWeChat\MiniProgram\Auth\Client $auth + * @property \EasyWeChat\OfficialAccount\Server\Guard $server + * @property \EasyWeChat\MiniProgram\Encryptor $encryptor + * @property \EasyWeChat\MiniProgram\TemplateMessage\Client $template_message + * @property \EasyWeChat\OfficialAccount\CustomerService\Client $customer_service + * @property \EasyWeChat\MiniProgram\Plugin\Client $plugin + * @property \EasyWeChat\MiniProgram\Plugin\DevClient $plugin_dev + * @property \EasyWeChat\MiniProgram\UniformMessage\Client $uniform_message + * @property \EasyWeChat\MiniProgram\ActivityMessage\Client $activity_message + * @property \EasyWeChat\MiniProgram\Express\Client $express + * @property \EasyWeChat\MiniProgram\NearbyPoi\Client $nearby_poi + * @property \EasyWeChat\MiniProgram\OCR\Client $ocr + * @property \EasyWeChat\MiniProgram\Soter\Client $soter + * @property \EasyWeChat\BasicService\Media\Client $media + * @property \EasyWeChat\BasicService\ContentSecurity\Client $content_security + * @property \EasyWeChat\MiniProgram\Mall\ForwardsMall $mall + * @property \EasyWeChat\MiniProgram\SubscribeMessage\Client $subscribe_message + * @property \EasyWeChat\MiniProgram\RealtimeLog\Client $realtime_log + * @property \EasyWeChat\MiniProgram\RiskControl\Client $risk_control + * @property \EasyWeChat\MiniProgram\Search\Client $search + * @property \EasyWeChat\MiniProgram\Live\Client $live + * @property \EasyWeChat\MiniProgram\Broadcast\Client $broadcast + * @property \EasyWeChat\MiniProgram\UrlScheme\Client $url_scheme + * @property \EasyWeChat\MiniProgram\Union\Client $union + * @property \EasyWeChat\MiniProgram\Shop\Register\Client $shop_register + * @property \EasyWeChat\MiniProgram\Shop\Basic\Client $shop_basic + * @property \EasyWeChat\MiniProgram\Shop\Account\Client $shop_account + * @property \EasyWeChat\MiniProgram\Shop\Spu\Client $shop_spu + * @property \EasyWeChat\MiniProgram\Shop\Order\Client $shop_order + * @property \EasyWeChat\MiniProgram\Shop\Delivery\Client $shop_delivery + * @property \EasyWeChat\MiniProgram\Shop\Aftersale\Client $shop_aftersale + * @property \EasyWeChat\MiniProgram\Business\Client $business + * @property \EasyWeChat\MiniProgram\UrlLink\Client $url_link + * @property \EasyWeChat\MiniProgram\QrCode\Client $qr_code + * @property \EasyWeChat\MiniProgram\PhoneNumber\Client $phone_number + * @property \EasyWeChat\MiniProgram\ShortLink\Client $short_link + */ +class Application extends ServiceContainer +{ + /** + * @var array + */ + protected $providers = [ + Auth\ServiceProvider::class, + DataCube\ServiceProvider::class, + AppCode\ServiceProvider::class, + Server\ServiceProvider::class, + TemplateMessage\ServiceProvider::class, + CustomerService\ServiceProvider::class, + UniformMessage\ServiceProvider::class, + ActivityMessage\ServiceProvider::class, + OpenData\ServiceProvider::class, + Plugin\ServiceProvider::class, + QrCode\ServiceProvider::class, + Base\ServiceProvider::class, + Express\ServiceProvider::class, + NearbyPoi\ServiceProvider::class, + OCR\ServiceProvider::class, + Soter\ServiceProvider::class, + Mall\ServiceProvider::class, + SubscribeMessage\ServiceProvider::class, + RealtimeLog\ServiceProvider::class, + RiskControl\ServiceProvider::class, + Search\ServiceProvider::class, + Live\ServiceProvider::class, + Broadcast\ServiceProvider::class, + UrlScheme\ServiceProvider::class, + UrlLink\ServiceProvider::class, + Union\ServiceProvider::class, + PhoneNumber\ServiceProvider::class, + ShortLink\ServiceProvider::class, + // Base services + BasicService\Media\ServiceProvider::class, + BasicService\ContentSecurity\ServiceProvider::class, + + Shop\Register\ServiceProvider::class, + Shop\Basic\ServiceProvider::class, + Shop\Account\ServiceProvider::class, + Shop\Spu\ServiceProvider::class, + Shop\Order\ServiceProvider::class, + Shop\Delivery\ServiceProvider::class, + Shop\Aftersale\ServiceProvider::class, + Business\ServiceProvider::class, + ]; + + /** + * Handle dynamic calls. + * + * @param string $method + * @param array $args + * + * @return mixed + */ + public function __call($method, $args) + { + return $this->base->$method(...$args); + } +} diff --git a/vendor/overtrue/wechat/src/MiniProgram/Auth/AccessToken.php b/vendor/overtrue/wechat/src/MiniProgram/Auth/AccessToken.php new file mode 100644 index 0000000..af08921 --- /dev/null +++ b/vendor/overtrue/wechat/src/MiniProgram/Auth/AccessToken.php @@ -0,0 +1,39 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\MiniProgram\Auth; + +use EasyWeChat\Kernel\AccessToken as BaseAccessToken; + +/** + * Class AccessToken. + * + * @author mingyoung + */ +class AccessToken extends BaseAccessToken +{ + /** + * @var string + */ + protected $endpointToGetToken = 'cgi-bin/token'; + + /** + * {@inheritdoc} + */ + protected function getCredentials(): array + { + return [ + 'grant_type' => 'client_credential', + 'appid' => $this->app['config']['app_id'], + 'secret' => $this->app['config']['secret'], + ]; + } +} diff --git a/vendor/overtrue/wechat/src/MiniProgram/Auth/Client.php b/vendor/overtrue/wechat/src/MiniProgram/Auth/Client.php new file mode 100644 index 0000000..90d2c88 --- /dev/null +++ b/vendor/overtrue/wechat/src/MiniProgram/Auth/Client.php @@ -0,0 +1,43 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\MiniProgram\Auth; + +use EasyWeChat\Kernel\BaseClient; + +/** + * Class Auth. + * + * @author mingyoung + */ +class Client extends BaseClient +{ + /** + * Get session info by code. + * + * @param string $code + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function session(string $code) + { + $params = [ + 'appid' => $this->app['config']['app_id'], + 'secret' => $this->app['config']['secret'], + 'js_code' => $code, + 'grant_type' => 'authorization_code', + ]; + + return $this->httpGet('sns/jscode2session', $params); + } +} diff --git a/vendor/overtrue/wechat/src/MiniProgram/Auth/ServiceProvider.php b/vendor/overtrue/wechat/src/MiniProgram/Auth/ServiceProvider.php new file mode 100644 index 0000000..fcb687b --- /dev/null +++ b/vendor/overtrue/wechat/src/MiniProgram/Auth/ServiceProvider.php @@ -0,0 +1,32 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\MiniProgram\Auth; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +class ServiceProvider implements ServiceProviderInterface +{ + /** + * {@inheritdoc}. + */ + public function register(Container $app) + { + !isset($app['access_token']) && $app['access_token'] = function ($app) { + return new AccessToken($app); + }; + + !isset($app['auth']) && $app['auth'] = function ($app) { + return new Client($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/MiniProgram/Base/Client.php b/vendor/overtrue/wechat/src/MiniProgram/Base/Client.php new file mode 100644 index 0000000..84d6b81 --- /dev/null +++ b/vendor/overtrue/wechat/src/MiniProgram/Base/Client.php @@ -0,0 +1,38 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\MiniProgram\Base; + +use EasyWeChat\Kernel\BaseClient; + +/** + * Class Client. + * + * @author mingyoung + */ +class Client extends BaseClient +{ + /** + * Get paid unionid. + * + * @param string $openid + * @param array $options + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function getPaidUnionid($openid, $options = []) + { + return $this->httpGet('wxa/getpaidunionid', compact('openid') + $options); + } +} diff --git a/vendor/overtrue/wechat/src/MiniProgram/Base/ServiceProvider.php b/vendor/overtrue/wechat/src/MiniProgram/Base/ServiceProvider.php new file mode 100644 index 0000000..d9aa41b --- /dev/null +++ b/vendor/overtrue/wechat/src/MiniProgram/Base/ServiceProvider.php @@ -0,0 +1,33 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\MiniProgram\Base; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +/** + * Class ServiceProvider. + * + * @author mingyoung + */ +class ServiceProvider implements ServiceProviderInterface +{ + /** + * {@inheritdoc}. + */ + public function register(Container $app) + { + $app['base'] = function ($app) { + return new Client($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/MiniProgram/Broadcast/Client.php b/vendor/overtrue/wechat/src/MiniProgram/Broadcast/Client.php new file mode 100644 index 0000000..d9fd6ca --- /dev/null +++ b/vendor/overtrue/wechat/src/MiniProgram/Broadcast/Client.php @@ -0,0 +1,539 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\MiniProgram\Broadcast; + +use EasyWeChat\Kernel\BaseClient; + +/** + * Class Client. + * + * @author Abbotton + */ +class Client extends BaseClient +{ + /** + * Add broadcast goods. + * + * @param array $goodsInfo + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function create(array $goodsInfo) + { + $params = [ + 'goodsInfo' => $goodsInfo, + ]; + + return $this->httpPostJson('wxaapi/broadcast/goods/add', $params); + } + + /** + * Reset audit. + * + * @param int $auditId + * @param int $goodsId + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function resetAudit(int $auditId, int $goodsId) + { + $params = [ + 'auditId' => $auditId, + 'goodsId' => $goodsId, + ]; + + return $this->httpPostJson('wxaapi/broadcast/goods/resetaudit', $params); + } + + /** + * Resubmit audit goods. + * + * @param int $goodsId + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function resubmitAudit(int $goodsId) + { + $params = [ + 'goodsId' => $goodsId, + ]; + + return $this->httpPostJson('wxaapi/broadcast/goods/audit', $params); + } + + /** + * Delete broadcast goods. + * + * @param int $goodsId + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function delete(int $goodsId) + { + $params = [ + 'goodsId' => $goodsId, + ]; + + return $this->httpPostJson('wxaapi/broadcast/goods/delete', $params); + } + + /** + * Update goods info. + * + * @param array $goodsInfo + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function update(array $goodsInfo) + { + $params = [ + 'goodsInfo' => $goodsInfo, + ]; + + return $this->httpPostJson('wxaapi/broadcast/goods/update', $params); + } + + /** + * Get goods information and review status. + * + * @param array $goodsIdArray + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function getGoodsWarehouse(array $goodsIdArray) + { + $params = [ + 'goods_ids' => $goodsIdArray, + ]; + + return $this->httpPostJson('wxa/business/getgoodswarehouse', $params); + } + + /** + * Get goods list based on status + * + * @param array $params + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function getApproved(array $params) + { + return $this->httpGet('wxaapi/broadcast/goods/getapproved', $params); + } + + /** + * Add goods to the designated live room. + * + * @param array $params + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function addGoods(array $params) + { + return $this->httpPost('wxaapi/broadcast/room/addgoods', $params); + } + + /** + * Get Room List. + * + * @param int $start + * @param int $limit + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + * @author onekb <1@1kb.ren> + */ + public function getRooms(int $start = 0, int $limit = 10) + { + $params = [ + 'start' => $start, + 'limit' => $limit, + ]; + + return $this->httpPostJson('wxa/business/getliveinfo', $params); + } + + /** + * Get Playback List. + * + * @param int $roomId + * @param int $start + * @param int $limit + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + * @author onekb <1@1kb.ren> + */ + public function getPlaybacks(int $roomId, int $start = 0, int $limit = 10) + { + $params = [ + 'action' => 'get_replay', + 'room_id' => $roomId, + 'start' => $start, + 'limit' => $limit, + ]; + + return $this->httpPostJson('wxa/business/getliveinfo', $params); + } + + /** + * Create a live room. + * + * @param array $params + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function createLiveRoom(array $params) + { + return $this->httpPost('wxaapi/broadcast/room/create', $params); + } + + /** + * Delete a live room. + * + * @param array $params + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function deleteLiveRoom(array $params) + { + return $this->httpPost('wxaapi/broadcast/room/deleteroom', $params); + } + + /** + * Update a live room. + * + * @param array $params + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function updateLiveRoom(array $params) + { + return $this->httpPost('wxaapi/broadcast/room/editroom', $params); + } + + /** + * Gets the live room push stream url. + * + * @param array $params + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function getPushUrl(array $params) + { + return $this->httpGet('wxaapi/broadcast/room/getpushurl', $params); + } + + /** + * Gets the live room share qrcode. + * + * @param array $params + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function getShareQrcode(array $params) + { + return $this->httpGet('wxaapi/broadcast/room/getsharedcode', $params); + } + + /** + * Add a live room assistant. + * + * @param array $params + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function addAssistant(array $params) + { + return $this->httpPost('wxaapi/broadcast/room/addassistant', $params); + } + + /** + * Update a live room assistant. + * + * @param array $params + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function updateAssistant(array $params) + { + return $this->httpPost('wxaapi/broadcast/room/modifyassistant', $params); + } + + /** + * Delete a live room assistant. + * + * @param array $params + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function deleteAssistant(array $params) + { + return $this->httpPost('wxaapi/broadcast/room/removeassistant', $params); + } + + /** + * Gets the assistant list. + * + * @param array $params + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function getAssistantList(array $params) + { + return $this->httpGet('wxaapi/broadcast/room/getassistantlist', $params); + } + + /** + * Add the sub anchor. + * + * @param array $params + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function addSubAnchor(array $params) + { + return $this->httpPost('wxaapi/broadcast/room/addsubanchor', $params); + } + + /** + * Update the sub anchor. + * + * @param array $params + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function updateSubAnchor(array $params) + { + return $this->httpPost('wxaapi/broadcast/room/modifysubanchor', $params); + } + + /** + * Delete the sub anchor. + * + * @param array $params + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function deleteSubAnchor(array $params) + { + return $this->httpPost('wxaapi/broadcast/room/deletesubanchor', $params); + } + + /** + * Gets the sub anchor info. + * + * @param array $params + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function getSubAnchor(array $params) + { + return $this->httpGet('wxaapi/broadcast/room/getsubanchor', $params); + } + + /** + * Turn official index on/off. + * + * @param array $params + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function updateFeedPublic(array $params) + { + return $this->httpPost('wxaapi/broadcast/room/updatefeedpublic', $params); + } + + /** + * Turn playback status on/off. + * + * @param array $params + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function updateReplay(array $params) + { + return $this->httpPost('wxaapi/broadcast/room/updatereplay', $params); + } + + /** + * Turn customer service status on/off. + * + * @param array $params + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function updateKf(array $params) + { + return $this->httpPost('wxaapi/broadcast/room/updatekf', $params); + } + + /** + * Turn global comments status on/off. + * + * @param array $params + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function updateComment(array $params) + { + return $this->httpPost('wxaapi/broadcast/room/updatecomment', $params); + } + + /** + * Add member role. + * + * @param array $params + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function addRole(array $params) + { + return $this->httpPost('wxaapi/broadcast/role/addrole', $params); + } + + /** + * Delete member role. + * + * @param array $params + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function deleteRole(array $params) + { + return $this->httpPost('wxaapi/broadcast/role/deleterole', $params); + } + + /** + * Gets the role list. + * + * @param array $params + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function getRoleList(array $params) + { + return $this->httpGet('wxaapi/broadcast/role/getrolelist', $params); + } + + /** + * Gets long-term subscribers. + * + * @param array $params + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function getFollowers(array $params) + { + return $this->httpPost('wxa/business/get_wxa_followers', $params); + } + + /** + * Sending live broadcast start event to long-term subscribers. + * + * @param array $params + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function pushMessage(array $params) + { + return $this->httpPost('wxa/business/push_message', $params); + } + + /** + * Change the status of goods on/off shelves in room. + * + * @param array $params + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function updateGoodsInRoom(array $params) + { + return $this->httpPost('wxaapi/broadcast/goods/onsale', $params); + } + + /** + * Delete goods in room. + * + * @param array $params + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function deleteGoodsInRoom(array $params) + { + return $this->httpPost('wxaapi/broadcast/goods/deleteInRoom', $params); + } + + /** + * Push goods in room. + * + * @param array $params + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function pushGoods(array $params) + { + return $this->httpPost('wxaapi/broadcast/goods/push', $params); + } + + /** + * Change goods sort in room. + * + * @param array $params + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function sortGoods(array $params) + { + return $this->httpPost('wxaapi/broadcast/goods/sort', $params); + } + + /** + * Download goods explanation video. + * + * @param array $params + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function downloadGoodsExplanationVideo(array $params) + { + return $this->httpPost('wxaapi/broadcast/goods/getVideo', $params); + } +} diff --git a/vendor/overtrue/wechat/src/MiniProgram/Broadcast/ServiceProvider.php b/vendor/overtrue/wechat/src/MiniProgram/Broadcast/ServiceProvider.php new file mode 100644 index 0000000..f33f29f --- /dev/null +++ b/vendor/overtrue/wechat/src/MiniProgram/Broadcast/ServiceProvider.php @@ -0,0 +1,33 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\MiniProgram\Broadcast; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +/** + * Class ServiceProvider. + * + * @author Abbotton + */ +class ServiceProvider implements ServiceProviderInterface +{ + /** + * {@inheritdoc}. + */ + public function register(Container $app) + { + $app['broadcast'] = function ($app) { + return new Client($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/MiniProgram/Business/Client.php b/vendor/overtrue/wechat/src/MiniProgram/Business/Client.php new file mode 100644 index 0000000..b320b70 --- /dev/null +++ b/vendor/overtrue/wechat/src/MiniProgram/Business/Client.php @@ -0,0 +1,149 @@ + + */ +class Client extends BaseClient +{ + /** + * Business register + * @param string $accountName + * @param string $nickname + * @param string $iconMediaId + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function register(string $accountName, string $nickname, string $iconMediaId) + { + $params = [ + 'account_name' => $accountName, + 'nickname' => $nickname, + 'icon_media_id' => $iconMediaId, + ]; + + return $this->httpPostJson('cgi-bin/business/register', $params); + } + + /** + * Get business + * @param int $businessId + * @param string $accountName + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function getBusiness(int $businessId = 0, string $accountName = '') + { + if (empty($businessId) && empty($accountName)) { + throw new InvalidArgumentException('Missing parameter.'); + } + if ($businessId) { + $params = [ + 'business_id' => $businessId, + ]; + } else { + $params = [ + 'account_name' => $accountName, + ]; + } + + return $this->httpPostJson('cgi-bin/business/get', $params); + } + + /** + * Get business list + * @param int $offset + * @param int $count + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function list(int $offset = 0, int $count = 10) + { + $params = [ + 'offset' => $offset, + 'count' => $count, + ]; + + return $this->httpPostJson('cgi-bin/business/list', $params); + } + + /** + * Update business. + * @param int $businessId + * @param string $nickname + * @param string $iconMediaId + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function update(int $businessId, string $nickname = '', string $iconMediaId = '') + { + $params = [ + 'business_id' => $businessId, + 'nickname' => $nickname, + 'icon_media_id' => $iconMediaId, + ]; + + return $this->httpPostJson('cgi-bin/business/update', $params); + } + + /** + * Get message builder. + * + * @param \EasyWeChat\Kernel\Messages\Message|string $message + * + * @return \EasyWeChat\MiniProgram\Business\Messenger + */ + public function message($message) + { + $messageBuilder = new Messenger($this); + + return $messageBuilder->message($message); + } + + /** + * Send a message. + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function send(array $message) + { + return $this->httpPostJson('cgi-bin/message/custom/business/send', $message); + } + + /** + * Typing status. + * @param int $businessId + * @param string $toUser openid + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function typing(int $businessId, string $toUser) + { + $params = [ + 'business_id' => $businessId, + 'touser' => $toUser, + 'command' => 'Typing', + ]; + + return $this->httpPostJson('cgi-bin/business/typing', $params); + } +} diff --git a/vendor/overtrue/wechat/src/MiniProgram/Business/Messenger.php b/vendor/overtrue/wechat/src/MiniProgram/Business/Messenger.php new file mode 100644 index 0000000..fee2e50 --- /dev/null +++ b/vendor/overtrue/wechat/src/MiniProgram/Business/Messenger.php @@ -0,0 +1,179 @@ + + */ +class Messenger +{ + /** + * Messages to send. + * + * @var \EasyWeChat\Kernel\Messages\Message; + */ + protected $message; + + /** + * Messages target user open id. + * + * @var string + */ + protected $to; + + /** + * Messages sender staff id. + * + * @var string + */ + protected $account; + + /** + * Customer service instance. + * + * @var \EasyWeChat\MiniProgram\Business\Client + */ + protected $client; + + /** + * Messages businessId + * + * @var int + */ + protected $businessId; + + /** + * MessageBuilder constructor. + * + * @param \EasyWeChat\MiniProgram\Business\Client $client + */ + public function __construct(Client $client) + { + $this->client = $client; + } + + /** + * Set message to send. + * + * @param string|Message $message + * + * @return Messenger + */ + public function message($message) + { + if (is_string($message)) { + $message = new Text($message); + } + + $this->message = $message; + + return $this; + } + + /** + * Set staff account to send message. + * + * @return Messenger + */ + public function by(string $account) + { + $this->account = $account; + + return $this; + } + + /** + * @return Messenger + */ + public function from(string $account) + { + return $this->by($account); + } + + /** + * Set target user open id. + * + * @param string $openid + * + * @return Messenger + */ + public function to($openid) + { + $this->to = $openid; + + return $this; + } + + /** + * Set target business id. + * + * @param int $businessId + * + * @return Messenger + */ + public function business($businessId) + { + $this->businessId = $businessId; + + return $this; + } + + /** + * Send the message. + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \EasyWeChat\Kernel\Exceptions\RuntimeException + */ + public function send() + { + if (empty($this->message)) { + throw new RuntimeException('No message to send.'); + } + + if ($this->message instanceof RawMessage) { + $message = json_decode($this->message->get('content'), true); + } else { + $prepends = [ + 'touser' => $this->to, + ]; + if ($this->account) { + $prepends['customservice'] = ['kf_account' => $this->account]; + } + if ($this->businessId) { + $prepends['businessid'] = $this->businessId; + } + $message = $this->message->transformForJsonRequest($prepends); + } + + return $this->client->send($message); + } + + /** + * Return property. + * + * @return mixed + */ + public function __get(string $property) + { + if (property_exists($this, $property)) { + return $this->$property; + } + + return null; + } +} diff --git a/vendor/overtrue/wechat/src/MiniProgram/Business/ServiceProvider.php b/vendor/overtrue/wechat/src/MiniProgram/Business/ServiceProvider.php new file mode 100644 index 0000000..8a4c5d1 --- /dev/null +++ b/vendor/overtrue/wechat/src/MiniProgram/Business/ServiceProvider.php @@ -0,0 +1,29 @@ + + */ +class ServiceProvider implements ServiceProviderInterface +{ + /** + * {@inheritdoc}. + */ + public function register(Container $app) + { + $app['business'] = function ($app) { + return new Client($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/MiniProgram/CustomerService/ServiceProvider.php b/vendor/overtrue/wechat/src/MiniProgram/CustomerService/ServiceProvider.php new file mode 100644 index 0000000..cfd3039 --- /dev/null +++ b/vendor/overtrue/wechat/src/MiniProgram/CustomerService/ServiceProvider.php @@ -0,0 +1,34 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\MiniProgram\CustomerService; + +use EasyWeChat\OfficialAccount\CustomerService\Client; +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +/** + * Class ServiceProvider. + * + * @author overtrue + */ +class ServiceProvider implements ServiceProviderInterface +{ + /** + * {@inheritdoc}. + */ + public function register(Container $app) + { + $app['customer_service'] = function ($app) { + return new Client($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/MiniProgram/DataCube/Client.php b/vendor/overtrue/wechat/src/MiniProgram/DataCube/Client.php new file mode 100644 index 0000000..385ef45 --- /dev/null +++ b/vendor/overtrue/wechat/src/MiniProgram/DataCube/Client.php @@ -0,0 +1,203 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\MiniProgram\DataCube; + +use EasyWeChat\Kernel\BaseClient; + +/** + * Class Client. + * + * @author mingyoung + */ +class Client extends BaseClient +{ + /** + * Get summary trend. + * + * @param string $from + * @param string $to + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + */ + public function summaryTrend(string $from, string $to) + { + return $this->query('datacube/getweanalysisappiddailysummarytrend', $from, $to); + } + + /** + * Get daily visit trend. + * + * @param string $from + * @param string $to + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + */ + public function dailyVisitTrend(string $from, string $to) + { + return $this->query('datacube/getweanalysisappiddailyvisittrend', $from, $to); + } + + /** + * Get weekly visit trend. + * + * @param string $from + * @param string $to + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + */ + public function weeklyVisitTrend(string $from, string $to) + { + return $this->query('datacube/getweanalysisappidweeklyvisittrend', $from, $to); + } + + /** + * Get monthly visit trend. + * + * @param string $from + * @param string $to + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + */ + public function monthlyVisitTrend(string $from, string $to) + { + return $this->query('datacube/getweanalysisappidmonthlyvisittrend', $from, $to); + } + + /** + * Get visit distribution. + * + * @param string $from + * @param string $to + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + */ + public function visitDistribution(string $from, string $to) + { + return $this->query('datacube/getweanalysisappidvisitdistribution', $from, $to); + } + + /** + * Get daily retain info. + * + * @param string $from + * @param string $to + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + */ + public function dailyRetainInfo(string $from, string $to) + { + return $this->query('datacube/getweanalysisappiddailyretaininfo', $from, $to); + } + + /** + * Get weekly retain info. + * + * @param string $from + * @param string $to + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + */ + public function weeklyRetainInfo(string $from, string $to) + { + return $this->query('datacube/getweanalysisappidweeklyretaininfo', $from, $to); + } + + /** + * Get monthly retain info. + * + * @param string $from + * @param string $to + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + */ + public function monthlyRetainInfo(string $from, string $to) + { + return $this->query('datacube/getweanalysisappidmonthlyretaininfo', $from, $to); + } + + /** + * Get visit page. + * + * @param string $from + * @param string $to + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + */ + public function visitPage(string $from, string $to) + { + return $this->query('datacube/getweanalysisappidvisitpage', $from, $to); + } + + /** + * Get user portrait. + * + * @param string $from + * @param string $to + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + */ + public function userPortrait(string $from, string $to) + { + return $this->query('datacube/getweanalysisappiduserportrait', $from, $to); + } + + /** + * get performance data + * @param string $from + * @param string $to + * @param string $module + * @param string $networktype + * @param string $device_level + * @param string $device + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function devicePerformanceData(string $from, string $to, string $module, string $networktype = '-1', string $device_level = '-1', string $device = '-1') + { + $payload = [ + 'time' => [ + 'end_timestamp' => strtotime($to), + 'begin_timestamp' => strtotime($from), + ], + 'module' => $module, + 'params' => [ + ['field' => 'networktype', 'value' => $networktype], + ['field' => 'device_level', 'value' => $device_level], + ['field' => 'device', 'value' => $device], + ] + ]; + return $this->httpPostJson('wxa/business/performance/boot', $payload); + } + + /** + * Unify query. + * + * @param string $api + * @param string $from + * @param string $to + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + protected function query(string $api, string $from, string $to) + { + $params = [ + 'begin_date' => $from, + 'end_date' => $to, + ]; + + return $this->httpPostJson($api, $params); + } +} diff --git a/vendor/overtrue/wechat/src/MiniProgram/DataCube/ServiceProvider.php b/vendor/overtrue/wechat/src/MiniProgram/DataCube/ServiceProvider.php new file mode 100644 index 0000000..258d7c4 --- /dev/null +++ b/vendor/overtrue/wechat/src/MiniProgram/DataCube/ServiceProvider.php @@ -0,0 +1,28 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\MiniProgram\DataCube; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +class ServiceProvider implements ServiceProviderInterface +{ + /** + * {@inheritdoc}. + */ + public function register(Container $app) + { + $app['data_cube'] = function ($app) { + return new Client($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/MiniProgram/Encryptor.php b/vendor/overtrue/wechat/src/MiniProgram/Encryptor.php new file mode 100644 index 0000000..fc6ec5f --- /dev/null +++ b/vendor/overtrue/wechat/src/MiniProgram/Encryptor.php @@ -0,0 +1,52 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\MiniProgram; + +use EasyWeChat\Kernel\Encryptor as BaseEncryptor; +use EasyWeChat\Kernel\Exceptions\DecryptException; +use EasyWeChat\Kernel\Support\AES; + +/** + * Class Encryptor. + * + * @author mingyoung + */ +class Encryptor extends BaseEncryptor +{ + /** + * Decrypt data. + * + * @param string $sessionKey + * @param string $iv + * @param string $encrypted + * + * @return array + * + * @throws \EasyWeChat\Kernel\Exceptions\DecryptException + */ + public function decryptData(string $sessionKey, string $iv, string $encrypted): array + { + $decrypted = AES::decrypt( + base64_decode($encrypted, false), + base64_decode($sessionKey, false), + base64_decode($iv, false) + ); + + $decrypted = json_decode($decrypted, true); + + if (!$decrypted) { + throw new DecryptException('The given payload is invalid.'); + } + + return $decrypted; + } +} diff --git a/vendor/overtrue/wechat/src/MiniProgram/Express/Client.php b/vendor/overtrue/wechat/src/MiniProgram/Express/Client.php new file mode 100644 index 0000000..86fd309 --- /dev/null +++ b/vendor/overtrue/wechat/src/MiniProgram/Express/Client.php @@ -0,0 +1,208 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\MiniProgram\Express; + +use EasyWeChat\Kernel\BaseClient; +use EasyWeChat\Kernel\Exceptions\InvalidArgumentException; + +/** + * Class Client. + * + * @author kehuanhuan <1152018701@qq.com> + */ +class Client extends BaseClient +{ + /** + * 绑定、解绑物流账号 + * @param array $params + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws InvalidArgumentException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function bind(array $params = []) + { + if (empty($params['type']) || empty($params['biz_id']) || empty($params['delivery_id'])) { + throw new InvalidArgumentException('Missing parameter.'); + } + + return $this->httpPostJson('cgi-bin/express/business/account/bind', $params); + } + + /** + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function listProviders() + { + return $this->httpGet('cgi-bin/express/business/delivery/getall'); + } + + /** + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function getAllAccount() + { + return $this->httpGet('cgi-bin/express/business/account/getall'); + } + + /** + * @param array $params + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function createWaybill(array $params = []) + { + return $this->httpPostJson('cgi-bin/express/business/order/add', $params); + } + + /** + * @param array $params + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function deleteWaybill(array $params = []) + { + return $this->httpPostJson('cgi-bin/express/business/order/cancel', $params); + } + + /** + * @param array $params + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function getWaybill(array $params = []) + { + return $this->httpPostJson('cgi-bin/express/business/order/get', $params); + } + + /** + * @param array $params + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function getWaybillTrack(array $params = []) + { + return $this->httpPostJson('cgi-bin/express/business/path/get', $params); + } + + /** + * @param string $deliveryId + * @param string $bizId + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function getBalance(string $deliveryId, string $bizId) + { + return $this->httpPostJson('cgi-bin/express/business/quota/get', [ + 'delivery_id' => $deliveryId, + 'biz_id' => $bizId, + ]); + } + + /** + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function getPrinter() + { + return $this->httpPostJson('cgi-bin/express/business/printer/getall'); + } + + /** + * @param string $openid + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function bindPrinter(string $openid) + { + return $this->httpPostJson('cgi-bin/express/business/printer/update', [ + 'update_type' => 'bind', + 'openid' => $openid, + ]); + } + + /** + * @param string $openid + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function unbindPrinter(string $openid) + { + return $this->httpPostJson('cgi-bin/express/business/printer/update', [ + 'update_type' => 'unbind', + 'openid' => $openid, + ]); + } + + /** + * 创建退货 ID + * @param array $params + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function createReturn(array $params = []) + { + return $this->httpPostJson('cgi-bin/express/delivery/return/add', $params); + } + + /** + * 查询退货 ID 状态 + * @param string $returnId + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function getReturn(string $returnId) + { + return $this->httpPostJson('cgi-bin/express/delivery/return/get', [ + 'return_id' => $returnId + ]); + } + + /** + * 解绑退货 ID + * @param string $returnId + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function unbindReturn(string $returnId) + { + return $this->httpPostJson('cgi-bin/express/delivery/return/unbind', [ + 'return_id' => $returnId + ]); + } +} diff --git a/vendor/overtrue/wechat/src/MiniProgram/Express/ServiceProvider.php b/vendor/overtrue/wechat/src/MiniProgram/Express/ServiceProvider.php new file mode 100644 index 0000000..4794094 --- /dev/null +++ b/vendor/overtrue/wechat/src/MiniProgram/Express/ServiceProvider.php @@ -0,0 +1,33 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\MiniProgram\Express; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +/** + * Class ServiceProvider. + * + * @author kehuanhuan <1152018701@qq.com> + */ +class ServiceProvider implements ServiceProviderInterface +{ + /** + * {@inheritdoc}. + */ + public function register(Container $app) + { + $app['express'] = function ($app) { + return new Client($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/MiniProgram/Live/Client.php b/vendor/overtrue/wechat/src/MiniProgram/Live/Client.php new file mode 100644 index 0000000..ecc4324 --- /dev/null +++ b/vendor/overtrue/wechat/src/MiniProgram/Live/Client.php @@ -0,0 +1,63 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\MiniProgram\Live; + +use EasyWeChat\Kernel\BaseClient; + +/** + * Class Client. + * + * @author onekb <1@1kb.ren> + */ +class Client extends BaseClient +{ + /** + * Get Room List. + * + * @param int $start + * @param int $limit + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @deprecated This method has been merged into `\EasyWeChat\MiniProgram\Broadcast` + */ + public function getRooms(int $start = 0, int $limit = 10) + { + $params = [ + 'start' => $start, + 'limit' => $limit, + ]; + + return $this->httpPostJson('wxa/business/getliveinfo', $params); + } + + /** + * Get Playback List. + * + * @param int $roomId + * @param int $start + * @param int $limit + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @deprecated This method has been merged into `\EasyWeChat\MiniProgram\Broadcast` + */ + public function getPlaybacks(int $roomId, int $start = 0, int $limit = 10) + { + $params = [ + 'action' => 'get_replay', + 'room_id' => $roomId, + 'start' => $start, + 'limit' => $limit, + ]; + + return $this->httpPostJson('wxa/business/getliveinfo', $params); + } +} diff --git a/vendor/overtrue/wechat/src/MiniProgram/Live/ServiceProvider.php b/vendor/overtrue/wechat/src/MiniProgram/Live/ServiceProvider.php new file mode 100644 index 0000000..6d6dff6 --- /dev/null +++ b/vendor/overtrue/wechat/src/MiniProgram/Live/ServiceProvider.php @@ -0,0 +1,33 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\MiniProgram\Live; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +/** + * Class ServiceProvider. + * + * @author onekb <1@1kb.ren> + */ +class ServiceProvider implements ServiceProviderInterface +{ + /** + * {@inheritdoc}. + */ + public function register(Container $app) + { + $app['live'] = function ($app) { + return new Client($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/MiniProgram/Mall/CartClient.php b/vendor/overtrue/wechat/src/MiniProgram/Mall/CartClient.php new file mode 100644 index 0000000..7a07e77 --- /dev/null +++ b/vendor/overtrue/wechat/src/MiniProgram/Mall/CartClient.php @@ -0,0 +1,88 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\MiniProgram\Mall; + +use EasyWeChat\Kernel\BaseClient; + +/** + * Class Client. + * + * @author mingyoung + */ +class CartClient extends BaseClient +{ + /** + * 导入收藏. + * + * @param array $params + * @param bool $isTest + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function add($params, $isTest = false) + { + return $this->httpPostJson('mall/addshoppinglist', $params, ['is_test' => (int) $isTest]); + } + + /** + * 查询用户收藏信息. + * + * @param array $params + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function query($params) + { + return $this->httpPostJson('mall/queryshoppinglist', $params, ['type' => 'batchquery']); + } + + /** + * 查询用户收藏信息. + * + * @param array $params + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function queryByPage($params) + { + return $this->httpPostJson('mall/queryshoppinglist', $params, ['type' => 'getbypage']); + } + + /** + * 删除收藏. + * + * @param string $openid + * @param array $products + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function delete($openid, array $products = []) + { + if (empty($products)) { + return $this->httpPostJson('mall/deletebizallshoppinglist', ['user_open_id' => $openid]); + } + + return $this->httpPostJson('mall/deleteshoppinglist', ['user_open_id' => $openid, 'sku_product_list' => $products]); + } +} diff --git a/vendor/overtrue/wechat/src/MiniProgram/Mall/ForwardsMall.php b/vendor/overtrue/wechat/src/MiniProgram/Mall/ForwardsMall.php new file mode 100644 index 0000000..f727b17 --- /dev/null +++ b/vendor/overtrue/wechat/src/MiniProgram/Mall/ForwardsMall.php @@ -0,0 +1,48 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\MiniProgram\Mall; + +/** + * Class Application. + * + * @author mingyoung + * + * @property \EasyWeChat\MiniProgram\Mall\OrderClient $order + * @property \EasyWeChat\MiniProgram\Mall\CartClient $cart + * @property \EasyWeChat\MiniProgram\Mall\ProductClient $product + * @property \EasyWeChat\MiniProgram\Mall\MediaClient $media + */ +class ForwardsMall +{ + /** + * @var \EasyWeChat\Kernel\ServiceContainer + */ + protected $app; + + /** + * @param \EasyWeChat\Kernel\ServiceContainer $app + */ + public function __construct($app) + { + $this->app = $app; + } + + /** + * @param string $property + * + * @return mixed + */ + public function __get($property) + { + return $this->app["mall.{$property}"]; + } +} diff --git a/vendor/overtrue/wechat/src/MiniProgram/Mall/MediaClient.php b/vendor/overtrue/wechat/src/MiniProgram/Mall/MediaClient.php new file mode 100644 index 0000000..a3827bc --- /dev/null +++ b/vendor/overtrue/wechat/src/MiniProgram/Mall/MediaClient.php @@ -0,0 +1,37 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\MiniProgram\Mall; + +use EasyWeChat\Kernel\BaseClient; + +/** + * Class Client. + * + * @author mingyoung + */ +class MediaClient extends BaseClient +{ + /** + * 更新或导入媒体信息. + * + * @param array $params + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function import($params) + { + return $this->httpPostJson('mall/importmedia', $params); + } +} diff --git a/vendor/overtrue/wechat/src/MiniProgram/Mall/OrderClient.php b/vendor/overtrue/wechat/src/MiniProgram/Mall/OrderClient.php new file mode 100644 index 0000000..9879695 --- /dev/null +++ b/vendor/overtrue/wechat/src/MiniProgram/Mall/OrderClient.php @@ -0,0 +1,75 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\MiniProgram\Mall; + +use EasyWeChat\Kernel\BaseClient; + +/** + * Class Client. + * + * @author mingyoung + */ +class OrderClient extends BaseClient +{ + /** + * 导入订单. + * + * @param array $params + * @param bool $isHistory + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function add($params, $isHistory = false) + { + return $this->httpPostJson('mall/importorder', $params, ['action' => 'add-order', 'is_history' => (int) $isHistory]); + } + + /** + * 导入订单. + * + * @param array $params + * @param bool $isHistory + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function update($params, $isHistory = false) + { + return $this->httpPostJson('mall/importorder', $params, ['action' => 'update-order', 'is_history' => (int) $isHistory]); + } + + /** + * 删除订单. + * + * @param string $openid + * @param string $orderId + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function delete($openid, $orderId) + { + $params = [ + 'user_open_id' => $openid, + 'order_id' => $orderId, + ]; + + return $this->httpPostJson('mall/deleteorder', $params); + } +} diff --git a/vendor/overtrue/wechat/src/MiniProgram/Mall/ProductClient.php b/vendor/overtrue/wechat/src/MiniProgram/Mall/ProductClient.php new file mode 100644 index 0000000..f7fbfd0 --- /dev/null +++ b/vendor/overtrue/wechat/src/MiniProgram/Mall/ProductClient.php @@ -0,0 +1,68 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\MiniProgram\Mall; + +use EasyWeChat\Kernel\BaseClient; + +/** + * Class Client. + * + * @author mingyoung + */ +class ProductClient extends BaseClient +{ + /** + * 更新或导入物品信息. + * + * @param array $params + * @param bool $isTest + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function import($params, $isTest = false) + { + return $this->httpPostJson('mall/importproduct', $params, ['is_test' => (int) $isTest]); + } + + /** + * 查询物品信息. + * + * @param array $params + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function query($params) + { + return $this->httpPostJson('mall/queryproduct', $params, ['type' => 'batchquery']); + } + + /** + * 小程序的物品是否可被搜索. + * + * @param bool $value + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function setSearchable($value) + { + return $this->httpPostJson('mall/brandmanage', ['can_be_search' => $value], ['action' => 'set_biz_can_be_search']); + } +} diff --git a/vendor/overtrue/wechat/src/MiniProgram/Mall/ServiceProvider.php b/vendor/overtrue/wechat/src/MiniProgram/Mall/ServiceProvider.php new file mode 100644 index 0000000..964395b --- /dev/null +++ b/vendor/overtrue/wechat/src/MiniProgram/Mall/ServiceProvider.php @@ -0,0 +1,44 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\MiniProgram\Mall; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +class ServiceProvider implements ServiceProviderInterface +{ + /** + * {@inheritdoc}. + */ + public function register(Container $app) + { + $app['mall'] = function ($app) { + return new ForwardsMall($app); + }; + + $app['mall.order'] = function ($app) { + return new OrderClient($app); + }; + + $app['mall.cart'] = function ($app) { + return new CartClient($app); + }; + + $app['mall.product'] = function ($app) { + return new ProductClient($app); + }; + + $app['mall.media'] = function ($app) { + return new MediaClient($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/MiniProgram/NearbyPoi/Client.php b/vendor/overtrue/wechat/src/MiniProgram/NearbyPoi/Client.php new file mode 100644 index 0000000..da9ee05 --- /dev/null +++ b/vendor/overtrue/wechat/src/MiniProgram/NearbyPoi/Client.php @@ -0,0 +1,123 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\MiniProgram\NearbyPoi; + +use EasyWeChat\Kernel\BaseClient; +use EasyWeChat\Kernel\Exceptions\InvalidArgumentException; + +/** + * Class Client. + * + * @author joyeekk + */ +class Client extends BaseClient +{ + /** + * Add nearby poi. + * + * @param array $params + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function add(array $params) + { + $params = array_merge([ + 'is_comm_nearby' => '1', + 'poi_id' => '', + ], $params); + + return $this->httpPostJson('wxa/addnearbypoi', $params); + } + + /** + * Update nearby poi. + * + * @param string $poiId + * @param array $params + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function update(string $poiId, array $params) + { + $params = array_merge([ + 'is_comm_nearby' => '1', + 'poi_id' => $poiId, + ], $params); + + return $this->httpPostJson('wxa/addnearbypoi', $params); + } + + /** + * Delete nearby poi. + * + * @param string $poiId + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function delete(string $poiId) + { + return $this->httpPostJson('wxa/delnearbypoi', [ + 'poi_id' => $poiId, + ]); + } + + /** + * Get nearby poi list. + * + * @param int $page + * @param int $pageRows + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function list(int $page, int $pageRows) + { + return $this->httpGet('wxa/getnearbypoilist', [ + 'page' => $page, + 'page_rows' => $pageRows, + ]); + } + + /** + * Set nearby poi show status. + * + * @param string $poiId + * @param int $status + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function setVisibility(string $poiId, int $status) + { + if (!in_array($status, [0, 1], true)) { + throw new InvalidArgumentException('status should be 0 or 1.'); + } + + return $this->httpPostJson('wxa/setnearbypoishowstatus', [ + 'poi_id' => $poiId, + 'status' => $status, + ]); + } +} diff --git a/vendor/overtrue/wechat/src/MiniProgram/NearbyPoi/ServiceProvider.php b/vendor/overtrue/wechat/src/MiniProgram/NearbyPoi/ServiceProvider.php new file mode 100644 index 0000000..cb15bb3 --- /dev/null +++ b/vendor/overtrue/wechat/src/MiniProgram/NearbyPoi/ServiceProvider.php @@ -0,0 +1,33 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\MiniProgram\NearbyPoi; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +/** + * Class ServiceProvider. + * + * @author joyeekk + */ +class ServiceProvider implements ServiceProviderInterface +{ + /** + * {@inheritdoc}. + */ + public function register(Container $app) + { + $app['nearby_poi'] = function ($app) { + return new Client($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/MiniProgram/OCR/ServiceProvider.php b/vendor/overtrue/wechat/src/MiniProgram/OCR/ServiceProvider.php new file mode 100644 index 0000000..80e0001 --- /dev/null +++ b/vendor/overtrue/wechat/src/MiniProgram/OCR/ServiceProvider.php @@ -0,0 +1,34 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\MiniProgram\OCR; + +use EasyWeChat\OfficialAccount\OCR\Client; +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +/** + * Class ServiceProvider. + * + * @author joyeekk + */ +class ServiceProvider implements ServiceProviderInterface +{ + /** + * {@inheritdoc}. + */ + public function register(Container $app) + { + $app['ocr'] = function ($app) { + return new Client($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/MiniProgram/OpenData/Client.php b/vendor/overtrue/wechat/src/MiniProgram/OpenData/Client.php new file mode 100644 index 0000000..21da580 --- /dev/null +++ b/vendor/overtrue/wechat/src/MiniProgram/OpenData/Client.php @@ -0,0 +1,91 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\MiniProgram\OpenData; + +use EasyWeChat\Kernel\BaseClient; + +/** + * Class Client. + * + * @author tianyong90 <412039588@qq.com> + */ +class Client extends BaseClient +{ + /** + * removeUserStorage. + * + * @param string $openid + * @param string $sessionKey + * @param array $key + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function removeUserStorage(string $openid, string $sessionKey, array $key) + { + $data = ['key' => $key]; + $query = [ + 'openid' => $openid, + 'sig_method' => 'hmac_sha256', + 'signature' => hash_hmac('sha256', json_encode($data), $sessionKey), + ]; + + return $this->httpPostJson('wxa/remove_user_storage', $data, $query); + } + + /** + * setUserStorage. + * + * @param string $openid + * @param string $sessionKey + * @param array $kvList + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function setUserStorage(string $openid, string $sessionKey, array $kvList) + { + $kvList = $this->formatKVLists($kvList); + + $data = ['kv_list' => $kvList]; + $query = [ + 'openid' => $openid, + 'sig_method' => 'hmac_sha256', + 'signature' => hash_hmac('sha256', json_encode($data), $sessionKey), + ]; + + return $this->httpPostJson('wxa/set_user_storage', $data, $query); + } + + /** + * @param array $params + * + * @return array + */ + protected function formatKVLists(array $params) + { + $formatted = []; + + foreach ($params as $name => $value) { + $formatted[] = [ + 'key' => $name, + 'value' => strval($value), + ]; + } + + return $formatted; + } +} diff --git a/vendor/overtrue/wechat/src/MiniProgram/OpenData/ServiceProvider.php b/vendor/overtrue/wechat/src/MiniProgram/OpenData/ServiceProvider.php new file mode 100644 index 0000000..3ea1287 --- /dev/null +++ b/vendor/overtrue/wechat/src/MiniProgram/OpenData/ServiceProvider.php @@ -0,0 +1,28 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\MiniProgram\OpenData; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +class ServiceProvider implements ServiceProviderInterface +{ + /** + * {@inheritdoc}. + */ + public function register(Container $app) + { + $app['open_data'] = function ($app) { + return new Client($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/MiniProgram/PhoneNumber/Client.php b/vendor/overtrue/wechat/src/MiniProgram/PhoneNumber/Client.php new file mode 100644 index 0000000..4052cae --- /dev/null +++ b/vendor/overtrue/wechat/src/MiniProgram/PhoneNumber/Client.php @@ -0,0 +1,47 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\MiniProgram\PhoneNumber; + +use EasyWeChat\Kernel\BaseClient; + +/** + * Class Client. + * + * @package EasyWeChat\MiniProgram\PhoneNumber + * + * @author 读心印 + */ +class Client extends BaseClient +{ + /** + * 获取用户手机号. + * + * @see https://developers.weixin.qq.com/miniprogram/dev/api-backend/open-api/phonenumber/phonenumber.getPhoneNumber.html + * + * @param string $code + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + * + * @author 读心印 + */ + public function getUserPhoneNumber(string $code) + { + $params = [ + 'code' => $code + ]; + + return $this->httpPostJson('wxa/business/getuserphonenumber', $params); + } +} diff --git a/vendor/overtrue/wechat/src/MiniProgram/PhoneNumber/ServiceProvider.php b/vendor/overtrue/wechat/src/MiniProgram/PhoneNumber/ServiceProvider.php new file mode 100644 index 0000000..db4e76f --- /dev/null +++ b/vendor/overtrue/wechat/src/MiniProgram/PhoneNumber/ServiceProvider.php @@ -0,0 +1,28 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\MiniProgram\PhoneNumber; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +class ServiceProvider implements ServiceProviderInterface +{ + /** + * {@inheritdoc}. + */ + public function register(Container $app) + { + $app['phone_number'] = function ($app) { + return new Client($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/MiniProgram/Plugin/Client.php b/vendor/overtrue/wechat/src/MiniProgram/Plugin/Client.php new file mode 100644 index 0000000..cd885cc --- /dev/null +++ b/vendor/overtrue/wechat/src/MiniProgram/Plugin/Client.php @@ -0,0 +1,67 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\MiniProgram\Plugin; + +use EasyWeChat\Kernel\BaseClient; + +/** + * Class Client. + * + * @author mingyoung + */ +class Client extends BaseClient +{ + /** + * @param string $appId + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function apply($appId) + { + return $this->httpPostJson('wxa/plugin', [ + 'action' => 'apply', + 'plugin_appid' => $appId, + ]); + } + + /** + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function list() + { + return $this->httpPostJson('wxa/plugin', [ + 'action' => 'list', + ]); + } + + /** + * @param string $appId + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function unbind($appId) + { + return $this->httpPostJson('wxa/plugin', [ + 'action' => 'unbind', + 'plugin_appid' => $appId, + ]); + } +} diff --git a/vendor/overtrue/wechat/src/MiniProgram/Plugin/DevClient.php b/vendor/overtrue/wechat/src/MiniProgram/Plugin/DevClient.php new file mode 100644 index 0000000..3f25edc --- /dev/null +++ b/vendor/overtrue/wechat/src/MiniProgram/Plugin/DevClient.php @@ -0,0 +1,93 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\MiniProgram\Plugin; + +use EasyWeChat\Kernel\BaseClient; + +/** + * Class DevClient. + * + * @author her-cat + */ +class DevClient extends BaseClient +{ + /** + * Get users. + * + * @param int $page + * @param int $size + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function getUsers(int $page = 1, int $size = 10) + { + return $this->httpPostJson('wxa/devplugin', [ + 'action' => 'dev_apply_list', + 'page' => $page, + 'num' => $size, + ]); + } + + /** + * Agree to use plugin. + * + * @param string $appId + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function agree(string $appId) + { + return $this->httpPostJson('wxa/devplugin', [ + 'action' => 'dev_agree', + 'appid' => $appId, + ]); + } + + /** + * Refuse to use plugin. + * + * @param string $reason + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function refuse(string $reason) + { + return $this->httpPostJson('wxa/devplugin', [ + 'action' => 'dev_refuse', + 'reason' => $reason, + ]); + } + + /** + * Delete rejected applications. + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function delete() + { + return $this->httpPostJson('wxa/devplugin', [ + 'action' => 'dev_delete', + ]); + } +} diff --git a/vendor/overtrue/wechat/src/MiniProgram/Plugin/ServiceProvider.php b/vendor/overtrue/wechat/src/MiniProgram/Plugin/ServiceProvider.php new file mode 100644 index 0000000..097c77e --- /dev/null +++ b/vendor/overtrue/wechat/src/MiniProgram/Plugin/ServiceProvider.php @@ -0,0 +1,42 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\MiniProgram\Plugin; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +/** + * Class ServiceProvider. + * + * @author mingyoung + */ +class ServiceProvider implements ServiceProviderInterface +{ + /** + * Registers services on the given container. + * + * This method should only be used to configure services and parameters. + * It should not get services. + * + * @param \Pimple\Container $app + */ + public function register(Container $app) + { + $app['plugin'] = function ($app) { + return new Client($app); + }; + + $app['plugin_dev'] = function ($app) { + return new DevClient($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/MiniProgram/QrCode/Client.php b/vendor/overtrue/wechat/src/MiniProgram/QrCode/Client.php new file mode 100644 index 0000000..2fb98e5 --- /dev/null +++ b/vendor/overtrue/wechat/src/MiniProgram/QrCode/Client.php @@ -0,0 +1,126 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\MiniProgram\QrCode; + +use EasyWeChat\Kernel\BaseClient; +use EasyWeChat\Kernel\Exceptions\InvalidConfigException; +use EasyWeChat\Kernel\Support\Collection; +use GuzzleHttp\Exception\GuzzleException; +use Psr\Http\Message\ResponseInterface; + +/** + * QrCode Client + * + * 普通链接二维码 + * + * @link https://developers.weixin.qq.com/doc/oplatform/Third-party_Platforms/2.0/api/qrcode/qrcode.html + * @link https://developers.weixin.qq.com/miniprogram/introduction/qrcode.html + * + * @author dysodeng + */ +class Client extends BaseClient +{ + /** + * 获取已设置的二维码规则 + * + * @return array|Collection|object|ResponseInterface|string + * + * @throws InvalidConfigException + * @throws GuzzleException + */ + public function list() + { + return $this->httpPostJson('cgi-bin/wxopen/qrcodejumpget'); + } + + /** + * 获取校验文件名称及内容 + * + * @return array|Collection|object|ResponseInterface|string + * + * @throws GuzzleException + * @throws InvalidConfigException + */ + public function getVerifyFile() + { + return $this->httpPostJson('cgi-bin/wxopen/qrcodejumpdownload'); + } + + /** + * 增加或修改二维码规则 + * + * @param array $params + * + * @return array|Collection|object|ResponseInterface|string + * @throws GuzzleException + * @throws InvalidConfigException + */ + public function set(array $params) + { + return $this->httpPostJson('cgi-bin/wxopen/qrcodejumpadd', $params); + } + + /** + * 发布已设置的二维码规则 + * + * @param string $prefix + * + * @return array|Collection|object|ResponseInterface|string + * + * @throws GuzzleException + * @throws InvalidConfigException + */ + public function publish(string $prefix) + { + $params = [ + 'prefix' => $prefix + ]; + return $this->httpPostJson('cgi-bin/wxopen/qrcodejumppublish', $params); + } + + /** + * 删除已设置的二维码规则 + * + * @param string $prefix + * + * @return array|Collection|object|ResponseInterface|string + * + * @throws GuzzleException + * @throws InvalidConfigException + */ + public function delete(string $prefix) + { + $params = [ + 'prefix' => $prefix + ]; + return $this->httpPostJson('cgi-bin/wxopen/qrcodejumpdelete', $params); + } + + /** + * 将二维码长链接转成短链接 + * + * @param string $long_url + * + * @return array|Collection|object|ResponseInterface|string + * + * @throws GuzzleException + * @throws InvalidConfigException + */ + public function shortUrl(string $long_url) + { + $params = [ + 'long_url' => $long_url, + 'action' => 'long2short' + ]; + return $this->httpPostJson('cgi-bin/shorturl', $params); + } +} diff --git a/vendor/overtrue/wechat/src/MiniProgram/QrCode/ServiceProvider.php b/vendor/overtrue/wechat/src/MiniProgram/QrCode/ServiceProvider.php new file mode 100644 index 0000000..ee2a0aa --- /dev/null +++ b/vendor/overtrue/wechat/src/MiniProgram/QrCode/ServiceProvider.php @@ -0,0 +1,33 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\MiniProgram\QrCode; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +/** + * QrCode ServiceProvider. + * + * @author dysodeng + */ +class ServiceProvider implements ServiceProviderInterface +{ + /** + * {@inheritdoc}. + */ + public function register(Container $pimple) + { + $pimple['qr_code'] = function ($app) { + return new Client($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/MiniProgram/RealtimeLog/Client.php b/vendor/overtrue/wechat/src/MiniProgram/RealtimeLog/Client.php new file mode 100644 index 0000000..9363619 --- /dev/null +++ b/vendor/overtrue/wechat/src/MiniProgram/RealtimeLog/Client.php @@ -0,0 +1,46 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\MiniProgram\RealtimeLog; + +use EasyWeChat\Kernel\BaseClient; + +/** + * Class Client. + * + * @author her-cat + */ +class Client extends BaseClient +{ + /** + * Real time log query. + * + * @param string $date + * @param int $beginTime + * @param int $endTime + * @param array $options + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function search(string $date, int $beginTime, int $endTime, array $options = []) + { + $params = [ + 'date' => $date, + 'begintime' => $beginTime, + 'endtime' => $endTime, + ]; + + return $this->httpGet('wxaapi/userlog/userlog_search', $params + $options); + } +} diff --git a/vendor/overtrue/wechat/src/MiniProgram/RealtimeLog/ServiceProvider.php b/vendor/overtrue/wechat/src/MiniProgram/RealtimeLog/ServiceProvider.php new file mode 100644 index 0000000..9a28141 --- /dev/null +++ b/vendor/overtrue/wechat/src/MiniProgram/RealtimeLog/ServiceProvider.php @@ -0,0 +1,33 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\MiniProgram\RealtimeLog; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +/** + * Class ServiceProvider. + * + * @author her-cat + */ +class ServiceProvider implements ServiceProviderInterface +{ + /** + * {@inheritdoc} + */ + public function register(Container $app) + { + $app['realtime_log'] = function ($app) { + return new Client($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/MiniProgram/RiskControl/Client.php b/vendor/overtrue/wechat/src/MiniProgram/RiskControl/Client.php new file mode 100644 index 0000000..a6c00c0 --- /dev/null +++ b/vendor/overtrue/wechat/src/MiniProgram/RiskControl/Client.php @@ -0,0 +1,32 @@ +httpPostJson('wxa/getuserriskrank', $params); + } +} diff --git a/vendor/overtrue/wechat/src/MiniProgram/RiskControl/ServiceProvider.php b/vendor/overtrue/wechat/src/MiniProgram/RiskControl/ServiceProvider.php new file mode 100644 index 0000000..94d2758 --- /dev/null +++ b/vendor/overtrue/wechat/src/MiniProgram/RiskControl/ServiceProvider.php @@ -0,0 +1,25 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\MiniProgram\Search; + +use EasyWeChat\Kernel\BaseClient; + +/** + * Class Client. + * + * @author her-cat + */ +class Client extends BaseClient +{ + /** + * Submit applet page URL and parameter information. + * + * @param array $pages + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function submitPage(array $pages) + { + return $this->httpPostJson('wxa/search/wxaapi_submitpages', compact('pages')); + } +} diff --git a/vendor/overtrue/wechat/src/MiniProgram/Search/ServiceProvider.php b/vendor/overtrue/wechat/src/MiniProgram/Search/ServiceProvider.php new file mode 100644 index 0000000..85cb569 --- /dev/null +++ b/vendor/overtrue/wechat/src/MiniProgram/Search/ServiceProvider.php @@ -0,0 +1,33 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\MiniProgram\Search; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +/** + * Class ServiceProvider. + * + * @author her-cat + */ +class ServiceProvider implements ServiceProviderInterface +{ + /** + * {@inheritdoc}. + */ + public function register(Container $app) + { + $app['search'] = function ($app) { + return new Client($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/MiniProgram/Server/ServiceProvider.php b/vendor/overtrue/wechat/src/MiniProgram/Server/ServiceProvider.php new file mode 100644 index 0000000..0586bb9 --- /dev/null +++ b/vendor/overtrue/wechat/src/MiniProgram/Server/ServiceProvider.php @@ -0,0 +1,42 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\MiniProgram\Server; + +use EasyWeChat\MiniProgram\Encryptor; +use EasyWeChat\OfficialAccount\Server\Guard; +use EasyWeChat\OfficialAccount\Server\Handlers\EchoStrHandler; +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +class ServiceProvider implements ServiceProviderInterface +{ + /** + * {@inheritdoc}. + */ + public function register(Container $app) + { + !isset($app['encryptor']) && $app['encryptor'] = function ($app) { + return new Encryptor( + $app['config']['app_id'], + $app['config']['token'], + $app['config']['aes_key'] + ); + }; + + !isset($app['server']) && $app['server'] = function ($app) { + $guard = new Guard($app); + $guard->push(new EchoStrHandler($app)); + + return $guard; + }; + } +} diff --git a/vendor/overtrue/wechat/src/MiniProgram/Shop/Account/Client.php b/vendor/overtrue/wechat/src/MiniProgram/Shop/Account/Client.php new file mode 100644 index 0000000..1988e7e --- /dev/null +++ b/vendor/overtrue/wechat/src/MiniProgram/Shop/Account/Client.php @@ -0,0 +1,67 @@ + + */ +class Client extends BaseClient +{ + /** + * 获取商家类目列表 + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function getCategoryList() + { + return $this->httpPostJson('shop/account/get_category_list'); + } + + /** + * 获取商家品牌列表 + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function getBrandList() + { + return $this->httpPostJson('shop/account/get_brand_list'); + } + + /** + * 更新商家信息 + * + * @param string $path 小程序path + * @param string $phone 客服联系方式 + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function updateInfo(string $path = '', string $phone = '') + { + return $this->httpPostJson('shop/account/update_info', [ + 'service_agent_path' => $path, + 'service_agent_phone' => $phone, + ]); + } + + /** + * 获取商家信息 + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function getInfo() + { + return $this->httpPostJson('shop/account/get_info'); + } +} diff --git a/vendor/overtrue/wechat/src/MiniProgram/Shop/Account/ServiceProvider.php b/vendor/overtrue/wechat/src/MiniProgram/Shop/Account/ServiceProvider.php new file mode 100644 index 0000000..42e8bf8 --- /dev/null +++ b/vendor/overtrue/wechat/src/MiniProgram/Shop/Account/ServiceProvider.php @@ -0,0 +1,25 @@ + + */ +class ServiceProvider implements ServiceProviderInterface +{ + /** + * {@inheritdoc} + */ + public function register(Container $app) + { + $app['shop_account'] = function ($app) { + return new Client($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/MiniProgram/Shop/Aftersale/Client.php b/vendor/overtrue/wechat/src/MiniProgram/Shop/Aftersale/Client.php new file mode 100644 index 0000000..ebb83d1 --- /dev/null +++ b/vendor/overtrue/wechat/src/MiniProgram/Shop/Aftersale/Client.php @@ -0,0 +1,54 @@ + + */ +class Client extends BaseClient +{ + /** + * 创建售后 + * + * @param array $aftersale + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function add(array $aftersale) + { + return $this->httpPostJson('shop/ecaftersale/add', $aftersale); + } + + /** + * 获取订单下售后单 + * + * @param array $order 订单数据 + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function get(array $order) + { + return $this->httpPostJson('shop/ecaftersale/get', $order); + } + + /** + * 更新售后 + * + * @param array $order 订单数据 + * @param array $aftersale 售后数据 + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function update(array $order, array $aftersale) + { + return $this->httpPostJson('shop/ecaftersale/update', array_merge($order, $aftersale)); + } +} diff --git a/vendor/overtrue/wechat/src/MiniProgram/Shop/Aftersale/ServiceProvider.php b/vendor/overtrue/wechat/src/MiniProgram/Shop/Aftersale/ServiceProvider.php new file mode 100644 index 0000000..91d9ab7 --- /dev/null +++ b/vendor/overtrue/wechat/src/MiniProgram/Shop/Aftersale/ServiceProvider.php @@ -0,0 +1,25 @@ + + */ +class ServiceProvider implements ServiceProviderInterface +{ + /** + * @inheritDoc + */ + public function register(Container $app) + { + $app['shop_aftersale'] = function ($app) { + return new Client($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/MiniProgram/Shop/Basic/Client.php b/vendor/overtrue/wechat/src/MiniProgram/Shop/Basic/Client.php new file mode 100644 index 0000000..b2cf95f --- /dev/null +++ b/vendor/overtrue/wechat/src/MiniProgram/Shop/Basic/Client.php @@ -0,0 +1,110 @@ + + */ +class Client extends BaseClient +{ + /** + * 获取商品类目 + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function getCat() + { + return $this->httpPostJson('shop/cat/get'); + } + + /** + * @param string $imageFilePath 图片文件路径 + * @param int $respType 返回类型 + * @param int $uploadType 上传类型,本地图片或者网络图片 + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function imgUpload(string $imageFilePath, int $respType = 1, int $uploadType = 0) + { + if ($uploadType == 0) { + return $this->httpUpload('shop/img/upload', [ + 'media' => $imageFilePath, + ], [ + 'resp_type' => $respType, + ]); + } else { + return $this->httpPostJson('shop/img/upload', [], [ + 'img_url' => $imageFilePath, + 'resp_type' => $respType, + 'upload_type' => $uploadType + ]); + } + } + + /** + * 品牌审核 + * + * @param array $brand 品牌信息 + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function auditBrand(array $brand) + { + return $this->httpPostJson('shop/audit/audit_brand', [ + 'audit_req' => $brand + ]); + } + + /** + * 类目审核 + * + * @param array $category 类目资质 + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function auditCategory(array $category) + { + return $this->httpPostJson('shop/audit/audit_category', [ + 'audit_req' => $category + ]); + } + + /** + * 获取审核结果 + * + * @param string $auditId 提交审核时返回的id + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function auditResult(string $auditId) + { + return $this->httpPostJson('shop/audit/result', [ + 'audit_id' => $auditId + ]); + } + + /** + * 获取小程序资质 + * + * @param int $reqType + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function getMiniAppCertificate(int $reqType = 2) + { + return $this->httpPostJson('shop/audit/get_miniapp_certificate', [ + 'req_type' => $reqType + ]); + } +} diff --git a/vendor/overtrue/wechat/src/MiniProgram/Shop/Basic/ServiceProvider.php b/vendor/overtrue/wechat/src/MiniProgram/Shop/Basic/ServiceProvider.php new file mode 100644 index 0000000..a8ed616 --- /dev/null +++ b/vendor/overtrue/wechat/src/MiniProgram/Shop/Basic/ServiceProvider.php @@ -0,0 +1,25 @@ + + */ +class ServiceProvider implements ServiceProviderInterface +{ + /** + * @inheritDoc + */ + public function register(Container $app) + { + $app['shop_basic'] = function ($app) { + return new Client($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/MiniProgram/Shop/Delivery/Client.php b/vendor/overtrue/wechat/src/MiniProgram/Shop/Delivery/Client.php new file mode 100644 index 0000000..c924034 --- /dev/null +++ b/vendor/overtrue/wechat/src/MiniProgram/Shop/Delivery/Client.php @@ -0,0 +1,52 @@ + + */ +class Client extends BaseClient +{ + /** + * 获取快递公司列表 + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function getCompanyList() + { + return $this->httpPostJson('shop/delivery/get_company_list'); + } + + /** + * 订单发货 + * + * @param array $order + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function send(array $order) + { + return $this->httpPostJson('shop/delivery/send', $order); + } + + /** + * 订单确认收货 + * + * @param array $order + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function recieve(array $order) + { + return $this->httpPostJson('shop/delivery/recieve', $order); + } +} diff --git a/vendor/overtrue/wechat/src/MiniProgram/Shop/Delivery/ServiceProvider.php b/vendor/overtrue/wechat/src/MiniProgram/Shop/Delivery/ServiceProvider.php new file mode 100644 index 0000000..eb8ce16 --- /dev/null +++ b/vendor/overtrue/wechat/src/MiniProgram/Shop/Delivery/ServiceProvider.php @@ -0,0 +1,25 @@ + + */ +class ServiceProvider implements ServiceProviderInterface +{ + /** + * @inheritDoc + */ + public function register(Container $app) + { + $app['shop_delivery'] = function ($app) { + return new Client($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/MiniProgram/Shop/Order/Client.php b/vendor/overtrue/wechat/src/MiniProgram/Shop/Order/Client.php new file mode 100644 index 0000000..81a4cac --- /dev/null +++ b/vendor/overtrue/wechat/src/MiniProgram/Shop/Order/Client.php @@ -0,0 +1,157 @@ + + */ +class Client extends BaseClient +{ + /** + * 检查场景值是否在支付校验范围内 + * + * @param int $scene 场景值 + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function sceneCheck(int $scene) + { + return $this->httpPostJson('shop/scene/check', ['scene' => $scene]); + } + + /** + * 生成订单 + * + * @param array $order + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function create(array $order) + { + return $this->httpPostJson('shop/order/add', $order); + } + + /** + * 生成订单 + * + * @param array $order + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function add(array $order) + { + return $this->httpPostJson('shop/order/add', $order); + } + + /** + * 获取订单详情 + * + * @param string $openid 用户的openid + * @param array $orderId 微信侧订单id (订单id二选一) + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function get(string $openid, array $orderId) + { + return $this->httpPostJson('shop/order/get', array_merge($orderId, ['openid' => $openid])); + } + + /** + * 关闭订单 + * + * @param array $params 请求参数 + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function close(array $params) + { + return $this->httpPostJson('shop/order/close', $params); + } + + /** + * 获取订单列表 + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function getList(array $data) + { + return $this->httpPostJson('shop/order/get_list', $data); + } + + /** + * 同步订单支付结果 + * + * @param array $pay + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function pay(array $pay) + { + return $this->httpPostJson('shop/order/pay', $pay); + } + + /** + * 同步订单支付结果 + * + * @param array $pay + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function syncPayState(array $pay) + { + return $this->httpPostJson('shop/order/pay', $pay); + } + + /** + * 同步订单支付结果 + * + * @param array $params + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function getPayInfo(array $params) + { + return $this->httpPostJson('shop/order/getpaymentparams', $params); + } + + /** + * 获取推广员订单 + * + * @param array $params + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function getFinderOrders(array $params) + { + return $this->httpPostJson('shop/order/get_list_by_finder', $params); + } + + /** + * 获取分享员订单 + * + * @param array $params + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function getSharerOrders(array $params) + { + return $this->httpPostJson('shop/order/get_list_by_sharer', $params); + } +} diff --git a/vendor/overtrue/wechat/src/MiniProgram/Shop/Order/ServiceProvider.php b/vendor/overtrue/wechat/src/MiniProgram/Shop/Order/ServiceProvider.php new file mode 100644 index 0000000..4b28114 --- /dev/null +++ b/vendor/overtrue/wechat/src/MiniProgram/Shop/Order/ServiceProvider.php @@ -0,0 +1,25 @@ + + */ +class ServiceProvider implements ServiceProviderInterface +{ + /** + * @inheritDoc + */ + public function register(Container $app) + { + $app['shop_order'] = function ($app) { + return new Client($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/MiniProgram/Shop/Register/Client.php b/vendor/overtrue/wechat/src/MiniProgram/Shop/Register/Client.php new file mode 100644 index 0000000..4667cee --- /dev/null +++ b/vendor/overtrue/wechat/src/MiniProgram/Shop/Register/Client.php @@ -0,0 +1,76 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\MiniProgram\Shop\Register; + +use EasyWeChat\Kernel\BaseClient; + +/** + * Class Client. + * + * @author her-cat + */ +class Client extends BaseClient +{ + /** + * 接入申请 + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function apply() + { + return $this->httpPostJson('shop/register/apply'); + } + + /** + * 获取接入状态 + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function check() + { + return $this->httpPostJson('shop/register/check'); + } + + /** + * 完成接入任务 + * + * @param int $accessInfoItem + * 6:完成spu接口,7:完成订单接口,8:完成物流接口,9:完成售后接口,10:测试完成,11:发版完成 + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function finishAccessInfo(int $accessInfoItem) + { + return $this->httpPostJson('shop/register/finish_access_info', [ + 'access_info_item' => $accessInfoItem + ]); + } + + /** + * 场景接入申请 + * + * @param int $sceneGroupId 1:视频号、公众号场景 + + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function applyScene(int $sceneGroupId = 1) + { + return $this->httpPostJson('shop/register/apply_scene', [ + 'scene_group_id' => $sceneGroupId + ]); + } +} diff --git a/vendor/overtrue/wechat/src/MiniProgram/Shop/Register/ServiceProvider.php b/vendor/overtrue/wechat/src/MiniProgram/Shop/Register/ServiceProvider.php new file mode 100644 index 0000000..58fd286 --- /dev/null +++ b/vendor/overtrue/wechat/src/MiniProgram/Shop/Register/ServiceProvider.php @@ -0,0 +1,33 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\MiniProgram\Shop\Register; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +/** + * Class ServiceProvider. + * + * @author her-cat + */ +class ServiceProvider implements ServiceProviderInterface +{ + /** + * {@inheritdoc} + */ + public function register(Container $app) + { + $app['shop_register'] = function ($app) { + return new Client($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/MiniProgram/Shop/Spu/Client.php b/vendor/overtrue/wechat/src/MiniProgram/Shop/Spu/Client.php new file mode 100644 index 0000000..dc06fd1 --- /dev/null +++ b/vendor/overtrue/wechat/src/MiniProgram/Shop/Spu/Client.php @@ -0,0 +1,132 @@ + + */ +class Client extends BaseClient +{ + /** + * 添加商品 + * + * @param array $product 商品信息 + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function add(array $product) + { + return $this->httpPostJson('shop/spu/add', $product); + } + + /** + * 删除商品 + * + * @param array $productId 商品编号信息 + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function del(array $productId) + { + return $this->httpPostJson('shop/spu/del', $productId); + } + + /** + * 获取商品 + * + * @param array $productId 商品编号信息 + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function get(array $productId) + { + return $this->httpPostJson('shop/spu/get', $productId); + } + + /** + * 获取商品列表 + * + * @param array $product 商品信息 + * @param array $page 分页信息 + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function getList(array $product, array $page) + { + return $this->httpPostJson('shop/spu/get_list', array_merge($product, $page)); + } + + /** + * 撤回商品审核 + * + * @param array $productId 商品编号信息 交易组件平台内部商品ID,与out_product_id二选一 + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function delAudit(array $productId) + { + return $this->httpPostJson('shop/spu/del_audit', $productId); + } + + /** + * 更新商品 + * + * @param array $product + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function update(array $product) + { + return $this->httpPostJson('shop/spu/update', $product); + } + + /** + * 该免审更新商品 + * + * @param array $product + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function updateWithoutAudit(array $product) + { + return $this->httpPostJson('shop/spu/update_without_audit', $product); + } + + /** + * 上架商品 + * + * @param array $productId 商品编号数据 交易组件平台内部商品ID,与out_product_id二选一 + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function listing(array $productId) + { + return $this->httpPostJson('shop/spu/listing', $productId); + } + + /** + * 下架商品 + * + * @param array $productId + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function delisting(array $productId) + { + return $this->httpPostJson('shop/spu/delisting', $productId); + } +} diff --git a/vendor/overtrue/wechat/src/MiniProgram/Shop/Spu/ServiceProvider.php b/vendor/overtrue/wechat/src/MiniProgram/Shop/Spu/ServiceProvider.php new file mode 100644 index 0000000..c87344d --- /dev/null +++ b/vendor/overtrue/wechat/src/MiniProgram/Shop/Spu/ServiceProvider.php @@ -0,0 +1,25 @@ + + * @package EasyWeChat\MiniProgram\Shop\Spu + */ +class ServiceProvider implements ServiceProviderInterface +{ + /** + * {@inheritdoc} + */ + public function register(Container $app) + { + $app['shop_spu'] = function ($app) { + return new Client($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/MiniProgram/ShortLink/Client.php b/vendor/overtrue/wechat/src/MiniProgram/ShortLink/Client.php new file mode 100644 index 0000000..efce5f7 --- /dev/null +++ b/vendor/overtrue/wechat/src/MiniProgram/ShortLink/Client.php @@ -0,0 +1,42 @@ + + */ +class Client extends BaseClient +{ + /** + * 获取小程序 Short Link + * + * @param string $pageUrl + * @param string $pageTitle + * @param bool $isPermanent + * + * @return array|Collection|object|ResponseInterface|string + * + * @throws GuzzleException + * @throws InvalidConfigException + */ + public function getShortLink(string $pageUrl, string $pageTitle, bool $isPermanent = false) + { + $params = [ + 'page_url' => $pageUrl, + 'page_title' => $pageTitle, + 'is_permanent' => $isPermanent, + ]; + + return $this->httpPostJson('wxa/genwxashortlink', $params); + } +} diff --git a/vendor/overtrue/wechat/src/MiniProgram/ShortLink/ServiceProvider.php b/vendor/overtrue/wechat/src/MiniProgram/ShortLink/ServiceProvider.php new file mode 100644 index 0000000..79a28ec --- /dev/null +++ b/vendor/overtrue/wechat/src/MiniProgram/ShortLink/ServiceProvider.php @@ -0,0 +1,19 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\MiniProgram\Soter; + +use EasyWeChat\Kernel\BaseClient; + +/** + * Class Client. + * + * @author her-cat + */ +class Client extends BaseClient +{ + /** + * @param string $openid + * @param string $json + * @param string $signature + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function verifySignature(string $openid, string $json, string $signature) + { + return $this->httpPostJson('cgi-bin/soter/verify_signature', [ + 'openid' => $openid, + 'json_string' => $json, + 'json_signature' => $signature, + ]); + } +} diff --git a/vendor/overtrue/wechat/src/MiniProgram/Soter/ServiceProvider.php b/vendor/overtrue/wechat/src/MiniProgram/Soter/ServiceProvider.php new file mode 100644 index 0000000..c8520db --- /dev/null +++ b/vendor/overtrue/wechat/src/MiniProgram/Soter/ServiceProvider.php @@ -0,0 +1,33 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\MiniProgram\Soter; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +/** + * Class ServiceProvider. + * + * @author her-cat + */ +class ServiceProvider implements ServiceProviderInterface +{ + /** + * {@inheritdoc} + */ + public function register(Container $app) + { + $app['soter'] = function ($app) { + return new Client($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/MiniProgram/SubscribeMessage/Client.php b/vendor/overtrue/wechat/src/MiniProgram/SubscribeMessage/Client.php new file mode 100644 index 0000000..1e797ee --- /dev/null +++ b/vendor/overtrue/wechat/src/MiniProgram/SubscribeMessage/Client.php @@ -0,0 +1,209 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\MiniProgram\SubscribeMessage; + +use EasyWeChat\Kernel\BaseClient; +use EasyWeChat\Kernel\Exceptions\InvalidArgumentException; +use ReflectionClass; + +/** + * Class Client. + * + * @author hugo + */ +class Client extends BaseClient +{ + /** + * {@inheritdoc}. + */ + protected $message = [ + 'touser' => '', + 'template_id' => '', + 'page' => '', + 'data' => [], + 'miniprogram_state' => 'formal', + ]; + + /** + * {@inheritdoc}. + */ + protected $required = ['touser', 'template_id', 'data']; + + /** + * Send a template message. + * + * @param array $data + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function send(array $data = []) + { + $params = $this->formatMessage($data); + + $this->restoreMessage(); + + return $this->httpPostJson('cgi-bin/message/subscribe/send', $params); + } + + /** + * @param array $data + * + * @return array + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + */ + protected function formatMessage(array $data = []) + { + $params = array_merge($this->message, $data); + + foreach ($params as $key => $value) { + if (in_array($key, $this->required, true) && empty($value) && empty($this->message[$key])) { + throw new InvalidArgumentException(sprintf('Attribute "%s" can not be empty!', $key)); + } + + $params[$key] = empty($value) ? $this->message[$key] : $value; + } + + foreach ($params['data'] as $key => $value) { + if (is_array($value)) { + if (\array_key_exists('value', $value)) { + $params['data'][$key] = ['value' => $value['value']]; + + continue; + } + + if (count($value) >= 1) { + $value = [ + 'value' => $value[0], +// 'color' => $value[1],// color unsupported + ]; + } + } else { + $value = [ + 'value' => strval($value), + ]; + } + + $params['data'][$key] = $value; + } + + return $params; + } + + /** + * Restore message. + */ + protected function restoreMessage() + { + $this->message = (new ReflectionClass(static::class))->getDefaultProperties()['message']; + } + + /** + * Combine templates and add them to your personal template library under your account. + * + * @param string $tid + * @param array $kidList + * @param string|null $sceneDesc + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function addTemplate(string $tid, array $kidList, string $sceneDesc = null) + { + $sceneDesc = $sceneDesc ?? ''; + $data = \compact('tid', 'kidList', 'sceneDesc'); + + return $this->httpPost('wxaapi/newtmpl/addtemplate', $data); + } + + /** + * Delete personal template under account. + * + * @param string $id + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function deleteTemplate(string $id) + { + return $this->httpPost('wxaapi/newtmpl/deltemplate', ['priTmplId' => $id]); + } + + /** + * Get keyword list under template title. + * + * @param string $tid + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function getTemplateKeywords(string $tid) + { + return $this->httpGet('wxaapi/newtmpl/getpubtemplatekeywords', compact('tid')); + } + + /** + * Get the title of the public template under the category to which the account belongs. + * + * @param array $ids + * @param int $start + * @param int $limit + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function getTemplateTitles(array $ids, int $start = 0, int $limit = 30) + { + $ids = \implode(',', $ids); + $query = \compact('ids', 'start', 'limit'); + + return $this->httpGet('wxaapi/newtmpl/getpubtemplatetitles', $query); + } + + /** + * Get list of personal templates under the current account. + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function getTemplates() + { + return $this->httpGet('wxaapi/newtmpl/gettemplate'); + } + + /** + * Get the category of the applet account. + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function getCategory() + { + return $this->httpGet('wxaapi/newtmpl/getcategory'); + } +} diff --git a/vendor/overtrue/wechat/src/MiniProgram/SubscribeMessage/ServiceProvider.php b/vendor/overtrue/wechat/src/MiniProgram/SubscribeMessage/ServiceProvider.php new file mode 100644 index 0000000..726b3ed --- /dev/null +++ b/vendor/overtrue/wechat/src/MiniProgram/SubscribeMessage/ServiceProvider.php @@ -0,0 +1,28 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\MiniProgram\SubscribeMessage; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +class ServiceProvider implements ServiceProviderInterface +{ + /** + * {@inheritdoc}. + */ + public function register(Container $app) + { + $app['subscribe_message'] = function ($app) { + return new Client($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/MiniProgram/TemplateMessage/Client.php b/vendor/overtrue/wechat/src/MiniProgram/TemplateMessage/Client.php new file mode 100644 index 0000000..06dfbcb --- /dev/null +++ b/vendor/overtrue/wechat/src/MiniProgram/TemplateMessage/Client.php @@ -0,0 +1,114 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\MiniProgram\TemplateMessage; + +use EasyWeChat\OfficialAccount\TemplateMessage\Client as BaseClient; + +/** + * Class Client. + * + * @author mingyoung + */ +class Client extends BaseClient +{ + public const API_SEND = 'cgi-bin/message/wxopen/template/send'; + + /** + * {@inheritdoc}. + */ + protected $message = [ + 'touser' => '', + 'template_id' => '', + 'page' => '', + 'form_id' => '', + 'data' => [], + 'emphasis_keyword' => '', + ]; + + /** + * {@inheritdoc}. + */ + protected $required = ['touser', 'template_id', 'form_id']; + + /** + * @param int $offset + * @param int $count + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function list(int $offset, int $count) + { + return $this->httpPostJson('cgi-bin/wxopen/template/library/list', compact('offset', 'count')); + } + + /** + * @param string $id + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function get(string $id) + { + return $this->httpPostJson('cgi-bin/wxopen/template/library/get', compact('id')); + } + + /** + * @param string $id + * @param array $keyword + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function add(string $id, array $keyword) + { + return $this->httpPostJson('cgi-bin/wxopen/template/add', [ + 'id' => $id, + 'keyword_id_list' => $keyword, + ]); + } + + /** + * @param string $templateId + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function delete(string $templateId) + { + return $this->httpPostJson('cgi-bin/wxopen/template/del', [ + 'template_id' => $templateId, + ]); + } + + /** + * @param int $offset + * @param int $count + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function getTemplates(int $offset, int $count) + { + return $this->httpPostJson('cgi-bin/wxopen/template/list', compact('offset', 'count')); + } +} diff --git a/vendor/overtrue/wechat/src/MiniProgram/TemplateMessage/ServiceProvider.php b/vendor/overtrue/wechat/src/MiniProgram/TemplateMessage/ServiceProvider.php new file mode 100644 index 0000000..776a15e --- /dev/null +++ b/vendor/overtrue/wechat/src/MiniProgram/TemplateMessage/ServiceProvider.php @@ -0,0 +1,28 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\MiniProgram\TemplateMessage; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +class ServiceProvider implements ServiceProviderInterface +{ + /** + * {@inheritdoc}. + */ + public function register(Container $app) + { + $app['template_message'] = function ($app) { + return new Client($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/MiniProgram/UniformMessage/Client.php b/vendor/overtrue/wechat/src/MiniProgram/UniformMessage/Client.php new file mode 100644 index 0000000..0cc84fe --- /dev/null +++ b/vendor/overtrue/wechat/src/MiniProgram/UniformMessage/Client.php @@ -0,0 +1,146 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\MiniProgram\UniformMessage; + +use EasyWeChat\Kernel\Exceptions\InvalidArgumentException; +use EasyWeChat\OfficialAccount\TemplateMessage\Client as BaseClient; + +class Client extends BaseClient +{ + public const API_SEND = 'cgi-bin/message/wxopen/template/uniform_send'; + + /** + * {@inheritdoc}. + * + * @var array + */ + protected $message = [ + 'touser' => '', + ]; + + /** + * Weapp Attributes. + * + * @var array + */ + protected $weappMessage = [ + 'template_id' => '', + 'page' => '', + 'form_id' => '', + 'data' => [], + 'emphasis_keyword' => '', + ]; + + /** + * Official account attributes. + * + * @var array + */ + protected $mpMessage = [ + 'appid' => '', + 'template_id' => '', + 'url' => '', + 'miniprogram' => [], + 'data' => [], + ]; + + /** + * Required attributes. + * + * @var array + */ + protected $required = ['touser', 'template_id', 'form_id', 'miniprogram', 'appid']; + + /** + * @param array $data + * + * @return array + * + * @throws InvalidArgumentException + */ + protected function formatMessage(array $data = []) + { + $params = array_merge($this->message, $data); + + if (empty($params['touser'])) { + throw new InvalidArgumentException(sprintf('Attribute "touser" can not be empty!')); + } + + if (!empty($params['weapp_template_msg'])) { + $params['weapp_template_msg'] = $this->formatWeappMessage($params['weapp_template_msg']); + } + + if (!empty($params['mp_template_msg'])) { + $params['mp_template_msg'] = $this->formatMpMessage($params['mp_template_msg']); + } + + return $params; + } + + /** + * @param array $data + * + * @return array + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + */ + protected function formatWeappMessage(array $data = []) + { + $params = $this->baseFormat($data, $this->weappMessage); + + $params['data'] = $this->formatData($params['data'] ?? []); + + return $params; + } + + /** + * @param array $data + * + * @return array + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + */ + protected function formatMpMessage(array $data = []) + { + $params = $this->baseFormat($data, $this->mpMessage); + + if (empty($params['miniprogram']['appid'])) { + $params['miniprogram']['appid'] = $this->app['config']['app_id']; + } + + $params['data'] = $this->formatData($params['data'] ?? []); + + return $params; + } + + /** + * @param array $data + * @param array $default + * + * @return array + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + */ + protected function baseFormat($data = [], $default = []) + { + $params = array_merge($default, $data); + foreach ($params as $key => $value) { + if (in_array($key, $this->required, true) && empty($value) && empty($default[$key])) { + throw new InvalidArgumentException(sprintf('Attribute "%s" can not be empty!', $key)); + } + + $params[$key] = empty($value) ? $default[$key] : $value; + } + + return $params; + } +} diff --git a/vendor/overtrue/wechat/src/MiniProgram/UniformMessage/ServiceProvider.php b/vendor/overtrue/wechat/src/MiniProgram/UniformMessage/ServiceProvider.php new file mode 100644 index 0000000..0e86db3 --- /dev/null +++ b/vendor/overtrue/wechat/src/MiniProgram/UniformMessage/ServiceProvider.php @@ -0,0 +1,28 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\MiniProgram\UniformMessage; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +class ServiceProvider implements ServiceProviderInterface +{ + /** + * {@inheritdoc}. + */ + public function register(Container $app) + { + $app['uniform_message'] = function ($app) { + return new Client($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/MiniProgram/Union/Client.php b/vendor/overtrue/wechat/src/MiniProgram/Union/Client.php new file mode 100644 index 0000000..dd46d80 --- /dev/null +++ b/vendor/overtrue/wechat/src/MiniProgram/Union/Client.php @@ -0,0 +1,228 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\MiniProgram\Union; + +use EasyWeChat\Kernel\BaseClient; + +/** + * Class Client. + * + * @author Abbotton + */ +class Client extends BaseClient +{ + /** + * Add promotion. + * + * @param string $promotionSourceName + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function createPromotion(string $promotionSourceName) + { + $params = [ + 'promotionSourceName' => $promotionSourceName, + ]; + + return $this->httpPostJson('union/promoter/promotion/add', $params); + } + + /** + * Delete promotion. + * + * @param string $promotionSourcePid + * @param string $promotionSourceName + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function deletePromotion(string $promotionSourcePid, string $promotionSourceName) + { + $params = [ + 'promotionSourceName' => $promotionSourceName, + 'promotionSourcePid' => $promotionSourcePid, + ]; + + return $this->httpPostJson('union/promoter/promotion/del', $params); + } + + /** + * Update promotion. + * + * @param array $previousPromotionInfo + * @param array $promotionInfo + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function updatePromotion(array $previousPromotionInfo, array $promotionInfo) + { + $params = [ + 'previousPromotionInfo' => $previousPromotionInfo, + 'promotionInfo' => $promotionInfo, + ]; + + return $this->httpPostJson('union/promoter/promotion/upd', $params); + } + + /** + * Get a list of promotion spots. + * + * @param int $start + * @param int $limit + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function getPromotionSourceList(int $start = 0, int $limit = 20) + { + $params = [ + 'start' => $start, + 'limit' => $limit + ]; + + return $this->httpGet('union/promoter/promotion/list', $params); + } + + /** + * Get the list of affiliate product categories and category IDs. + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function getProductCategory() + { + return $this->httpGet('union/promoter/product/category'); + } + + /** + * Get the list and detail of affiliate product. + * + * @param array $params + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function getProductList(array $params) + { + return $this->httpGet('union/promoter/product/list', $params); + } + + /** + * Get product promotion materials + * + * @param string $pid + * @param array $productList + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function getProductMaterial(string $pid, array $productList) + { + $params = [ + 'pid' => $pid, + 'productList' => $productList, + ]; + + return $this->httpPostJson('union/promoter/product/generate', $params); + } + + /** + * Query order details based on order ID array. + * + * @param array $orderIdList + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function getOrderInfo(array $orderIdList) + { + return $this->httpPostJson('union/promoter/order/info', $orderIdList); + } + + /** + * Query and filter the order list. + * + * @param int $page + * @param string $startTimestamp + * @param string $endTimestamp + * @param string $commissionStatus + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function searchOrder(int $page = 1, $startTimestamp = '', $endTimestamp = '', $commissionStatus = '') + { + $params = [ + 'page' => $page, + 'startTimestamp' => $startTimestamp, + 'endTimestamp' => $endTimestamp, + 'commissionStatus' => $commissionStatus + ]; + + return $this->httpGet('union/promoter/order/search', $params); + } + + /** + * Get featured products of union. + * + * @param array $params + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function getFeaturedProducts(array $params) + { + return $this->httpGet('union/promoter/product/select', $params); + } + + /** + * Query the details of the targeted plan. + * + * @param array $params + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function getTargetPlanInfo(array $params) + { + return $this->httpGet('union/promoter/target/plan_info', $params); + } + + /** + * Apply to join the targeted plan. + * + * @param array $params + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function applyJoinTargetPlan(array $params) + { + return $this->httpPostJson('union/promoter/target/apply_target', $params); + } + + /** + * Query the status of the targeted plan apply. + * + * @param array $params + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function getTargetPlanStatus(array $params) + { + return $this->httpGet('union/promoter/target/apply_status', $params); + } +} diff --git a/vendor/overtrue/wechat/src/MiniProgram/Union/ServiceProvider.php b/vendor/overtrue/wechat/src/MiniProgram/Union/ServiceProvider.php new file mode 100644 index 0000000..ba1207a --- /dev/null +++ b/vendor/overtrue/wechat/src/MiniProgram/Union/ServiceProvider.php @@ -0,0 +1,33 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\MiniProgram\Union; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +/** + * Class ServiceProvider. + * + * @author Abbotton + */ +class ServiceProvider implements ServiceProviderInterface +{ + /** + * {@inheritdoc}. + */ + public function register(Container $app) + { + $app['union'] = function ($app) { + return new Client($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/MiniProgram/UrlLink/Client.php b/vendor/overtrue/wechat/src/MiniProgram/UrlLink/Client.php new file mode 100644 index 0000000..45b189f --- /dev/null +++ b/vendor/overtrue/wechat/src/MiniProgram/UrlLink/Client.php @@ -0,0 +1,32 @@ +httpPostJson('wxa/generate_urllink', $param); + } +} diff --git a/vendor/overtrue/wechat/src/MiniProgram/UrlLink/ServiceProvider.php b/vendor/overtrue/wechat/src/MiniProgram/UrlLink/ServiceProvider.php new file mode 100644 index 0000000..3201d36 --- /dev/null +++ b/vendor/overtrue/wechat/src/MiniProgram/UrlLink/ServiceProvider.php @@ -0,0 +1,19 @@ +httpPostJson('wxa/generatescheme', $param); + } +} diff --git a/vendor/overtrue/wechat/src/MiniProgram/UrlScheme/ServiceProvider.php b/vendor/overtrue/wechat/src/MiniProgram/UrlScheme/ServiceProvider.php new file mode 100644 index 0000000..cb8ad1a --- /dev/null +++ b/vendor/overtrue/wechat/src/MiniProgram/UrlScheme/ServiceProvider.php @@ -0,0 +1,19 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OfficialAccount; + +use EasyWeChat\BasicService; +use EasyWeChat\Kernel\ServiceContainer; + +/** + * Class Application. + * + * @author overtrue + * + * @property \EasyWeChat\BasicService\Media\Client $media + * @property \EasyWeChat\BasicService\Url\Client $url + * @property \EasyWeChat\BasicService\QrCode\Client $qrcode + * @property \EasyWeChat\BasicService\Jssdk\Client $jssdk + * @property \EasyWeChat\OfficialAccount\Auth\AccessToken $access_token + * @property \EasyWeChat\OfficialAccount\Server\Guard $server + * @property \EasyWeChat\OfficialAccount\User\UserClient $user + * @property \EasyWeChat\OfficialAccount\User\TagClient $user_tag + * @property \EasyWeChat\OfficialAccount\Menu\Client $menu + * @property \EasyWeChat\OfficialAccount\TemplateMessage\Client $template_message + * @property \EasyWeChat\OfficialAccount\SubscribeMessage\Client $subscribe_message + * @property \EasyWeChat\OfficialAccount\Material\Client $material + * @property \EasyWeChat\OfficialAccount\CustomerService\Client $customer_service + * @property \EasyWeChat\OfficialAccount\CustomerService\SessionClient $customer_service_session + * @property \EasyWeChat\OfficialAccount\Semantic\Client $semantic + * @property \EasyWeChat\OfficialAccount\DataCube\Client $data_cube + * @property \EasyWeChat\OfficialAccount\AutoReply\Client $auto_reply + * @property \EasyWeChat\OfficialAccount\Broadcasting\Client $broadcasting + * @property \EasyWeChat\OfficialAccount\Card\Card $card + * @property \EasyWeChat\OfficialAccount\Device\Client $device + * @property \EasyWeChat\OfficialAccount\ShakeAround\ShakeAround $shake_around + * @property \EasyWeChat\OfficialAccount\POI\Client $poi + * @property \EasyWeChat\OfficialAccount\Store\Client $store + * @property \EasyWeChat\OfficialAccount\Base\Client $base + * @property \EasyWeChat\OfficialAccount\Comment\Client $comment + * @property \EasyWeChat\OfficialAccount\OCR\Client $ocr + * @property \EasyWeChat\OfficialAccount\Goods\Client $goods + * @property \Overtrue\Socialite\Providers\WeChat $oauth + * @property \EasyWeChat\OfficialAccount\WiFi\Client $wifi + * @property \EasyWeChat\OfficialAccount\WiFi\CardClient $wifi_card + * @property \EasyWeChat\OfficialAccount\WiFi\DeviceClient $wifi_device + * @property \EasyWeChat\OfficialAccount\WiFi\ShopClient $wifi_shop + * @property \EasyWeChat\OfficialAccount\Guide\Client $guide + * @property \EasyWeChat\OfficialAccount\Draft\Client $draft + * @property \EasyWeChat\OfficialAccount\FreePublish\Client $free_publish + */ +class Application extends ServiceContainer +{ + /** + * @var array + */ + protected $providers = [ + Auth\ServiceProvider::class, + Server\ServiceProvider::class, + User\ServiceProvider::class, + OAuth\ServiceProvider::class, + Menu\ServiceProvider::class, + TemplateMessage\ServiceProvider::class, + SubscribeMessage\ServiceProvider::class, + Material\ServiceProvider::class, + CustomerService\ServiceProvider::class, + Semantic\ServiceProvider::class, + DataCube\ServiceProvider::class, + POI\ServiceProvider::class, + AutoReply\ServiceProvider::class, + Broadcasting\ServiceProvider::class, + Card\ServiceProvider::class, + Device\ServiceProvider::class, + ShakeAround\ServiceProvider::class, + Store\ServiceProvider::class, + Comment\ServiceProvider::class, + Base\ServiceProvider::class, + OCR\ServiceProvider::class, + Goods\ServiceProvider::class, + WiFi\ServiceProvider::class, + Draft\ServiceProvider::class, + FreePublish\ServiceProvider::class, + // Base services + BasicService\QrCode\ServiceProvider::class, + BasicService\Media\ServiceProvider::class, + BasicService\Url\ServiceProvider::class, + BasicService\Jssdk\ServiceProvider::class, + // Append Guide Interface + Guide\ServiceProvider::class, + ]; +} diff --git a/vendor/overtrue/wechat/src/OfficialAccount/Auth/AccessToken.php b/vendor/overtrue/wechat/src/OfficialAccount/Auth/AccessToken.php new file mode 100644 index 0000000..f010e38 --- /dev/null +++ b/vendor/overtrue/wechat/src/OfficialAccount/Auth/AccessToken.php @@ -0,0 +1,39 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OfficialAccount\Auth; + +use EasyWeChat\Kernel\AccessToken as BaseAccessToken; + +/** + * Class AuthorizerAccessToken. + * + * @author overtrue + */ +class AccessToken extends BaseAccessToken +{ + /** + * @var string + */ + protected $endpointToGetToken = 'cgi-bin/token'; + + /** + * @return array + */ + protected function getCredentials(): array + { + return [ + 'grant_type' => 'client_credential', + 'appid' => $this->app['config']['app_id'], + 'secret' => $this->app['config']['secret'], + ]; + } +} diff --git a/vendor/overtrue/wechat/src/OfficialAccount/Auth/ServiceProvider.php b/vendor/overtrue/wechat/src/OfficialAccount/Auth/ServiceProvider.php new file mode 100644 index 0000000..e748730 --- /dev/null +++ b/vendor/overtrue/wechat/src/OfficialAccount/Auth/ServiceProvider.php @@ -0,0 +1,33 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OfficialAccount\Auth; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +/** + * Class ServiceProvider. + * + * @author overtrue + */ +class ServiceProvider implements ServiceProviderInterface +{ + /** + * {@inheritdoc}. + */ + public function register(Container $app) + { + !isset($app['access_token']) && $app['access_token'] = function ($app) { + return new AccessToken($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/OfficialAccount/AutoReply/Client.php b/vendor/overtrue/wechat/src/OfficialAccount/AutoReply/Client.php new file mode 100644 index 0000000..6d2e4d6 --- /dev/null +++ b/vendor/overtrue/wechat/src/OfficialAccount/AutoReply/Client.php @@ -0,0 +1,34 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OfficialAccount\AutoReply; + +use EasyWeChat\Kernel\BaseClient; + +/** + * Class Client. + * + * @author overtrue + */ +class Client extends BaseClient +{ + /** + * Get current auto reply settings. + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function current() + { + return $this->httpGet('cgi-bin/get_current_autoreply_info'); + } +} diff --git a/vendor/overtrue/wechat/src/OfficialAccount/AutoReply/ServiceProvider.php b/vendor/overtrue/wechat/src/OfficialAccount/AutoReply/ServiceProvider.php new file mode 100644 index 0000000..4377550 --- /dev/null +++ b/vendor/overtrue/wechat/src/OfficialAccount/AutoReply/ServiceProvider.php @@ -0,0 +1,33 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OfficialAccount\AutoReply; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +/** + * Class ServiceProvider. + * + * @author overtrue + */ +class ServiceProvider implements ServiceProviderInterface +{ + /** + * {@inheritdoc}. + */ + public function register(Container $app) + { + $app['auto_reply'] = function ($app) { + return new Client($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/OfficialAccount/Base/Client.php b/vendor/overtrue/wechat/src/OfficialAccount/Base/Client.php new file mode 100644 index 0000000..e93d025 --- /dev/null +++ b/vendor/overtrue/wechat/src/OfficialAccount/Base/Client.php @@ -0,0 +1,103 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OfficialAccount\Base; + +use EasyWeChat\Kernel\BaseClient; +use EasyWeChat\Kernel\Exceptions\InvalidArgumentException; + +/** + * Class Client. + * + * @author mingyoung + */ +class Client extends BaseClient +{ + /** + * Get api quota. + * + * @param string $cgiPath api cgi_path + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function getQuota(string $cgiPath) + { + $params = [ + 'cgi_path' => $cgiPath, + ]; + + return $this->httpPostJson('cgi-bin/openapi/quota/get', $params); + } + + /** + * Clear quota. + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function clearQuota() + { + $params = [ + 'appid' => $this->app['config']['app_id'], + ]; + + return $this->httpPostJson('cgi-bin/clear_quota', $params); + } + + /** + * Get wechat callback ip. + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function getValidIps() + { + return $this->httpGet('cgi-bin/getcallbackip'); + } + + /** + * Check the callback address network. + * + * @param string $action + * @param string $operator + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws InvalidArgumentException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function checkCallbackUrl(string $action = 'all', string $operator = 'DEFAULT') + { + if (!in_array($action, ['dns', 'ping', 'all'], true)) { + throw new InvalidArgumentException('The action must be dns, ping, all.'); + } + + $operator = strtoupper($operator); + + if (!in_array($operator, ['CHINANET', 'UNICOM', 'CAP', 'DEFAULT'], true)) { + throw new InvalidArgumentException('The operator must be CHINANET, UNICOM, CAP, DEFAULT.'); + } + + $params = [ + 'action' => $action, + 'check_operator' => $operator, + ]; + + return $this->httpPostJson('cgi-bin/callback/check', $params); + } +} diff --git a/vendor/overtrue/wechat/src/OfficialAccount/Base/ServiceProvider.php b/vendor/overtrue/wechat/src/OfficialAccount/Base/ServiceProvider.php new file mode 100644 index 0000000..409593d --- /dev/null +++ b/vendor/overtrue/wechat/src/OfficialAccount/Base/ServiceProvider.php @@ -0,0 +1,33 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OfficialAccount\Base; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +/** + * Class ServiceProvider. + * + * @author mingyoung + */ +class ServiceProvider implements ServiceProviderInterface +{ + /** + * {@inheritdoc}. + */ + public function register(Container $app) + { + $app['base'] = function ($app) { + return new Client($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/OfficialAccount/Broadcasting/Client.php b/vendor/overtrue/wechat/src/OfficialAccount/Broadcasting/Client.php new file mode 100644 index 0000000..4910a64 --- /dev/null +++ b/vendor/overtrue/wechat/src/OfficialAccount/Broadcasting/Client.php @@ -0,0 +1,383 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OfficialAccount\Broadcasting; + +use EasyWeChat\Kernel\BaseClient; +use EasyWeChat\Kernel\Contracts\MessageInterface; +use EasyWeChat\Kernel\Exceptions\RuntimeException; +use EasyWeChat\Kernel\Messages\Card; +use EasyWeChat\Kernel\Messages\Image; +use EasyWeChat\Kernel\Messages\Media; +use EasyWeChat\Kernel\Messages\Text; +use EasyWeChat\Kernel\Support\Arr; + +/** + * Class Client. + * + * @method \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string previewTextByName($text, $name); + * @method \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string previewNewsByName($mediaId, $name); + * @method \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string previewVoiceByName($mediaId, $name); + * @method \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string previewImageByName($mediaId, $name); + * @method \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string previewVideoByName($message, $name); + * @method \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string previewCardByName($cardId, $name); + * + * @author overtrue + */ +class Client extends BaseClient +{ + public const PREVIEW_BY_OPENID = 'touser'; + public const PREVIEW_BY_NAME = 'towxname'; + + /** + * Send a message. + * + * @param array $message + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \EasyWeChat\Kernel\Exceptions\RuntimeException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function send(array $message) + { + if (empty($message['filter']) && empty($message['touser'])) { + throw new RuntimeException('The message reception object is not specified'); + } + + $api = Arr::get($message, 'touser') ? 'cgi-bin/message/mass/send' : 'cgi-bin/message/mass/sendall'; + + return $this->httpPostJson($api, $message); + } + + /** + * Preview a message. + * + * @param array $message + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function preview(array $message) + { + return $this->httpPostJson('cgi-bin/message/mass/preview', $message); + } + + /** + * Delete a broadcast. + * + * @param string $msgId + * @param int $index + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function delete(string $msgId, int $index = 0) + { + $options = [ + 'msg_id' => $msgId, + 'article_idx' => $index, + ]; + + return $this->httpPostJson('cgi-bin/message/mass/delete', $options); + } + + /** + * Get a broadcast status. + * + * @param string $msgId + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function status(string $msgId) + { + $options = [ + 'msg_id' => $msgId, + ]; + + return $this->httpPostJson('cgi-bin/message/mass/get', $options); + } + + /** + * Send a text message. + * + * @param string $message + * @param mixed $reception + * @param array $attributes + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \EasyWeChat\Kernel\Exceptions\RuntimeException + */ + public function sendText(string $message, $reception = null, array $attributes = []) + { + return $this->sendMessage(new Text($message), $reception, $attributes); + } + + /** + * Send a news message. + * + * @param string $mediaId + * @param mixed $reception + * @param array $attributes + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \EasyWeChat\Kernel\Exceptions\RuntimeException + */ + public function sendNews(string $mediaId, $reception = null, array $attributes = []) + { + return $this->sendMessage(new Media($mediaId, 'mpnews'), $reception, $attributes); + } + + /** + * Send a voice message. + * + * @param string $mediaId + * @param mixed $reception + * @param array $attributes + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \EasyWeChat\Kernel\Exceptions\RuntimeException + */ + public function sendVoice(string $mediaId, $reception = null, array $attributes = []) + { + return $this->sendMessage(new Media($mediaId, 'voice'), $reception, $attributes); + } + + /** + * Send a image message. + * + * @param string $mediaId + * @param mixed $reception + * @param array $attributes + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \EasyWeChat\Kernel\Exceptions\RuntimeException + */ + public function sendImage(string $mediaId, $reception = null, array $attributes = []) + { + return $this->sendMessage(new Image($mediaId), $reception, $attributes); + } + + /** + * Send a video message. + * + * @param string $mediaId + * @param mixed $reception + * @param array $attributes + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \EasyWeChat\Kernel\Exceptions\RuntimeException + */ + public function sendVideo(string $mediaId, $reception = null, array $attributes = []) + { + return $this->sendMessage(new Media($mediaId, 'mpvideo'), $reception, $attributes); + } + + /** + * Send a card message. + * + * @param string $cardId + * @param mixed $reception + * @param array $attributes + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \EasyWeChat\Kernel\Exceptions\RuntimeException + */ + public function sendCard(string $cardId, $reception = null, array $attributes = []) + { + return $this->sendMessage(new Card($cardId), $reception, $attributes); + } + + /** + * Preview a text message. + * + * @param string $message message + * @param string $reception + * @param string $method + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\RuntimeException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function previewText(string $message, $reception, $method = self::PREVIEW_BY_OPENID) + { + return $this->previewMessage(new Text($message), $reception, $method); + } + + /** + * Preview a news message. + * + * @param string $mediaId message + * @param string $reception + * @param string $method + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\RuntimeException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function previewNews(string $mediaId, $reception, $method = self::PREVIEW_BY_OPENID) + { + return $this->previewMessage(new Media($mediaId, 'mpnews'), $reception, $method); + } + + /** + * Preview a voice message. + * + * @param string $mediaId message + * @param string $reception + * @param string $method + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\RuntimeException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function previewVoice(string $mediaId, $reception, $method = self::PREVIEW_BY_OPENID) + { + return $this->previewMessage(new Media($mediaId, 'voice'), $reception, $method); + } + + /** + * Preview a image message. + * + * @param string $mediaId message + * @param string $reception + * @param string $method + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\RuntimeException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function previewImage(string $mediaId, $reception, $method = self::PREVIEW_BY_OPENID) + { + return $this->previewMessage(new Image($mediaId), $reception, $method); + } + + /** + * Preview a video message. + * + * @param string $mediaId message + * @param string $reception + * @param string $method + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\RuntimeException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function previewVideo(string $mediaId, $reception, $method = self::PREVIEW_BY_OPENID) + { + return $this->previewMessage(new Media($mediaId, 'mpvideo'), $reception, $method); + } + + /** + * Preview a card message. + * + * @param string $cardId message + * @param string $reception + * @param string $method + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\RuntimeException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function previewCard(string $cardId, $reception, $method = self::PREVIEW_BY_OPENID) + { + return $this->previewMessage(new Card($cardId), $reception, $method); + } + + /** + * @param \EasyWeChat\Kernel\Contracts\MessageInterface $message + * @param string $reception + * @param string $method + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\RuntimeException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function previewMessage(MessageInterface $message, string $reception, $method = self::PREVIEW_BY_OPENID) + { + $message = (new MessageBuilder())->message($message)->buildForPreview($method, $reception); + + return $this->preview($message); + } + + /** + * @param \EasyWeChat\Kernel\Contracts\MessageInterface $message + * @param mixed $reception + * @param array $attributes + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \EasyWeChat\Kernel\Exceptions\RuntimeException + */ + public function sendMessage(MessageInterface $message, $reception = null, $attributes = []) + { + $message = (new MessageBuilder())->message($message)->with($attributes)->toAll(); + + if (\is_int($reception)) { + $message->toTag($reception); + } elseif (\is_array($reception)) { + $message->toUsers($reception); + } + + return $this->send($message->build()); + } + + /** + * @codeCoverageIgnore + * + * @param string $method + * @param array $args + * + * @return mixed + */ + public function __call($method, $args) + { + if (strpos($method, 'ByName') > 0) { + $method = strstr($method, 'ByName', true); + + if (method_exists($this, $method)) { + array_push($args, self::PREVIEW_BY_NAME); + + return $this->$method(...$args); + } + } + + throw new \BadMethodCallException(sprintf('Method %s not exists.', $method)); + } +} diff --git a/vendor/overtrue/wechat/src/OfficialAccount/Broadcasting/MessageBuilder.php b/vendor/overtrue/wechat/src/OfficialAccount/Broadcasting/MessageBuilder.php new file mode 100644 index 0000000..70465b0 --- /dev/null +++ b/vendor/overtrue/wechat/src/OfficialAccount/Broadcasting/MessageBuilder.php @@ -0,0 +1,162 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OfficialAccount\Broadcasting; + +use EasyWeChat\Kernel\Contracts\MessageInterface; +use EasyWeChat\Kernel\Exceptions\RuntimeException; + +/** + * Class MessageBuilder. + * + * @author overtrue + */ +class MessageBuilder +{ + /** + * @var array + */ + protected $to = []; + + /** + * @var \EasyWeChat\Kernel\Contracts\MessageInterface + */ + protected $message; + + /** + * @var array + */ + protected $attributes = []; + + /** + * Set message. + * + * @param \EasyWeChat\Kernel\Contracts\MessageInterface $message + * + * @return $this + */ + public function message(MessageInterface $message) + { + $this->message = $message; + + return $this; + } + + /** + * Set target user or group. + * + * @param array $to + * + * @return $this + */ + public function to(array $to) + { + $this->to = $to; + + return $this; + } + + /** + * @param int $tagId + * + * @return \EasyWeChat\OfficialAccount\Broadcasting\MessageBuilder + */ + public function toTag(int $tagId) + { + $this->to([ + 'filter' => [ + 'is_to_all' => false, + 'tag_id' => $tagId, + ], + ]); + + return $this; + } + + /** + * @param array $openids + * + * @return \EasyWeChat\OfficialAccount\Broadcasting\MessageBuilder + */ + public function toUsers(array $openids) + { + $this->to([ + 'touser' => $openids, + ]); + + return $this; + } + + /** + * @return $this + */ + public function toAll() + { + $this->to([ + 'filter' => ['is_to_all' => true], + ]); + + return $this; + } + + /** + * @param array $attributes + * + * @return \EasyWeChat\OfficialAccount\Broadcasting\MessageBuilder + */ + public function with(array $attributes) + { + $this->attributes = $attributes; + + return $this; + } + + /** + * Build message. + * + * @param array $prepends + * + * @return array + * + * @throws \EasyWeChat\Kernel\Exceptions\RuntimeException + */ + public function build(array $prepends = []): array + { + if (empty($this->message)) { + throw new RuntimeException('No message content to send.'); + } + + $content = $this->message->transformForJsonRequest(); + + if (empty($prepends)) { + $prepends = $this->to; + } + + $message = array_merge($prepends, $content, $this->attributes); + + return $message; + } + + /** + * Build preview message. + * + * @param string $by + * @param string $user + * + * @return array + * + * @throws \EasyWeChat\Kernel\Exceptions\RuntimeException + */ + public function buildForPreview(string $by, string $user): array + { + return $this->build([$by => $user]); + } +} diff --git a/vendor/overtrue/wechat/src/OfficialAccount/Broadcasting/ServiceProvider.php b/vendor/overtrue/wechat/src/OfficialAccount/Broadcasting/ServiceProvider.php new file mode 100644 index 0000000..1f956cf --- /dev/null +++ b/vendor/overtrue/wechat/src/OfficialAccount/Broadcasting/ServiceProvider.php @@ -0,0 +1,33 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OfficialAccount\Broadcasting; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +/** + * Class ServiceProvider. + * + * @author overtrue + */ +class ServiceProvider implements ServiceProviderInterface +{ + /** + * {@inheritdoc}. + */ + public function register(Container $app) + { + $app['broadcasting'] = function ($app) { + return new Client($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/OfficialAccount/Card/BoardingPassClient.php b/vendor/overtrue/wechat/src/OfficialAccount/Card/BoardingPassClient.php new file mode 100644 index 0000000..b1575ab --- /dev/null +++ b/vendor/overtrue/wechat/src/OfficialAccount/Card/BoardingPassClient.php @@ -0,0 +1,33 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OfficialAccount\Card; + +/** + * Class BoardingPassClient. + * + * @author overtrue + */ +class BoardingPassClient extends Client +{ + /** + * @param array $params + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function checkin(array $params) + { + return $this->httpPostJson('card/boardingpass/checkin', $params); + } +} diff --git a/vendor/overtrue/wechat/src/OfficialAccount/Card/Card.php b/vendor/overtrue/wechat/src/OfficialAccount/Card/Card.php new file mode 100644 index 0000000..14e817b --- /dev/null +++ b/vendor/overtrue/wechat/src/OfficialAccount/Card/Card.php @@ -0,0 +1,52 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OfficialAccount\Card; + +use EasyWeChat\Kernel\Exceptions\InvalidArgumentException; + +/** + * Class Card. + * + * @author overtrue + * + * @property \EasyWeChat\OfficialAccount\Card\CodeClient $code + * @property \EasyWeChat\OfficialAccount\Card\MeetingTicketClient $meeting_ticket + * @property \EasyWeChat\OfficialAccount\Card\MemberCardClient $member_card + * @property \EasyWeChat\OfficialAccount\Card\GeneralCardClient $general_card + * @property \EasyWeChat\OfficialAccount\Card\MovieTicketClient $movie_ticket + * @property \EasyWeChat\OfficialAccount\Card\CoinClient $coin + * @property \EasyWeChat\OfficialAccount\Card\SubMerchantClient $sub_merchant + * @property \EasyWeChat\OfficialAccount\Card\BoardingPassClient $boarding_pass + * @property \EasyWeChat\OfficialAccount\Card\JssdkClient $jssdk + * @property \EasyWeChat\OfficialAccount\Card\GiftCardClient $gift_card + * @property \EasyWeChat\OfficialAccount\Card\GiftCardOrderClient $gift_card_order + * @property \EasyWeChat\OfficialAccount\Card\GiftCardPageClient $gift_card_page + * @property \EasyWeChat\OfficialAccount\Card\InvoiceClient $invoice + */ +class Card extends Client +{ + /** + * @param string $property + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + */ + public function __get($property) + { + if (isset($this->app["card.{$property}"])) { + return $this->app["card.{$property}"]; + } + + throw new InvalidArgumentException(sprintf('No card service named "%s".', $property)); + } +} diff --git a/vendor/overtrue/wechat/src/OfficialAccount/Card/Client.php b/vendor/overtrue/wechat/src/OfficialAccount/Card/Client.php new file mode 100644 index 0000000..7395d09 --- /dev/null +++ b/vendor/overtrue/wechat/src/OfficialAccount/Card/Client.php @@ -0,0 +1,428 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OfficialAccount\Card; + +use EasyWeChat\Kernel\BaseClient; +use EasyWeChat\Kernel\Traits\InteractsWithCache; + +/** + * Class Client. + * + * @author overtrue + */ +class Client extends BaseClient +{ + use InteractsWithCache; + + /** + * @var string + */ + protected $url; + + /** + * Ticket cache key. + * + * @var string + */ + protected $ticketCacheKey; + + /** + * Ticket cache prefix. + * + * @var string + */ + protected $ticketCachePrefix = 'easywechat.official_account.card.api_ticket.'; + + /** + * 获取卡券颜色. + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function colors() + { + return $this->httpGet('card/getcolors'); + } + + /** + * 卡券开放类目查询接口. + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function categories() + { + return $this->httpGet('card/getapplyprotocol'); + } + + /** + * 创建卡券. + * + * @param string $cardType + * @param array $attributes + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function create($cardType = 'member_card', array $attributes = []) + { + $params = [ + 'card' => [ + 'card_type' => strtoupper($cardType), + strtolower($cardType) => $attributes, + ], + ]; + + return $this->httpPostJson('card/create', $params); + } + + /** + * 查看卡券详情. + * + * @param string $cardId + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function get($cardId) + { + $params = [ + 'card_id' => $cardId, + ]; + + return $this->httpPostJson('card/get', $params); + } + + /** + * 批量查询卡列表. + * + * @param int $offset + * @param int $count + * @param string $statusList + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function list($offset = 0, $count = 10, $statusList = 'CARD_STATUS_VERIFY_OK') + { + $params = [ + 'offset' => $offset, + 'count' => $count, + 'status_list' => $statusList, + ]; + + return $this->httpPostJson('card/batchget', $params); + } + + /** + * 更改卡券信息接口 and 设置跟随推荐接口. + * + * @param string $cardId + * @param string $type + * @param array $attributes + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function update($cardId, $type, array $attributes = []) + { + $card = []; + $card['card_id'] = $cardId; + $card[strtolower($type)] = $attributes; + + return $this->httpPostJson('card/update', $card); + } + + /** + * 删除卡券接口. + * + * @param string $cardId + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function delete($cardId) + { + $params = [ + 'card_id' => $cardId, + ]; + + return $this->httpPostJson('card/delete', $params); + } + + /** + * 创建二维码. + * + * @param array $cards + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function createQrCode(array $cards) + { + return $this->httpPostJson('card/qrcode/create', $cards); + } + + /** + * ticket 换取二维码图片. + * + * @param string $ticket + * + * @return array + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function getQrCode($ticket) + { + $baseUri = 'https://mp.weixin.qq.com/cgi-bin/showqrcode'; + $params = [ + 'ticket' => $ticket, + ]; + + $response = $this->requestRaw($baseUri, 'GET', $params); + + return [ + 'status' => $response->getStatusCode(), + 'reason' => $response->getReasonPhrase(), + 'headers' => $response->getHeaders(), + 'body' => strval($response->getBody()), + 'url' => $baseUri.'?'.http_build_query($params), + ]; + } + + /** + * 通过ticket换取二维码 链接. + * + * @param string $ticket + * + * @return string + */ + public function getQrCodeUrl($ticket) + { + return sprintf('https://mp.weixin.qq.com/cgi-bin/showqrcode?ticket=%s', $ticket); + } + + /** + * 创建货架接口. + * + * @param string $banner + * @param string $pageTitle + * @param bool $canShare + * @param string $scene [SCENE_NEAR_BY 附近,SCENE_MENU 自定义菜单,SCENE_QRCODE 二维码,SCENE_ARTICLE 公众号文章, + * SCENE_H5 h5页面,SCENE_IVR 自动回复,SCENE_CARD_CUSTOM_CELL 卡券自定义cell] + * @param array $cardList + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function createLandingPage($banner, $pageTitle, $canShare, $scene, $cardList) + { + $params = [ + 'banner' => $banner, + 'page_title' => $pageTitle, + 'can_share' => $canShare, + 'scene' => $scene, + 'card_list' => $cardList, + ]; + + return $this->httpPostJson('card/landingpage/create', $params); + } + + /** + * 图文消息群发卡券. + * + * @param string $cardId + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function getHtml($cardId) + { + $params = [ + 'card_id' => $cardId, + ]; + + return $this->httpPostJson('card/mpnews/gethtml', $params); + } + + /** + * 设置测试白名单. + * + * @param array $openids + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function setTestWhitelist($openids) + { + $params = [ + 'openid' => $openids, + ]; + + return $this->httpPostJson('card/testwhitelist/set', $params); + } + + /** + * 设置测试白名单(by username). + * + * @param array $usernames + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function setTestWhitelistByName(array $usernames) + { + $params = [ + 'username' => $usernames, + ]; + + return $this->httpPostJson('card/testwhitelist/set', $params); + } + + /** + * 获取用户已领取卡券接口. + * + * @param string $openid + * @param string $cardId + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function getUserCards($openid, $cardId = '') + { + $params = [ + 'openid' => $openid, + 'card_id' => $cardId, + ]; + + return $this->httpPostJson('card/user/getcardlist', $params); + } + + /** + * 设置微信买单接口. + * 设置买单的 card_id 必须已经配置了门店,否则会报错. + * + * @param string $cardId + * @param bool $isOpen + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function setPayCell($cardId, $isOpen = true) + { + $params = [ + 'card_id' => $cardId, + 'is_open' => $isOpen, + ]; + + return $this->httpPostJson('card/paycell/set', $params); + } + + /** + * 设置自助核销接口 + * 设置买单的 card_id 必须已经配置了门店,否则会报错. + * + * @param string $cardId + * @param bool $isOpen + * @param bool $verifyCod + * @param bool $remarkAmount + * + * @return mixed + */ + public function setPayConsumeCell($cardId, $isOpen = true, $verifyCod = false, $remarkAmount = false) + { + $params = [ + 'card_id' => $cardId, + 'is_open' => $isOpen, + 'need_verify_cod' => $verifyCod, + 'need_remark_amount' => $remarkAmount, + ]; + + return $this->httpPostJson('card/selfconsumecell/set', $params); + } + + /** + * 增加库存. + * + * @param string $cardId + * @param int $amount + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + */ + public function increaseStock($cardId, $amount) + { + return $this->updateStock($cardId, $amount, 'increase'); + } + + /** + * 减少库存. + * + * @param string $cardId + * @param int $amount + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + */ + public function reduceStock($cardId, $amount) + { + return $this->updateStock($cardId, $amount, 'reduce'); + } + + /** + * 修改库存接口. + * + * @param string $cardId + * @param int $amount + * @param string $action + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + protected function updateStock($cardId, $amount, $action = 'increase') + { + $key = 'increase' === $action ? 'increase_stock_value' : 'reduce_stock_value'; + $params = [ + 'card_id' => $cardId, + $key => abs($amount), + ]; + + return $this->httpPostJson('card/modifystock', $params); + } +} diff --git a/vendor/overtrue/wechat/src/OfficialAccount/Card/CodeClient.php b/vendor/overtrue/wechat/src/OfficialAccount/Card/CodeClient.php new file mode 100644 index 0000000..dcf96da --- /dev/null +++ b/vendor/overtrue/wechat/src/OfficialAccount/Card/CodeClient.php @@ -0,0 +1,193 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OfficialAccount\Card; + +use EasyWeChat\Kernel\BaseClient; + +/** + * Class CodeClient. + * + * @author overtrue + */ +class CodeClient extends BaseClient +{ + /** + * 导入code接口. + * + * @param string $cardId + * @param array $codes + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function deposit(string $cardId, array $codes) + { + $params = [ + 'card_id' => $cardId, + 'code' => $codes, + ]; + + return $this->httpPostJson('card/code/deposit', $params); + } + + /** + * 查询导入code数目. + * + * @param string $cardId + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function getDepositedCount(string $cardId) + { + $params = [ + 'card_id' => $cardId, + ]; + + return $this->httpPostJson('card/code/getdepositcount', $params); + } + + /** + * 核查code接口. + * + * @param string $cardId + * @param array $codes + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function check(string $cardId, array $codes) + { + $params = [ + 'card_id' => $cardId, + 'code' => $codes, + ]; + + return $this->httpPostJson('card/code/checkcode', $params); + } + + /** + * 查询 Code 接口. + * + * @param string $code + * @param string $cardId + * @param bool $checkConsume + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function get(string $code, string $cardId = '', bool $checkConsume = true) + { + $params = [ + 'code' => $code, + 'check_consume' => $checkConsume, + 'card_id' => $cardId, + ]; + + return $this->httpPostJson('card/code/get', $params); + } + + /** + * 更改Code接口. + * + * @param string $code + * @param string $newCode + * @param string $cardId + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function update(string $code, string $newCode, string $cardId = '') + { + $params = [ + 'code' => $code, + 'new_code' => $newCode, + 'card_id' => $cardId, + ]; + + return $this->httpPostJson('card/code/update', $params); + } + + /** + * 设置卡券失效. + * + * @param string $code + * @param string $cardId + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function disable(string $code, string $cardId = '') + { + $params = [ + 'code' => $code, + 'card_id' => $cardId, + ]; + + return $this->httpPostJson('card/code/unavailable', $params); + } + + /** + * 核销 Code 接口. + * + * @param string $code + * @param string|null $cardId + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function consume(string $code, string $cardId = null) + { + $params = [ + 'code' => $code, + ]; + + if (!is_null($cardId)) { + $params['card_id'] = $cardId; + } + + return $this->httpPostJson('card/code/consume', $params); + } + + /** + * Code解码接口. + * + * @param string $encryptedCode + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function decrypt(string $encryptedCode) + { + $params = [ + 'encrypt_code' => $encryptedCode, + ]; + + return $this->httpPostJson('card/code/decrypt', $params); + } +} diff --git a/vendor/overtrue/wechat/src/OfficialAccount/Card/CoinClient.php b/vendor/overtrue/wechat/src/OfficialAccount/Card/CoinClient.php new file mode 100644 index 0000000..b99d841 --- /dev/null +++ b/vendor/overtrue/wechat/src/OfficialAccount/Card/CoinClient.php @@ -0,0 +1,119 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OfficialAccount\Card; + +use EasyWeChat\Kernel\BaseClient; + +/** + * Class CoinClient. + * + * @author overtrue + */ +class CoinClient extends BaseClient +{ + /** + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function activate() + { + return $this->httpGet('card/pay/activate'); + } + + /** + * @param string $cardId + * @param int $quantity + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function getPrice(string $cardId, int $quantity) + { + return $this->httpPostJson('card/pay/getpayprice', [ + 'card_id' => $cardId, + 'quantity' => $quantity, + ]); + } + + /** + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function summary() + { + return $this->httpGet('card/pay/getcoinsinfo'); + } + + /** + * @param int $count + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function recharge(int $count) + { + return $this->httpPostJson('card/pay/recharge', [ + 'coin_count' => $count, + ]); + } + + /** + * @param string $orderId + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function order(string $orderId) + { + return $this->httpPostJson('card/pay/getorder', ['order_id' => $orderId]); + } + + /** + * @param array $filters + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function orders(array $filters) + { + return $this->httpPostJson('card/pay/getorderlist', $filters); + } + + /** + * @param string $cardId + * @param string $orderId + * @param int $quantity + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function confirm(string $cardId, string $orderId, int $quantity) + { + return $this->httpPostJson('card/pay/confirm', [ + 'card_id' => $cardId, + 'order_id' => $orderId, + 'quantity' => $quantity, + ]); + } +} diff --git a/vendor/overtrue/wechat/src/OfficialAccount/Card/GeneralCardClient.php b/vendor/overtrue/wechat/src/OfficialAccount/Card/GeneralCardClient.php new file mode 100644 index 0000000..1505981 --- /dev/null +++ b/vendor/overtrue/wechat/src/OfficialAccount/Card/GeneralCardClient.php @@ -0,0 +1,71 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OfficialAccount\Card; + +/** + * Class GeneralCardClient. + * + * @author overtrue + */ +class GeneralCardClient extends Client +{ + /** + * 通用卡接口激活. + * + * @param array $info + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function activate(array $info = []) + { + return $this->httpPostJson('card/generalcard/activate', $info); + } + + /** + * 通用卡撤销激活. + * + * @param string $cardId + * @param string $code + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function deactivate(string $cardId, string $code) + { + $params = [ + 'card_id' => $cardId, + 'code' => $code, + ]; + + return $this->httpPostJson('card/generalcard/unactivate', $params); + } + + /** + * 更新会员信息. + * + * @param array $params + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function updateUser(array $params = []) + { + return $this->httpPostJson('card/generalcard/updateuser', $params); + } +} diff --git a/vendor/overtrue/wechat/src/OfficialAccount/Card/GiftCardClient.php b/vendor/overtrue/wechat/src/OfficialAccount/Card/GiftCardClient.php new file mode 100644 index 0000000..d8779d0 --- /dev/null +++ b/vendor/overtrue/wechat/src/OfficialAccount/Card/GiftCardClient.php @@ -0,0 +1,74 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OfficialAccount\Card; + +use EasyWeChat\Kernel\BaseClient; + +/** + * Class GiftCardClient. + * + * @author overtrue + */ +class GiftCardClient extends BaseClient +{ + /** + * 申请微信支付礼品卡权限接口. + * + * @param string $subMchId + * + * @return mixed + */ + public function add(string $subMchId) + { + $params = [ + 'sub_mch_id' => $subMchId, + ]; + + return $this->httpPostJson('card/giftcard/pay/whitelist/add', $params); + } + + /** + * 绑定商户号到礼品卡小程序接口(商户号必须为公众号申请的商户号,否则报错). + * + * @param string $subMchId + * @param string $wxaAppid + * + * @return mixed + */ + public function bind(string $subMchId, string $wxaAppid) + { + $params = [ + 'sub_mch_id' => $subMchId, + 'wxa_appid' => $wxaAppid, + ]; + + return $this->httpPostJson('card/giftcard/pay/submch/bind', $params); + } + + /** + * 上传小程序代码. + * + * @param string $wxaAppid + * @param string $pageId + * + * @return mixed + */ + public function set(string $wxaAppid, string $pageId) + { + $params = [ + 'wxa_appid' => $wxaAppid, + 'page_id' => $pageId, + ]; + + return $this->httpPostJson('card/giftcard/wxa/set', $params); + } +} diff --git a/vendor/overtrue/wechat/src/OfficialAccount/Card/GiftCardOrderClient.php b/vendor/overtrue/wechat/src/OfficialAccount/Card/GiftCardOrderClient.php new file mode 100644 index 0000000..b4e1b15 --- /dev/null +++ b/vendor/overtrue/wechat/src/OfficialAccount/Card/GiftCardOrderClient.php @@ -0,0 +1,78 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OfficialAccount\Card; + +use EasyWeChat\Kernel\BaseClient; + +/** + * Class GiftCardOrderClient. + * + * @author overtrue + */ +class GiftCardOrderClient extends BaseClient +{ + /** + * 查询-单个礼品卡订单信息接口. + * + * @param string $orderId + * + * @return mixed + */ + public function get(string $orderId) + { + $params = [ + 'order_id' => $orderId, + ]; + + return $this->httpPostJson('card/giftcard/order/get', $params); + } + + /** + * 查询-批量查询礼品卡订单信息接口. + * + * @param int $beginTime + * @param int $endTime + * @param int $offset + * @param int $count + * @param string $sortType + * + * @return mixed + */ + public function list(int $beginTime, int $endTime, int $offset = 0, int $count = 10, string $sortType = 'ASC') + { + $params = [ + 'begin_time' => $beginTime, + 'end_time' => $endTime, + 'sort_type' => $sortType, + 'offset' => $offset, + 'count' => $count, + ]; + + return $this->httpPostJson('card/giftcard/order/batchget', $params); + } + + /** + * 退款接口. + * + * @param string $orderId + * + * @return mixed + */ + public function refund(string $orderId) + { + $params = [ + 'order_id' => $orderId, + ]; + + return $this->httpPostJson('card/giftcard/order/refund', $params); + } +} diff --git a/vendor/overtrue/wechat/src/OfficialAccount/Card/GiftCardPageClient.php b/vendor/overtrue/wechat/src/OfficialAccount/Card/GiftCardPageClient.php new file mode 100644 index 0000000..bf36109 --- /dev/null +++ b/vendor/overtrue/wechat/src/OfficialAccount/Card/GiftCardPageClient.php @@ -0,0 +1,102 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OfficialAccount\Card; + +use EasyWeChat\Kernel\BaseClient; + +/** + * Class GiftCardPageClient. + * + * @author overtrue + */ +class GiftCardPageClient extends BaseClient +{ + /** + * 创建-礼品卡货架接口. + * + * @param array $attributes + * + * @return mixed + */ + public function add(array $attributes) + { + $params = [ + 'page' => $attributes, + ]; + + return $this->httpPostJson('card/giftcard/page/add', $params); + } + + /** + * 查询-礼品卡货架信息接口. + * + * @param string $pageId + * + * @return mixed + */ + public function get(string $pageId) + { + $params = [ + 'page_id' => $pageId, + ]; + + return $this->httpPostJson('card/giftcard/page/get', $params); + } + + /** + * 修改-礼品卡货架信息接口. + * + * @param string $pageId + * @param string $bannerPicUrl + * @param array $themeList + * + * @return mixed + */ + public function update(string $pageId, string $bannerPicUrl, array $themeList) + { + $params = [ + 'page' => [ + 'page_id' => $pageId, + 'banner_pic_url' => $bannerPicUrl, + 'theme_list' => $themeList, + ], + ]; + + return $this->httpPostJson('card/giftcard/page/update', $params); + } + + /** + * 查询-礼品卡货架列表接口. + * + * @return mixed + */ + public function list() + { + return $this->httpPostJson('card/giftcard/page/batchget'); + } + + /** + * 下架-礼品卡货架接口(下架某一个货架或者全部货架). + * + * @param string $pageId + * + * @return mixed + */ + public function setMaintain(string $pageId = '') + { + $params = ($pageId ? ['page_id' => $pageId] : ['all' => true]) + [ + 'maintain' => true, + ]; + + return $this->httpPostJson('card/giftcard/maintain/set', $params); + } +} diff --git a/vendor/overtrue/wechat/src/OfficialAccount/Card/InvoiceClient.php b/vendor/overtrue/wechat/src/OfficialAccount/Card/InvoiceClient.php new file mode 100644 index 0000000..ebf1e5f --- /dev/null +++ b/vendor/overtrue/wechat/src/OfficialAccount/Card/InvoiceClient.php @@ -0,0 +1,191 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OfficialAccount\Card; + +use EasyWeChat\Kernel\BaseClient; + +/** + * Class InvoiceClient. + * + * @author overtrue + */ +class InvoiceClient extends BaseClient +{ + /** + * 设置支付后开票信息接口. + * + * @param string $mchid + * @param string $sPappid + * + * @return mixed + */ + public function set(string $mchid, string $sPappid) + { + $params = [ + 'paymch_info' => [ + 'mchid' => $mchid, + 's_pappid' => $sPappid, + ], + ]; + + return $this->setBizAttr('set_pay_mch', $params); + } + + /** + * 查询支付后开票信息接口. + * + * @return mixed + */ + public function get() + { + return $this->setBizAttr('get_pay_mch'); + } + + /** + * 设置授权页字段信息接口. + * + * @param array $userData + * @param array $bizData + * + * @return mixed + */ + public function setAuthField(array $userData, array $bizData) + { + $params = [ + 'auth_field' => [ + 'user_field' => $userData, + 'biz_field' => $bizData, + ], + ]; + + return $this->setBizAttr('set_auth_field', $params); + } + + /** + * 查询授权页字段信息接口. + * + * @return mixed + */ + public function getAuthField() + { + return $this->setBizAttr('get_auth_field'); + } + + /** + * 查询开票信息. + * + * @param string $orderId + * @param string $appId + * + * @return mixed + */ + public function getAuthData(string $appId, string $orderId) + { + $params = [ + 'order_id' => $orderId, + 's_appid' => $appId, + ]; + + return $this->httpPost('card/invoice/getauthdata', $params); + } + + /** + * 创建卡券发票模板 + * + * @param string $orderId + * @param string $appId + * + * @return mixed + */ + public function createCard(array $params) + { + return $this->httpPostJson('/card/invoice/platform/createcard', $params); + } + + /** + * 电子发票卡券插入用户卡包 + * + * @param string $orderId + * @param string $appId + * + * @return mixed + */ + public function insert(array $params) + { + return $this->httpPostJson('/card/invoice/insert', $params); + } + + /** + * 更新发票卡券状态 + * + * @param string $orderId + * @param string $appId + * + * @return mixed + */ + public function updatestatus(array $params) + { + return $this->httpPostJson('/card/invoice/platform/updatestatus', $params); + } + + /** + * 设置授权页字段信息接口. + * + * @param array $userData + * @param array $bizData + * + * @return mixed + */ + public function setContact(array $params) + { + return $this->setBizAttr('set_contact', $params); + } + + /** + * 获取授权页链接 + * + * @param string $orderId + * @param string $appId + * + * @return mixed + */ + public function getauthurl(array $params) + { + return $this->httpPostJson('/card/invoice/getauthurl', $params); + } + + /** + * 创建卡券发票模板 + * + * @param string $orderId + * @param string $appId + * + * @return mixed + */ + public function setUrl() + { + return $this->httpPostJson('/card/invoice/seturl', []); + } + + /** + * @param string $action + * @param array $params + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + private function setBizAttr(string $action, array $params = []) + { + return $this->httpPostJson('card/invoice/setbizattr', $params, ['action' => $action]); + } +} diff --git a/vendor/overtrue/wechat/src/OfficialAccount/Card/JssdkClient.php b/vendor/overtrue/wechat/src/OfficialAccount/Card/JssdkClient.php new file mode 100644 index 0000000..9a6bb51 --- /dev/null +++ b/vendor/overtrue/wechat/src/OfficialAccount/Card/JssdkClient.php @@ -0,0 +1,85 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OfficialAccount\Card; + +use EasyWeChat\BasicService\Jssdk\Client as Jssdk; +use EasyWeChat\Kernel\Support\Arr; +use function EasyWeChat\Kernel\Support\str_random; + +/** + * Class Jssdk. + * + * @author overtrue + */ +class JssdkClient extends Jssdk +{ + /** + * @param bool $refresh + * @param string $type + * + * @return array + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \EasyWeChat\Kernel\Exceptions\RuntimeException + * @throws \Psr\SimpleCache\InvalidArgumentException + */ + public function getTicket(bool $refresh = false, string $type = 'wx_card'): array + { + return parent::getTicket($refresh, $type); + } + + /** + * 微信卡券:JSAPI 卡券发放. + * + * @param array $cards + * + * @return string + */ + public function assign(array $cards) + { + return json_encode(array_map(function ($card) { + return $this->attachExtension($card['card_id'], $card); + }, $cards)); + } + + /** + * 生成 js添加到卡包 需要的 card_list 项. + * + * @param string $cardId + * @param array $extension + * + * @return array + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \EasyWeChat\Kernel\Exceptions\RuntimeException + * @throws \Psr\SimpleCache\InvalidArgumentException + */ + public function attachExtension($cardId, array $extension = []) + { + $timestamp = time(); + $nonce = str_random(6); + $ticket = $this->getTicket()['ticket']; + + $ext = array_merge(['timestamp' => $timestamp, 'nonce_str' => $nonce], Arr::only( + $extension, + ['code', 'openid', 'outer_id', 'balance', 'fixed_begintimestamp', 'outer_str'] + )); + + $ext['signature'] = $this->dictionaryOrderSignature($ticket, $timestamp, $cardId, $ext['code'] ?? '', $ext['openid'] ?? '', $nonce); + + return [ + 'cardId' => $cardId, + 'cardExt' => json_encode($ext), + ]; + } +} diff --git a/vendor/overtrue/wechat/src/OfficialAccount/Card/MeetingTicketClient.php b/vendor/overtrue/wechat/src/OfficialAccount/Card/MeetingTicketClient.php new file mode 100644 index 0000000..892c5ad --- /dev/null +++ b/vendor/overtrue/wechat/src/OfficialAccount/Card/MeetingTicketClient.php @@ -0,0 +1,33 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OfficialAccount\Card; + +/** + * Class MeetingTicketClient. + * + * @author overtrue + */ +class MeetingTicketClient extends Client +{ + /** + * @param array $params + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function updateUser(array $params) + { + return $this->httpPostJson('card/meetingticket/updateuser', $params); + } +} diff --git a/vendor/overtrue/wechat/src/OfficialAccount/Card/MemberCardClient.php b/vendor/overtrue/wechat/src/OfficialAccount/Card/MemberCardClient.php new file mode 100644 index 0000000..41d051c --- /dev/null +++ b/vendor/overtrue/wechat/src/OfficialAccount/Card/MemberCardClient.php @@ -0,0 +1,123 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OfficialAccount\Card; + +/** + * Class MemberCardClient. + * + * @author overtrue + */ +class MemberCardClient extends Client +{ + /** + * 会员卡接口激活. + * + * @param array $info + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function activate(array $info = []) + { + return $this->httpPostJson('card/membercard/activate', $info); + } + + /** + * 设置开卡字段接口. + * + * @param string $cardId + * @param array $settings + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function setActivationForm(string $cardId, array $settings) + { + $params = array_merge(['card_id' => $cardId], $settings); + + return $this->httpPostJson('card/membercard/activateuserform/set', $params); + } + + /** + * 拉取会员信息接口. + * + * @param string $cardId + * @param string $code + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function getUser(string $cardId, string $code) + { + $params = [ + 'card_id' => $cardId, + 'code' => $code, + ]; + + return $this->httpPostJson('card/membercard/userinfo/get', $params); + } + + /** + * 更新会员信息. + * + * @param array $params + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function updateUser(array $params = []) + { + return $this->httpPostJson('card/membercard/updateuser', $params); + } + + /** + * 获取用户提交资料. + * + * @param string $activateTicket + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function getActivationForm($activateTicket) + { + $params = [ + 'activate_ticket' => $activateTicket, + ]; + + return $this->httpPostJson('card/membercard/activatetempinfo/get', $params); + } + + /** + * 获取开卡组件链接接口. + * + * @param array $params 包含会员卡ID和随机字符串 + * + * @return string 开卡组件链接 + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function getActivateUrl(array $params = []) + { + return $this->httpPostJson('card/membercard/activate/geturl', $params); + } +} diff --git a/vendor/overtrue/wechat/src/OfficialAccount/Card/MovieTicketClient.php b/vendor/overtrue/wechat/src/OfficialAccount/Card/MovieTicketClient.php new file mode 100644 index 0000000..e6d9036 --- /dev/null +++ b/vendor/overtrue/wechat/src/OfficialAccount/Card/MovieTicketClient.php @@ -0,0 +1,33 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OfficialAccount\Card; + +/** + * Class MovieTicketClient. + * + * @author overtrue + */ +class MovieTicketClient extends Client +{ + /** + * @param array $params + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function updateUser(array $params) + { + return $this->httpPostJson('card/movieticket/updateuser', $params); + } +} diff --git a/vendor/overtrue/wechat/src/OfficialAccount/Card/ServiceProvider.php b/vendor/overtrue/wechat/src/OfficialAccount/Card/ServiceProvider.php new file mode 100644 index 0000000..3807fa3 --- /dev/null +++ b/vendor/overtrue/wechat/src/OfficialAccount/Card/ServiceProvider.php @@ -0,0 +1,89 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OfficialAccount\Card; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +/** + * Class ServiceProvider. + * + * @author overtrue + */ +class ServiceProvider implements ServiceProviderInterface +{ + /** + * {@inheritdoc}. + */ + public function register(Container $app) + { + $app['card'] = function ($app) { + return new Card($app); + }; + + $app['card.client'] = function ($app) { + return new Client($app); + }; + + $app['card.coin'] = function ($app) { + return new CoinClient($app); + }; + + $app['card.sub_merchant'] = function ($app) { + return new SubMerchantClient($app); + }; + + $app['card.code'] = function ($app) { + return new CodeClient($app); + }; + + $app['card.movie_ticket'] = function ($app) { + return new MovieTicketClient($app); + }; + + $app['card.member_card'] = function ($app) { + return new MemberCardClient($app); + }; + + $app['card.general_card'] = function ($app) { + return new GeneralCardClient($app); + }; + + $app['card.boarding_pass'] = function ($app) { + return new BoardingPassClient($app); + }; + + $app['card.meeting_ticket'] = function ($app) { + return new MeetingTicketClient($app); + }; + + $app['card.jssdk'] = function ($app) { + return new JssdkClient($app); + }; + + $app['card.gift_card'] = function ($app) { + return new GiftCardClient($app); + }; + + $app['card.gift_card_order'] = function ($app) { + return new GiftCardOrderClient($app); + }; + + $app['card.gift_card_page'] = function ($app) { + return new GiftCardPageClient($app); + }; + + $app['card.invoice'] = function ($app) { + return new InvoiceClient($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/OfficialAccount/Card/SubMerchantClient.php b/vendor/overtrue/wechat/src/OfficialAccount/Card/SubMerchantClient.php new file mode 100644 index 0000000..77cfad2 --- /dev/null +++ b/vendor/overtrue/wechat/src/OfficialAccount/Card/SubMerchantClient.php @@ -0,0 +1,123 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OfficialAccount\Card; + +use EasyWeChat\Kernel\BaseClient; +use EasyWeChat\Kernel\Support\Arr; + +/** + * Class SubMerchantClient. + * + * @author overtrue + */ +class SubMerchantClient extends BaseClient +{ + /** + * 添加子商户. + * + * @param array $info + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function create(array $info = []) + { + $params = [ + 'info' => Arr::only($info, [ + 'brand_name', + 'logo_url', + 'protocol', + 'end_time', + 'primary_category_id', + 'secondary_category_id', + 'agreement_media_id', + 'operator_media_id', + 'app_id', + ]), + ]; + + return $this->httpPostJson('card/submerchant/submit', $params); + } + + /** + * 更新子商户. + * + * @param int $merchantId + * @param array $info + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function update(int $merchantId, array $info = []) + { + $params = [ + 'info' => array_merge( + ['merchant_id' => $merchantId], + Arr::only($info, [ + 'brand_name', + 'logo_url', + 'protocol', + 'end_time', + 'primary_category_id', + 'secondary_category_id', + 'agreement_media_id', + 'operator_media_id', + 'app_id', + ]) + ), + ]; + + return $this->httpPostJson('card/submerchant/update', $params); + } + + /** + * 获取子商户信息. + * + * @param int $merchantId + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function get(int $merchantId) + { + return $this->httpPostJson('card/submerchant/get', ['merchant_id' => $merchantId]); + } + + /** + * 批量获取子商户信息. + * + * @param int $beginId + * @param int $limit + * @param string $status + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function list(int $beginId = 0, int $limit = 50, string $status = 'CHECKING') + { + $params = [ + 'begin_id' => $beginId, + 'limit' => $limit, + 'status' => $status, + ]; + + return $this->httpPostJson('card/submerchant/batchget', $params); + } +} diff --git a/vendor/overtrue/wechat/src/OfficialAccount/Comment/Client.php b/vendor/overtrue/wechat/src/OfficialAccount/Comment/Client.php new file mode 100644 index 0000000..4f45b74 --- /dev/null +++ b/vendor/overtrue/wechat/src/OfficialAccount/Comment/Client.php @@ -0,0 +1,208 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OfficialAccount\Comment; + +use EasyWeChat\Kernel\BaseClient; + +/** + * Class Client. + * + * @author overtrue + */ +class Client extends BaseClient +{ + /** + * Open article comment. + * + * @param string $msgId + * @param int|null $index + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function open(string $msgId, int $index = null) + { + $params = [ + 'msg_data_id' => $msgId, + 'index' => $index, + ]; + + return $this->httpPostJson('cgi-bin/comment/open', $params); + } + + /** + * Close comment. + * + * @param string $msgId + * @param int|null $index + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function close(string $msgId, int $index = null) + { + $params = [ + 'msg_data_id' => $msgId, + 'index' => $index, + ]; + + return $this->httpPostJson('cgi-bin/comment/close', $params); + } + + /** + * Get article comments. + * + * @param string $msgId + * @param int $index + * @param int $begin + * @param int $count + * @param int $type + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function list(string $msgId, int $index, int $begin, int $count, int $type = 0) + { + $params = [ + 'msg_data_id' => $msgId, + 'index' => $index, + 'begin' => $begin, + 'count' => $count, + 'type' => $type, + ]; + + return $this->httpPostJson('cgi-bin/comment/list', $params); + } + + /** + * Mark elect comment. + * + * @param string $msgId + * @param int $index + * @param int $commentId + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function markElect(string $msgId, int $index, int $commentId) + { + $params = [ + 'msg_data_id' => $msgId, + 'index' => $index, + 'user_comment_id' => $commentId, + ]; + + return $this->httpPostJson('cgi-bin/comment/markelect', $params); + } + + /** + * Unmark elect comment. + * + * @param string $msgId + * @param int $index + * @param int $commentId + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function unmarkElect(string $msgId, int $index, int $commentId) + { + $params = [ + 'msg_data_id' => $msgId, + 'index' => $index, + 'user_comment_id' => $commentId, + ]; + + return $this->httpPostJson('cgi-bin/comment/unmarkelect', $params); + } + + /** + * Delete comment. + * + * @param string $msgId + * @param int $index + * @param int $commentId + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function delete(string $msgId, int $index, int $commentId) + { + $params = [ + 'msg_data_id' => $msgId, + 'index' => $index, + 'user_comment_id' => $commentId, + ]; + + return $this->httpPostJson('cgi-bin/comment/delete', $params); + } + + /** + * Reply to a comment. + * + * @param string $msgId + * @param int $index + * @param int $commentId + * @param string $content + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function reply(string $msgId, int $index, int $commentId, string $content) + { + $params = [ + 'msg_data_id' => $msgId, + 'index' => $index, + 'user_comment_id' => $commentId, + 'content' => $content, + ]; + + return $this->httpPostJson('cgi-bin/comment/reply/add', $params); + } + + /** + * Delete a reply. + * + * @param string $msgId + * @param int $index + * @param int $commentId + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function deleteReply(string $msgId, int $index, int $commentId) + { + $params = [ + 'msg_data_id' => $msgId, + 'index' => $index, + 'user_comment_id' => $commentId, + ]; + + return $this->httpPostJson('cgi-bin/comment/reply/delete', $params); + } +} diff --git a/vendor/overtrue/wechat/src/OfficialAccount/Comment/ServiceProvider.php b/vendor/overtrue/wechat/src/OfficialAccount/Comment/ServiceProvider.php new file mode 100644 index 0000000..8d6806c --- /dev/null +++ b/vendor/overtrue/wechat/src/OfficialAccount/Comment/ServiceProvider.php @@ -0,0 +1,44 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +/** + * ServiceProvider.php. + * + * This file is part of the wechat. + * + * (c) overtrue + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OfficialAccount\Comment; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +/** + * Class ServiceProvider. + * + * @author overtrue + */ +class ServiceProvider implements ServiceProviderInterface +{ + /** + * {@inheritdoc}. + */ + public function register(Container $app) + { + $app['comment'] = function ($app) { + return new Client($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/OfficialAccount/CustomerService/Client.php b/vendor/overtrue/wechat/src/OfficialAccount/CustomerService/Client.php new file mode 100644 index 0000000..64e43e5 --- /dev/null +++ b/vendor/overtrue/wechat/src/OfficialAccount/CustomerService/Client.php @@ -0,0 +1,230 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OfficialAccount\CustomerService; + +use EasyWeChat\Kernel\BaseClient; + +/** + * Class Client. + * + * @author overtrue + */ +class Client extends BaseClient +{ + /** + * List all staffs. + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function list() + { + return $this->httpGet('cgi-bin/customservice/getkflist'); + } + + /** + * List all online staffs. + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function online() + { + return $this->httpGet('cgi-bin/customservice/getonlinekflist'); + } + + /** + * Create a staff. + * + * @param string $account + * @param string $nickname + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function create(string $account, string $nickname) + { + $params = [ + 'kf_account' => $account, + 'nickname' => $nickname, + ]; + + return $this->httpPostJson('customservice/kfaccount/add', $params); + } + + /** + * Update a staff. + * + * @param string $account + * @param string $nickname + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function update(string $account, string $nickname) + { + $params = [ + 'kf_account' => $account, + 'nickname' => $nickname, + ]; + + return $this->httpPostJson('customservice/kfaccount/update', $params); + } + + /** + * Delete a staff. + * + * @param string $account + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function delete(string $account) + { + return $this->httpPostJson('customservice/kfaccount/del', [], ['kf_account' => $account]); + } + + /** + * Invite a staff. + * + * @param string $account + * @param string $wechatId + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function invite(string $account, string $wechatId) + { + $params = [ + 'kf_account' => $account, + 'invite_wx' => $wechatId, + ]; + + return $this->httpPostJson('customservice/kfaccount/inviteworker', $params); + } + + /** + * Set staff avatar. + * + * @param string $account + * @param string $path + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function setAvatar(string $account, string $path) + { + return $this->httpUpload('customservice/kfaccount/uploadheadimg', ['media' => $path], [], ['kf_account' => $account]); + } + + /** + * Get message builder. + * + * @param \EasyWeChat\Kernel\Messages\Message|string $message + * + * @return \EasyWeChat\OfficialAccount\CustomerService\Messenger + */ + public function message($message) + { + $messageBuilder = new Messenger($this); + + return $messageBuilder->message($message); + } + + /** + * Send a message. + * + * @param array $message + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function send(array $message) + { + return $this->httpPostJson('cgi-bin/message/custom/send', $message); + } + + /** + * Show typing status. + * + * @param string $openid + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function showTypingStatusToUser(string $openid) + { + return $this->httpPostJson('cgi-bin/message/custom/typing', [ + 'touser' => $openid, + 'command' => 'Typing', + ]); + } + + /** + * Hide typing status. + * + * @param string $openid + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function hideTypingStatusToUser(string $openid) + { + return $this->httpPostJson('cgi-bin/message/custom/typing', [ + 'touser' => $openid, + 'command' => 'CancelTyping', + ]); + } + + /** + * Get messages history. + * + * @param int $startTime + * @param int $endTime + * @param int $msgId + * @param int $number + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function messages($startTime, $endTime, int $msgId = 1, int $number = 10000) + { + $params = [ + 'starttime' => is_numeric($startTime) ? $startTime : strtotime($startTime), + 'endtime' => is_numeric($endTime) ? $endTime : strtotime($endTime), + 'msgid' => $msgId, + 'number' => $number, + ]; + + return $this->httpPostJson('customservice/msgrecord/getmsglist', $params); + } +} diff --git a/vendor/overtrue/wechat/src/OfficialAccount/CustomerService/Messenger.php b/vendor/overtrue/wechat/src/OfficialAccount/CustomerService/Messenger.php new file mode 100644 index 0000000..69bf2f3 --- /dev/null +++ b/vendor/overtrue/wechat/src/OfficialAccount/CustomerService/Messenger.php @@ -0,0 +1,165 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OfficialAccount\CustomerService; + +use EasyWeChat\Kernel\Exceptions\RuntimeException; +use EasyWeChat\Kernel\Messages\Message; +use EasyWeChat\Kernel\Messages\Raw as RawMessage; +use EasyWeChat\Kernel\Messages\Text; + +/** + * Class MessageBuilder. + * + * @author overtrue + */ +class Messenger +{ + /** + * Messages to send. + * + * @var \EasyWeChat\Kernel\Messages\Message; + */ + protected $message; + + /** + * Messages target user open id. + * + * @var string + */ + protected $to; + + /** + * Messages sender staff id. + * + * @var string + */ + protected $account; + + /** + * Customer service instance. + * + * @var \EasyWeChat\OfficialAccount\CustomerService\Client + */ + protected $client; + + /** + * MessageBuilder constructor. + * + * @param \EasyWeChat\OfficialAccount\CustomerService\Client $client + */ + public function __construct(Client $client) + { + $this->client = $client; + } + + /** + * Set message to send. + * + * @param string|Message $message + * + * @return Messenger + */ + public function message($message) + { + if (is_string($message)) { + $message = new Text($message); + } + + $this->message = $message; + + return $this; + } + + /** + * Set staff account to send message. + * + * @param string $account + * + * @return Messenger + */ + public function by(string $account) + { + $this->account = $account; + + return $this; + } + + /** + * @param string $account + * + * @return Messenger + */ + public function from(string $account) + { + return $this->by($account); + } + + /** + * Set target user open id. + * + * @param string $openid + * + * @return Messenger + */ + public function to($openid) + { + $this->to = $openid; + + return $this; + } + + /** + * Send the message. + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \EasyWeChat\Kernel\Exceptions\RuntimeException + */ + public function send() + { + if (empty($this->message)) { + throw new RuntimeException('No message to send.'); + } + + if ($this->message instanceof RawMessage) { + $message = json_decode($this->message->get('content'), true); + } else { + $prepends = [ + 'touser' => $this->to, + ]; + if ($this->account) { + $prepends['customservice'] = ['kf_account' => $this->account]; + } + $message = $this->message->transformForJsonRequest($prepends); + } + + return $this->client->send($message); + } + + /** + * Return property. + * + * @param string $property + * + * @return mixed + */ + public function __get(string $property) + { + if (property_exists($this, $property)) { + return $this->$property; + } + + return null; + } +} diff --git a/vendor/overtrue/wechat/src/OfficialAccount/CustomerService/ServiceProvider.php b/vendor/overtrue/wechat/src/OfficialAccount/CustomerService/ServiceProvider.php new file mode 100644 index 0000000..a879ce8 --- /dev/null +++ b/vendor/overtrue/wechat/src/OfficialAccount/CustomerService/ServiceProvider.php @@ -0,0 +1,37 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OfficialAccount\CustomerService; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +/** + * Class ServiceProvider. + * + * @author overtrue + */ +class ServiceProvider implements ServiceProviderInterface +{ + /** + * {@inheritdoc}. + */ + public function register(Container $app) + { + $app['customer_service'] = function ($app) { + return new Client($app); + }; + + $app['customer_service_session'] = function ($app) { + return new SessionClient($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/OfficialAccount/CustomerService/SessionClient.php b/vendor/overtrue/wechat/src/OfficialAccount/CustomerService/SessionClient.php new file mode 100644 index 0000000..b92b6db --- /dev/null +++ b/vendor/overtrue/wechat/src/OfficialAccount/CustomerService/SessionClient.php @@ -0,0 +1,104 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OfficialAccount\CustomerService; + +use EasyWeChat\Kernel\BaseClient; + +/** + * Class SessionClient. + * + * @author overtrue + */ +class SessionClient extends BaseClient +{ + /** + * List all sessions of $account. + * + * @param string $account + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function list(string $account) + { + return $this->httpGet('customservice/kfsession/getsessionlist', ['kf_account' => $account]); + } + + /** + * List all the people waiting. + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function waiting() + { + return $this->httpGet('customservice/kfsession/getwaitcase'); + } + + /** + * Create a session. + * + * @param string $account + * @param string $openid + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function create(string $account, string $openid) + { + $params = [ + 'kf_account' => $account, + 'openid' => $openid, + ]; + + return $this->httpPostJson('customservice/kfsession/create', $params); + } + + /** + * Close a session. + * + * @param string $account + * @param string $openid + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function close(string $account, string $openid) + { + $params = [ + 'kf_account' => $account, + 'openid' => $openid, + ]; + + return $this->httpPostJson('customservice/kfsession/close', $params); + } + + /** + * Get a session. + * + * @param string $openid + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function get(string $openid) + { + return $this->httpGet('customservice/kfsession/getsession', ['openid' => $openid]); + } +} diff --git a/vendor/overtrue/wechat/src/OfficialAccount/DataCube/Client.php b/vendor/overtrue/wechat/src/OfficialAccount/DataCube/Client.php new file mode 100644 index 0000000..0bf1c21 --- /dev/null +++ b/vendor/overtrue/wechat/src/OfficialAccount/DataCube/Client.php @@ -0,0 +1,340 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OfficialAccount\DataCube; + +use EasyWeChat\Kernel\BaseClient; + +/** + * Class Client. + * + * @author overtrue + */ +class Client extends BaseClient +{ + /** + * 获取用户增减数据. + * + * @param string $from + * @param string $to + * + * @return mixed + */ + public function userSummary(string $from, string $to) + { + return $this->query('datacube/getusersummary', $from, $to); + } + + /** + * 获取累计用户数据. + * + * @param string $from + * @param string $to + * + * @return mixed + */ + public function userCumulate(string $from, string $to) + { + return $this->query('datacube/getusercumulate', $from, $to); + } + + /** + * 获取图文群发每日数据. + * + * @param string $from + * @param string $to + * + * @return mixed + */ + public function articleSummary(string $from, string $to) + { + return $this->query('datacube/getarticlesummary', $from, $to); + } + + /** + * 获取图文群发总数据. + * + * @param string $from + * @param string $to + * + * @return mixed + */ + public function articleTotal(string $from, string $to) + { + return $this->query('datacube/getarticletotal', $from, $to); + } + + /** + * 获取图文统计数据. + * + * @param string $from + * @param string $to + * + * @return mixed + */ + public function userReadSummary(string $from, string $to) + { + return $this->query('datacube/getuserread', $from, $to); + } + + /** + * 获取图文统计分时数据. + * + * @param string $from + * @param string $to + * + * @return mixed + */ + public function userReadHourly(string $from, string $to) + { + return $this->query('datacube/getuserreadhour', $from, $to); + } + + /** + * 获取图文分享转发数据. + * + * @param string $from + * @param string $to + * + * @return mixed + */ + public function userShareSummary(string $from, string $to) + { + return $this->query('datacube/getusershare', $from, $to); + } + + /** + * 获取图文分享转发分时数据. + * + * @param string $from + * @param string $to + * + * @return mixed + */ + public function userShareHourly(string $from, string $to) + { + return $this->query('datacube/getusersharehour', $from, $to); + } + + /** + * 获取消息发送概况数据. + * + * @param string $from + * @param string $to + * + * @return mixed + */ + public function upstreamMessageSummary(string $from, string $to) + { + return $this->query('datacube/getupstreammsg', $from, $to); + } + + /** + * 获取消息分送分时数据. + * + * @param string $from + * @param string $to + * + * @return mixed + */ + public function upstreamMessageHourly(string $from, string $to) + { + return $this->query('datacube/getupstreammsghour', $from, $to); + } + + /** + * 获取消息发送周数据. + * + * @param string $from + * @param string $to + * + * @return mixed + */ + public function upstreamMessageWeekly(string $from, string $to) + { + return $this->query('datacube/getupstreammsgweek', $from, $to); + } + + /** + * 获取消息发送月数据. + * + * @param string $from + * @param string $to + * + * @return mixed + */ + public function upstreamMessageMonthly(string $from, string $to) + { + return $this->query('datacube/getupstreammsgmonth', $from, $to); + } + + /** + * 获取消息发送分布数据. + * + * @param string $from + * @param string $to + * + * @return mixed + */ + public function upstreamMessageDistSummary(string $from, string $to) + { + return $this->query('datacube/getupstreammsgdist', $from, $to); + } + + /** + * 获取消息发送分布周数据. + * + * @param string $from + * @param string $to + * + * @return mixed + */ + public function upstreamMessageDistWeekly(string $from, string $to) + { + return $this->query('datacube/getupstreammsgdistweek', $from, $to); + } + + /** + * 获取消息发送分布月数据. + * + * @param string $from + * @param string $to + * + * @return mixed + */ + public function upstreamMessageDistMonthly(string $from, string $to) + { + return $this->query('datacube/getupstreammsgdistmonth', $from, $to); + } + + /** + * 获取接口分析数据. + * + * @param string $from + * @param string $to + * + * @return mixed + */ + public function interfaceSummary(string $from, string $to) + { + return $this->query('datacube/getinterfacesummary', $from, $to); + } + + /** + * 获取接口分析分时数据. + * + * @param string $from + * @param string $to + * + * @return mixed + */ + public function interfaceSummaryHourly(string $from, string $to) + { + return $this->query('datacube/getinterfacesummaryhour', $from, $to); + } + + /** + * 拉取卡券概况数据接口. + * + * @param string $from + * @param string $to + * @param int $condSource + * + * @return mixed + */ + public function cardSummary(string $from, string $to, $condSource = 0) + { + $ext = [ + 'cond_source' => intval($condSource), + ]; + + return $this->query('datacube/getcardbizuininfo', $from, $to, $ext); + } + + /** + * 获取免费券数据接口. + * + * @param string $from + * @param string $to + * @param int $condSource + * @param string $cardId + * + * @return mixed + */ + public function freeCardSummary(string $from, string $to, int $condSource = 0, string $cardId = '') + { + $ext = [ + 'cond_source' => intval($condSource), + 'card_id' => $cardId, + ]; + + return $this->query('datacube/getcardcardinfo', $from, $to, $ext); + } + + /** + * 拉取会员卡数据接口. + * + * @param string $from + * @param string $to + * @param int $condSource + * + * @return mixed + */ + public function memberCardSummary(string $from, string $to, $condSource = 0) + { + $ext = [ + 'cond_source' => intval($condSource), + ]; + + return $this->query('datacube/getcardmembercardinfo', $from, $to, $ext); + } + + /** + * 拉取单张会员卡数据接口. + * + * @param string $from + * @param string $to + * @param string $cardId + * + * @return mixed + */ + public function memberCardSummaryById(string $from, string $to, string $cardId) + { + $ext = [ + 'card_id' => $cardId, + ]; + + return $this->query('datacube/getcardmembercarddetail', $from, $to, $ext); + } + + /** + * 查询数据. + * + * @param string $api + * @param string $from + * @param string $to + * @param array $ext + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + protected function query(string $api, string $from, string $to, array $ext = []) + { + $params = array_merge([ + 'begin_date' => $from, + 'end_date' => $to, + ], $ext); + + return $this->httpPostJson($api, $params); + } +} diff --git a/vendor/overtrue/wechat/src/OfficialAccount/DataCube/ServiceProvider.php b/vendor/overtrue/wechat/src/OfficialAccount/DataCube/ServiceProvider.php new file mode 100644 index 0000000..bfec89a --- /dev/null +++ b/vendor/overtrue/wechat/src/OfficialAccount/DataCube/ServiceProvider.php @@ -0,0 +1,33 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OfficialAccount\DataCube; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +/** + * Class ServiceProvider. + * + * @author overtrue + */ +class ServiceProvider implements ServiceProviderInterface +{ + /** + * {@inheritdoc}. + */ + public function register(Container $app) + { + $app['data_cube'] = function ($app) { + return new Client($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/OfficialAccount/Device/Client.php b/vendor/overtrue/wechat/src/OfficialAccount/Device/Client.php new file mode 100644 index 0000000..8dc9d73 --- /dev/null +++ b/vendor/overtrue/wechat/src/OfficialAccount/Device/Client.php @@ -0,0 +1,251 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OfficialAccount\Device; + +use EasyWeChat\Kernel\BaseClient; + +/** + * Class Client. + * + * @see http://iot.weixin.qq.com/wiki/new/index.html + * + * @author soone <66812590@qq.com> + */ +class Client extends BaseClient +{ + /** + * @param string $deviceId + * @param string $openid + * @param string $content + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function message(string $deviceId, string $openid, string $content) + { + $params = [ + 'device_type' => $this->app['config']['device_type'], + 'device_id' => $deviceId, + 'open_id' => $openid, + 'content' => base64_encode($content), + ]; + + return $this->httpPostJson('device/transmsg', $params); + } + + /** + * Get device qrcode. + * + * @param array $deviceIds + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function qrCode(array $deviceIds) + { + $params = [ + 'device_num' => count($deviceIds), + 'device_id_list' => $deviceIds, + ]; + + return $this->httpPostJson('device/create_qrcode', $params); + } + + /** + * @param array $devices + * @param string $productId + * @param int $opType + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function authorize(array $devices, string $productId, int $opType = 0) + { + $params = [ + 'device_num' => count($devices), + 'device_list' => $devices, + 'op_type' => $opType, + 'product_id' => $productId, + ]; + + return $this->httpPostJson('device/authorize_device', $params); + } + + /** + * 获取 device id 和二维码 + * + * @param string $productId + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function createId(string $productId) + { + $params = [ + 'product_id' => $productId, + ]; + + return $this->httpGet('device/getqrcode', $params); + } + + /** + * @param string $openid + * @param string $deviceId + * @param string $ticket + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function bind(string $openid, string $deviceId, string $ticket) + { + $params = [ + 'ticket' => $ticket, + 'device_id' => $deviceId, + 'openid' => $openid, + ]; + + return $this->httpPostJson('device/bind', $params); + } + + /** + * @param string $openid + * @param string $deviceId + * @param string $ticket + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function unbind(string $openid, string $deviceId, string $ticket) + { + $params = [ + 'ticket' => $ticket, + 'device_id' => $deviceId, + 'openid' => $openid, + ]; + + return $this->httpPostJson('device/unbind', $params); + } + + /** + * @param string $openid + * @param string $deviceId + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function forceBind(string $openid, string $deviceId) + { + $params = [ + 'device_id' => $deviceId, + 'openid' => $openid, + ]; + + return $this->httpPostJson('device/compel_bind', $params); + } + + /** + * @param string $openid + * @param string $deviceId + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function forceUnbind(string $openid, string $deviceId) + { + $params = [ + 'device_id' => $deviceId, + 'openid' => $openid, + ]; + + return $this->httpPostJson('device/compel_unbind', $params); + } + + /** + * @param string $deviceId + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function status(string $deviceId) + { + $params = [ + 'device_id' => $deviceId, + ]; + + return $this->httpGet('device/get_stat', $params); + } + + /** + * @param string $ticket + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function verify(string $ticket) + { + $params = [ + 'ticket' => $ticket, + ]; + + return $this->httpPost('device/verify_qrcode', $params); + } + + /** + * @param string $deviceId + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function openid(string $deviceId) + { + $params = [ + 'device_type' => $this->app['config']['device_type'], + 'device_id' => $deviceId, + ]; + + return $this->httpGet('device/get_openid', $params); + } + + /** + * @param string $openid + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function listByOpenid(string $openid) + { + $params = [ + 'openid' => $openid, + ]; + + return $this->httpGet('device/get_bind_device', $params); + } +} diff --git a/vendor/overtrue/wechat/src/OfficialAccount/Device/ServiceProvider.php b/vendor/overtrue/wechat/src/OfficialAccount/Device/ServiceProvider.php new file mode 100644 index 0000000..e3dce8e --- /dev/null +++ b/vendor/overtrue/wechat/src/OfficialAccount/Device/ServiceProvider.php @@ -0,0 +1,33 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OfficialAccount\Device; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +/** + * Class ServiceProvider. + * + * @author soone <66812590@qq.com + */ +class ServiceProvider implements ServiceProviderInterface +{ + /** + * {@inheritdoc}. + */ + public function register(Container $app) + { + $app['device'] = function ($app) { + return new Client($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/OfficialAccount/Draft/Client.php b/vendor/overtrue/wechat/src/OfficialAccount/Draft/Client.php new file mode 100644 index 0000000..5c20698 --- /dev/null +++ b/vendor/overtrue/wechat/src/OfficialAccount/Draft/Client.php @@ -0,0 +1,108 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OfficialAccount\Draft; + +use EasyWeChat\Kernel\BaseClient; +use EasyWeChat\Kernel\Messages\Article; + +/** + * Class Client. + * + * @author wangdongzhao + */ +class Client extends BaseClient +{ + /** + * Add new articles to the draft. + * @param array $articles + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function add(array $articles) + { + return $this->httpPostJson('cgi-bin/draft/add', $articles); + } + + /** + * Get article from the draft. + * @param string $mediaId + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function get(string $mediaId) + { + return $this->httpPostJson('cgi-bin/draft/get', ['media_id' => $mediaId]); + } + + /** + * Update article + * @param string $mediaId + * @param int $index + * @param mixed $article + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function update(string $mediaId, int $index, $article) + { + $params = [ + 'media_id' => $mediaId, + 'index' => $index, + 'articles' => $article + ]; + return $this->httpPostJson('cgi-bin/draft/update', $params); + } + + /** + * Get draft total count + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function count() + { + return $this->httpPostJson('cgi-bin/draft/count'); + } + + /** + * Batch get articles from the draft. + * @param int $offset + * @param int $count + * @param int $noContent + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function batchGet(int $offset = 0, int $count = 20, int $noContent = 0) + { + $params = [ + 'offset' => $offset, + 'count' => $count, + 'no_content' => $noContent + ]; + return $this->httpPostJson('cgi-bin/draft/batchget', $params); + } + + /** + * Delete article. + * @param string $mediaId + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function delete(string $mediaId) + { + return $this->httpPostJson('cgi-bin/draft/delete', ['media_id' => $mediaId]); + } +} diff --git a/vendor/overtrue/wechat/src/OfficialAccount/Draft/ServiceProvider.php b/vendor/overtrue/wechat/src/OfficialAccount/Draft/ServiceProvider.php new file mode 100644 index 0000000..f38b8ea --- /dev/null +++ b/vendor/overtrue/wechat/src/OfficialAccount/Draft/ServiceProvider.php @@ -0,0 +1,35 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OfficialAccount\Draft; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +/** + * Class ServiceProvider. + * + * @author wangdongzhao + */ +class ServiceProvider implements ServiceProviderInterface +{ + /** + * {@inheritdoc}. + */ + public function register(Container $app) + { + $app['draft'] = function ($app) { + return new Client($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/OfficialAccount/FreePublish/Client.php b/vendor/overtrue/wechat/src/OfficialAccount/FreePublish/Client.php new file mode 100644 index 0000000..c885fcd --- /dev/null +++ b/vendor/overtrue/wechat/src/OfficialAccount/FreePublish/Client.php @@ -0,0 +1,90 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OfficialAccount\FreePublish; + +use EasyWeChat\Kernel\BaseClient; +use EasyWeChat\Kernel\Messages\Article; + +/** + * Class Client. + * + * @author wangdongzhao + */ +class Client extends BaseClient +{ + /** + * Get publish status. + * @param string $publishId + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function get(string $publishId) + { + return $this->httpPostJson('cgi-bin/freepublish/get', ['publish_id' => $publishId]); + } + + /** + * Submit article. + * @param string $mediaId + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function submit(string $mediaId) + { + return $this->httpPostJson('cgi-bin/freepublish/submit', ['media_id' => $mediaId]); + } + + /** + * Get article. + * @param string $articleId + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function getArticle(string $articleId) + { + return $this->httpPostJson('cgi-bin/freepublish/getarticle', ['article_id' => $articleId]); + } + + /** + * Batch get articles. + * @param int $offset + * @param int $count + * @param int $noContent + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function batchGet(int $offset = 0, int $count = 20, int $noContent = 0) + { + $params = [ + 'offset' => $offset, + 'count' => $count, + 'no_content' => $noContent + ]; + return $this->httpPostJson('cgi-bin/freepublish/batchget', $params); + } + + /** + * Delete article + * @param string $articleId + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function delete(string $articleId) + { + return $this->httpPostJson('cgi-bin/freepublish/delete', ['article_id' => $articleId]); + } +} diff --git a/vendor/overtrue/wechat/src/OfficialAccount/FreePublish/ServiceProvider.php b/vendor/overtrue/wechat/src/OfficialAccount/FreePublish/ServiceProvider.php new file mode 100644 index 0000000..a4696b5 --- /dev/null +++ b/vendor/overtrue/wechat/src/OfficialAccount/FreePublish/ServiceProvider.php @@ -0,0 +1,35 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OfficialAccount\FreePublish; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +/** + * Class ServiceProvider. + * + * @author wangdongzhao + */ +class ServiceProvider implements ServiceProviderInterface +{ + /** + * {@inheritdoc}. + */ + public function register(Container $app) + { + $app['free_publish'] = function ($app) { + return new Client($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/OfficialAccount/Goods/Client.php b/vendor/overtrue/wechat/src/OfficialAccount/Goods/Client.php new file mode 100644 index 0000000..c720e31 --- /dev/null +++ b/vendor/overtrue/wechat/src/OfficialAccount/Goods/Client.php @@ -0,0 +1,113 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OfficialAccount\Goods; + +use EasyWeChat\Kernel\BaseClient; + +/** + * Class Client. + * + * @author her-cat + */ +class Client extends BaseClient +{ + /** + * Add the goods. + * + * @param array $data + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function add(array $data) + { + return $this->httpPostJson('scan/product/v2/add', [ + 'product' => $data, + ]); + } + + /** + * Update the goods. + * + * @param array $data + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function update(array $data) + { + return $this->httpPostJson('scan/product/v2/add', [ + 'product' => $data, + ]); + } + + /** + * Get add or update goods results. + * + * @param string $ticket + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function status(string $ticket) + { + return $this->httpPostJson('scan/product/v2/status', [ + 'status_ticket' => $ticket, + ]); + } + + /** + * Get goods information. + * + * @param string $pid + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function get(string $pid) + { + return $this->httpPostJson('scan/product/v2/getinfo', [ + 'product' => [ + 'pid' => $pid, + ], + ]); + } + + /** + * Get a list of goods. + * + * @param string $context + * @param int $page + * @param int $size + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function list(string $context = '', int $page = 1, int $size = 10) + { + return $this->httpPostJson('scan/product/v2/getinfobypage', [ + 'page_context' => $context, + 'page_num' => $page, + 'page_size' => $size, + ]); + } +} diff --git a/vendor/overtrue/wechat/src/OfficialAccount/Goods/ServiceProvider.php b/vendor/overtrue/wechat/src/OfficialAccount/Goods/ServiceProvider.php new file mode 100644 index 0000000..38a0902 --- /dev/null +++ b/vendor/overtrue/wechat/src/OfficialAccount/Goods/ServiceProvider.php @@ -0,0 +1,33 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OfficialAccount\Goods; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +/** + * Class ServiceProvider. + * + * @author her-cat + */ +class ServiceProvider implements ServiceProviderInterface +{ + /** + * {@inheritdoc}. + */ + public function register(Container $app) + { + $app['goods'] = function ($app) { + return new Client($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/OfficialAccount/Guide/Client.php b/vendor/overtrue/wechat/src/OfficialAccount/Guide/Client.php new file mode 100644 index 0000000..9c771dc --- /dev/null +++ b/vendor/overtrue/wechat/src/OfficialAccount/Guide/Client.php @@ -0,0 +1,991 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OfficialAccount\Guide; + +use EasyWeChat\Kernel\BaseClient; +use EasyWeChat\Kernel\Exceptions\InvalidConfigException; +use EasyWeChat\Kernel\Support\Collection; +use Psr\Http\Message\ResponseInterface; + +/** + * Class Client. + * + * @author MillsGuo + */ +class Client extends BaseClient +{ + /** + * 添加顾问 + * @param string $guideAccount + * @param string $guideOpenid + * @param string $guideHeadImgUrl + * @param string $guideNickname + * @return array|Collection|object|ResponseInterface|string + * @throws InvalidConfigException + */ + public function createAdviser($guideAccount = '', $guideOpenid = '', $guideHeadImgUrl = '', $guideNickname = '') + { + $params = $this->selectAccountAndOpenid(array(), $guideAccount, $guideOpenid); + if (!empty($guideHeadImgUrl)) { + $params['guide_headimgurl'] = $guideHeadImgUrl; + } + if (!empty($guideNickname)) { + $params['guide_nickname'] = $guideNickname; + } + + return $this->httpPostJson('cgi-bin/guide/addguideacct', $params); + } + + /** + * 获取顾问信息 + * @param string $guideAccount + * @param string $guideOpenid + * @return array|Collection|object|ResponseInterface|string + * @throws InvalidConfigException + */ + public function getAdviser($guideAccount = '', $guideOpenid = '') + { + $params = $this->selectAccountAndOpenid(array(), $guideAccount, $guideOpenid); + + return $this->httpPostJson('cgi-bin/guide/getguideacct', $params); + } + + /** + * 修改顾问的昵称或头像 + * @param string $guideAccount + * @param string $guideOpenid + * @param string $guideHeadImgUrl + * @param string $guideNickname + * @return array|Collection|object|ResponseInterface|string + * @throws InvalidConfigException + */ + public function updateAdviser($guideAccount = '', $guideOpenid = '', $guideHeadImgUrl = '', $guideNickname = '') + { + $params = $this->selectAccountAndOpenid(array(), $guideAccount, $guideOpenid); + if (!empty($guideHeadImgUrl)) { + $params['guide_headimgurl'] = $guideHeadImgUrl; + } + if (!empty($guideNickname)) { + $params['guide_nickname'] = $guideNickname; + } + + return $this->httpPostJson('cgi-bin/guide/updateguideacct', $params); + } + + /** + * 删除顾问 + * @param string $guideAccount + * @param string $guideOpenid + * @return array|Collection|object|ResponseInterface|string + * @throws InvalidConfigException + */ + public function deleteAdviser($guideAccount = '', $guideOpenid = '') + { + $params = $this->selectAccountAndOpenid(array(), $guideAccount, $guideOpenid); + + return $this->httpPostJson('cgi-bin/guide/delguideacct', $params); + } + + /** + * 获取服务号顾问列表 + * + * @return mixed + * + * @throws InvalidConfigException + */ + public function getAdvisers($count, $page) + { + $params = [ + 'page' => $page, + 'num' => $count + ]; + + return $this->httpPostJson('cgi-bin/guide/getguideacctlist', $params); + } + + /** + * 生成顾问二维码 + * @param string $guideAccount + * @param string $guideOpenid + * @param string $qrCodeInfo + * @return array|Collection|object|ResponseInterface|string + * @throws InvalidConfigException + */ + public function createQrCode($guideAccount = '', $guideOpenid = '', $qrCodeInfo = '') + { + $params = $this->selectAccountAndOpenid(array(), $guideAccount, $guideOpenid); + if (!empty($qrCodeInfo)) { + $params['qrcode_info'] = $qrCodeInfo; + } + + return $this->httpPostJson('cgi-bin/guide/guidecreateqrcode', $params); + } + + /** + * 获取顾问聊天记录 + * @param string $guideAccount + * @param string $guideOpenid + * @param string $openid + * @param int $beginTime + * @param int $endTime + * @param int $page + * @param int $count + * @return array|Collection|object|ResponseInterface|string + * @throws InvalidConfigException + */ + public function getBuyerChatRecords($guideAccount = '', $guideOpenid = '', $openid = '', $beginTime = 0, $endTime = 0, $page = 1, $count = 100) + { + $params = [ + 'page' => $page, + 'num' => $count + ]; + $params = $this->selectAccountAndOpenid($params, $guideAccount, $guideOpenid); + if (!empty($openid)) { + $params['openid'] = $openid; + } + if (!empty($beginTime)) { + $params['begin_time'] = $beginTime; + } + if (!empty($endTime)) { + $params['end_time'] = $endTime; + } + + return $this->httpPostJson('cgi-bin/guide/getguidebuyerchatrecord', $params); + } + + /** + * 设置快捷回复与关注自动回复 + * @param string $guideAccount + * @param string $guideOpenid + * @param bool $isDelete + * @param array $fastReplyListArray + * @param array $guideAutoReply + * @param array $guideAutoReplyPlus + * @return array|Collection|object|ResponseInterface|string + * @throws InvalidConfigException + */ + public function setConfig($guideAccount = '', $guideOpenid = '', $isDelete = false, $fastReplyListArray = array(), $guideAutoReply = array(), $guideAutoReplyPlus = array()) + { + $params = [ + 'is_delete' => $isDelete + ]; + $params = $this->selectAccountAndOpenid($params, $guideAccount, $guideOpenid); + if (!empty($fastReplyListArray)) { + $params['guide_fast_reply_list'] = $fastReplyListArray; + } + if (!empty($guideAutoReply)) { + $params['guide_auto_reply'] = $guideAutoReply; + } + if (!empty($guideAutoReplyPlus)) { + $params['guide_auto_reply_plus'] = $guideAutoReplyPlus; + } + + return $this->httpPostJson('cgi-bin/guide/setguideconfig', $params); + } + + /** + * 获取快捷回复与关注自动回复 + * @param string $guideAccount + * @param string $guideOpenid + * @return array|Collection|object|ResponseInterface|string + * @throws InvalidConfigException + */ + public function getConfig($guideAccount = '', $guideOpenid = '') + { + try { + $params = $this->selectAccountAndOpenid(array(), $guideAccount, $guideOpenid); + } catch (InvalidConfigException $e) { + $params = array(); + } + + return $this->httpPostJson('cgi-bin/guide/getguideconfig', $params); + } + + /** + * 设置离线自动回复与敏感词 + * @param bool $isDelete + * @param array $blackKeyword + * @param array $guideAutoReply + * @return array|Collection|object|ResponseInterface|string + * @throws InvalidConfigException + */ + public function setAdviserConfig(bool $isDelete, array $blackKeyword = [], array $guideAutoReply = []) + { + $params = [ + 'is_delete' => $isDelete + ]; + if (!empty($blackKeyword)) { + $params['black_keyword'] = $blackKeyword; + } + if (!empty($guideAutoReply)) { + $params['guide_auto_reply'] = $guideAutoReply; + } + + return $this->httpPostJson('cgi-bin/guide/setguideacctconfig', $params); + } + + /** + * 获取离线自动回复与敏感词 + * @return array|Collection|object|ResponseInterface|string + * @throws InvalidConfigException + */ + public function getAdviserConfig() + { + return $this->httpPostJson('cgi-bin/guide/getguideacctconfig', array()); + } + + /** + * 允许微信用户复制小程序页面路径 + * @param string $wxaAppid 小程序APPID + * @param string $wxUsername 微信用户的微信号 + * @return array|Collection|object|ResponseInterface|string + * @throws InvalidConfigException + */ + public function allowCopyMiniAppPath(string $wxaAppid, string $wxUsername) + { + $params = [ + 'wxa_appid' => $wxaAppid, + 'wx_username' => $wxUsername + ]; + + return $this->httpPostJson('cgi-bin/guide/pushshowwxapathmenu', $params); + } + + /** + * 传入微信号或OPENID二选一 + * @param array $params + * @param string $guideAccount + * @param string $guideOpenid + * @return array + * @throws InvalidConfigException + */ + protected function selectAccountAndOpenid($params, $guideAccount = '', $guideOpenid = '') + { + if (!is_array($params)) { + throw new InvalidConfigException("传入配置参数必须为数组"); + } + if (!empty($guideOpenid)) { + $params['guide_openid'] = $guideOpenid; + } elseif (!empty($guideAccount)) { + $params['guide_account'] = $guideAccount; + } else { + throw new InvalidConfigException("微信号和OPENID不能同时为空"); + } + + return $params; + } + + /** + * 新建顾问分组 + * @param string $groupName + * @return array|Collection|object|ResponseInterface|string + * @throws InvalidConfigException + */ + public function createGroup(string $groupName) + { + $params = [ + 'group_name' => $groupName + ]; + + return $this->httpPostJson('cgi-bin/guide/newguidegroup', $params); + } + + /** + * 获取顾问分组列表 + * @return array|Collection|object|ResponseInterface|string + * @throws InvalidConfigException + */ + public function getGuideGroups() + { + return $this->httpPostJson('cgi-bin/guide/getguidegrouplist', array()); + } + + /** + * 获取指定顾问分组信息 + * @param int $groupId + * @param int $page + * @param int $num + * @return array|Collection|object|ResponseInterface|string + * @throws InvalidConfigException + */ + public function getGroups(int $groupId, int $page, int $num) + { + $params = [ + 'group_id' => $groupId, + 'page' => $page, + 'num' => $num + ]; + + return $this->httpPostJson('cgi-bin/guide/getgroupinfo', $params); + } + + /** + * 分组内添加顾问 + * @param int $groupId + * @param string $guideAccount + * @return array|Collection|object|ResponseInterface|string + * @throws InvalidConfigException + */ + public function addGroupGuide(int $groupId, string $guideAccount) + { + $params = [ + 'group_id' => $groupId, + 'gruide_account' => $guideAccount + ]; + + return $this->httpPostJson('cgi-bin/guide/addguide2guidegroup', $params); + } + + /** + * 分组内删除顾问 + * @param int $groupId + * @param string $guideAccount + * @return array|Collection|object|ResponseInterface|string + * @throws InvalidConfigException + */ + public function deleteGroupGuide(int $groupId, string $guideAccount) + { + $params = [ + 'group_id' => $groupId, + 'guide_account' => $guideAccount + ]; + + return $this->httpPostJson('cgi-bin/guide/delguide2guidegroup', $params); + } + + /** + * 获取顾问所在分组 + * @param string $guideAccount + * @return array|Collection|object|ResponseInterface|string + * @throws InvalidConfigException + */ + public function getGuideGroup(string $guideAccount) + { + $params = [ + 'guide_account' => $guideAccount + ]; + + return $this->httpPostJson('cgi-bin/guide/getgroupbyguide', $params); + } + + /** + * 删除指定顾问分组 + * @param int $groupId + * @return array|Collection|object|ResponseInterface|string + * @throws InvalidConfigException + */ + public function deleteGroup(int $groupId) + { + $params = [ + 'group_id' => $groupId + ]; + + return $this->httpPostJson('cgi-bin/guide/delguidegroup', $params); + } + + /** + * 为顾问分配客户 + * @param string $guideAccount + * @param string $guideOpenid + * @param array $buyerList + * @return array|Collection|object|ResponseInterface|string + * @throws InvalidConfigException + */ + public function createBuyerRelation(string $guideAccount, string $guideOpenid, array $buyerList) + { + $params = [ + 'buyer_list' => $buyerList + ]; + $params = $this->selectAccountAndOpenid($params, $guideAccount, $guideOpenid); + + return $this->httpPostJson('cgi-bin/guide/addguidebuyerrelation', $params); + } + + /** + * 为顾问移除客户 + * @param string $guideAccount + * @param string $guideOpenid + * @param array $openidList + * @return array|Collection|object|ResponseInterface|string + * @throws InvalidConfigException + */ + public function deleteBuyerRelation(string $guideAccount, string $guideOpenid, array $openidList) + { + $params = [ + 'openid_list' => $openidList + ]; + $params = $this->selectAccountAndOpenid($params, $guideAccount, $guideOpenid); + + return $this->httpPostJson('cgi-bin/guide/delguidebuyerrelation', $params); + } + + /** + * 获取顾问的客户列表 + * @param string $guideAccount + * @param string $guideOpenid + * @param int $page + * @param int $num + * @return array|Collection|object|ResponseInterface|string + * @throws InvalidConfigException + */ + public function getBuyerRelations(string $guideAccount, string $guideOpenid, int $page, int $num) + { + $params = [ + 'page' => $page, + 'num' => $num + ]; + $params = $this->selectAccountAndOpenid($params, $guideAccount, $guideOpenid); + + return $this->httpPostJson('cgi-bin/guide/getguidebuyerrelationlist', $params); + } + + /** + * 为客户更换顾问 + * @param string $oldGuideTarget + * @param string $newGuideTarget + * @param array $openidList + * @param bool $useTargetOpenid true使用OPENID,false使用微信号 + * @return array|Collection|object|ResponseInterface|string + * @throws InvalidConfigException + */ + public function rebindBuyerGuide(string $oldGuideTarget, string $newGuideTarget, array $openidList, bool $useTargetOpenid = true) + { + $params = [ + 'openid_list' => $openidList + ]; + if ($useTargetOpenid) { + $params['old_guide_openid'] = $oldGuideTarget; + $params['new_guide_openid'] = $newGuideTarget; + } else { + $params['old_guide_account'] = $oldGuideTarget; + $params['new_guide_account'] = $newGuideTarget; + } + + return $this->httpPostJson('cgi-bin/guide/rebindguideacctforbuyer', $params); + } + + /** + * 修改客户昵称 + * @param string $guideAccount + * @param string $guideOpenid + * @param string $openid + * @param string $nickname + * @return array|Collection|object|ResponseInterface|string + * @throws InvalidConfigException + */ + public function updateBuyerRelation(string $guideAccount, string $guideOpenid, string $openid, string $nickname) + { + $params = [ + 'openid' => $openid, + 'buyer_nickname' => $nickname + ]; + $params = $this->selectAccountAndOpenid($params, $guideAccount, $guideOpenid); + + return $this->httpPostJson('cgi-bin/guide/updateguidebuyerrelation', $params); + } + + /** + * 查询客户所属顾问 + * @param string $openid + * @return array|Collection|object|ResponseInterface|string + * @throws InvalidConfigException + */ + public function getBuyerRelation(string $openid) + { + $params = [ + 'openid' => $openid + ]; + + return $this->httpPostJson('cgi-bin/guide/getguidebuyerrelationbybuyer', $params); + } + + /** + * 查询指定顾问和客户的关系 + * @param string $guideAccount + * @param string $guideOpenid + * @param string $openid + * @return array|Collection|object|ResponseInterface|string + * @throws InvalidConfigException + */ + public function getBuyerRelationByGuide(string $guideAccount, string $guideOpenid, string $openid) + { + $params = [ + 'openid' => $openid + ]; + $params = $this->selectAccountAndOpenid($params, $guideAccount, $guideOpenid); + + return $this->httpPostJson('cgi-bin/guide/getguidebuyerrelation', $params); + } + + /** + * 新建可查询的标签类型 + * @param string $tagName + * @param array $tagValues + * @return array|Collection|object|ResponseInterface|string + * @throws InvalidConfigException + */ + public function newTagOption(string $tagName, array $tagValues) + { + $params = [ + 'tag_name' => $tagName, + 'tag_values' => $tagValues + ]; + + return $this->httpPostJson('cgi-bin/guide/newguidetagoption', $params); + } + + /** + * 删除指定标签类型 + * @param string $tagName + * @return array|Collection|object|ResponseInterface|string + * @throws InvalidConfigException + */ + public function deleteTagOption(string $tagName) + { + $params = [ + 'tag_name' => $tagName + ]; + + return $this->httpPostJson('cgi-bin/guide/delguidetagoption', $params); + } + + /** + * 为标签添加可选值 + * @param string $tagName + * @param array $tagValues + * @return array|Collection|object|ResponseInterface|string + * @throws InvalidConfigException + */ + public function createTagOption(string $tagName, array $tagValues) + { + $params = [ + 'tag_name' => $tagName, + 'tag_values' => $tagValues + ]; + + return $this->httpPostJson('cgi-bin/guide/addguidetagoption', $params); + } + + /** + * 获取标签和可选值 + * @return array|Collection|object|ResponseInterface|string + * @throws InvalidConfigException + */ + public function getTagOption() + { + return $this->httpPostJson('cgi-bin/guide/getguidetagoption', array()); + } + + /** + * 为客户设置标签 + * @param string $guideAccount + * @param string $guideOpenid + * @param array $openidList + * @param string $tagValue + * @return array|Collection|object|ResponseInterface|string + * @throws InvalidConfigException + */ + public function setBuyersTag(string $guideAccount, string $guideOpenid, array $openidList, string $tagValue) + { + $params = [ + 'tag_value' => $tagValue, + 'openid_list' => $openidList + ]; + $params = $this->selectAccountAndOpenid($params, $guideAccount, $guideOpenid); + + return $this->httpPostJson('cgi-bin/guide/addguidebuyertag', $params); + } + + /** + * 查询客户标签 + * @param string $guideAccount + * @param string $guideOpenid + * @param string $openid + * @return array|Collection|object|ResponseInterface|string + * @throws InvalidConfigException + */ + public function getBuyerTags(string $guideAccount, string $guideOpenid, string $openid) + { + $params = [ + 'openid' => $openid + ]; + $params = $this->selectAccountAndOpenid($params, $guideAccount, $guideOpenid); + + return $this->httpPostJson('cgi-bin/guide/getguidebuyertag', $params); + } + + /** + * 根据标签值筛选粉丝 + * @param string $guideAccount + * @param string $guideOpenid + * @param int $pushCount + * @param array $tagValues + * @return array|Collection|object|ResponseInterface|string + * @throws InvalidConfigException + */ + public function getBuyerByTag(string $guideAccount, string $guideOpenid, int $pushCount = 0, array $tagValues = array()) + { + $params = $this->selectAccountAndOpenid(array(), $guideAccount, $guideOpenid); + if ($pushCount > 0) { + $params['push_count'] = $pushCount; + } + if (count($tagValues) > 0) { + $params['tag_values'] = $tagValues; + } + + return $this->httpPostJson('cgi-bin/guide/queryguidebuyerbytag', $params); + } + + /** + * 删除客户标签 + * @param string $guideAccount + * @param string $guideOpenid + * @param string $tagValue + * @param array $openidList + * @return array|Collection|object|ResponseInterface|string + * @throws InvalidConfigException + */ + public function deleteBuyerTag(string $guideAccount, string $guideOpenid, string $tagValue, array $openidList) + { + $params = [ + 'tag_value' => $tagValue + ]; + $params = $this->selectAccountAndOpenid($params, $guideAccount, $guideOpenid); + if (count($openidList) > 0) { + $params['openid_list'] = $openidList; + } + + return $this->httpPostJson('cgi-bin/guide/delguidebuyertag', $params); + } + + /** + * 设置自定义客户信息 + * @param string $guideAccount + * @param string $guideOpenid + * @param string $openid + * @param array $displayTagList + * @return array|Collection|object|ResponseInterface|string + * @throws InvalidConfigException + */ + public function setBuyerDisplayTags(string $guideAccount, string $guideOpenid, string $openid, array $displayTagList) + { + $params = [ + 'openid' => $openid, + 'display_tag_list' => $displayTagList + ]; + $params = $this->selectAccountAndOpenid($params, $guideAccount, $guideOpenid); + + return $this->httpPostJson('cgi-bin/guide/addguidebuyerdisplaytag', $params); + } + + /** + * 获取自定义客户信息 + * @param string $guideAccount + * @param string $guideOpenid + * @param string $openid + * @return array|Collection|object|ResponseInterface|string + * @throws InvalidConfigException + */ + public function getBuyerDisplayTags(string $guideAccount, string $guideOpenid, string $openid) + { + $params = [ + 'openid' => $openid + ]; + $params = $this->selectAccountAndOpenid($params, $guideAccount, $guideOpenid); + + return $this->httpPostJson('cgi-bin/guide/getguidebuyerdisplaytag', $params); + } + + /** + * 添加小程序卡片素材 + * @param string $mediaId + * @param string $title + * @param string $path + * @param string $appid + * @param int $type + * @return array|Collection|object|ResponseInterface|string + * @throws InvalidConfigException + */ + public function createCardMaterial(string $mediaId, string $title, string $path, string $appid, int $type = 0) + { + $params = [ + 'media_id' => $mediaId, + 'type' => $type, + 'title' => $title, + 'path' => $path, + 'appid' => $appid + ]; + + return $this->httpPostJson('cgi-bin/guide/setguidecardmaterial', $params); + } + + /** + * 查询小程序卡片素材 + * @param int $type + * @return array|Collection|object|ResponseInterface|string + * @throws InvalidConfigException + */ + public function getCardMaterial(int $type = 0) + { + $params = [ + 'type' => $type + ]; + + return $this->httpPostJson('cgi-bin/guide/getguidecardmaterial', $params); + } + + /** + * 删除小程序卡片素材 + * @param string $title + * @param string $path + * @param string $appid + * @param int $type + * @return array|Collection|object|ResponseInterface|string + * @throws InvalidConfigException + */ + public function deleteCardMaterial(string $title, string $path, string $appid, int $type = 0) + { + $params = [ + 'type' => $type, + 'title' => $title, + 'path' => $path, + 'appid' => $appid + ]; + + return $this->httpPostJson('cgi-bin/guide/delguidecardmaterial', $params); + } + + /** + * 添加图片素材 + * @param string $mediaId + * @param int $type + * @return array|Collection|object|ResponseInterface|string + * @throws InvalidConfigException + */ + public function createImageMaterial(string $mediaId, int $type = 0) + { + $params = [ + 'media_id' => $mediaId, + 'type' => $type + ]; + + return $this->httpPostJson('cgi-bin/guide/setguideimagematerial', $params); + } + + /** + * 查询图片素材 + * @param int $type + * @param int $start + * @param int $num + * @return array|Collection|object|ResponseInterface|string + * @throws InvalidConfigException + */ + public function getImageMaterial(int $type, int $start, int $num) + { + $params = [ + 'type' => $type, + 'start' => $start, + 'num' => $num + ]; + + return $this->httpPostJson('cgi-bin/guide/getguideimagematerial', $params); + } + + /** + * 删除图片素材 + * @param int $type + * @param string $picUrl + * @return array|Collection|object|ResponseInterface|string + * @throws InvalidConfigException + */ + public function deleteImageMaterial(int $type, string $picUrl) + { + $params = [ + 'type' => $type, + 'picurl' => $picUrl + ]; + + return $this->httpPostJson('cgi-bin/guide/delguideimagematerial', $params); + } + + /** + * 添加文字素材 + * @param int $type + * @param string $word + * @return array|Collection|object|ResponseInterface|string + * @throws InvalidConfigException + */ + public function createWordMaterial(int $type, string $word) + { + $params = [ + 'type' => $type, + 'word' => $word + ]; + + return $this->httpPostJson('cgi-bin/guide/setguidewordmaterial', $params); + } + + /** + * 查询文字素材 + * @param int $type + * @param int $start + * @param int $num + * @return array|Collection|object|ResponseInterface|string + * @throws InvalidConfigException + */ + public function getWordMaterial(int $type, int $start, int $num) + { + $params = [ + 'type' => $type, + 'start' => $start, + 'num' => $num + ]; + + return $this->httpPostJson('cgi-bin/guide/getguidewordmaterial', $params); + } + + /** + * 删除文字素材 + * @param int $type + * @param string $word + * @return array|Collection|object|ResponseInterface|string + * @throws InvalidConfigException + */ + public function deleteWordMaterial(int $type, string $word) + { + $params = [ + 'type' => $type, + 'word' => $word + ]; + + return $this->httpPostJson('cgi-bin/guide/delguidewordmaterial', $params); + } + + /** + * 添加群发任务,为指定顾问添加群发任务 + * @param string $guideAccount + * @param string $guideOpenid + * @param string $taskName + * @param string $taskRemark + * @param int $pushTime + * @param array $openidArray + * @param array $materialArray + * @return array|Collection|object|ResponseInterface|string + * @throws InvalidConfigException + */ + public function createMasSendJob(string $guideAccount, string $guideOpenid, string $taskName, string $taskRemark, int $pushTime, array $openidArray, array $materialArray) + { + $params = [ + 'task_name' => $taskName, + 'push_time' => $pushTime, + 'openid' => $openidArray, + 'material' => $materialArray + ]; + if (!empty($taskRemark)) { + $params['task_remark'] = $taskRemark; + } + $params = $this->selectAccountAndOpenid($params, $guideAccount, $guideOpenid); + + return $this->httpPostJson('cgi-bin/guide/addguidemassendjob', $params); + } + + /** + * 获取群发任务列表 + * @param string $guideAccount + * @param string $guideOpenid + * @param array $taskStatus + * @param int $offset + * @param int $limit + * @return array|Collection|object|ResponseInterface|string + * @throws InvalidConfigException + */ + public function getMasSendJobs(string $guideAccount, string $guideOpenid, array $taskStatus = [], int $offset = 0, int $limit = 50) + { + $params = $this->selectAccountAndOpenid(array(), $guideAccount, $guideOpenid); + if (!empty($taskStatus)) { + $params['task_status'] = $taskStatus; + } + if ($offset > 0) { + $params['offset'] = $offset; + } + if ($limit != 50) { + $params['limit'] = $limit; + } + + return $this->httpPostJson('cgi-bin/guide/getguidemassendjoblist', $params); + } + + /** + * 获取指定群发任务信息 + * @param string $taskId + * @return array|Collection|object|ResponseInterface|string + * @throws InvalidConfigException + */ + public function getMasSendJob(string $taskId) + { + $params = [ + 'task_id' => $taskId + ]; + + return $this->httpPostJson('cgi-bin/guide/getguidemassendjob', $params); + } + + /** + * 修改群发任务 + * @param string $taskId + * @param string $taskName + * @param string $taskRemark + * @param int $pushTime + * @param array $openidArray + * @param array $materialArray + * @return array|Collection|object|ResponseInterface|string + * @throws InvalidConfigException + */ + public function updateMasSendJob(string $taskId, string $taskName, string $taskRemark, int $pushTime, array $openidArray, array $materialArray) + { + $params = [ + 'task_id' => $taskId + ]; + if (!empty($taskName)) { + $params['task_name'] = $taskName; + } + if (!empty($taskRemark)) { + $params['task_remark'] = $taskRemark; + } + if (!empty($pushTime)) { + $params['push_time'] = $pushTime; + } + if (!empty($openidArray)) { + $params['openid'] = $openidArray; + } + if (!empty($materialArray)) { + $params['material'] = $materialArray; + } + + return $this->httpPostJson('cgi-bin/guide/updateguidemassendjob', $params); + } + + /** + * 取消群发任务 + * @param string $taskId + * @return array|Collection|object|ResponseInterface|string + * @throws InvalidConfigException + */ + public function cancelMasSendJob(string $taskId) + { + $params = [ + 'task_id' => $taskId + ]; + + return $this->httpPostJson('cgi-bin/guide/cancelguidemassendjob', $params); + } +} diff --git a/vendor/overtrue/wechat/src/OfficialAccount/Guide/ServiceProvider.php b/vendor/overtrue/wechat/src/OfficialAccount/Guide/ServiceProvider.php new file mode 100644 index 0000000..46ebbca --- /dev/null +++ b/vendor/overtrue/wechat/src/OfficialAccount/Guide/ServiceProvider.php @@ -0,0 +1,33 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OfficialAccount\Guide; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +/** + * Class ServiceProvider. + * + * @author millsguo + */ +class ServiceProvider implements ServiceProviderInterface +{ + /** + * {@inheritdoc}. + */ + public function register(Container $app) + { + $app['guide'] = function ($app) { + return new Client($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/OfficialAccount/Material/Client.php b/vendor/overtrue/wechat/src/OfficialAccount/Material/Client.php new file mode 100644 index 0000000..592689c --- /dev/null +++ b/vendor/overtrue/wechat/src/OfficialAccount/Material/Client.php @@ -0,0 +1,303 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OfficialAccount\Material; + +use EasyWeChat\Kernel\BaseClient; +use EasyWeChat\Kernel\Exceptions\InvalidArgumentException; +use EasyWeChat\Kernel\Http\StreamResponse; +use EasyWeChat\Kernel\Messages\Article; + +/** + * Class Client. + * + * @author overtrue + */ +class Client extends BaseClient +{ + /** + * Allow media type. + * + * @var array + */ + protected $allowTypes = ['image', 'voice', 'video', 'thumb', 'news_image']; + + /** + * Upload image. + * + * @param string $path + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function uploadImage(string $path) + { + return $this->upload('image', $path); + } + + /** + * Upload voice. + * + * @param string $path + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function uploadVoice(string $path) + { + return $this->upload('voice', $path); + } + + /** + * Upload thumb. + * + * @param string $path + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function uploadThumb(string $path) + { + return $this->upload('thumb', $path); + } + + /** + * Upload video. + * + * @param string $path + * @param string $title + * @param string $description + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function uploadVideo(string $path, string $title, string $description) + { + $params = [ + 'description' => json_encode( + [ + 'title' => $title, + 'introduction' => $description, + ], + JSON_UNESCAPED_UNICODE + ), + ]; + + return $this->upload('video', $path, $params); + } + + /** + * Upload articles. + * + * @param array|Article $articles + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function uploadArticle($articles) + { + if ($articles instanceof Article || !empty($articles['title'])) { + $articles = [$articles]; + } + + $params = ['articles' => array_map(function ($article) { + if ($article instanceof Article) { + return $article->transformForJsonRequestWithoutType(); + } + + return $article; + }, $articles)]; + + return $this->httpPostJson('cgi-bin/material/add_news', $params); + } + + /** + * Update article. + * + * @param string $mediaId + * @param array|Article $article + * @param int $index + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function updateArticle(string $mediaId, $article, int $index = 0) + { + if ($article instanceof Article) { + $article = $article->transformForJsonRequestWithoutType(); + } + + $params = [ + 'media_id' => $mediaId, + 'index' => $index, + 'articles' => isset($article['title']) ? $article : (isset($article[$index]) ? $article[$index] : []), + ]; + + return $this->httpPostJson('cgi-bin/material/update_news', $params); + } + + /** + * Upload image for article. + * + * @param string $path + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function uploadArticleImage(string $path) + { + return $this->upload('news_image', $path); + } + + /** + * Fetch material. + * + * @param string $mediaId + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function get(string $mediaId) + { + $response = $this->requestRaw('cgi-bin/material/get_material', 'POST', ['json' => ['media_id' => $mediaId]]); + + if (false !== stripos($response->getHeaderLine('Content-disposition'), 'attachment')) { + return StreamResponse::buildFromPsrResponse($response); + } + + return $this->castResponseToType($response, $this->app['config']->get('response_type')); + } + + /** + * Delete material by media ID. + * + * @param string $mediaId + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function delete(string $mediaId) + { + return $this->httpPostJson('cgi-bin/material/del_material', ['media_id' => $mediaId]); + } + + /** + * List materials. + * + * example: + * + * { + * "total_count": TOTAL_COUNT, + * "item_count": ITEM_COUNT, + * "item": [{ + * "media_id": MEDIA_ID, + * "name": NAME, + * "update_time": UPDATE_TIME + * }, + * // more... + * ] + * } + * + * @param string $type + * @param int $offset + * @param int $count + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function list(string $type, int $offset = 0, int $count = 20) + { + $params = [ + 'type' => $type, + 'offset' => $offset, + 'count' => $count, + ]; + + return $this->httpPostJson('cgi-bin/material/batchget_material', $params); + } + + /** + * Get stats of materials. + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function stats() + { + return $this->httpGet('cgi-bin/material/get_materialcount'); + } + + /** + * Upload material. + * + * @param string $type + * @param string $path + * @param array $form + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function upload(string $type, string $path, array $form = []) + { + if (!file_exists($path) || !is_readable($path)) { + throw new InvalidArgumentException(sprintf('File does not exist, or the file is unreadable: "%s"', $path)); + } + + $form['type'] = $type; + + return $this->httpUpload($this->getApiByType($type), ['media' => $path], $form); + } + + /** + * Get API by type. + * + * @param string $type + * + * @return string + */ + public function getApiByType(string $type) + { + switch ($type) { + case 'news_image': + return 'cgi-bin/media/uploadimg'; + default: + return 'cgi-bin/material/add_material'; + } + } +} diff --git a/vendor/overtrue/wechat/src/OfficialAccount/Material/ServiceProvider.php b/vendor/overtrue/wechat/src/OfficialAccount/Material/ServiceProvider.php new file mode 100644 index 0000000..089a8f8 --- /dev/null +++ b/vendor/overtrue/wechat/src/OfficialAccount/Material/ServiceProvider.php @@ -0,0 +1,44 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +/** + * ServiceProvider.php. + * + * This file is part of the wechat. + * + * (c) overtrue + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OfficialAccount\Material; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +/** + * Class ServiceProvider. + * + * @author overtrue + */ +class ServiceProvider implements ServiceProviderInterface +{ + /** + * {@inheritdoc}. + */ + public function register(Container $app) + { + $app['material'] = function ($app) { + return new Client($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/OfficialAccount/Menu/Client.php b/vendor/overtrue/wechat/src/OfficialAccount/Menu/Client.php new file mode 100644 index 0000000..9c132c6 --- /dev/null +++ b/vendor/overtrue/wechat/src/OfficialAccount/Menu/Client.php @@ -0,0 +1,103 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OfficialAccount\Menu; + +use EasyWeChat\Kernel\BaseClient; + +/** + * Class Client. + * + * @author overtrue + */ +class Client extends BaseClient +{ + /** + * Get all menus. + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function list() + { + return $this->httpGet('cgi-bin/menu/get'); + } + + /** + * Get current menus. + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function current() + { + return $this->httpGet('cgi-bin/get_current_selfmenu_info'); + } + + /** + * Add menu. + * + * @param array $buttons + * @param array $matchRule + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function create(array $buttons, array $matchRule = []) + { + if (!empty($matchRule)) { + return $this->httpPostJson('cgi-bin/menu/addconditional', [ + 'button' => $buttons, + 'matchrule' => $matchRule, + ]); + } + + return $this->httpPostJson('cgi-bin/menu/create', ['button' => $buttons]); + } + + /** + * Destroy menu. + * + * @param int $menuId + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function delete(int $menuId = null) + { + if (is_null($menuId)) { + return $this->httpGet('cgi-bin/menu/delete'); + } + + return $this->httpPostJson('cgi-bin/menu/delconditional', ['menuid' => $menuId]); + } + + /** + * Test conditional menu. + * + * @param string $userId + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function match(string $userId) + { + return $this->httpPostJson('cgi-bin/menu/trymatch', ['user_id' => $userId]); + } +} diff --git a/vendor/overtrue/wechat/src/OfficialAccount/Menu/ServiceProvider.php b/vendor/overtrue/wechat/src/OfficialAccount/Menu/ServiceProvider.php new file mode 100644 index 0000000..e79b105 --- /dev/null +++ b/vendor/overtrue/wechat/src/OfficialAccount/Menu/ServiceProvider.php @@ -0,0 +1,33 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OfficialAccount\Menu; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +/** + * Class ServiceProvider. + * + * @author overtrue + */ +class ServiceProvider implements ServiceProviderInterface +{ + /** + * {@inheritdoc}. + */ + public function register(Container $app) + { + $app['menu'] = function ($app) { + return new Client($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/OfficialAccount/OAuth/ServiceProvider.php b/vendor/overtrue/wechat/src/OfficialAccount/OAuth/ServiceProvider.php new file mode 100644 index 0000000..c9588c4 --- /dev/null +++ b/vendor/overtrue/wechat/src/OfficialAccount/OAuth/ServiceProvider.php @@ -0,0 +1,75 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OfficialAccount\OAuth; + +use Overtrue\Socialite\SocialiteManager as Socialite; +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +/** + * Class ServiceProvider. + * + * @author overtrue + */ +class ServiceProvider implements ServiceProviderInterface +{ + /** + * {@inheritdoc}. + */ + public function register(Container $app) + { + $app['oauth'] = function ($app) { + $wechat = [ + 'wechat' => [ + 'client_id' => $app['config']['app_id'], + 'client_secret' => $app['config']['secret'], + 'redirect' => $this->prepareCallbackUrl($app), + ], + ]; + + if (!empty($app['config']['component_app_id'] && !empty($app['config']['component_app_token']))) { + $wechat['wechat']['component'] = [ + 'id' => $app['config']['component_app_id'], + 'token' => $app['config']['token'], + ] ; + } + + $socialite = (new Socialite($wechat))->create('wechat'); + + $scopes = (array)$app['config']->get('oauth.scopes', ['snsapi_userinfo']); + + if (!empty($scopes)) { + $socialite->scopes($scopes); + } + + return $socialite; + }; + } + + /** + * Prepare the OAuth callback url for wechat. + * + * @param Container $app + * + * @return string + */ + private function prepareCallbackUrl($app) + { + $callback = $app['config']->get('oauth.callback'); + if (0 === stripos($callback, 'http')) { + return $callback; + } + $baseUrl = $app['request']->getSchemeAndHttpHost(); + + return $baseUrl . '/' . ltrim($callback, '/'); + } +} diff --git a/vendor/overtrue/wechat/src/OfficialAccount/OCR/Client.php b/vendor/overtrue/wechat/src/OfficialAccount/OCR/Client.php new file mode 100644 index 0000000..57b5da5 --- /dev/null +++ b/vendor/overtrue/wechat/src/OfficialAccount/OCR/Client.php @@ -0,0 +1,149 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OfficialAccount\OCR; + +use EasyWeChat\Kernel\BaseClient; +use EasyWeChat\Kernel\Exceptions\InvalidArgumentException; + +/** + * Class Client. + * + * @author joyeekk + */ +class Client extends BaseClient +{ + /** + * Allow image parameter type. + * + * @var array + */ + protected $allowTypes = ['photo', 'scan']; + + /** + * ID card OCR. + * + * @param string $path + * @param string $type + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function idCard(string $path, string $type = 'photo') + { + if (!\in_array($type, $this->allowTypes, true)) { + throw new InvalidArgumentException(sprintf("Unsupported type: '%s'", $type)); + } + + return $this->httpPost('cv/ocr/idcard', [ + 'type' => $type, + 'img_url' => $path, + ]); + } + + /** + * Bank card OCR. + * + * @param string $path + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function bankCard(string $path) + { + return $this->httpPost('cv/ocr/bankcard', [ + 'img_url' => $path, + ]); + } + + /** + * Vehicle license OCR. + * + * @param string $path + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function vehicleLicense(string $path) + { + return $this->httpPost('cv/ocr/drivinglicense', [ + 'img_url' => $path, + ]); + } + + /** + * Driving OCR. + * + * @param string $path + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function driving(string $path) + { + return $this->httpPost('cv/ocr/driving', [ + 'img_url' => $path, + ]); + } + + /** + * Biz License OCR. + * + * @param string $path + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function bizLicense(string $path) + { + return $this->httpPost('cv/ocr/bizlicense', [ + 'img_url' => $path, + ]); + } + + /** + * Common OCR. + * + * @param string $path + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function common(string $path) + { + return $this->httpPost('cv/ocr/comm', [ + 'img_url' => $path, + ]); + } + + /** + * Plate Number OCR. + * + * @param string $path + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function plateNumber(string $path) + { + return $this->httpPost('cv/ocr/platenum', [ + 'img_url' => $path, + ]); + } +} diff --git a/vendor/overtrue/wechat/src/OfficialAccount/OCR/ServiceProvider.php b/vendor/overtrue/wechat/src/OfficialAccount/OCR/ServiceProvider.php new file mode 100644 index 0000000..1773079 --- /dev/null +++ b/vendor/overtrue/wechat/src/OfficialAccount/OCR/ServiceProvider.php @@ -0,0 +1,33 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OfficialAccount\OCR; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +/** + * Class ServiceProvider. + * + * @author joyeekk + */ +class ServiceProvider implements ServiceProviderInterface +{ + /** + * {@inheritdoc}. + */ + public function register(Container $app) + { + $app['ocr'] = function ($app) { + return new Client($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/OfficialAccount/POI/Client.php b/vendor/overtrue/wechat/src/OfficialAccount/POI/Client.php new file mode 100644 index 0000000..6a8e570 --- /dev/null +++ b/vendor/overtrue/wechat/src/OfficialAccount/POI/Client.php @@ -0,0 +1,145 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OfficialAccount\POI; + +use EasyWeChat\Kernel\BaseClient; + +/** + * Class Client. + * + * @author overtrue + */ +class Client extends BaseClient +{ + /** + * Get POI supported categories. + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function categories() + { + return $this->httpGet('cgi-bin/poi/getwxcategory'); + } + + /** + * Get POI by ID. + * + * @param int $poiId + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function get(int $poiId) + { + return $this->httpPostJson('cgi-bin/poi/getpoi', ['poi_id' => $poiId]); + } + + /** + * List POI. + * + * @param int $offset + * @param int $limit + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function list(int $offset = 0, int $limit = 10) + { + $params = [ + 'begin' => $offset, + 'limit' => $limit, + ]; + + return $this->httpPostJson('cgi-bin/poi/getpoilist', $params); + } + + /** + * Create a POI. + * + * @param array $baseInfo + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function create(array $baseInfo) + { + $params = [ + 'business' => [ + 'base_info' => $baseInfo, + ], + ]; + + return $this->httpPostJson('cgi-bin/poi/addpoi', $params); + } + + /** + * @param array $databaseInfo + * + * @return int + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + */ + public function createAndGetId(array $databaseInfo) + { + /** @var array $response */ + $response = $this->detectAndCastResponseToType($this->create($databaseInfo), 'array'); + + return $response['poi_id']; + } + + /** + * Update a POI. + * + * @param int $poiId + * @param array $baseInfo + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function update(int $poiId, array $baseInfo) + { + $params = [ + 'business' => [ + 'base_info' => array_merge($baseInfo, ['poi_id' => $poiId]), + ], + ]; + + return $this->httpPostJson('cgi-bin/poi/updatepoi', $params); + } + + /** + * Delete a POI. + * + * @param int $poiId + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function delete(int $poiId) + { + return $this->httpPostJson('cgi-bin/poi/delpoi', ['poi_id' => $poiId]); + } +} diff --git a/vendor/overtrue/wechat/src/OfficialAccount/POI/ServiceProvider.php b/vendor/overtrue/wechat/src/OfficialAccount/POI/ServiceProvider.php new file mode 100644 index 0000000..156440b --- /dev/null +++ b/vendor/overtrue/wechat/src/OfficialAccount/POI/ServiceProvider.php @@ -0,0 +1,33 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OfficialAccount\POI; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +/** + * Class ServiceProvider. + * + * @author overtrue + */ +class ServiceProvider implements ServiceProviderInterface +{ + /** + * {@inheritdoc}. + */ + public function register(Container $app) + { + $app['poi'] = function ($app) { + return new Client($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/OfficialAccount/Semantic/Client.php b/vendor/overtrue/wechat/src/OfficialAccount/Semantic/Client.php new file mode 100644 index 0000000..e83792f --- /dev/null +++ b/vendor/overtrue/wechat/src/OfficialAccount/Semantic/Client.php @@ -0,0 +1,45 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OfficialAccount\Semantic; + +use EasyWeChat\Kernel\BaseClient; + +/** + * Class Client. + * + * @author overtrue + */ +class Client extends BaseClient +{ + /** + * Get the semantic content of giving string. + * + * @param string $keyword + * @param string $categories + * @param array $optional + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function query(string $keyword, string $categories, array $optional = []) + { + $params = [ + 'query' => $keyword, + 'category' => $categories, + 'appid' => $this->app['config']['app_id'], + ]; + + return $this->httpPostJson('semantic/semproxy/search', array_merge($params, $optional)); + } +} diff --git a/vendor/overtrue/wechat/src/OfficialAccount/Semantic/ServiceProvider.php b/vendor/overtrue/wechat/src/OfficialAccount/Semantic/ServiceProvider.php new file mode 100644 index 0000000..835b7fc --- /dev/null +++ b/vendor/overtrue/wechat/src/OfficialAccount/Semantic/ServiceProvider.php @@ -0,0 +1,31 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OfficialAccount\Semantic; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +/** + * Class ServiceProvider. + */ +class ServiceProvider implements ServiceProviderInterface +{ + /** + * {@inheritdoc}. + */ + public function register(Container $app) + { + $app['semantic'] = function ($app) { + return new Client($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/OfficialAccount/Server/Guard.php b/vendor/overtrue/wechat/src/OfficialAccount/Server/Guard.php new file mode 100644 index 0000000..c723847 --- /dev/null +++ b/vendor/overtrue/wechat/src/OfficialAccount/Server/Guard.php @@ -0,0 +1,30 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OfficialAccount\Server; + +use EasyWeChat\Kernel\ServerGuard; + +/** + * Class Guard. + * + * @author overtrue + */ +class Guard extends ServerGuard +{ + /** + * @return bool + */ + protected function shouldReturnRawResponse(): bool + { + return !is_null($this->app['request']->get('echostr')); + } +} diff --git a/vendor/overtrue/wechat/src/OfficialAccount/Server/Handlers/EchoStrHandler.php b/vendor/overtrue/wechat/src/OfficialAccount/Server/Handlers/EchoStrHandler.php new file mode 100644 index 0000000..e985692 --- /dev/null +++ b/vendor/overtrue/wechat/src/OfficialAccount/Server/Handlers/EchoStrHandler.php @@ -0,0 +1,53 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OfficialAccount\Server\Handlers; + +use EasyWeChat\Kernel\Contracts\EventHandlerInterface; +use EasyWeChat\Kernel\Decorators\FinallyResult; +use EasyWeChat\Kernel\ServiceContainer; + +/** + * Class EchoStrHandler. + * + * @author overtrue + */ +class EchoStrHandler implements EventHandlerInterface +{ + /** + * @var ServiceContainer + */ + protected $app; + + /** + * EchoStrHandler constructor. + * + * @param ServiceContainer $app + */ + public function __construct(ServiceContainer $app) + { + $this->app = $app; + } + + /** + * @param mixed $payload + * + * @return FinallyResult|null + */ + public function handle($payload = null) + { + if ($str = $this->app['request']->get('echostr')) { + return new FinallyResult($str); + } + + return null; + } +} diff --git a/vendor/overtrue/wechat/src/OfficialAccount/Server/ServiceProvider.php b/vendor/overtrue/wechat/src/OfficialAccount/Server/ServiceProvider.php new file mode 100644 index 0000000..0c6716b --- /dev/null +++ b/vendor/overtrue/wechat/src/OfficialAccount/Server/ServiceProvider.php @@ -0,0 +1,46 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OfficialAccount\Server; + +use EasyWeChat\Kernel\Encryptor; +use EasyWeChat\OfficialAccount\Server\Handlers\EchoStrHandler; +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +/** + * Class ServiceProvider. + * + * @author overtrue + */ +class ServiceProvider implements ServiceProviderInterface +{ + /** + * {@inheritdoc}. + */ + public function register(Container $app) + { + !isset($app['encryptor']) && $app['encryptor'] = function ($app) { + return new Encryptor( + $app['config']['app_id'], + $app['config']['token'], + $app['config']['aes_key'] + ); + }; + + !isset($app['server']) && $app['server'] = function ($app) { + $guard = new Guard($app); + $guard->push(new EchoStrHandler($app)); + + return $guard; + }; + } +} diff --git a/vendor/overtrue/wechat/src/OfficialAccount/ShakeAround/Client.php b/vendor/overtrue/wechat/src/OfficialAccount/ShakeAround/Client.php new file mode 100644 index 0000000..c401008 --- /dev/null +++ b/vendor/overtrue/wechat/src/OfficialAccount/ShakeAround/Client.php @@ -0,0 +1,81 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OfficialAccount\ShakeAround; + +use EasyWeChat\Kernel\BaseClient; + +/** + * Class Client. + * + * @author overtrue + */ +class Client extends BaseClient +{ + /** + * @param array $data + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function register($data) + { + return $this->httpPostJson('shakearound/account/register', $data); + } + + /** + * Get audit status. + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function status() + { + return $this->httpGet('shakearound/account/auditstatus'); + } + + /** + * Get shake info. + * + * @param string $ticket + * @param bool $needPoi + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function user(string $ticket, bool $needPoi = false) + { + $params = [ + 'ticket' => $ticket, + ]; + + if ($needPoi) { + $params['need_poi'] = 1; + } + + return $this->httpPostJson('shakearound/user/getshakeinfo', $params); + } + + /** + * @param string $ticket + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + */ + public function userWithPoi(string $ticket) + { + return $this->user($ticket, true); + } +} diff --git a/vendor/overtrue/wechat/src/OfficialAccount/ShakeAround/DeviceClient.php b/vendor/overtrue/wechat/src/OfficialAccount/ShakeAround/DeviceClient.php new file mode 100644 index 0000000..859a120 --- /dev/null +++ b/vendor/overtrue/wechat/src/OfficialAccount/ShakeAround/DeviceClient.php @@ -0,0 +1,190 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OfficialAccount\ShakeAround; + +use EasyWeChat\Kernel\BaseClient; + +/** + * Class DeviceClient. + * + * @author allen05ren + */ +class DeviceClient extends BaseClient +{ + /** + * @param array $data + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function apply(array $data) + { + return $this->httpPostJson('shakearound/device/applyid', $data); + } + + /** + * Get audit status. + * + * @param int $applyId + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function status(int $applyId) + { + $params = [ + 'apply_id' => $applyId, + ]; + + return $this->httpPostJson('shakearound/device/applystatus', $params); + } + + /** + * Update a device comment. + * + * @param array $deviceIdentifier + * @param string $comment + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function update(array $deviceIdentifier, string $comment) + { + $params = [ + 'device_identifier' => $deviceIdentifier, + 'comment' => $comment, + ]; + + return $this->httpPostJson('shakearound/device/update', $params); + } + + /** + * Bind location for device. + * + * @param array $deviceIdentifier + * @param int $poiId + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function bindPoi(array $deviceIdentifier, int $poiId) + { + $params = [ + 'device_identifier' => $deviceIdentifier, + 'poi_id' => $poiId, + ]; + + return $this->httpPostJson('shakearound/device/bindlocation', $params); + } + + /** + * @param array $deviceIdentifier + * @param int $poiId + * @param string $appId + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function bindThirdPoi(array $deviceIdentifier, int $poiId, string $appId) + { + $params = [ + 'device_identifier' => $deviceIdentifier, + 'poi_id' => $poiId, + 'type' => 2, + 'poi_appid' => $appId, + ]; + + return $this->httpPostJson('shakearound/device/bindlocation', $params); + } + + /** + * Fetch batch of devices by deviceIds. + * + * @param array $deviceIdentifiers + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + */ + public function listByIds(array $deviceIdentifiers) + { + $params = [ + 'type' => 1, + 'device_identifiers' => $deviceIdentifiers, + ]; + + return $this->search($params); + } + + /** + * Pagination to get batch of devices. + * + * @param int $lastId + * @param int $count + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + */ + public function list(int $lastId, int $count) + { + $params = [ + 'type' => 2, + 'last_seen' => $lastId, + 'count' => $count, + ]; + + return $this->search($params); + } + + /** + * Fetch batch of devices by applyId. + * + * @param int $applyId + * @param int $lastId + * @param int $count + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + */ + public function listByApplyId(int $applyId, int $lastId, int $count) + { + $params = [ + 'type' => 3, + 'apply_id' => $applyId, + 'last_seen' => $lastId, + 'count' => $count, + ]; + + return $this->search($params); + } + + /** + * Fetch batch of devices. + * + * @param array $params + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function search(array $params) + { + return $this->httpPostJson('shakearound/device/search', $params); + } +} diff --git a/vendor/overtrue/wechat/src/OfficialAccount/ShakeAround/GroupClient.php b/vendor/overtrue/wechat/src/OfficialAccount/ShakeAround/GroupClient.php new file mode 100644 index 0000000..9fd578d --- /dev/null +++ b/vendor/overtrue/wechat/src/OfficialAccount/ShakeAround/GroupClient.php @@ -0,0 +1,167 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OfficialAccount\ShakeAround; + +use EasyWeChat\Kernel\BaseClient; + +/** + * Class GroupClient. + * + * @author allen05ren + */ +class GroupClient extends BaseClient +{ + /** + * Add device group. + * + * @param string $name + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function create(string $name) + { + $params = [ + 'group_name' => $name, + ]; + + return $this->httpPostJson('shakearound/device/group/add', $params); + } + + /** + * Update a device group name. + * + * @param int $groupId + * @param string $name + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function update(int $groupId, string $name) + { + $params = [ + 'group_id' => $groupId, + 'group_name' => $name, + ]; + + return $this->httpPostJson('shakearound/device/group/update', $params); + } + + /** + * Delete device group. + * + * @param int $groupId + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function delete(int $groupId) + { + $params = [ + 'group_id' => $groupId, + ]; + + return $this->httpPostJson('shakearound/device/group/delete', $params); + } + + /** + * List all device groups. + * + * @param int $begin + * @param int $count + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function list(int $begin, int $count) + { + $params = [ + 'begin' => $begin, + 'count' => $count, + ]; + + return $this->httpPostJson('shakearound/device/group/getlist', $params); + } + + /** + * Get detail of a device group. + * + * @param int $groupId + * @param int $begin + * @param int $count + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function get(int $groupId, int $begin, int $count) + { + $params = [ + 'group_id' => $groupId, + 'begin' => $begin, + 'count' => $count, + ]; + + return $this->httpPostJson('shakearound/device/group/getdetail', $params); + } + + /** + * Add one or more devices to a device group. + * + * @param int $groupId + * @param array $deviceIdentifiers + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function addDevices(int $groupId, array $deviceIdentifiers) + { + $params = [ + 'group_id' => $groupId, + 'device_identifiers' => $deviceIdentifiers, + ]; + + return $this->httpPostJson('shakearound/device/group/adddevice', $params); + } + + /** + * Remove one or more devices from a device group. + * + * @param int $groupId + * @param array $deviceIdentifiers + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function removeDevices(int $groupId, array $deviceIdentifiers) + { + $params = [ + 'group_id' => $groupId, + 'device_identifiers' => $deviceIdentifiers, + ]; + + return $this->httpPostJson('shakearound/device/group/deletedevice', $params); + } +} diff --git a/vendor/overtrue/wechat/src/OfficialAccount/ShakeAround/MaterialClient.php b/vendor/overtrue/wechat/src/OfficialAccount/ShakeAround/MaterialClient.php new file mode 100644 index 0000000..edc40b2 --- /dev/null +++ b/vendor/overtrue/wechat/src/OfficialAccount/ShakeAround/MaterialClient.php @@ -0,0 +1,44 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OfficialAccount\ShakeAround; + +use EasyWeChat\Kernel\BaseClient; +use EasyWeChat\Kernel\Exceptions\InvalidArgumentException; + +/** + * Class MaterialClient. + * + * @author allen05ren + */ +class MaterialClient extends BaseClient +{ + /** + * Upload image material. + * + * @param string $path + * @param string $type + * + * @return string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function uploadImage(string $path, string $type = 'icon') + { + if (!file_exists($path) || !is_readable($path)) { + throw new InvalidArgumentException(sprintf('File does not exist, or the file is unreadable: "%s"', $path)); + } + + return $this->httpUpload('shakearound/material/add', ['media' => $path], [], ['type' => strtolower($type)]); + } +} diff --git a/vendor/overtrue/wechat/src/OfficialAccount/ShakeAround/PageClient.php b/vendor/overtrue/wechat/src/OfficialAccount/ShakeAround/PageClient.php new file mode 100644 index 0000000..73ba1ac --- /dev/null +++ b/vendor/overtrue/wechat/src/OfficialAccount/ShakeAround/PageClient.php @@ -0,0 +1,110 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OfficialAccount\ShakeAround; + +use EasyWeChat\Kernel\BaseClient; + +/** + * Class PageClient. + * + * @author allen05ren + */ +class PageClient extends BaseClient +{ + /** + * @param array $data + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function create(array $data) + { + return $this->httpPostJson('shakearound/page/add', $data); + } + + /** + * @param int $pageId + * @param array $data + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function update(int $pageId, array $data) + { + return $this->httpPostJson('shakearound/page/update', array_merge(['page_id' => $pageId], $data)); + } + + /** + * Fetch batch of pages by pageIds. + * + * @param array $pageIds + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function listByIds(array $pageIds) + { + $params = [ + 'type' => 1, + 'page_ids' => $pageIds, + ]; + + return $this->httpPostJson('shakearound/page/search', $params); + } + + /** + * Pagination to get batch of pages. + * + * @param int $begin + * @param int $count + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function list(int $begin, int $count) + { + $params = [ + 'type' => 2, + 'begin' => $begin, + 'count' => $count, + ]; + + return $this->httpPostJson('shakearound/page/search', $params); + } + + /** + * delete a page. + * + * @param int $pageId + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function delete(int $pageId) + { + $params = [ + 'page_id' => $pageId, + ]; + + return $this->httpPostJson('shakearound/page/delete', $params); + } +} diff --git a/vendor/overtrue/wechat/src/OfficialAccount/ShakeAround/RelationClient.php b/vendor/overtrue/wechat/src/OfficialAccount/ShakeAround/RelationClient.php new file mode 100644 index 0000000..de80911 --- /dev/null +++ b/vendor/overtrue/wechat/src/OfficialAccount/ShakeAround/RelationClient.php @@ -0,0 +1,87 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OfficialAccount\ShakeAround; + +use EasyWeChat\Kernel\BaseClient; + +/** + * Class RelationClient. + * + * @author allen05ren + */ +class RelationClient extends BaseClient +{ + /** + * Bind pages for device. + * + * @param array $deviceIdentifier + * @param array $pageIds + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function bindPages(array $deviceIdentifier, array $pageIds) + { + $params = [ + 'device_identifier' => $deviceIdentifier, + 'page_ids' => $pageIds, + ]; + + return $this->httpPostJson('shakearound/device/bindpage', $params); + } + + /** + * Get pageIds by deviceId. + * + * @param array $deviceIdentifier + * + * @return array|\EasyWeChat\Kernel\Support\Collection + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function listByDeviceId(array $deviceIdentifier) + { + $params = [ + 'type' => 1, + 'device_identifier' => $deviceIdentifier, + ]; + + return $this->httpPostJson('shakearound/relation/search', $params); + } + + /** + * Get devices by pageId. + * + * @param int $pageId + * @param int $begin + * @param int $count + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function listByPageId(int $pageId, int $begin, int $count) + { + $params = [ + 'type' => 2, + 'page_id' => $pageId, + 'begin' => $begin, + 'count' => $count, + ]; + + return $this->httpPostJson('shakearound/relation/search', $params); + } +} diff --git a/vendor/overtrue/wechat/src/OfficialAccount/ShakeAround/ServiceProvider.php b/vendor/overtrue/wechat/src/OfficialAccount/ShakeAround/ServiceProvider.php new file mode 100644 index 0000000..a13d2b0 --- /dev/null +++ b/vendor/overtrue/wechat/src/OfficialAccount/ShakeAround/ServiceProvider.php @@ -0,0 +1,57 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OfficialAccount\ShakeAround; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +/** + * Class ServiceProvider. + * + * @author allen05ren + */ +class ServiceProvider implements ServiceProviderInterface +{ + /** + * {@inheritdoc}. + */ + public function register(Container $app) + { + $app['shake_around'] = function ($app) { + return new ShakeAround($app); + }; + + $app['shake_around.device'] = function ($app) { + return new DeviceClient($app); + }; + + $app['shake_around.page'] = function ($app) { + return new PageClient($app); + }; + + $app['shake_around.material'] = function ($app) { + return new MaterialClient($app); + }; + + $app['shake_around.group'] = function ($app) { + return new GroupClient($app); + }; + + $app['shake_around.relation'] = function ($app) { + return new RelationClient($app); + }; + + $app['shake_around.stats'] = function ($app) { + return new StatsClient($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/OfficialAccount/ShakeAround/ShakeAround.php b/vendor/overtrue/wechat/src/OfficialAccount/ShakeAround/ShakeAround.php new file mode 100644 index 0000000..adcfcb4 --- /dev/null +++ b/vendor/overtrue/wechat/src/OfficialAccount/ShakeAround/ShakeAround.php @@ -0,0 +1,45 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OfficialAccount\ShakeAround; + +use EasyWeChat\Kernel\Exceptions\InvalidArgumentException; + +/** + * Class Card. + * + * @author overtrue + * + * @property \EasyWeChat\OfficialAccount\ShakeAround\DeviceClient $device + * @property \EasyWeChat\OfficialAccount\ShakeAround\GroupClient $group + * @property \EasyWeChat\OfficialAccount\ShakeAround\MaterialClient $material + * @property \EasyWeChat\OfficialAccount\ShakeAround\RelationClient $relation + * @property \EasyWeChat\OfficialAccount\ShakeAround\StatsClient $stats + * @property \EasyWeChat\OfficialAccount\ShakeAround\PageClient $page + */ +class ShakeAround extends Client +{ + /** + * @param string $property + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + */ + public function __get($property) + { + if (isset($this->app["shake_around.{$property}"])) { + return $this->app["shake_around.{$property}"]; + } + + throw new InvalidArgumentException(sprintf('No shake_around service named "%s".', $property)); + } +} diff --git a/vendor/overtrue/wechat/src/OfficialAccount/ShakeAround/StatsClient.php b/vendor/overtrue/wechat/src/OfficialAccount/ShakeAround/StatsClient.php new file mode 100644 index 0000000..a4b55eb --- /dev/null +++ b/vendor/overtrue/wechat/src/OfficialAccount/ShakeAround/StatsClient.php @@ -0,0 +1,110 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OfficialAccount\ShakeAround; + +use EasyWeChat\Kernel\BaseClient; + +/** + * Class StatsClient. + * + * @author allen05ren + */ +class StatsClient extends BaseClient +{ + /** + * Fetch statistics data by deviceId. + * + * @param array $deviceIdentifier + * @param int $beginTime (Unix timestamp) + * @param int $endTime (Unix timestamp) + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function deviceSummary(array $deviceIdentifier, int $beginTime, int $endTime) + { + $params = [ + 'device_identifier' => $deviceIdentifier, + 'begin_date' => $beginTime, + 'end_date' => $endTime, + ]; + + return $this->httpPostJson('shakearound/statistics/device', $params); + } + + /** + * Fetch all devices statistics data by date. + * + * @param int $timestamp + * @param int $pageIndex + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function devicesSummary(int $timestamp, int $pageIndex) + { + $params = [ + 'date' => $timestamp, + 'page_index' => $pageIndex, + ]; + + return $this->httpPostJson('shakearound/statistics/devicelist', $params); + } + + /** + * Fetch statistics data by pageId. + * + * @param int $pageId + * @param int $beginTime (Unix timestamp) + * @param int $endTime (Unix timestamp) + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function pageSummary(int $pageId, int $beginTime, int $endTime) + { + $params = [ + 'page_id' => $pageId, + 'begin_date' => $beginTime, + 'end_date' => $endTime, + ]; + + return $this->httpPostJson('shakearound/statistics/page', $params); + } + + /** + * Fetch all pages statistics data by date. + * + * @param int $timestamp + * @param int $pageIndex + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function pagesSummary(int $timestamp, int $pageIndex) + { + $params = [ + 'date' => $timestamp, + 'page_index' => $pageIndex, + ]; + + return $this->httpPostJson('shakearound/statistics/pagelist', $params); + } +} diff --git a/vendor/overtrue/wechat/src/OfficialAccount/Store/Client.php b/vendor/overtrue/wechat/src/OfficialAccount/Store/Client.php new file mode 100644 index 0000000..b873469 --- /dev/null +++ b/vendor/overtrue/wechat/src/OfficialAccount/Store/Client.php @@ -0,0 +1,209 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OfficialAccount\Store; + +use EasyWeChat\Kernel\BaseClient; + +/** + * Class Client. + * + * @author bigface + */ +class Client extends BaseClient +{ + /** + * Get WXA supported categories. + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function categories() + { + return $this->httpGet('wxa/get_merchant_category'); + } + + /** + * Get district from tencent map . + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function districts() + { + return $this->httpGet('wxa/get_district'); + } + + /** + * Search store from tencent map. + * + * @param int $districtId + * @param string $keyword + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function searchFromMap(int $districtId, string $keyword) + { + $params = [ + 'districtid' => $districtId, + 'keyword' => $keyword, + ]; + + return $this->httpPostJson('wxa/search_map_poi', $params); + } + + /** + * Get store check status. + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function getStatus() + { + return $this->httpGet('wxa/get_merchant_audit_info'); + } + + /** + * Create a merchant. + * + * @param array $baseInfo + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function createMerchant(array $baseInfo) + { + return $this->httpPostJson('wxa/apply_merchant', $baseInfo); + } + + /** + * Update a merchant. + * + * @param array $params + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function updateMerchant(array $params) + { + return $this->httpPostJson('wxa/modify_merchant', $params); + } + + /** + * Create a store from tencent map. + * + * @param array $baseInfo + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function createFromMap(array $baseInfo) + { + return $this->httpPostJson('wxa/create_map_poi', $baseInfo); + } + + /** + * Create a store. + * + * @param array $baseInfo + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function create(array $baseInfo) + { + return $this->httpPostJson('wxa/add_store', $baseInfo); + } + + /** + * Update a store. + * + * @param int $poiId + * @param array $baseInfo + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function update(int $poiId, array $baseInfo) + { + $params = array_merge($baseInfo, ['poi_id' => $poiId]); + + return $this->httpPostJson('wxa/update_store', $params); + } + + /** + * Get store by ID. + * + * @param int $poiId + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function get(int $poiId) + { + return $this->httpPostJson('wxa/get_store_info', ['poi_id' => $poiId]); + } + + /** + * List store. + * + * @param int $offset + * @param int $limit + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function list(int $offset = 0, int $limit = 10) + { + $params = [ + 'offset' => $offset, + 'limit' => $limit, + ]; + + return $this->httpPostJson('wxa/get_store_list', $params); + } + + /** + * Delete a store. + * + * @param int $poiId + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function delete(int $poiId) + { + return $this->httpPostJson('wxa/del_store', ['poi_id' => $poiId]); + } +} diff --git a/vendor/overtrue/wechat/src/OfficialAccount/Store/ServiceProvider.php b/vendor/overtrue/wechat/src/OfficialAccount/Store/ServiceProvider.php new file mode 100644 index 0000000..f5c48d7 --- /dev/null +++ b/vendor/overtrue/wechat/src/OfficialAccount/Store/ServiceProvider.php @@ -0,0 +1,33 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OfficialAccount\Store; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +/** + * Class ServiceProvider. + * + * @author bigface + */ +class ServiceProvider implements ServiceProviderInterface +{ + /** + * {@inheritdoc}. + */ + public function register(Container $app) + { + $app['store'] = function ($app) { + return new Client($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/OfficialAccount/SubscribeMessage/Client.php b/vendor/overtrue/wechat/src/OfficialAccount/SubscribeMessage/Client.php new file mode 100644 index 0000000..f303fc4 --- /dev/null +++ b/vendor/overtrue/wechat/src/OfficialAccount/SubscribeMessage/Client.php @@ -0,0 +1,189 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OfficialAccount\SubscribeMessage; + +use EasyWeChat\Kernel\BaseClient; +use EasyWeChat\Kernel\Exceptions\InvalidArgumentException; +use ReflectionClass; + +/** + * Class Client. + * + * @author tegic + */ +class Client extends BaseClient +{ + protected $message = [ + 'touser' => '', + 'template_id' => '', + 'page' => '', + 'miniprogram' => '', + 'data' => [], + ]; + + /** + * {@inheritdoc}. + */ + protected $required = ['touser', 'template_id', 'data']; + + /** + * Combine templates and add them to your personal template library under your account. + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function addTemplate(string $tid, array $kidList, string $sceneDesc = null) + { + $sceneDesc = $sceneDesc ?? ''; + $data = \compact('tid', 'kidList', 'sceneDesc'); + + return $this->httpPost('wxaapi/newtmpl/addtemplate', $data); + } + + /** + * Delete personal template under account. + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function deleteTemplate(string $id) + { + return $this->httpPost('wxaapi/newtmpl/deltemplate', ['priTmplId' => $id]); + } + + /** + * Get the category of the applet account. + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function getCategory() + { + return $this->httpGet('wxaapi/newtmpl/getcategory'); + } + + /** + * Get keyword list under template title. + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function getTemplateKeywords(string $tid) + { + return $this->httpGet('wxaapi/newtmpl/getpubtemplatekeywords', compact('tid')); + } + + /** + * Get the title of the public template under the category to which the account belongs. + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function getTemplateTitles(array $ids, int $start = 0, int $limit = 30) + { + $ids = \implode(',', $ids); + $query = \compact('ids', 'start', 'limit'); + + return $this->httpGet('wxaapi/newtmpl/getpubtemplatetitles', $query); + } + + /** + * Get list of personal templates under the current account. + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function getTemplates() + { + return $this->httpGet('wxaapi/newtmpl/gettemplate'); + } + + /** + * Send a subscribe message. + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function send(array $data = []) + { + $params = $this->formatMessage($data); + + $this->restoreMessage(); + + return $this->httpPostJson('cgi-bin/message/subscribe/bizsend', $params); + } + + /** + * @return array + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + */ + protected function formatMessage(array $data = []) + { + $params = array_merge($this->message, $data); + + foreach ($params as $key => $value) { + if (in_array($key, $this->required, true) && empty($value) && empty($this->message[$key])) { + throw new InvalidArgumentException(sprintf('Attribute "%s" can not be empty!', $key)); + } + + $params[$key] = empty($value) ? $this->message[$key] : $value; + } + + foreach ($params['data'] as $key => $value) { + if (is_array($value)) { + if (\array_key_exists('value', $value)) { + $params['data'][$key] = ['value' => $value['value']]; + + continue; + } + + if (count($value) >= 1) { + $value = [ + 'value' => $value[0], +// 'color' => $value[1],// color unsupported + ]; + } + } else { + $value = [ + 'value' => strval($value), + ]; + } + + $params['data'][$key] = $value; + } + + return $params; + } + + /** + * Restore message. + */ + protected function restoreMessage() + { + $this->message = (new ReflectionClass(static::class))->getDefaultProperties()['message']; + } +} diff --git a/vendor/overtrue/wechat/src/OfficialAccount/SubscribeMessage/ServiceProvider.php b/vendor/overtrue/wechat/src/OfficialAccount/SubscribeMessage/ServiceProvider.php new file mode 100644 index 0000000..da0eef9 --- /dev/null +++ b/vendor/overtrue/wechat/src/OfficialAccount/SubscribeMessage/ServiceProvider.php @@ -0,0 +1,27 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OfficialAccount\SubscribeMessage; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +class ServiceProvider implements ServiceProviderInterface +{ + /** + * {@inheritdoc}. + */ + public function register(Container $app) + { + $app['subscribe_message'] = function ($app) { + return new Client($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/OfficialAccount/TemplateMessage/Client.php b/vendor/overtrue/wechat/src/OfficialAccount/TemplateMessage/Client.php new file mode 100644 index 0000000..475be1b --- /dev/null +++ b/vendor/overtrue/wechat/src/OfficialAccount/TemplateMessage/Client.php @@ -0,0 +1,234 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OfficialAccount\TemplateMessage; + +use EasyWeChat\Kernel\BaseClient; +use EasyWeChat\Kernel\Exceptions\InvalidArgumentException; +use ReflectionClass; + +/** + * Class Client. + * + * @author overtrue + */ +class Client extends BaseClient +{ + public const API_SEND = 'cgi-bin/message/template/send'; + + /** + * Attributes. + * + * @var array + */ + protected $message = [ + 'touser' => '', + 'template_id' => '', + 'url' => '', + 'data' => [], + 'miniprogram' => '', + ]; + + /** + * Required attributes. + * + * @var array + */ + protected $required = ['touser', 'template_id']; + + /** + * Set industry. + * + * @param int $industryOne + * @param int $industryTwo + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function setIndustry($industryOne, $industryTwo) + { + $params = [ + 'industry_id1' => $industryOne, + 'industry_id2' => $industryTwo, + ]; + + return $this->httpPostJson('cgi-bin/template/api_set_industry', $params); + } + + /** + * Get industry. + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function getIndustry() + { + return $this->httpPostJson('cgi-bin/template/get_industry'); + } + + /** + * Add a template and get template ID. + * + * @param string $shortId + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function addTemplate($shortId) + { + $params = ['template_id_short' => $shortId]; + + return $this->httpPostJson('cgi-bin/template/api_add_template', $params); + } + + /** + * Get private templates. + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function getPrivateTemplates() + { + return $this->httpPostJson('cgi-bin/template/get_all_private_template'); + } + + /** + * Delete private template. + * + * @param string $templateId + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function deletePrivateTemplate($templateId) + { + $params = ['template_id' => $templateId]; + + return $this->httpPostJson('cgi-bin/template/del_private_template', $params); + } + + /** + * Send a template message. + * + * @param array $data + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function send(array $data = []) + { + $params = $this->formatMessage($data); + + $this->restoreMessage(); + + return $this->httpPostJson(static::API_SEND, $params); + } + + /** + * Send template-message for subscription. + * + * @param array $data + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function sendSubscription(array $data = []) + { + $params = $this->formatMessage($data); + + $this->restoreMessage(); + + return $this->httpPostJson('cgi-bin/message/template/subscribe', $params); + } + + /** + * @param array $data + * + * @return array + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + */ + protected function formatMessage(array $data = []) + { + $params = array_merge($this->message, $data); + + foreach ($params as $key => $value) { + if (in_array($key, $this->required, true) && empty($value) && empty($this->message[$key])) { + throw new InvalidArgumentException(sprintf('Attribute "%s" can not be empty!', $key)); + } + + $params[$key] = empty($value) ? $this->message[$key] : $value; + } + + $params['data'] = $this->formatData($params['data'] ?? []); + + return $params; + } + + /** + * @param array $data + * + * @return array + */ + protected function formatData(array $data) + { + $formatted = []; + + foreach ($data as $key => $value) { + if (is_array($value)) { + if (\array_key_exists('value', $value)) { + $formatted[$key] = $value; + + continue; + } + + if (count($value) >= 2) { + $value = [ + 'value' => $value[0], + 'color' => $value[1], + ]; + } + } else { + $value = [ + 'value' => strval($value), + ]; + } + + $formatted[$key] = $value; + } + + return $formatted; + } + + /** + * Restore message. + */ + protected function restoreMessage() + { + $this->message = (new ReflectionClass(static::class))->getDefaultProperties()['message']; + } +} diff --git a/vendor/overtrue/wechat/src/OfficialAccount/TemplateMessage/ServiceProvider.php b/vendor/overtrue/wechat/src/OfficialAccount/TemplateMessage/ServiceProvider.php new file mode 100644 index 0000000..98476fc --- /dev/null +++ b/vendor/overtrue/wechat/src/OfficialAccount/TemplateMessage/ServiceProvider.php @@ -0,0 +1,33 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OfficialAccount\TemplateMessage; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +/** + * Class ServiceProvider. + * + * @author overtrue + */ +class ServiceProvider implements ServiceProviderInterface +{ + /** + * {@inheritdoc}. + */ + public function register(Container $app) + { + $app['template_message'] = function ($app) { + return new Client($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/OfficialAccount/User/ServiceProvider.php b/vendor/overtrue/wechat/src/OfficialAccount/User/ServiceProvider.php new file mode 100644 index 0000000..c11d8b3 --- /dev/null +++ b/vendor/overtrue/wechat/src/OfficialAccount/User/ServiceProvider.php @@ -0,0 +1,35 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OfficialAccount\User; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +/** + * Class ServiceProvider. + */ +class ServiceProvider implements ServiceProviderInterface +{ + /** + * {@inheritdoc}. + */ + public function register(Container $app) + { + $app['user'] = function ($app) { + return new UserClient($app); + }; + + $app['user_tag'] = function ($app) { + return new TagClient($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/OfficialAccount/User/TagClient.php b/vendor/overtrue/wechat/src/OfficialAccount/User/TagClient.php new file mode 100644 index 0000000..d41e363 --- /dev/null +++ b/vendor/overtrue/wechat/src/OfficialAccount/User/TagClient.php @@ -0,0 +1,175 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OfficialAccount\User; + +use EasyWeChat\Kernel\BaseClient; + +/** + * Class TagClient. + * + * @author overtrue + */ +class TagClient extends BaseClient +{ + /** + * Create tag. + * + * @param string $name + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function create(string $name) + { + $params = [ + 'tag' => ['name' => $name], + ]; + + return $this->httpPostJson('cgi-bin/tags/create', $params); + } + + /** + * List all tags. + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function list() + { + return $this->httpGet('cgi-bin/tags/get'); + } + + /** + * Update a tag name. + * + * @param int $tagId + * @param string $name + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function update(int $tagId, string $name) + { + $params = [ + 'tag' => [ + 'id' => $tagId, + 'name' => $name, + ], + ]; + + return $this->httpPostJson('cgi-bin/tags/update', $params); + } + + /** + * Delete tag. + * + * @param int $tagId + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function delete(int $tagId) + { + $params = [ + 'tag' => ['id' => $tagId], + ]; + + return $this->httpPostJson('cgi-bin/tags/delete', $params); + } + + /** + * Get user tags. + * + * @param string $openid + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function userTags(string $openid) + { + $params = ['openid' => $openid]; + + return $this->httpPostJson('cgi-bin/tags/getidlist', $params); + } + + /** + * Get users from a tag. + * + * @param int $tagId + * @param string $nextOpenId + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function usersOfTag(int $tagId, string $nextOpenId = '') + { + $params = [ + 'tagid' => $tagId, + 'next_openid' => $nextOpenId, + ]; + + return $this->httpPostJson('cgi-bin/user/tag/get', $params); + } + + /** + * Batch tag users. + * + * @param array $openids + * @param int $tagId + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function tagUsers(array $openids, int $tagId) + { + $params = [ + 'openid_list' => $openids, + 'tagid' => $tagId, + ]; + + return $this->httpPostJson('cgi-bin/tags/members/batchtagging', $params); + } + + /** + * Untag users from a tag. + * + * @param array $openids + * @param int $tagId + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function untagUsers(array $openids, int $tagId) + { + $params = [ + 'openid_list' => $openids, + 'tagid' => $tagId, + ]; + + return $this->httpPostJson('cgi-bin/tags/members/batchuntagging', $params); + } +} diff --git a/vendor/overtrue/wechat/src/OfficialAccount/User/UserClient.php b/vendor/overtrue/wechat/src/OfficialAccount/User/UserClient.php new file mode 100644 index 0000000..6b9491f --- /dev/null +++ b/vendor/overtrue/wechat/src/OfficialAccount/User/UserClient.php @@ -0,0 +1,172 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OfficialAccount\User; + +use EasyWeChat\Kernel\BaseClient; + +/** + * Class UserClient. + * + * @author overtrue + */ +class UserClient extends BaseClient +{ + /** + * Fetch a user by open id. + * + * @param string $openid + * @param string $lang + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function get(string $openid, string $lang = 'zh_CN') + { + $params = [ + 'openid' => $openid, + 'lang' => $lang, + ]; + + return $this->httpGet('cgi-bin/user/info', $params); + } + + /** + * Batch get users. + * + * @param array $openids + * @param string $lang + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function select(array $openids, string $lang = 'zh_CN') + { + return $this->httpPostJson('cgi-bin/user/info/batchget', [ + 'user_list' => array_map(function ($openid) use ($lang) { + return [ + 'openid' => $openid, + 'lang' => $lang, + ]; + }, $openids), + ]); + } + + /** + * List users. + * + * @param string $nextOpenId + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function list(string $nextOpenId = null) + { + $params = ['next_openid' => $nextOpenId]; + + return $this->httpGet('cgi-bin/user/get', $params); + } + + /** + * Set user remark. + * + * @param string $openid + * @param string $remark + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function remark(string $openid, string $remark) + { + $params = [ + 'openid' => $openid, + 'remark' => $remark, + ]; + + return $this->httpPostJson('cgi-bin/user/info/updateremark', $params); + } + + /** + * Get black list. + * + * @param string|null $beginOpenid + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function blacklist(string $beginOpenid = null) + { + $params = ['begin_openid' => $beginOpenid]; + + return $this->httpPostJson('cgi-bin/tags/members/getblacklist', $params); + } + + /** + * Batch block user. + * + * @param array|string $openidList + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function block($openidList) + { + $params = ['openid_list' => (array) $openidList]; + + return $this->httpPostJson('cgi-bin/tags/members/batchblacklist', $params); + } + + /** + * Batch unblock user. + * + * @param array $openidList + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function unblock($openidList) + { + $params = ['openid_list' => (array) $openidList]; + + return $this->httpPostJson('cgi-bin/tags/members/batchunblacklist', $params); + } + + /** + * @param string $oldAppId + * @param array $openidList + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function changeOpenid(string $oldAppId, array $openidList) + { + $params = [ + 'from_appid' => $oldAppId, + 'openid_list' => $openidList, + ]; + + return $this->httpPostJson('cgi-bin/changeopenid', $params); + } +} diff --git a/vendor/overtrue/wechat/src/OfficialAccount/WiFi/CardClient.php b/vendor/overtrue/wechat/src/OfficialAccount/WiFi/CardClient.php new file mode 100644 index 0000000..76a4e6a --- /dev/null +++ b/vendor/overtrue/wechat/src/OfficialAccount/WiFi/CardClient.php @@ -0,0 +1,52 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OfficialAccount\WiFi; + +use EasyWeChat\Kernel\BaseClient; + +/** + * Class CardClient. + * + * @author her-cat + */ +class CardClient extends BaseClient +{ + /** + * Set shop card coupon delivery information. + * + * @param array $data + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function set(array $data) + { + return $this->httpPostJson('bizwifi/couponput/set', $data); + } + + /** + * Get shop card coupon delivery information. + * + * @param int $shopId + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function get(int $shopId = 0) + { + return $this->httpPostJson('bizwifi/couponput/get', ['shop_id' => $shopId]); + } +} diff --git a/vendor/overtrue/wechat/src/OfficialAccount/WiFi/Client.php b/vendor/overtrue/wechat/src/OfficialAccount/WiFi/Client.php new file mode 100644 index 0000000..076957d --- /dev/null +++ b/vendor/overtrue/wechat/src/OfficialAccount/WiFi/Client.php @@ -0,0 +1,98 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OfficialAccount\WiFi; + +use EasyWeChat\Kernel\BaseClient; + +/** + * Class Client. + * + * @author her-cat + */ +class Client extends BaseClient +{ + /** + * Get Wi-Fi statistics. + * + * @param string $beginDate + * @param string $endDate + * @param int $shopId + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function summary(string $beginDate, string $endDate, int $shopId = -1) + { + $data = [ + 'begin_date' => $beginDate, + 'end_date' => $endDate, + 'shop_id' => $shopId, + ]; + + return $this->httpPostJson('bizwifi/statistics/list', $data); + } + + /** + * Get the material QR code. + * + * @param int $shopId + * @param string $ssid + * @param int $type + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function getQrCodeUrl(int $shopId, string $ssid, int $type = 0) + { + $data = [ + 'shop_id' => $shopId, + 'ssid' => $ssid, + 'img_id' => $type, + ]; + + return $this->httpPostJson('bizwifi/qrcode/get', $data); + } + + /** + * Wi-Fi completion page jump applet. + * + * @param array $data + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function setFinishPage(array $data) + { + return $this->httpPostJson('bizwifi/finishpage/set', $data); + } + + /** + * Set the top banner jump applet. + * + * @param array $data + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function setHomePage(array $data) + { + return $this->httpPostJson('bizwifi/homepage/set', $data); + } +} diff --git a/vendor/overtrue/wechat/src/OfficialAccount/WiFi/DeviceClient.php b/vendor/overtrue/wechat/src/OfficialAccount/WiFi/DeviceClient.php new file mode 100644 index 0000000..8fecbf7 --- /dev/null +++ b/vendor/overtrue/wechat/src/OfficialAccount/WiFi/DeviceClient.php @@ -0,0 +1,127 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OfficialAccount\WiFi; + +use EasyWeChat\Kernel\BaseClient; + +/** + * Class DeviceClient. + * + * @author her-cat + */ +class DeviceClient extends BaseClient +{ + /** + * Add a password device. + * + * @param int $shopId + * @param string $ssid + * @param string $password + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function addPasswordDevice(int $shopId, string $ssid, string $password) + { + $data = [ + 'shop_id' => $shopId, + 'ssid' => $ssid, + 'password' => $password, + ]; + + return $this->httpPostJson('bizwifi/device/add', $data); + } + + /** + * Add a portal device. + * + * @param int $shopId + * @param string $ssid + * @param bool $reset + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function addPortalDevice(int $shopId, string $ssid, bool $reset = false) + { + $data = [ + 'shop_id' => $shopId, + 'ssid' => $ssid, + 'reset' => $reset, + ]; + + return $this->httpPostJson('bizwifi/apportal/register', $data); + } + + /** + * Delete device by MAC address. + * + * @param string $macAddress + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function delete(string $macAddress) + { + return $this->httpPostJson('bizwifi/device/delete', ['bssid' => $macAddress]); + } + + /** + * Get a list of devices. + * + * @param int $page + * @param int $size + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function list(int $page = 1, int $size = 10) + { + $data = [ + 'pageindex' => $page, + 'pagesize' => $size, + ]; + + return $this->httpPostJson('bizwifi/device/list', $data); + } + + /** + * Get a list of devices by shop ID. + * + * @param int $shopId + * @param int $page + * @param int $size + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function listByShopId(int $shopId, int $page = 1, int $size = 10) + { + $data = [ + 'shop_id' => $shopId, + 'pageindex' => $page, + 'pagesize' => $size, + ]; + + return $this->httpPostJson('bizwifi/device/list', $data); + } +} diff --git a/vendor/overtrue/wechat/src/OfficialAccount/WiFi/ServiceProvider.php b/vendor/overtrue/wechat/src/OfficialAccount/WiFi/ServiceProvider.php new file mode 100644 index 0000000..7a28b51 --- /dev/null +++ b/vendor/overtrue/wechat/src/OfficialAccount/WiFi/ServiceProvider.php @@ -0,0 +1,45 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OfficialAccount\WiFi; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +/** + * Class ServiceProvider. + * + * @author her-cat + */ +class ServiceProvider implements ServiceProviderInterface +{ + /** + * {@inheritdoc} + */ + public function register(Container $app) + { + $app['wifi'] = function ($app) { + return new Client($app); + }; + + $app['wifi_card'] = function ($app) { + return new CardClient($app); + }; + + $app['wifi_device'] = function ($app) { + return new DeviceClient($app); + }; + + $app['wifi_shop'] = function ($app) { + return new ShopClient($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/OfficialAccount/WiFi/ShopClient.php b/vendor/overtrue/wechat/src/OfficialAccount/WiFi/ShopClient.php new file mode 100644 index 0000000..34f1c97 --- /dev/null +++ b/vendor/overtrue/wechat/src/OfficialAccount/WiFi/ShopClient.php @@ -0,0 +1,100 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OfficialAccount\WiFi; + +use EasyWeChat\Kernel\BaseClient; + +/** + * Class ShopClient. + * + * @author her-cat + */ +class ShopClient extends BaseClient +{ + /** + * Get shop Wi-Fi information. + * + * @param int $shopId + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function get(int $shopId) + { + return $this->httpPostJson('bizwifi/shop/get', ['shop_id' => $shopId]); + } + + /** + * Get a list of Wi-Fi shops. + * + * @param int $page + * @param int $size + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function list(int $page = 1, int $size = 10) + { + $data = [ + 'pageindex' => $page, + 'pagesize' => $size, + ]; + + return $this->httpPostJson('bizwifi/shop/list', $data); + } + + /** + * Update shop Wi-Fi information. + * + * @param int $shopId + * @param array $data + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function update(int $shopId, array $data) + { + $data = array_merge(['shop_id' => $shopId], $data); + + return $this->httpPostJson('bizwifi/shop/update', $data); + } + + /** + * Clear shop network and equipment. + * + * @param int $shopId + * @param string|null $ssid + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function clearDevice(int $shopId, string $ssid = null) + { + $data = [ + 'shop_id' => $shopId, + ]; + + if (!is_null($ssid)) { + $data['ssid'] = $ssid; + } + + return $this->httpPostJson('bizwifi/shop/clean', $data); + } +} diff --git a/vendor/overtrue/wechat/src/OpenPlatform/Application.php b/vendor/overtrue/wechat/src/OpenPlatform/Application.php new file mode 100644 index 0000000..386e7a3 --- /dev/null +++ b/vendor/overtrue/wechat/src/OpenPlatform/Application.php @@ -0,0 +1,251 @@ + [ + 'timeout' => 5.0, + 'base_uri' => 'https://api.weixin.qq.com/', + ], + ]; + + /** + * Creates the officialAccount application. + * + * @param string $appId + * @param string|null $refreshToken + * @param \EasyWeChat\OpenPlatform\Authorizer\Auth\AccessToken|null $accessToken + * + * @return \EasyWeChat\OpenPlatform\Authorizer\OfficialAccount\Application + */ + public function officialAccount( + string $appId, + string $refreshToken = null, + AccessToken $accessToken = null + ): OfficialAccount { + $application = new OfficialAccount( + $this->getAuthorizerConfig($appId, $refreshToken), + $this->getReplaceServices($accessToken) + [ + 'encryptor' => $this['encryptor'], + + 'account' => function ($app) { + return new AccountClient($app, $this); + }, + ] + ); + + $application->extend( + 'oauth', + function ($socialite) { + /* @var \Overtrue\Socialite\Providers\WeChat $socialite */ + $socialite->withComponent( + [ + 'id' => $this['config']['app_id'], + 'token' => fn () => $this['access_token']->getToken()['component_access_token'], + ] + ); + + return $socialite; + } + ); + + return $application; + } + + /** + * Creates the miniProgram application. + * + * @param string $appId + * @param string|null $refreshToken + * @param \EasyWeChat\OpenPlatform\Authorizer\Auth\AccessToken|null $accessToken + * + * @return \EasyWeChat\OpenPlatform\Authorizer\MiniProgram\Application + */ + public function miniProgram( + string $appId, + string $refreshToken = null, + AccessToken $accessToken = null + ): MiniProgram { + return new MiniProgram( + $this->getAuthorizerConfig($appId, $refreshToken), + $this->getReplaceServices($accessToken) + [ + 'encryptor' => function () { + return new Encryptor( + $this['config']['app_id'], + $this['config']['token'], + $this['config']['aes_key'] + ); + }, + + 'auth' => function ($app) { + return new Client($app, $this); + }, + ] + ); + } + + /** + * Return the pre-authorization login page url. + * + * @param string $callbackUrl + * @param string|array|null $optional + * + * @return string + * @throws \EasyWeChat\Kernel\Exceptions\RuntimeException + */ + public function getPreAuthorizationUrl(string $callbackUrl, $optional = []): string + { + // 兼容旧版 API 设计 + if (\is_string($optional)) { + $optional = [ + 'pre_auth_code' => $optional, + ]; + } else { + $optional['pre_auth_code'] = data_get($this->createPreAuthorizationCode(), 'pre_auth_code'); + } + + $queries = \array_merge( + $optional, + [ + 'component_appid' => $this['config']['app_id'], + 'redirect_uri' => $callbackUrl, + ] + ); + + return 'https://mp.weixin.qq.com/cgi-bin/componentloginpage?'.http_build_query($queries); + } + + /** + * Return the pre-authorization login page url (mobile). + * + * @param string $callbackUrl + * @param string|array|null $optional + * + * @return string + * @throws \EasyWeChat\Kernel\Exceptions\RuntimeException + */ + public function getMobilePreAuthorizationUrl(string $callbackUrl, $optional = []): string + { + // 兼容旧版 API 设计 + if (\is_string($optional)) { + $optional = [ + 'pre_auth_code' => $optional, + ]; + } else { + $optional['pre_auth_code'] = data_get($this->createPreAuthorizationCode(), 'pre_auth_code'); + } + + $queries = \array_merge( + ['auth_type' => 3], + $optional, + [ + 'component_appid' => $this['config']['app_id'], + 'redirect_uri' => $callbackUrl, + 'action' => 'bindcomponent', + 'no_scan' => 1, + ] + ); + + return 'https://mp.weixin.qq.com/safe/bindcomponent?'.http_build_query($queries).'#wechat_redirect'; + } + + /** + * @param string $appId + * @param string|null $refreshToken + * + * @return array + */ + protected function getAuthorizerConfig(string $appId, string $refreshToken = null): array + { + return $this['config']->merge( + [ + 'component_app_id' => $this['config']['app_id'], + 'component_app_token' => $this['access_token']->getToken()['component_access_token'], + 'app_id' => $appId, + 'refresh_token' => $refreshToken, + ] + )->toArray(); + } + + /** + * @param \EasyWeChat\OpenPlatform\Authorizer\Auth\AccessToken|null $accessToken + * + * @return array + */ + protected function getReplaceServices(AccessToken $accessToken = null): array + { + $services = [ + 'access_token' => $accessToken ?: function ($app) { + return new AccessToken($app, $this); + }, + + 'server' => function ($app) { + return new Guard($app); + }, + ]; + + foreach (['cache', 'http_client', 'log', 'logger', 'request'] as $reuse) { + if (isset($this[$reuse])) { + $services[$reuse] = $this[$reuse]; + } + } + + return $services; + } + + /** + * Handle dynamic calls. + * + * @param string $method + * @param array $args + * + * @return mixed + */ + public function __call($method, $args) + { + return $this->base->$method(...$args); + } +} diff --git a/vendor/overtrue/wechat/src/OpenPlatform/Auth/AccessToken.php b/vendor/overtrue/wechat/src/OpenPlatform/Auth/AccessToken.php new file mode 100644 index 0000000..c15d78d --- /dev/null +++ b/vendor/overtrue/wechat/src/OpenPlatform/Auth/AccessToken.php @@ -0,0 +1,49 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OpenPlatform\Auth; + +use EasyWeChat\Kernel\AccessToken as BaseAccessToken; + +/** + * Class AccessToken. + * + * @author mingyoung + */ +class AccessToken extends BaseAccessToken +{ + /** + * @var string + */ + protected $requestMethod = 'POST'; + + /** + * @var string + */ + protected $tokenKey = 'component_access_token'; + + /** + * @var string + */ + protected $endpointToGetToken = 'cgi-bin/component/api_component_token'; + + /** + * @return array + */ + protected function getCredentials(): array + { + return [ + 'component_appid' => $this->app['config']['app_id'], + 'component_appsecret' => $this->app['config']['secret'], + 'component_verify_ticket' => $this->app['verify_ticket']->getTicket(), + ]; + } +} diff --git a/vendor/overtrue/wechat/src/OpenPlatform/Auth/ServiceProvider.php b/vendor/overtrue/wechat/src/OpenPlatform/Auth/ServiceProvider.php new file mode 100644 index 0000000..c60784b --- /dev/null +++ b/vendor/overtrue/wechat/src/OpenPlatform/Auth/ServiceProvider.php @@ -0,0 +1,37 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OpenPlatform\Auth; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +/** + * Class ServiceProvider. + * + * @author mingyoung + */ +class ServiceProvider implements ServiceProviderInterface +{ + /** + * {@inheritdoc}. + */ + public function register(Container $app) + { + $app['verify_ticket'] = function ($app) { + return new VerifyTicket($app); + }; + + $app['access_token'] = function ($app) { + return new AccessToken($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/OpenPlatform/Auth/VerifyTicket.php b/vendor/overtrue/wechat/src/OpenPlatform/Auth/VerifyTicket.php new file mode 100644 index 0000000..9ad04c7 --- /dev/null +++ b/vendor/overtrue/wechat/src/OpenPlatform/Auth/VerifyTicket.php @@ -0,0 +1,91 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OpenPlatform\Auth; + +use EasyWeChat\Kernel\Exceptions\RuntimeException; +use EasyWeChat\Kernel\Traits\InteractsWithCache; +use EasyWeChat\OpenPlatform\Application; + +/** + * Class VerifyTicket. + * + * @author mingyoung + */ +class VerifyTicket +{ + use InteractsWithCache; + + /** + * @var \EasyWeChat\OpenPlatform\Application + */ + protected $app; + + /** + * Constructor. + * + * @param \EasyWeChat\OpenPlatform\Application $app + */ + public function __construct(Application $app) + { + $this->app = $app; + } + + /** + * Put the credential `component_verify_ticket` in cache. + * + * @param string $ticket + * + * @return $this + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \EasyWeChat\Kernel\Exceptions\RuntimeException + * @throws \Psr\SimpleCache\InvalidArgumentException + */ + public function setTicket(string $ticket) + { + $this->getCache()->set($this->getCacheKey(), $ticket, 3600); + + if (!$this->getCache()->has($this->getCacheKey())) { + throw new RuntimeException('Failed to cache verify ticket.'); + } + + return $this; + } + + /** + * Get the credential `component_verify_ticket` from cache. + * + * @return string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \EasyWeChat\Kernel\Exceptions\RuntimeException + * @throws \Psr\SimpleCache\InvalidArgumentException + */ + public function getTicket(): string + { + if ($cached = $this->getCache()->get($this->getCacheKey())) { + return $cached; + } + + throw new RuntimeException('Credential "component_verify_ticket" does not exist in cache.'); + } + + /** + * Get cache key. + * + * @return string + */ + protected function getCacheKey(): string + { + return 'easywechat.open_platform.verify_ticket.'.$this->app['config']['app_id']; + } +} diff --git a/vendor/overtrue/wechat/src/OpenPlatform/Authorizer/Aggregate/Account/Client.php b/vendor/overtrue/wechat/src/OpenPlatform/Authorizer/Aggregate/Account/Client.php new file mode 100644 index 0000000..b062e3a --- /dev/null +++ b/vendor/overtrue/wechat/src/OpenPlatform/Authorizer/Aggregate/Account/Client.php @@ -0,0 +1,96 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OpenPlatform\Authorizer\Aggregate\Account; + +use EasyWeChat\Kernel\BaseClient; + +/** + * Class Client. + * + * @author Scholer + */ +class Client extends BaseClient +{ + /** + * 创建开放平台帐号并绑定公众号/小程序. + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function create() + { + $params = [ + 'appid' => $this->app['config']['app_id'], + ]; + + return $this->httpPostJson('cgi-bin/open/create', $params); + } + + /** + * 将公众号/小程序绑定到开放平台帐号下. + * + * @param string $openAppId 开放平台帐号appid + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function bindTo(string $openAppId) + { + $params = [ + 'appid' => $this->app['config']['app_id'], + 'open_appid' => $openAppId, + ]; + + return $this->httpPostJson('cgi-bin/open/bind', $params); + } + + /** + * 将公众号/小程序从开放平台帐号下解绑. + * + * @param string $openAppId 开放平台帐号appid + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function unbindFrom(string $openAppId) + { + $params = [ + 'appid' => $this->app['config']['app_id'], + 'open_appid' => $openAppId, + ]; + + return $this->httpPostJson('cgi-bin/open/unbind', $params); + } + + /** + * 获取公众号/小程序所绑定的开放平台帐号. + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function getBinding() + { + $params = [ + 'appid' => $this->app['config']['app_id'], + ]; + + return $this->httpPostJson('cgi-bin/open/get', $params); + } +} diff --git a/vendor/overtrue/wechat/src/OpenPlatform/Authorizer/Aggregate/AggregateServiceProvider.php b/vendor/overtrue/wechat/src/OpenPlatform/Authorizer/Aggregate/AggregateServiceProvider.php new file mode 100644 index 0000000..d93293d --- /dev/null +++ b/vendor/overtrue/wechat/src/OpenPlatform/Authorizer/Aggregate/AggregateServiceProvider.php @@ -0,0 +1,22 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OpenPlatform\Authorizer\Aggregate; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +class AggregateServiceProvider implements ServiceProviderInterface +{ + public function register(Container $app) + { + } +} diff --git a/vendor/overtrue/wechat/src/OpenPlatform/Authorizer/Auth/AccessToken.php b/vendor/overtrue/wechat/src/OpenPlatform/Authorizer/Auth/AccessToken.php new file mode 100644 index 0000000..07b808c --- /dev/null +++ b/vendor/overtrue/wechat/src/OpenPlatform/Authorizer/Auth/AccessToken.php @@ -0,0 +1,79 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OpenPlatform\Authorizer\Auth; + +use EasyWeChat\Kernel\AccessToken as BaseAccessToken; +use EasyWeChat\OpenPlatform\Application; +use Pimple\Container; + +/** + * Class AccessToken. + * + * @author mingyoung + */ +class AccessToken extends BaseAccessToken +{ + /** + * @var string + */ + protected $requestMethod = 'POST'; + + /** + * @var string + */ + protected $queryName = 'access_token'; + + /** + * {@inheritdoc}. + */ + protected $tokenKey = 'authorizer_access_token'; + + /** + * @var \EasyWeChat\OpenPlatform\Application + */ + protected $component; + + /** + * AuthorizerAccessToken constructor. + * + * @param \Pimple\Container $app + * @param \EasyWeChat\OpenPlatform\Application $component + */ + public function __construct(Container $app, Application $component) + { + parent::__construct($app); + + $this->component = $component; + } + + /** + * {@inheritdoc}. + */ + protected function getCredentials(): array + { + return [ + 'component_appid' => $this->component['config']['app_id'], + 'authorizer_appid' => $this->app['config']['app_id'], + 'authorizer_refresh_token' => $this->app['config']['refresh_token'], + ]; + } + + /** + * @return string + */ + public function getEndpoint(): string + { + return 'cgi-bin/component/api_authorizer_token?'.http_build_query([ + 'component_access_token' => $this->component['access_token']->getToken()['component_access_token'], + ]); + } +} diff --git a/vendor/overtrue/wechat/src/OpenPlatform/Authorizer/MiniProgram/Account/Client.php b/vendor/overtrue/wechat/src/OpenPlatform/Authorizer/MiniProgram/Account/Client.php new file mode 100644 index 0000000..f1b7afb --- /dev/null +++ b/vendor/overtrue/wechat/src/OpenPlatform/Authorizer/MiniProgram/Account/Client.php @@ -0,0 +1,79 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OpenPlatform\Authorizer\MiniProgram\Account; + +use EasyWeChat\OpenPlatform\Authorizer\Aggregate\Account\Client as BaseClient; + +/** + * Class Client. + * + * @author ClouderSky + */ +class Client extends BaseClient +{ + /** + * 获取账号基本信息. + */ + public function getBasicInfo() + { + return $this->httpPostJson('cgi-bin/account/getaccountbasicinfo'); + } + + /** + * 修改头像. + * + * @param string $mediaId 头像素材mediaId + * @param string $left 剪裁框左上角x坐标(取值范围:[0, 1]) + * @param string $top 剪裁框左上角y坐标(取值范围:[0, 1]) + * @param string $right 剪裁框右下角x坐标(取值范围:[0, 1]) + * @param string $bottom 剪裁框右下角y坐标(取值范围:[0, 1]) + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function updateAvatar( + string $mediaId, + $left = '0.0', + $top = '0.0', + $right = '1.0', + $bottom = '1.0' + ) { + $params = [ + 'head_img_media_id' => $mediaId, + 'x1' => \strval($left), + 'y1' => \strval($top), + 'x2' => \strval($right), + 'y2' => \strval($bottom), + ]; + + return $this->httpPostJson('cgi-bin/account/modifyheadimage', $params); + } + + /** + * 修改功能介绍. + * + * @param string $signature 功能介绍(简介) + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function updateSignature(string $signature) + { + $params = ['signature' => $signature]; + + return $this->httpPostJson('cgi-bin/account/modifysignature', $params); + } +} diff --git a/vendor/overtrue/wechat/src/OpenPlatform/Authorizer/MiniProgram/Account/ServiceProvider.php b/vendor/overtrue/wechat/src/OpenPlatform/Authorizer/MiniProgram/Account/ServiceProvider.php new file mode 100644 index 0000000..f062954 --- /dev/null +++ b/vendor/overtrue/wechat/src/OpenPlatform/Authorizer/MiniProgram/Account/ServiceProvider.php @@ -0,0 +1,25 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OpenPlatform\Authorizer\MiniProgram\Account; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +class ServiceProvider implements ServiceProviderInterface +{ + public function register(Container $app) + { + $app['account'] = function ($app) { + return new Client($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/OpenPlatform/Authorizer/MiniProgram/Application.php b/vendor/overtrue/wechat/src/OpenPlatform/Authorizer/MiniProgram/Application.php new file mode 100644 index 0000000..09b52cb --- /dev/null +++ b/vendor/overtrue/wechat/src/OpenPlatform/Authorizer/MiniProgram/Application.php @@ -0,0 +1,57 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OpenPlatform\Authorizer\MiniProgram; + +use EasyWeChat\MiniProgram\Application as MiniProgram; +use EasyWeChat\OpenPlatform\Authorizer\Aggregate\AggregateServiceProvider; + +/** + * Class Application. + * + * @author mingyoung + * + * @property \EasyWeChat\OpenPlatform\Authorizer\MiniProgram\Account\Client $account + * @property \EasyWeChat\OpenPlatform\Authorizer\MiniProgram\Code\Client $code + * @property \EasyWeChat\OpenPlatform\Authorizer\MiniProgram\Domain\Client $domain + * @property \EasyWeChat\OpenPlatform\Authorizer\MiniProgram\Setting\Client $setting + * @property \EasyWeChat\OpenPlatform\Authorizer\MiniProgram\Tester\Client $tester + * @property \EasyWeChat\OpenPlatform\Authorizer\MiniProgram\Material\Client $material + */ +class Application extends MiniProgram +{ + /** + * Application constructor. + * + * @param array $config + * @param array $prepends + */ + public function __construct(array $config = [], array $prepends = []) + { + parent::__construct($config, $prepends); + + $providers = [ + AggregateServiceProvider::class, + Code\ServiceProvider::class, + Domain\ServiceProvider::class, + Account\ServiceProvider::class, + Setting\ServiceProvider::class, + Tester\ServiceProvider::class, + Material\ServiceProvider::class, + Privacy\ServiceProvider::class, + Security\ServiceProvider::class, + ]; + + foreach ($providers as $provider) { + $this->register(new $provider()); + } + } +} diff --git a/vendor/overtrue/wechat/src/OpenPlatform/Authorizer/MiniProgram/Auth/Client.php b/vendor/overtrue/wechat/src/OpenPlatform/Authorizer/MiniProgram/Auth/Client.php new file mode 100644 index 0000000..05bb704 --- /dev/null +++ b/vendor/overtrue/wechat/src/OpenPlatform/Authorizer/MiniProgram/Auth/Client.php @@ -0,0 +1,64 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OpenPlatform\Authorizer\MiniProgram\Auth; + +use EasyWeChat\Kernel\BaseClient; +use EasyWeChat\Kernel\ServiceContainer; +use EasyWeChat\OpenPlatform\Application; + +/** + * Class Client. + * + * @author mingyoung + */ +class Client extends BaseClient +{ + /** + * @var \EasyWeChat\OpenPlatform\Application + */ + protected $component; + + /** + * Client constructor. + * + * @param \EasyWeChat\Kernel\ServiceContainer $app + * @param \EasyWeChat\OpenPlatform\Application $component + */ + public function __construct(ServiceContainer $app, Application $component) + { + parent::__construct($app); + + $this->component = $component; + } + + /** + * Get session info by code. + * + * @param string $code + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function session(string $code) + { + $params = [ + 'appid' => $this->app['config']['app_id'], + 'js_code' => $code, + 'grant_type' => 'authorization_code', + 'component_appid' => $this->component['config']['app_id'], + 'component_access_token' => $this->component['access_token']->getToken()['component_access_token'], + ]; + + return $this->httpGet('sns/component/jscode2session', $params); + } +} diff --git a/vendor/overtrue/wechat/src/OpenPlatform/Authorizer/MiniProgram/Code/Client.php b/vendor/overtrue/wechat/src/OpenPlatform/Authorizer/MiniProgram/Code/Client.php new file mode 100644 index 0000000..3d1b823 --- /dev/null +++ b/vendor/overtrue/wechat/src/OpenPlatform/Authorizer/MiniProgram/Code/Client.php @@ -0,0 +1,271 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OpenPlatform\Authorizer\MiniProgram\Code; + +use EasyWeChat\Kernel\BaseClient; + +/** + * Class Client. + * + * @author mingyoung + */ +class Client extends BaseClient +{ + /** + * @param int $templateId + * @param string $extJson + * @param string $version + * @param string $description + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function commit(int $templateId, string $extJson, string $version, string $description) + { + return $this->httpPostJson('wxa/commit', [ + 'template_id' => $templateId, + 'ext_json' => $extJson, + 'user_version' => $version, + 'user_desc' => $description, + ]); + } + + /** + * @param string|null $path + * + * @return \EasyWeChat\Kernel\Http\Response + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function getQrCode(string $path = null) + { + return $this->requestRaw('wxa/get_qrcode', 'GET', [ + 'query' => ['path' => $path], + ]); + } + + /** + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function getCategory() + { + return $this->httpGet('wxa/get_category'); + } + + /** + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function getPage() + { + return $this->httpGet('wxa/get_page'); + } + + /** + * @param array $data + * @param string|null $feedbackInfo + * @param string|null $feedbackStuff + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function submitAudit(array $data, string $feedbackInfo = null, string $feedbackStuff = null) + { + if (isset($data['item_list'])) { + return $this->httpPostJson('wxa/submit_audit', $data); + } + + return $this->httpPostJson('wxa/submit_audit', [ + 'item_list' => $data, + 'feedback_info' => $feedbackInfo, + 'feedback_stuff' => $feedbackStuff, + ]); + } + + /** + * @param int $auditId + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function getAuditStatus(int $auditId) + { + return $this->httpPostJson('wxa/get_auditstatus', [ + 'auditid' => $auditId, + ]); + } + + /** + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function getLatestAuditStatus() + { + return $this->httpGet('wxa/get_latest_auditstatus'); + } + + /** + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function release() + { + return $this->httpPostJson('wxa/release'); + } + + /** + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function withdrawAudit() + { + return $this->httpGet('wxa/undocodeaudit'); + } + + /** + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function rollbackRelease() + { + return $this->httpGet('wxa/revertcoderelease'); + } + + /** + * @param string $action + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function changeVisitStatus(string $action) + { + return $this->httpPostJson('wxa/change_visitstatus', [ + 'action' => $action, + ]); + } + + /** + * 分阶段发布. + * + * @param int $grayPercentage + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function grayRelease(int $grayPercentage) + { + return $this->httpPostJson('wxa/grayrelease', [ + 'gray_percentage' => $grayPercentage, + ]); + } + + /** + * 取消分阶段发布. + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function revertGrayRelease() + { + return $this->httpGet('wxa/revertgrayrelease'); + } + + /** + * 查询当前分阶段发布详情. + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function getGrayRelease() + { + return $this->httpGet('wxa/getgrayreleaseplan'); + } + + /** + * 查询当前设置的最低基础库版本及各版本用户占比. + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function getSupportVersion() + { + return $this->httpPostJson('cgi-bin/wxopen/getweappsupportversion'); + } + + /** + * 设置最低基础库版本. + * + * @param string $version + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function setSupportVersion(string $version) + { + return $this->httpPostJson('cgi-bin/wxopen/setweappsupportversion', [ + 'version' => $version, + ]); + } + + /** + * 查询服务商的当月提审限额(quota)和加急次数. + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function queryQuota() + { + return $this->httpGet('wxa/queryquota'); + } + + /** + * 加急审核申请. + * + * @param int $auditId 审核单ID + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function speedupAudit(int $auditId) + { + return $this->httpPostJson('wxa/speedupaudit', [ + 'auditid' => $auditId, + ]); + } +} diff --git a/vendor/overtrue/wechat/src/OpenPlatform/Authorizer/MiniProgram/Code/ServiceProvider.php b/vendor/overtrue/wechat/src/OpenPlatform/Authorizer/MiniProgram/Code/ServiceProvider.php new file mode 100644 index 0000000..bce8611 --- /dev/null +++ b/vendor/overtrue/wechat/src/OpenPlatform/Authorizer/MiniProgram/Code/ServiceProvider.php @@ -0,0 +1,25 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OpenPlatform\Authorizer\MiniProgram\Code; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +class ServiceProvider implements ServiceProviderInterface +{ + public function register(Container $app) + { + $app['code'] = function ($app) { + return new Client($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/OpenPlatform/Authorizer/MiniProgram/Domain/Client.php b/vendor/overtrue/wechat/src/OpenPlatform/Authorizer/MiniProgram/Domain/Client.php new file mode 100644 index 0000000..2a6547c --- /dev/null +++ b/vendor/overtrue/wechat/src/OpenPlatform/Authorizer/MiniProgram/Domain/Client.php @@ -0,0 +1,54 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OpenPlatform\Authorizer\MiniProgram\Domain; + +use EasyWeChat\Kernel\BaseClient; + +/** + * Class Client. + * + * @author mingyoung + */ +class Client extends BaseClient +{ + /** + * @param array $params + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function modify(array $params) + { + return $this->httpPostJson('wxa/modify_domain', $params); + } + + /** + * 设置小程序业务域名. + * + * @param array $domains + * @param string $action + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function setWebviewDomain(array $domains, $action = 'add') + { + return $this->httpPostJson('wxa/setwebviewdomain', [ + 'action' => $action, + 'webviewdomain' => $domains, + ]); + } +} diff --git a/vendor/overtrue/wechat/src/OpenPlatform/Authorizer/MiniProgram/Domain/ServiceProvider.php b/vendor/overtrue/wechat/src/OpenPlatform/Authorizer/MiniProgram/Domain/ServiceProvider.php new file mode 100644 index 0000000..4eaef13 --- /dev/null +++ b/vendor/overtrue/wechat/src/OpenPlatform/Authorizer/MiniProgram/Domain/ServiceProvider.php @@ -0,0 +1,25 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OpenPlatform\Authorizer\MiniProgram\Domain; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +class ServiceProvider implements ServiceProviderInterface +{ + public function register(Container $app) + { + $app['domain'] = function ($app) { + return new Client($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/OpenPlatform/Authorizer/MiniProgram/Material/Client.php b/vendor/overtrue/wechat/src/OpenPlatform/Authorizer/MiniProgram/Material/Client.php new file mode 100644 index 0000000..a9686c9 --- /dev/null +++ b/vendor/overtrue/wechat/src/OpenPlatform/Authorizer/MiniProgram/Material/Client.php @@ -0,0 +1,51 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OpenPlatform\Authorizer\MiniProgram\Material; + +use EasyWeChat\Kernel\BaseClient; +use EasyWeChat\Kernel\Http\StreamResponse; + +/** + * Class Client. + * + * @author overtrue + */ +class Client extends BaseClient +{ + /** + * Allow media type. + * + * @var array + */ + protected $allowTypes = ['image', 'voice', 'video', 'thumb', 'news_image']; + + /** + * Fetch material. + * + * @param string $mediaId + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function get(string $mediaId) + { + $response = $this->requestRaw('cgi-bin/material/get_material', 'POST', ['json' => ['media_id' => $mediaId]]); + + if (false !== stripos($response->getHeaderLine('Content-disposition'), 'attachment')) { + return StreamResponse::buildFromPsrResponse($response); + } + + return $this->castResponseToType($response, $this->app['config']->get('response_type')); + } +} diff --git a/vendor/overtrue/wechat/src/OpenPlatform/Authorizer/MiniProgram/Material/ServiceProvider.php b/vendor/overtrue/wechat/src/OpenPlatform/Authorizer/MiniProgram/Material/ServiceProvider.php new file mode 100644 index 0000000..820a1ac --- /dev/null +++ b/vendor/overtrue/wechat/src/OpenPlatform/Authorizer/MiniProgram/Material/ServiceProvider.php @@ -0,0 +1,44 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +/** + * ServiceProvider.php. + * + * This file is part of the wechat. + * + * (c) overtrue + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OpenPlatform\Authorizer\MiniProgram\Material; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +/** + * Class ServiceProvider. + * + * @author overtrue + */ +class ServiceProvider implements ServiceProviderInterface +{ + /** + * {@inheritdoc}. + */ + public function register(Container $app) + { + $app['material'] = function ($app) { + return new Client($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/OpenPlatform/Authorizer/MiniProgram/Privacy/Client.php b/vendor/overtrue/wechat/src/OpenPlatform/Authorizer/MiniProgram/Privacy/Client.php new file mode 100644 index 0000000..3b159d3 --- /dev/null +++ b/vendor/overtrue/wechat/src/OpenPlatform/Authorizer/MiniProgram/Privacy/Client.php @@ -0,0 +1,66 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OpenPlatform\Authorizer\MiniProgram\Privacy; + +use EasyWeChat\Kernel\BaseClient; +use EasyWeChat\Kernel\Exceptions\InvalidArgumentException; + +/** + * Class Client. + * + * @author lujunyi + */ +class Client extends BaseClient +{ + /** + * 查询小程序用户隐私保护指引. + */ + public function get() + { + return $this->httpPostJson('cgi-bin/component/getprivacysetting', []); + } + + /** + * 配置小程序用户隐私保护指引 + * + * @param array $params + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function set(array $params) + { + return $this->httpPostJson('cgi-bin/component/setprivacysetting', $params); + } + + /** + * 上传小程序用户隐私保护指引 + * + * @param string $path + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \EasyWeChat\MicroMerchant\Kernel\Exceptions\InvalidSignException + */ + public function upload(string $path) + { + if (!file_exists($path) || !is_readable($path)) { + throw new InvalidArgumentException(sprintf("File does not exist, or the file is unreadable: '%s'", $path)); + } + + return $this->httpUpload('cgi-bin/component/uploadprivacyextfile', ['file' => $path]); + } +} diff --git a/vendor/overtrue/wechat/src/OpenPlatform/Authorizer/MiniProgram/Privacy/ServiceProvider.php b/vendor/overtrue/wechat/src/OpenPlatform/Authorizer/MiniProgram/Privacy/ServiceProvider.php new file mode 100644 index 0000000..85ec390 --- /dev/null +++ b/vendor/overtrue/wechat/src/OpenPlatform/Authorizer/MiniProgram/Privacy/ServiceProvider.php @@ -0,0 +1,25 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OpenPlatform\Authorizer\MiniProgram\Privacy; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +class ServiceProvider implements ServiceProviderInterface +{ + public function register(Container $app) + { + $app['privacy'] = function ($app) { + return new Client($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/OpenPlatform/Authorizer/MiniProgram/Security/Client.php b/vendor/overtrue/wechat/src/OpenPlatform/Authorizer/MiniProgram/Security/Client.php new file mode 100644 index 0000000..f227ad5 --- /dev/null +++ b/vendor/overtrue/wechat/src/OpenPlatform/Authorizer/MiniProgram/Security/Client.php @@ -0,0 +1,45 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OpenPlatform\Authorizer\MiniProgram\Security; + +use EasyWeChat\Kernel\BaseClient; + +/** + * Class Client. + * + * @author lujunyi + */ +class Client extends BaseClient +{ + /** + * 获取隐私接口列表. + */ + public function get() + { + return $this->httpGet('wxa/security/get_privacy_interface'); + } + + /** + * 申请隐私接口 + * + * @param array $params + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function set(array $params) + { + return $this->httpPostJson('wxa/security/apply_privacy_interface', $params); + } +} diff --git a/vendor/overtrue/wechat/src/OpenPlatform/Authorizer/MiniProgram/Security/ServiceProvider.php b/vendor/overtrue/wechat/src/OpenPlatform/Authorizer/MiniProgram/Security/ServiceProvider.php new file mode 100644 index 0000000..66223e3 --- /dev/null +++ b/vendor/overtrue/wechat/src/OpenPlatform/Authorizer/MiniProgram/Security/ServiceProvider.php @@ -0,0 +1,25 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OpenPlatform\Authorizer\MiniProgram\Security; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +class ServiceProvider implements ServiceProviderInterface +{ + public function register(Container $app) + { + $app['security'] = function ($app) { + return new Client($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/OpenPlatform/Authorizer/MiniProgram/Setting/Client.php b/vendor/overtrue/wechat/src/OpenPlatform/Authorizer/MiniProgram/Setting/Client.php new file mode 100644 index 0000000..8d979b0 --- /dev/null +++ b/vendor/overtrue/wechat/src/OpenPlatform/Authorizer/MiniProgram/Setting/Client.php @@ -0,0 +1,250 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OpenPlatform\Authorizer\MiniProgram\Setting; + +use EasyWeChat\Kernel\BaseClient; + +/** + * Class Client. + * + * @author ClouderSky + */ +class Client extends BaseClient +{ + /** + * 获取账号可以设置的所有类目. + */ + public function getAllCategories() + { + return $this->httpPostJson('cgi-bin/wxopen/getallcategories'); + } + + /** + * 添加类目. + * + * @param array $categories 类目数组 + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function addCategories(array $categories) + { + $params = ['categories' => $categories]; + + return $this->httpPostJson('cgi-bin/wxopen/addcategory', $params); + } + + /** + * 删除类目. + * + * @param int $firstId 一级类目ID + * @param int $secondId 二级类目ID + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function deleteCategories(int $firstId, int $secondId) + { + $params = ['first' => $firstId, 'second' => $secondId]; + + return $this->httpPostJson('cgi-bin/wxopen/deletecategory', $params); + } + + /** + * 获取账号已经设置的所有类目. + */ + public function getCategories() + { + return $this->httpPostJson('cgi-bin/wxopen/getcategory'); + } + + /** + * 修改类目. + * + * @param array $category 单个类目 + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function updateCategory(array $category) + { + return $this->httpPostJson('cgi-bin/wxopen/modifycategory', $category); + } + + /** + * 小程序名称设置及改名. + * + * @param string $nickname 昵称 + * @param string $idCardMediaId 身份证照片素材ID + * @param string $licenseMediaId 组织机构代码证或营业执照素材ID + * @param array $otherStuffs 其他证明材料素材ID + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function setNickname( + string $nickname, + string $idCardMediaId = '', + string $licenseMediaId = '', + array $otherStuffs = [] + ) { + $params = [ + 'nick_name' => $nickname, + 'id_card' => $idCardMediaId, + 'license' => $licenseMediaId, + ]; + + for ($i = \count($otherStuffs) - 1; $i >= 0; --$i) { + $params['naming_other_stuff_'.($i + 1)] = $otherStuffs[$i]; + } + + return $this->httpPostJson('wxa/setnickname', $params); + } + + /** + * 小程序改名审核状态查询. + * + * @param int $auditId 审核单id + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function getNicknameAuditStatus($auditId) + { + $params = ['audit_id' => $auditId]; + + return $this->httpPostJson('wxa/api_wxa_querynickname', $params); + } + + /** + * 微信认证名称检测. + * + * @param string $nickname 名称(昵称) + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function isAvailableNickname($nickname) + { + $params = ['nick_name' => $nickname]; + + return $this->httpPostJson( + 'cgi-bin/wxverify/checkwxverifynickname', + $params + ); + } + + /** + * 查询小程序是否可被搜索. + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function getSearchStatus() + { + return $this->httpGet('wxa/getwxasearchstatus'); + } + + /** + * 设置小程序可被搜素. + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function setSearchable() + { + return $this->httpPostJson('wxa/changewxasearchstatus', [ + 'status' => 0, + ]); + } + + /** + * 设置小程序不可被搜素. + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function setUnsearchable() + { + return $this->httpPostJson('wxa/changewxasearchstatus', [ + 'status' => 1, + ]); + } + + /** + * 获取展示的公众号信息. + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function getDisplayedOfficialAccount() + { + return $this->httpGet('wxa/getshowwxaitem'); + } + + /** + * 设置展示的公众号. + * + * @param string|bool $appid + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function setDisplayedOfficialAccount($appid) + { + return $this->httpPostJson('wxa/updateshowwxaitem', [ + 'appid' => $appid ?: null, + 'wxa_subscribe_biz_flag' => $appid ? 1 : 0, + ]); + } + + /** + * 获取可以用来设置的公众号列表. + * + * @param int $page + * @param int $num + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function getDisplayableOfficialAccounts(int $page, int $num) + { + return $this->httpGet('wxa/getwxamplinkforshow', [ + 'page' => $page, + 'num' => $num, + ]); + } +} diff --git a/vendor/overtrue/wechat/src/OpenPlatform/Authorizer/MiniProgram/Setting/ServiceProvider.php b/vendor/overtrue/wechat/src/OpenPlatform/Authorizer/MiniProgram/Setting/ServiceProvider.php new file mode 100644 index 0000000..917aec5 --- /dev/null +++ b/vendor/overtrue/wechat/src/OpenPlatform/Authorizer/MiniProgram/Setting/ServiceProvider.php @@ -0,0 +1,25 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OpenPlatform\Authorizer\MiniProgram\Setting; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +class ServiceProvider implements ServiceProviderInterface +{ + public function register(Container $app) + { + $app['setting'] = function ($app) { + return new Client($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/OpenPlatform/Authorizer/MiniProgram/Tester/Client.php b/vendor/overtrue/wechat/src/OpenPlatform/Authorizer/MiniProgram/Tester/Client.php new file mode 100644 index 0000000..58c9854 --- /dev/null +++ b/vendor/overtrue/wechat/src/OpenPlatform/Authorizer/MiniProgram/Tester/Client.php @@ -0,0 +1,80 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OpenPlatform\Authorizer\MiniProgram\Tester; + +use EasyWeChat\Kernel\BaseClient; + +/** + * Class Client. + * + * @author caikeal + */ +class Client extends BaseClient +{ + /** + * 绑定小程序体验者. + * + * @param string $wechatId + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function bind(string $wechatId) + { + return $this->httpPostJson('wxa/bind_tester', [ + 'wechatid' => $wechatId, + ]); + } + + /** + * 解绑小程序体验者. + * + * @param string $wechatId + * @param string $userStr + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function unbind(string $wechatId = null, string $userStr = null) + { + return $this->httpPostJson('wxa/unbind_tester', [ + ($userStr ? 'userstr' : 'wechatid') => $userStr ?? $wechatId, + ]); + } + + public function unbindWithUserStr(string $userStr) + { + return $this->httpPostJson('wxa/unbind_tester', [ + 'userstr' => $userStr, + ]); + } + + /** + * 获取体验者列表. + * + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function list() + { + return $this->httpPostJson('wxa/memberauth', [ + 'action' => 'get_experiencer', + ]); + } +} diff --git a/vendor/overtrue/wechat/src/OpenPlatform/Authorizer/MiniProgram/Tester/ServiceProvider.php b/vendor/overtrue/wechat/src/OpenPlatform/Authorizer/MiniProgram/Tester/ServiceProvider.php new file mode 100644 index 0000000..ff1ffb3 --- /dev/null +++ b/vendor/overtrue/wechat/src/OpenPlatform/Authorizer/MiniProgram/Tester/ServiceProvider.php @@ -0,0 +1,25 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OpenPlatform\Authorizer\MiniProgram\Tester; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +class ServiceProvider implements ServiceProviderInterface +{ + public function register(Container $app) + { + $app['tester'] = function ($app) { + return new Client($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/OpenPlatform/Authorizer/OfficialAccount/Account/Client.php b/vendor/overtrue/wechat/src/OpenPlatform/Authorizer/OfficialAccount/Account/Client.php new file mode 100644 index 0000000..9e7b38b --- /dev/null +++ b/vendor/overtrue/wechat/src/OpenPlatform/Authorizer/OfficialAccount/Account/Client.php @@ -0,0 +1,81 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OpenPlatform\Authorizer\OfficialAccount\Account; + +use EasyWeChat\Kernel\ServiceContainer; +use EasyWeChat\OpenPlatform\Application; +use EasyWeChat\OpenPlatform\Authorizer\Aggregate\Account\Client as BaseClient; + +/** + * Class Client. + * + * @author Keal + */ +class Client extends BaseClient +{ + /** + * @var \EasyWeChat\OpenPlatform\Application + */ + protected $component; + + /** + * Client constructor. + * + * @param \EasyWeChat\Kernel\ServiceContainer $app + * @param \EasyWeChat\OpenPlatform\Application $component + */ + public function __construct(ServiceContainer $app, Application $component) + { + parent::__construct($app); + + $this->component = $component; + } + + /** + * 从第三方平台跳转至微信公众平台授权注册页面, 授权注册小程序. + * + * @param string $callbackUrl + * @param bool $copyWxVerify + * + * @return string + */ + public function getFastRegistrationUrl(string $callbackUrl, bool $copyWxVerify = true): string + { + $queries = [ + 'copy_wx_verify' => $copyWxVerify, + 'component_appid' => $this->component['config']['app_id'], + 'appid' => $this->app['config']['app_id'], + 'redirect_uri' => $callbackUrl, + ]; + + return 'https://mp.weixin.qq.com/cgi-bin/fastregisterauth?'.http_build_query($queries); + } + + /** + * 小程序快速注册. + * + * @param string $ticket + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function register(string $ticket) + { + $params = [ + 'ticket' => $ticket, + ]; + + return $this->httpPostJson('cgi-bin/account/fastregister', $params); + } +} diff --git a/vendor/overtrue/wechat/src/OpenPlatform/Authorizer/OfficialAccount/Application.php b/vendor/overtrue/wechat/src/OpenPlatform/Authorizer/OfficialAccount/Application.php new file mode 100644 index 0000000..08509d2 --- /dev/null +++ b/vendor/overtrue/wechat/src/OpenPlatform/Authorizer/OfficialAccount/Application.php @@ -0,0 +1,46 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OpenPlatform\Authorizer\OfficialAccount; + +use EasyWeChat\OfficialAccount\Application as OfficialAccount; +use EasyWeChat\OpenPlatform\Authorizer\Aggregate\AggregateServiceProvider; + +/** + * Class Application. + * + * @author mingyoung + * + * @property \EasyWeChat\OpenPlatform\Authorizer\OfficialAccount\Account\Client $account + * @property \EasyWeChat\OpenPlatform\Authorizer\OfficialAccount\MiniProgram\Client $mini_program + */ +class Application extends OfficialAccount +{ + /** + * Application constructor. + * + * @param array $config + * @param array $prepends + */ + public function __construct(array $config = [], array $prepends = []) + { + parent::__construct($config, $prepends); + + $providers = [ + AggregateServiceProvider::class, + MiniProgram\ServiceProvider::class, + ]; + + foreach ($providers as $provider) { + $this->register(new $provider()); + } + } +} diff --git a/vendor/overtrue/wechat/src/OpenPlatform/Authorizer/OfficialAccount/MiniProgram/Client.php b/vendor/overtrue/wechat/src/OpenPlatform/Authorizer/OfficialAccount/MiniProgram/Client.php new file mode 100644 index 0000000..d32b51b --- /dev/null +++ b/vendor/overtrue/wechat/src/OpenPlatform/Authorizer/OfficialAccount/MiniProgram/Client.php @@ -0,0 +1,77 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OpenPlatform\Authorizer\OfficialAccount\MiniProgram; + +use EasyWeChat\Kernel\BaseClient; + +/** + * Class Client. + * + * @author Keal + */ +class Client extends BaseClient +{ + /** + * 获取公众号关联的小程序. + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function list() + { + return $this->httpPostJson('cgi-bin/wxopen/wxamplinkget'); + } + + /** + * 关联小程序. + * + * @param string $appId + * @param bool $notifyUsers + * @param bool $showProfile + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function link(string $appId, bool $notifyUsers = true, bool $showProfile = false) + { + $params = [ + 'appid' => $appId, + 'notify_users' => (string) $notifyUsers, + 'show_profile' => (string) $showProfile, + ]; + + return $this->httpPostJson('cgi-bin/wxopen/wxamplink', $params); + } + + /** + * 解除已关联的小程序. + * + * @param string $appId + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function unlink(string $appId) + { + $params = [ + 'appid' => $appId, + ]; + + return $this->httpPostJson('cgi-bin/wxopen/wxampunlink', $params); + } +} diff --git a/vendor/overtrue/wechat/src/OpenPlatform/Authorizer/OfficialAccount/MiniProgram/ServiceProvider.php b/vendor/overtrue/wechat/src/OpenPlatform/Authorizer/OfficialAccount/MiniProgram/ServiceProvider.php new file mode 100644 index 0000000..31ce10b --- /dev/null +++ b/vendor/overtrue/wechat/src/OpenPlatform/Authorizer/OfficialAccount/MiniProgram/ServiceProvider.php @@ -0,0 +1,25 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OpenPlatform\Authorizer\OfficialAccount\MiniProgram; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +class ServiceProvider implements ServiceProviderInterface +{ + public function register(Container $app) + { + $app['mini_program'] = function ($app) { + return new Client($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/OpenPlatform/Authorizer/Server/Guard.php b/vendor/overtrue/wechat/src/OpenPlatform/Authorizer/Server/Guard.php new file mode 100644 index 0000000..d7efbd3 --- /dev/null +++ b/vendor/overtrue/wechat/src/OpenPlatform/Authorizer/Server/Guard.php @@ -0,0 +1,32 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OpenPlatform\Authorizer\Server; + +use EasyWeChat\Kernel\ServerGuard; + +/** + * Class Guard. + * + * @author mingyoung + */ +class Guard extends ServerGuard +{ + /** + * Get token from OpenPlatform encryptor. + * + * @return string + */ + protected function getToken() + { + return $this->app['encryptor']->getToken(); + } +} diff --git a/vendor/overtrue/wechat/src/OpenPlatform/Base/Client.php b/vendor/overtrue/wechat/src/OpenPlatform/Base/Client.php new file mode 100644 index 0000000..ec78a5f --- /dev/null +++ b/vendor/overtrue/wechat/src/OpenPlatform/Base/Client.php @@ -0,0 +1,166 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OpenPlatform\Base; + +use EasyWeChat\Kernel\BaseClient; + +/** + * Class Client. + * + * @author mingyoung + */ +class Client extends BaseClient +{ + /** + * Get authorization info. + * + * @param string|null $authCode + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function handleAuthorize(string $authCode = null) + { + $params = [ + 'component_appid' => $this->app['config']['app_id'], + 'authorization_code' => $authCode ?? $this->app['request']->get('auth_code'), + ]; + + return $this->httpPostJson('cgi-bin/component/api_query_auth', $params); + } + + /** + * Get authorizer info. + * + * @param string $appId + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function getAuthorizer(string $appId) + { + $params = [ + 'component_appid' => $this->app['config']['app_id'], + 'authorizer_appid' => $appId, + ]; + + return $this->httpPostJson('cgi-bin/component/api_get_authorizer_info', $params); + } + + /** + * Get options. + * + * @param string $appId + * @param string $name + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function getAuthorizerOption(string $appId, string $name) + { + $params = [ + 'component_appid' => $this->app['config']['app_id'], + 'authorizer_appid' => $appId, + 'option_name' => $name, + ]; + + return $this->httpPostJson('cgi-bin/component/api_get_authorizer_option', $params); + } + + /** + * Set authorizer option. + * + * @param string $appId + * @param string $name + * @param string $value + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function setAuthorizerOption(string $appId, string $name, string $value) + { + $params = [ + 'component_appid' => $this->app['config']['app_id'], + 'authorizer_appid' => $appId, + 'option_name' => $name, + 'option_value' => $value, + ]; + + return $this->httpPostJson('cgi-bin/component/api_set_authorizer_option', $params); + } + + /** + * Get authorizer list. + * + * @param int $offset + * @param int $count + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function getAuthorizers($offset = 0, $count = 500) + { + $params = [ + 'component_appid' => $this->app['config']['app_id'], + 'offset' => $offset, + 'count' => $count, + ]; + + return $this->httpPostJson('cgi-bin/component/api_get_authorizer_list', $params); + } + + /** + * Create pre-authorization code. + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function createPreAuthorizationCode() + { + $params = [ + 'component_appid' => $this->app['config']['app_id'], + ]; + + return $this->httpPostJson('cgi-bin/component/api_create_preauthcode', $params); + } + + /** + * OpenPlatform Clear quota. + * + * @see https://open.weixin.qq.com/cgi-bin/showdocument?action=dir_list&t=resource/res_list&verify=1&id=open1419318587 + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function clearQuota() + { + $params = [ + 'component_appid' => $this->app['config']['app_id'], + ]; + + return $this->httpPostJson('cgi-bin/component/clear_quota', $params); + } +} diff --git a/vendor/overtrue/wechat/src/OpenPlatform/Base/ServiceProvider.php b/vendor/overtrue/wechat/src/OpenPlatform/Base/ServiceProvider.php new file mode 100644 index 0000000..e647c41 --- /dev/null +++ b/vendor/overtrue/wechat/src/OpenPlatform/Base/ServiceProvider.php @@ -0,0 +1,33 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OpenPlatform\Base; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +/** + * Class ServiceProvider. + * + * @author mingyoung + */ +class ServiceProvider implements ServiceProviderInterface +{ + /** + * {@inheritdoc}. + */ + public function register(Container $app) + { + $app['base'] = function ($app) { + return new Client($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/OpenPlatform/CodeTemplate/Client.php b/vendor/overtrue/wechat/src/OpenPlatform/CodeTemplate/Client.php new file mode 100644 index 0000000..3441041 --- /dev/null +++ b/vendor/overtrue/wechat/src/OpenPlatform/CodeTemplate/Client.php @@ -0,0 +1,94 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OpenPlatform\CodeTemplate; + +use EasyWeChat\Kernel\BaseClient; + +/** + * Class Client. + * + * @author caikeal + */ +class Client extends BaseClient +{ + /** + * 获取草稿箱内的所有临时代码草稿 + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function getDrafts() + { + return $this->httpGet('wxa/gettemplatedraftlist'); + } + + /** + * 将草稿箱的草稿选为小程序代码模版. + * + * @param int $draftId + * @param int $templateType + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function createFromDraft(int $draftId, int $templateType = 0) + { + $params = [ + 'draft_id' => $draftId, + 'template_type' => $templateType, + ]; + + return $this->httpPostJson('wxa/addtotemplate', $params); + } + + /** + * 获取代码模版库中的所有小程序代码模版. + * + * @param int $templateType + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function list(int $templateType = null) + { + $params = [ + 'template_type' => $templateType, + ]; + + return $this->httpGet('wxa/gettemplatelist', $params); + } + + /** + * 删除指定小程序代码模版. + * + * @param string $templateId + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function delete($templateId) + { + $params = [ + 'template_id' => $templateId, + ]; + + return $this->httpPostJson('wxa/deletetemplate', $params); + } +} diff --git a/vendor/overtrue/wechat/src/OpenPlatform/CodeTemplate/ServiceProvider.php b/vendor/overtrue/wechat/src/OpenPlatform/CodeTemplate/ServiceProvider.php new file mode 100644 index 0000000..ab543a7 --- /dev/null +++ b/vendor/overtrue/wechat/src/OpenPlatform/CodeTemplate/ServiceProvider.php @@ -0,0 +1,25 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OpenPlatform\CodeTemplate; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +class ServiceProvider implements ServiceProviderInterface +{ + public function register(Container $app) + { + $app['code_template'] = function ($app) { + return new Client($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/OpenPlatform/Component/Client.php b/vendor/overtrue/wechat/src/OpenPlatform/Component/Client.php new file mode 100644 index 0000000..eafb3f5 --- /dev/null +++ b/vendor/overtrue/wechat/src/OpenPlatform/Component/Client.php @@ -0,0 +1,60 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OpenPlatform\Component; + +use EasyWeChat\Kernel\BaseClient; + +/** + * Class Client. + * + * @author dudashuang + */ +class Client extends BaseClient +{ + /** + * 通过法人微信快速创建小程序. + * + * @param array $params + * + * @return array + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function registerMiniProgram(array $params) + { + return $this->httpPostJson('cgi-bin/component/fastregisterweapp', $params, ['action' => 'create']); + } + + /** + * 查询创建任务状态. + * + * @param string $companyName + * @param string $legalPersonaWechat + * @param string $legalPersonaName + * + * @return array + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function getRegistrationStatus(string $companyName, string $legalPersonaWechat, string $legalPersonaName) + { + $params = [ + 'name' => $companyName, + 'legal_persona_wechat' => $legalPersonaWechat, + 'legal_persona_name' => $legalPersonaName, + ]; + + return $this->httpPostJson('cgi-bin/component/fastregisterweapp', $params, ['action' => 'search']); + } +} diff --git a/vendor/overtrue/wechat/src/OpenPlatform/Component/ServiceProvider.php b/vendor/overtrue/wechat/src/OpenPlatform/Component/ServiceProvider.php new file mode 100644 index 0000000..83e309f --- /dev/null +++ b/vendor/overtrue/wechat/src/OpenPlatform/Component/ServiceProvider.php @@ -0,0 +1,25 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OpenPlatform\Component; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +class ServiceProvider implements ServiceProviderInterface +{ + public function register(Container $app) + { + $app['component'] = function ($app) { + return new Client($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/OpenPlatform/Server/Guard.php b/vendor/overtrue/wechat/src/OpenPlatform/Server/Guard.php new file mode 100644 index 0000000..8d29d5e --- /dev/null +++ b/vendor/overtrue/wechat/src/OpenPlatform/Server/Guard.php @@ -0,0 +1,65 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OpenPlatform\Server; + +use EasyWeChat\Kernel\ServerGuard; +use EasyWeChat\OpenPlatform\Server\Handlers\Authorized; +use EasyWeChat\OpenPlatform\Server\Handlers\Unauthorized; +use EasyWeChat\OpenPlatform\Server\Handlers\UpdateAuthorized; +use EasyWeChat\OpenPlatform\Server\Handlers\VerifyTicketRefreshed; +use Symfony\Component\HttpFoundation\Response; +use function EasyWeChat\Kernel\data_get; + +/** + * Class Guard. + * + * @author mingyoung + */ +class Guard extends ServerGuard +{ + public const EVENT_AUTHORIZED = 'authorized'; + public const EVENT_UNAUTHORIZED = 'unauthorized'; + public const EVENT_UPDATE_AUTHORIZED = 'updateauthorized'; + public const EVENT_COMPONENT_VERIFY_TICKET = 'component_verify_ticket'; + public const EVENT_THIRD_FAST_REGISTERED = 'notify_third_fasteregister'; + + /** + * @return \Symfony\Component\HttpFoundation\Response + * + * @throws \EasyWeChat\Kernel\Exceptions\BadRequestException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + protected function resolve(): Response + { + $this->registerHandlers(); + + $message = $this->getMessage(); + + if ($infoType = data_get($message, 'InfoType')) { + $this->dispatch($infoType, $message); + } + + return new Response(static::SUCCESS_EMPTY_RESPONSE); + } + + /** + * Register event handlers. + */ + protected function registerHandlers() + { + $this->on(self::EVENT_AUTHORIZED, Authorized::class); + $this->on(self::EVENT_UNAUTHORIZED, Unauthorized::class); + $this->on(self::EVENT_UPDATE_AUTHORIZED, UpdateAuthorized::class); + $this->on(self::EVENT_COMPONENT_VERIFY_TICKET, VerifyTicketRefreshed::class); + } +} diff --git a/vendor/overtrue/wechat/src/OpenPlatform/Server/Handlers/Authorized.php b/vendor/overtrue/wechat/src/OpenPlatform/Server/Handlers/Authorized.php new file mode 100644 index 0000000..fe7f9c6 --- /dev/null +++ b/vendor/overtrue/wechat/src/OpenPlatform/Server/Handlers/Authorized.php @@ -0,0 +1,30 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OpenPlatform\Server\Handlers; + +use EasyWeChat\Kernel\Contracts\EventHandlerInterface; + +/** + * Class Authorized. + * + * @author mingyoung + */ +class Authorized implements EventHandlerInterface +{ + /** + * {@inheritdoc}. + */ + public function handle($payload = null) + { + // Do nothing for the time being. + } +} diff --git a/vendor/overtrue/wechat/src/OpenPlatform/Server/Handlers/Unauthorized.php b/vendor/overtrue/wechat/src/OpenPlatform/Server/Handlers/Unauthorized.php new file mode 100644 index 0000000..158228b --- /dev/null +++ b/vendor/overtrue/wechat/src/OpenPlatform/Server/Handlers/Unauthorized.php @@ -0,0 +1,30 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OpenPlatform\Server\Handlers; + +use EasyWeChat\Kernel\Contracts\EventHandlerInterface; + +/** + * Class Unauthorized. + * + * @author mingyoung + */ +class Unauthorized implements EventHandlerInterface +{ + /** + * {@inheritdoc}. + */ + public function handle($payload = null) + { + // Do nothing for the time being. + } +} diff --git a/vendor/overtrue/wechat/src/OpenPlatform/Server/Handlers/UpdateAuthorized.php b/vendor/overtrue/wechat/src/OpenPlatform/Server/Handlers/UpdateAuthorized.php new file mode 100644 index 0000000..e73caa5 --- /dev/null +++ b/vendor/overtrue/wechat/src/OpenPlatform/Server/Handlers/UpdateAuthorized.php @@ -0,0 +1,30 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OpenPlatform\Server\Handlers; + +use EasyWeChat\Kernel\Contracts\EventHandlerInterface; + +/** + * Class UpdateAuthorized. + * + * @author mingyoung + */ +class UpdateAuthorized implements EventHandlerInterface +{ + /** + * {@inheritdoc} + */ + public function handle($payload = null) + { + // Do nothing for the time being. + } +} diff --git a/vendor/overtrue/wechat/src/OpenPlatform/Server/Handlers/VerifyTicketRefreshed.php b/vendor/overtrue/wechat/src/OpenPlatform/Server/Handlers/VerifyTicketRefreshed.php new file mode 100644 index 0000000..f268a85 --- /dev/null +++ b/vendor/overtrue/wechat/src/OpenPlatform/Server/Handlers/VerifyTicketRefreshed.php @@ -0,0 +1,55 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OpenPlatform\Server\Handlers; + +use EasyWeChat\Kernel\Contracts\EventHandlerInterface; +use EasyWeChat\Kernel\Traits\ResponseCastable; +use EasyWeChat\OpenPlatform\Application; + +use function EasyWeChat\Kernel\data_get; + +/** + * Class VerifyTicketRefreshed. + * + * @author mingyoung + */ +class VerifyTicketRefreshed implements EventHandlerInterface +{ + use ResponseCastable; + + /** + * @var \EasyWeChat\OpenPlatform\Application + */ + protected $app; + + /** + * Constructor. + * + * @param \EasyWeChat\OpenPlatform\Application $app + */ + public function __construct(Application $app) + { + $this->app = $app; + } + + /** + * {@inheritdoc}. + */ + public function handle($payload = null) + { + $ticket = data_get($payload, 'ComponentVerifyTicket'); + + if (!empty($ticket)) { + $this->app['verify_ticket']->setTicket($ticket); + } + } +} diff --git a/vendor/overtrue/wechat/src/OpenPlatform/Server/ServiceProvider.php b/vendor/overtrue/wechat/src/OpenPlatform/Server/ServiceProvider.php new file mode 100644 index 0000000..7747061 --- /dev/null +++ b/vendor/overtrue/wechat/src/OpenPlatform/Server/ServiceProvider.php @@ -0,0 +1,34 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OpenPlatform\Server; + +use EasyWeChat\Kernel\Encryptor; +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +class ServiceProvider implements ServiceProviderInterface +{ + public function register(Container $app) + { + $app['encryptor'] = function ($app) { + return new Encryptor( + $app['config']['app_id'], + $app['config']['token'], + $app['config']['aes_key'] + ); + }; + + $app['server'] = function ($app) { + return new Guard($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/OpenWork/Application.php b/vendor/overtrue/wechat/src/OpenWork/Application.php new file mode 100644 index 0000000..4fc9ac0 --- /dev/null +++ b/vendor/overtrue/wechat/src/OpenWork/Application.php @@ -0,0 +1,95 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OpenWork; + +use EasyWeChat\Kernel\ServiceContainer; +use EasyWeChat\OpenWork\Work\Application as Work; + +/** + * Application. + * + * @author xiaomin + * + * @property \EasyWeChat\OpenWork\Server\Guard $server + * @property \EasyWeChat\OpenWork\Corp\Client $corp + * @property \EasyWeChat\OpenWork\Provider\Client $provider + * @property \EasyWeChat\OpenWork\SuiteAuth\AccessToken $suite_access_token + * @property \EasyWeChat\OpenWork\Auth\AccessToken $provider_access_token + * @property \EasyWeChat\OpenWork\SuiteAuth\SuiteTicket $suite_ticket + * @property \EasyWeChat\OpenWork\MiniProgram\Client $mini_program + * @property \EasyWeChat\OpenWork\Media\Client $media + * @property \EasyWeChat\OpenWork\Contact\Client $contact + * @property \EasyWeChat\OpenWork\License\Client $license_order + * @property \EasyWeChat\OpenWork\License\Account $license_account + * @property \EasyWeChat\OpenWork\Device\Client $device + * @noinspection PhpFullyQualifiedNameUsageInspection + */ +class Application extends ServiceContainer +{ + /** + * @var array + */ + protected $providers = [ + Auth\ServiceProvider::class, + SuiteAuth\ServiceProvider::class, + Server\ServiceProvider::class, + Corp\ServiceProvider::class, + Provider\ServiceProvider::class, + MiniProgram\ServiceProvider::class, + Media\ServiceProvider::class, + Contact\ServiceProvider::class, + License\ServiceProvider::class, + Device\ServiceProvider::class, + ]; + + /** + * @var array + */ + protected $defaultConfig = [ + // http://docs.guzzlephp.org/en/stable/request-options.html + 'http' => [ + 'base_uri' => 'https://qyapi.weixin.qq.com/', + ], + ]; + + /** + * Creates the miniProgram application. + * + * @return \EasyWeChat\Work\MiniProgram\Application + */ + public function miniProgram(): \EasyWeChat\Work\MiniProgram\Application + { + return new \EasyWeChat\Work\MiniProgram\Application($this->getConfig()); + } + + /** + * @param string $authCorpId 企业 corp_id + * @param string $permanentCode 企业永久授权码 + * + * @return Work + */ + public function work(string $authCorpId, string $permanentCode): Work + { + return new Work($authCorpId, $permanentCode, $this); + } + + /** + * @param string $method + * @param array $arguments + * + * @return mixed + */ + public function __call($method, $arguments) + { + return $this['base']->$method(...$arguments); + } +} diff --git a/vendor/overtrue/wechat/src/OpenWork/Auth/AccessToken.php b/vendor/overtrue/wechat/src/OpenWork/Auth/AccessToken.php new file mode 100644 index 0000000..3f00a25 --- /dev/null +++ b/vendor/overtrue/wechat/src/OpenWork/Auth/AccessToken.php @@ -0,0 +1,52 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OpenWork\Auth; + +use EasyWeChat\Kernel\AccessToken as BaseAccessToken; + +/** + * AccessToken. + * + * @author xiaomin + */ +class AccessToken extends BaseAccessToken +{ + protected $requestMethod = 'POST'; + + /** + * @var string + */ + protected $endpointToGetToken = 'cgi-bin/service/get_provider_token'; + + /** + * @var string + */ + protected $tokenKey = 'provider_access_token'; + + /** + * @var string + */ + protected $cachePrefix = 'easywechat.kernel.provider_access_token.'; + + /** + * Credential for get token. + * + * @return array + */ + protected function getCredentials(): array + { + return [ + 'corpid' => $this->app['config']['corp_id'], //服务商的corpid + 'provider_secret' => $this->app['config']['secret'], + ]; + } +} diff --git a/vendor/overtrue/wechat/src/OpenWork/Auth/ServiceProvider.php b/vendor/overtrue/wechat/src/OpenWork/Auth/ServiceProvider.php new file mode 100644 index 0000000..78aba05 --- /dev/null +++ b/vendor/overtrue/wechat/src/OpenWork/Auth/ServiceProvider.php @@ -0,0 +1,33 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OpenWork\Auth; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +/** + * ServiceProvider. + * + * @author xiaomin + */ +class ServiceProvider implements ServiceProviderInterface +{ + /** + * {@inheritdoc}. + */ + public function register(Container $app) + { + isset($app['provider_access_token']) || $app['provider_access_token'] = function ($app) { + return new AccessToken($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/OpenWork/Contact/Client.php b/vendor/overtrue/wechat/src/OpenWork/Contact/Client.php new file mode 100644 index 0000000..3e314e7 --- /dev/null +++ b/vendor/overtrue/wechat/src/OpenWork/Contact/Client.php @@ -0,0 +1,92 @@ + + */ +class Client extends BaseClient +{ + public function __construct(ServiceContainer $app) + { + parent::__construct($app, $app['provider_access_token']); + } + + + /** + * 异步通讯录id转译 + * + * @param string $authCorpId 授权企业corp_id + * @param array $mediaIdList 需要转译的文件的media_id列表,只支持后缀名为xls/xlsx,doc/docx,csv,txt的文件。 + * 不超过20个文件,获取方式使用{@see \EasyWeChat\OpenWork\Media\Client::uploadFile() 上传需要转译的文件} + * + * @param string|null $outputFileName 转译完打包的文件名,不需带后缀。企业微信后台会打包成zip压缩文件,并自动拼接上.zip后缀。 + * 若media_id_list中文件个数大于1,则该字段必填。若media_id_list中文件个数等于1,且未填该字段,则转译完不打包成压缩文件。支持id转译 + * + * @param string|null $outputFileFormat 若不指定,则输出格式跟输入格式相同。若要转换输出格式,当前仅支持输出文件为pdf格式。 + * 若$mediaIdList中文件存在相同前缀名的文件,则输出文件命名规则为:文件前缀名_ 文件格式后缀.pdf,例如:20200901_ xlsx.pdf + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + * @noinspection PhpFullyQualifiedNameUsageInspection + */ + public function idTranslate(string $authCorpId, array $mediaIdList, string $outputFileName = null, string $outputFileFormat = null) + { + /** @noinspection SpellCheckingInspection */ + return $this->httpPostJson('cgi-bin/service/contact/id_translate', [ + 'auth_corpid' => $authCorpId, + 'media_id_list' => $mediaIdList, + 'output_file_name' => $outputFileName, + 'output_file_format' => $outputFileFormat + ]); + } + + /** + * 获取异步任务结果 + * + * @param string $jobId 异步任务id,最大长度为64字节 + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + * @noinspection PhpFullyQualifiedNameUsageInspection + */ + public function getResult(string $jobId) + { + /** @noinspection SpellCheckingInspection */ + return $this->httpGet('cgi-bin/service/batch/getresult', [ + 'jobid' => $jobId + ]); + } + + /** + * 通讯录userid排序 + * + * @param string $authCorpId 查询的企业corp_id + * @param array $userIdList 要排序的user_id列表,最多支持1000个 + * @param int $sortType 排序方式 0:根据姓名拼音升序排列,返回用户userid列表 1:根据姓名拼音降序排列,返回用户userid列表 + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + * @noinspection PhpFullyQualifiedNameUsageInspection + */ + public function sort(string $authCorpId, array $userIdList, int $sortType = 0) + { + /** @noinspection SpellCheckingInspection */ + return $this->httpPostJson('cgi-bin/service/contact/sort', [ + 'auth_corpid' => $authCorpId, + 'sort_type' => $sortType, + 'useridlist' => $userIdList + ]); + } +} diff --git a/vendor/overtrue/wechat/src/OpenWork/Contact/ServiceProvider.php b/vendor/overtrue/wechat/src/OpenWork/Contact/ServiceProvider.php new file mode 100644 index 0000000..f3acf56 --- /dev/null +++ b/vendor/overtrue/wechat/src/OpenWork/Contact/ServiceProvider.php @@ -0,0 +1,33 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OpenWork\Contact; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +/** + * ServiceProvider. + * + * @author moniang + */ +class ServiceProvider implements ServiceProviderInterface +{ + /** + * {@inheritdoc}. + */ + public function register(Container $app) + { + !isset($app['contact']) && $app['contact'] = function ($app) { + return new Client($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/OpenWork/Corp/Client.php b/vendor/overtrue/wechat/src/OpenWork/Corp/Client.php new file mode 100644 index 0000000..e32ffea --- /dev/null +++ b/vendor/overtrue/wechat/src/OpenWork/Corp/Client.php @@ -0,0 +1,247 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OpenWork\Corp; + +use EasyWeChat\Kernel\BaseClient; +use EasyWeChat\Kernel\ServiceContainer; + +/** + * Client. + * + * @author xiaomin + */ +class Client extends BaseClient +{ + /** + * Client constructor. + * 三方接口有三个access_token,这里用的是suite_access_token. + * + * @param ServiceContainer $app + */ + public function __construct(ServiceContainer $app) + { + parent::__construct($app, $app['suite_access_token']); + } + + /** + * 企业微信安装应用授权 url. + * + * @param string $preAuthCode 预授权码 + * @param string $redirectUri 回调地址 + * @param string $state + * + * @return string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + * @throws \Exception + */ + public function getPreAuthorizationUrl(string $preAuthCode = '', string $redirectUri = '', string $state = '') + { + $redirectUri || $redirectUri = $this->app->config['redirect_uri_install']; + $preAuthCode || $preAuthCode = $this->getPreAuthCode()['pre_auth_code']; + $state || $state = random_bytes(64); + + $params = [ + 'suite_id' => $this->app['config']['suite_id'], + 'redirect_uri' => $redirectUri, + 'pre_auth_code' => $preAuthCode, + 'state' => $state, + ]; + + return 'https://open.work.weixin.qq.com/3rdapp/install?' . http_build_query($params); + } + + /** + * 获取预授权码. + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function getPreAuthCode() + { + return $this->httpGet('cgi-bin/service/get_pre_auth_code'); + } + + /** + * 设置授权配置. + * 该接口可对某次授权进行配置. + * + * @param string $preAuthCode + * @param array $sessionInfo + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function setSession(string $preAuthCode, array $sessionInfo) + { + $params = [ + 'pre_auth_code' => $preAuthCode, + 'session_info' => $sessionInfo, + ]; + + return $this->httpPostJson('cgi-bin/service/set_session_info', $params); + } + + /** + * 获取企业永久授权码. + * + * @param string $authCode 临时授权码,会在授权成功时附加在redirect_uri中跳转回第三方服务商网站,或通过回调推送给服务商。长度为64至512个字节 + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function getPermanentByCode(string $authCode) + { + $params = [ + 'auth_code' => $authCode, + ]; + + return $this->httpPostJson('cgi-bin/service/get_permanent_code', $params); + } + + /** + * 获取企业授权信息. + * + * @param string $authCorpId + * @param string $permanentCode + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function getAuthorization(string $authCorpId, string $permanentCode) + { + $params = [ + 'auth_corpid' => $authCorpId, + 'permanent_code' => $permanentCode, + ]; + + return $this->httpPostJson('cgi-bin/service/get_auth_info', $params); + } + + /** + * 获取应用的管理员列表. + * + * @param string $authCorpId + * @param string $agentId + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function getManagers(string $authCorpId, string $agentId) + { + $params = [ + 'auth_corpid' => $authCorpId, + 'agentid' => $agentId, + ]; + + return $this->httpPostJson('cgi-bin/service/get_admin_list', $params); + } + + /** + * 获取登录url. + * + * @param string $redirectUri + * @param string $scope + * @param string|null $state + * + * @return string + * @throws \Exception + */ + public function getOAuthRedirectUrl(string $redirectUri = '', string $scope = 'snsapi_userinfo', string $state = null) + { + $redirectUri || $redirectUri = $this->app->config['redirect_uri_oauth']; + $state || $state = random_bytes(64); + $params = [ + 'appid' => $this->app['config']['suite_id'], + 'redirect_uri' => $redirectUri, + 'response_type' => 'code', + 'scope' => $scope, + 'state' => $state, + ]; + + return 'https://open.weixin.qq.com/connect/oauth2/authorize?' . http_build_query($params) . '#wechat_redirect'; + } + + /** + * 第三方根据code获取企业成员信息. + * + * @param string $code + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function getUserByCode(string $code) + { + $params = [ + 'code' => $code, + ]; + + return $this->httpGet('cgi-bin/service/getuserinfo3rd', $params); + } + + /** + * 第三方使用user_ticket获取成员详情. + * + * @param string $userTicket + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function getUserByTicket(string $userTicket) + { + $params = [ + 'user_ticket' => $userTicket, + ]; + + return $this->httpPostJson('cgi-bin/service/getuserdetail3rd', $params); + } + + /** + * 第三方根据unionid查询external_userid + * + * @param string $unionid 微信用户的unionid + * @param string $openid 微信用户的openid + * @param string $corpid 需要换取的企业corpid,不填则拉取所有企业 + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + * + * @author SinyLi + */ + public function unionidToExternalUserid(string $unionid, string $openid, string $corpid = '') + { + $params = [ + 'unionid' => $unionid, + 'openid' => $openid, + 'corpid' => $corpid + ]; + + return $this->httpPostJson('cgi-bin/service/externalcontact/unionid_to_external_userid_3rd', $params); + } +} diff --git a/vendor/overtrue/wechat/src/OpenWork/Corp/ServiceProvider.php b/vendor/overtrue/wechat/src/OpenWork/Corp/ServiceProvider.php new file mode 100644 index 0000000..0cc8ea9 --- /dev/null +++ b/vendor/overtrue/wechat/src/OpenWork/Corp/ServiceProvider.php @@ -0,0 +1,38 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OpenWork\Corp; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +/** + * ServiceProvider. + * + * @author xiaomin + */ +class ServiceProvider implements ServiceProviderInterface +{ + /** + * Registers services on the given container. + * + * This method should only be used to configure services and parameters. + * It should not get services. + * + * @param \Pimple\Container $app + */ + public function register(Container $app) + { + isset($app['corp']) || $app['corp'] = function ($app) { + return new Client($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/OpenWork/Device/Client.php b/vendor/overtrue/wechat/src/OpenWork/Device/Client.php new file mode 100644 index 0000000..e3b9427 --- /dev/null +++ b/vendor/overtrue/wechat/src/OpenWork/Device/Client.php @@ -0,0 +1,187 @@ + + */ +class Client extends BaseClient +{ + public function __construct(ServiceContainer $app) + { + parent::__construct($app, $app['provider_access_token']); + } + + + /** + * 添加设备实例 + * + * 该API用于添加一个设备的实例 + * + * @param string $modelId 设备的型号id,在服务商管理端添加设备型号之后,可以查看型号id + * @param string $deviceSn 硬件序列号,只能包含数字和大小写字母,长度最大为128字节,不可与之前已导入的相同 + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + * @noinspection PhpFullyQualifiedNameUsageInspection + */ + public function add(string $modelId, string $deviceSn) + { + return $this->httpPostJson('cgi-bin/service/add_device', [ + 'model_id' => $modelId, + 'device_sn' => $deviceSn + ]); + } + + /** + * 查询设备绑定信息 + * + * 该API用于查询设备绑定的企业信息 + * + * @param string $deviceSn 硬件序列号,只能包含数字和大小写字母,长度最大为128字节 + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + * @noinspection PhpFullyQualifiedNameUsageInspection + */ + public function get(string $deviceSn) + { + return $this->httpPostJson('cgi-bin/service/get_device_auth_info', [ + 'device_sn' => $deviceSn + ]); + } + + /** + * 重置设备SecretNo + * + * 该API用于重置所有类型设备的SecretNo,主要针对同一批次生成相同secretNo(seedSecretNo)的设备, + * 可将SecretNo的状态转换为未设置状态,使设备可以重新调用get_secret_no获取新的sercretNo, + * 如果对存量设备调用此接口,那么设备固件必须支持通过seed_secret_no获取secretNo。 + * + * @param string $deviceSn 硬件序列号,只能包含数字和大小写字母,长度最大为128字节 + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + * @noinspection PhpFullyQualifiedNameUsageInspection + */ + public function reset(string $deviceSn) + { + return $this->httpPostJson('cgi-bin/service/reset_secret_no', [ + 'device_sn' => $deviceSn + ]); + } + + /** + * 获取设备列表 + * + * 硬件服务商可以通过本接口获取已登记的设备信息 + * + * @param int $offset 用于分页拉取数据,表示偏移量 + * @param int $limit 用于分页拉取数据,表示请求的数据条数 + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + * @noinspection PhpFullyQualifiedNameUsageInspection + */ + public function list(int $offset, int $limit) + { + return $this->httpPostJson('cgi-bin/service/list_device', [ + 'offset' => $offset, + 'limit' => $limit + ]); + } + + /** + * 上传设备日志 + * + * 该API用于异步拉取某个设备的日志文件 + * + * @param string $deviceSn 硬件序列号,只能包含数字和大小写字母,长度最大为128字节 + * @param string $hint 提示参数,企业微信后台会将此参数透传给设备,设备可根据此参数来决定要上传哪部分日志,服务商可根据实际业务需求来使用此参数,最长为128字节 + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + * @noinspection PhpFullyQualifiedNameUsageInspection + */ + public function uploadLog(string $deviceSn, string $hint) + { + return $this->httpPostJson('cgi-bin/service/fetch_device_log', [ + 'device_sn' => $deviceSn, + 'hint' => $hint + ]); + } + + /** + * 获取设备自定义参数 + * + * @param string $deviceSn 硬件序列号,只能包含数字和大小写字母,长度最大为128字节 + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + * @noinspection PhpFullyQualifiedNameUsageInspection + */ + public function getFeature(string $deviceSn) + { + return $this->httpPostJson('cgi-bin/hardware/get_device_feature', [ + 'device_sn' => $deviceSn + ]); + } + + /** + * 删除设备实例 + * + * 该API用于删除一个设备的实例 + * + * @param string $deviceSn 硬件序列号,只能包含数字和大小写字母,长度最大为128字节 + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + * @noinspection PhpFullyQualifiedNameUsageInspection + */ + public function delete(string $deviceSn) + { + return $this->httpPostJson('cgi-bin/service/del_device', [ + 'device_sn' => $deviceSn + ]); + } + + /** + * 设置打印机支持状态 + * + * 该API用于设置打印盒子是否支持打印机的信息 + * + * @param string $deviceSn 硬件序列号,只能包含数字和大小写字母,长度最大为128字节 + * @param bool $supported 是否支持打印机 + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + * @noinspection PhpFullyQualifiedNameUsageInspection + */ + public function setPrinterSupportState(string $deviceSn, bool $supported) + { + return $this->httpPostJson('cgi-bin/service/del_device', [ + 'device_sn' => $deviceSn, + 'not_supported_printer' => (int)!$supported + ]); + } +} diff --git a/vendor/overtrue/wechat/src/OpenWork/Device/ServiceProvider.php b/vendor/overtrue/wechat/src/OpenWork/Device/ServiceProvider.php new file mode 100644 index 0000000..510dca6 --- /dev/null +++ b/vendor/overtrue/wechat/src/OpenWork/Device/ServiceProvider.php @@ -0,0 +1,33 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OpenWork\Device; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +/** + * ServiceProvider. + * + * @author moniang + */ +class ServiceProvider implements ServiceProviderInterface +{ + /** + * {@inheritdoc}. + */ + public function register(Container $app) + { + !isset($app['device']) && $app['device'] = function ($app) { + return new Client($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/OpenWork/License/Account.php b/vendor/overtrue/wechat/src/OpenWork/License/Account.php new file mode 100644 index 0000000..691e380 --- /dev/null +++ b/vendor/overtrue/wechat/src/OpenWork/License/Account.php @@ -0,0 +1,235 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OpenWork\License; + +use EasyWeChat\Kernel\BaseClient; +use EasyWeChat\Kernel\ServiceContainer; + +/** + * License Account Client + * + * @author moniang + */ +class Account extends BaseClient +{ + public function __construct(ServiceContainer $app) + { + parent::__construct($app, $app['provider_access_token']); + } + + /** + * 激活帐号 + * + * >下单购买帐号并支付完成之后,先调用{@see Client::getAccountList() 获取订单中的帐号列表}接口获取到帐号激活码, + * 然后可以调用该接口将激活码绑定到某个企业员工,以对其激活相应的平台服务能力。 + * + * **一个userid允许激活一个基础帐号以及一个互通帐号。** + * + * @param string $activeCode 帐号激活码 + * @param string $corpId 待绑定激活的成员所属企业corpId,只支持加密的corpId + * @param string $userId 待绑定激活的企业成员userId 。只支持加密的userId + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + * @noinspection PhpFullyQualifiedNameUsageInspection + * @noinspection SpellCheckingInspection + */ + public function active(string $activeCode, string $corpId, string $userId) + { + return $this->httpPostJson('cgi-bin/license/active_account', [ + 'active_code' => $activeCode, + 'corpid' => $corpId, + 'userid' => $userId + ]); + } + + /** + * 批量激活帐号 + * + * >可在一次请求里为一个企业的多个成员激活许可帐号,便于服务商批量化处理。 + * + * **一个userid允许激活一个基础帐号以及一个互通帐号。单次激活的员工数量不超过1000** + * + * @param string $corpId 待绑定激活的成员所属企业corpid,只支持加密的corpid + * @param array $activeList 需要激活的帐号列表,每个数组包含active_code帐号激活码和userid待绑定激活的企业成员加密userid + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + * @noinspection PhpFullyQualifiedNameUsageInspection + * @noinspection SpellCheckingInspection + */ + public function batchActive(string $corpId, array $activeList) + { + return $this->httpPostJson('cgi-bin/license/batch_active_account', [ + 'corpid' => $corpId, + 'active_list' => $activeList + ]); + } + + /** + * 获取激活码详情 + * + * >查询某个帐号激活码的状态以及激活绑定情况。 + * + * @param string $corpId + * @param string $activeCode + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + * @noinspection PhpFullyQualifiedNameUsageInspection + * @noinspection SpellCheckingInspection + */ + public function getActiveCodeInfo(string $corpId, string $activeCode) + { + return $this->httpPostJson('cgi-bin/license/get_active_info_by_code', [ + 'corpid' => $corpId, + 'active_code' => $activeCode + ]); + } + + /** + * 批量获取激活码详情 + * + * >批量查询帐号激活码的状态以及激活绑定情况。 + * + * @param string $corpId 要查询的企业的corpid,只支持加密的corpid + * @param string[] $activeCodeList 激活码列表,最多不超过1000个 + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + * @noinspection PhpFullyQualifiedNameUsageInspection + * @noinspection SpellCheckingInspection + */ + public function batchGetActiveCodeInfo(string $corpId, array $activeCodeList) + { + return $this->httpPostJson('cgi-bin/license/batch_get_active_info_by_code', [ + 'corpid' => $corpId, + 'active_code_list' => $activeCodeList + ]); + } + + /** + * 获取企业的帐号列表 + * + * >查询指定企业下的平台能力服务帐号列表。 + * + * @param string $corpId 企业corpId ,只支持加密的corpId + * @param string|null $cursor 返回的最大记录数,整型,最大值1000,默认值500 + * @param int $limit 用于分页查询的游标,字符串类型,由上一次调用返回,首次调用可不填 + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + * @noinspection PhpFullyQualifiedNameUsageInspection + * @noinspection SpellCheckingInspection + */ + public function list(string $corpId, ?string $cursor = null, int $limit = 500) + { + return $this->httpPostJson('cgi-bin/license/list_actived_account', [ + 'corpid' => $corpId, + 'limit' => $limit, + 'cursor' => $cursor + ]); + } + + /** + * 获取成员的激活详情 + * + * >查询某个企业成员的激活情况。 + * + * @param string $corpId 企业corpId ,只支持加密的corpId + * @param string $userId 待查询员工的userid,只支持加密的userid + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + * @noinspection PhpFullyQualifiedNameUsageInspection + * @noinspection SpellCheckingInspection + */ + public function getActiveAccountInfo(string $corpId, string $userId) + { + return $this->httpPostJson('cgi-bin/license/get_active_info_by_user', [ + 'corpid' => $corpId, + 'userid' => $userId + ]); + } + + + /** + * 帐号继承 + * + * >在企业员工离职或者工作范围的有变更时,允许将其许可帐号继承给其他员工。 + * + * **调用限制:** + * - 转移成员和接收成员属于同一个企业 + * - 转移成员的帐号已激活,且在有效期 + * - 转移许可的成员为离职成员时,不限制下次转接的时间间隔 + * - 转移许可的成员为在职成员时,转接后30天后才可进行下次转接 + * - 接收成员许可不能与转移成员的许可重叠(同时拥有基础帐号或者互通帐号) + * - 单次转移的帐号数限制在1000以内 + * + * @param string $corpId 待绑定激活的成员所属企业corpId,只支持加密的corpId + * @param array $transferList 待转移成员列表,每个数组包含handover_userid转移成员的userid和takeover_userid接收成员的userid + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + * @noinspection PhpFullyQualifiedNameUsageInspection + * @noinspection SpellCheckingInspection + */ + public function batchTransfer(string $corpId, array $transferList) + { + return $this->httpPostJson('cgi-bin/license/batch_transfer_license', [ + 'corpid' => $corpId, + 'transfer_list' => $transferList + ]); + } + + /** + * 分配激活码给下游企业 + * + * >服务商可调用该接口将为上游企业购买的激活码分配给下游企业使用。 + * + * @param string $fromCorpid 上游企业corpid。支持明文或者密文的corpid + * @param string $toCorpid 下游企业corpid。支持明文或者密文的corpid + * @param array $activeCode 分享的接口许可激活码。单次分享激活码不可超过1000个,累计分享给同一下游企业的激活码总数不可超过上下游通讯录中该下游企业人数的2倍 + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + * @noinspection PhpFullyQualifiedNameUsageInspection + * @noinspection SpellCheckingInspection + */ + public function share(string $fromCorpid, string $toCorpid, array $activeCode) + { + return $this->httpPostJson('cgi-bin/license/batch_share_active_code', [ + 'from_corpid' => $fromCorpid, + 'to_corpid' => $toCorpid, + 'share_list' => array_map(function ($code) { + return [ + 'active_code' => $code, + ]; + }, $activeCode), + ]); + } +} diff --git a/vendor/overtrue/wechat/src/OpenWork/License/App.php b/vendor/overtrue/wechat/src/OpenWork/License/App.php new file mode 100644 index 0000000..12d8b28 --- /dev/null +++ b/vendor/overtrue/wechat/src/OpenWork/License/App.php @@ -0,0 +1,51 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OpenWork\License; + +use EasyWeChat\Kernel\BaseClient; +use EasyWeChat\Kernel\ServiceContainer; + +/** + * License App Client + * + * @author keller31 + */ +class App extends BaseClient +{ + public function __construct(ServiceContainer $app) + { + parent::__construct($app, $app['provider_access_token']); + } + + /** + * 获取应用的接口许可状态 + * 服务商可获取某个授权企业的应用接口许可试用期,免费试用期为企业首次安装应用后的90天。 + * + * @link https://developer.work.weixin.qq.com/document/path/95844 + * + * @param string $corpid 企业id + * @param string $suite_id 套件id + * @param string $appid 旧的多应用套件中的应用id,新开发者请忽略 + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function get(string $corpid, string $suite_id, string $appid = '') + { + return $this->httpPostJson('cgi-bin/license/get_app_license_info', [ + 'corpid' => $corpid, + 'suite_id' => $suite_id, + 'appid' => $appid + ]); + } +} diff --git a/vendor/overtrue/wechat/src/OpenWork/License/AutoActive.php b/vendor/overtrue/wechat/src/OpenWork/License/AutoActive.php new file mode 100644 index 0000000..f101e0c --- /dev/null +++ b/vendor/overtrue/wechat/src/OpenWork/License/AutoActive.php @@ -0,0 +1,69 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OpenWork\License; + +use EasyWeChat\Kernel\BaseClient; +use EasyWeChat\Kernel\ServiceContainer; + +/** + * License Client + * + * @author keller31 + */ +class AutoActive extends BaseClient +{ + public function __construct(ServiceContainer $app) + { + parent::__construct($app, $app['provider_access_token']); + } + + /** + * 设置企业的许可自动激活状态 + * 服务商可以调用该接口设置授权企业的许可自动激活状态。设置为自动激活后,对应授权企业的员工使用服务商应用时,接口许可表现为自动激活。 + * + * @link https://developer.work.weixin.qq.com/document/path/95873 + * + * @param string $corpid 企业ID + * @param integer $status 许可自动激活状态。0:关闭,1:打开 + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function setStatus(string $corpid, int $status) + { + return $this->httpPostJson('cgi-bin/license/set_auto_active_status', [ + 'corpid' => $corpid, + 'auto_active_status' => $status + ]); + } + + /** + * 查询企业的许可自动激活状态 + * 服务商可以调用该接口查询授权企业的许可自动激活状态。 + * + * @link https://developer.work.weixin.qq.com/document/path/95874 + * + * @param string $corpid 企业ID + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function getStatus(string $corpid) + { + return $this->httpPostJson('cgi-bin/license/get_auto_active_status', [ + 'corpid' => $corpid + ]); + } +} diff --git a/vendor/overtrue/wechat/src/OpenWork/License/Client.php b/vendor/overtrue/wechat/src/OpenWork/License/Client.php new file mode 100644 index 0000000..2671033 --- /dev/null +++ b/vendor/overtrue/wechat/src/OpenWork/License/Client.php @@ -0,0 +1,198 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OpenWork\License; + +use EasyWeChat\Kernel\BaseClient; +use EasyWeChat\Kernel\ServiceContainer; + +/** + * Order Client + * + * @author moniang + */ +class Client extends BaseClient +{ + public function __construct(ServiceContainer $app) + { + parent::__construct($app, $app['provider_access_token']); + } + + /** + * 下单购买帐号 + * + * 服务商下单为企业购买新的帐号,可以同时购买基础帐号与互通帐号。下单之后,需要到服务商管理端发起支付,支付完成之后,订单才能生效。 + * + * @param string $corpId 企业id,只支持加密的corpid + * @param array $data + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + * @noinspection SpellCheckingInspection + * @noinspection PhpFullyQualifiedNameUsageInspection + */ + public function create(string $corpId, array $data) + { + return $this->httpPostJson('cgi-bin/license/create_new_order', array_merge([ + 'corpid' => $corpId + ], $data)); + } + + /** + * 创建续期任务 + * + * 在同一个订单里,首次创建任务无须指定jobid,后续指定同一个jobid,表示往同一个订单任务追加续期的成员。 + * + * @param string $corpId 企业id,只支持加密的corpid + * @param array $data + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + * @noinspection SpellCheckingInspection + * @noinspection PhpFullyQualifiedNameUsageInspection + */ + public function renew(string $corpId, array $data) + { + return $this->httpPostJson('cgi-bin/license/create_renew_order_job', array_merge([ + 'corpid' => $corpId + ], $data)); + } + + /** + * 提交续期订单 + * + * 创建续期任务之后,需要调用该接口,以提交订单任务。注意,提交之后,需要到服务商管理端发起支付,支付完成之后,订单才能生效。 + * + * @param string $jobId 任务id + * @param string $buyerUserId 下单人。服务商企业内成员userid。该userid必须登录过企业微信,并且企业微信已绑定微信 + * @param int $accountDurationMonths 购买的月数,每个月按照31天计算。最多购买36个月。(若企业为服务商测试企业,每次续期只能续期1个月) + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + * @noinspection SpellCheckingInspection + * @noinspection PhpFullyQualifiedNameUsageInspection + */ + public function submitJob(string $jobId, string $buyerUserId, int $accountDurationMonths) + { + return $this->httpPostJson('cgi-bin/license/submit_order_job', [ + 'jobid' => $jobId, + 'buyer_userid' => $buyerUserId, + 'account_duration' => [ + 'months' => $accountDurationMonths + ] + ]); + } + + /** + * 获取订单列表 + * + * 服务商查询自己某段时间内的平台能力服务订单列表 + * + * @param string $corpId 企业id,只支持加密的corpid。若指定corpid且corpid为服务商测试企业,则返回的订单列表为测试订单列表。否则只返回正式订单列表 + * @param int|null $startTime 开始时间,下单时间。可不填。但是不能单独指定该字段,startTime跟endTime必须同时指定。 + * @param int|null $endTime 结束时间,下单时间。起始时间跟结束时间不能超过31天。可不填。但是不能单独指定该字段,startTime跟endTime必须同时指定。 + * @param string|null $cursor 用于分页查询的游标,字符串类型,由上一次调用返回,首次调用可不填 + * @param int $limit 返回的最大记录数,整型,最大值1000,默认值500 + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + * @noinspection SpellCheckingInspection + * @noinspection PhpFullyQualifiedNameUsageInspection + */ + public function list(string $corpId, ?int $startTime = null, ?int $endTime = null, ?string $cursor = null, int $limit = 500) + { + return $this->httpPostJson('cgi-bin/license/list_order', [ + 'corpid' => $corpId, + 'start_time' => $startTime, + 'end_time' => $endTime, + 'cursor' => $cursor, + 'limit' => $limit + ]); + } + + /** + * 获取订单详情 + * + * 查询某个订单的详情,包括订单的状态、基础帐号个数、互通帐号个数、帐号购买时长等。 + * 注意,该接口不返回订单中的帐号激活码列表或者续期的帐号成员列表,请调用{@see Client::getAccountList() 获取订单中的帐号列表}接口以获取帐号列表。 + * + * @param string $orderId 订单id + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + * @noinspection SpellCheckingInspection + * @noinspection PhpFullyQualifiedNameUsageInspection + */ + public function get(string $orderId) + { + return $this->httpPostJson('cgi-bin/license/get_order', [ + 'order_id' => $orderId + ]); + } + + /** + * 获取订单中的帐号列表 + * + * 查询指定订单下的平台能力服务帐号列表。若为购买帐号的订单或者存量企业的版本付费迁移订单,则返回帐号激活码列表; + * 若为续期帐号的订单,则返回续期帐号的成员列表。 + * + * 注意,若是购买帐号的订单,则仅订单支付完成时,系统才会生成帐号,故支付完成之前,该接口不会返回帐号激活码。 + * + * @param string $orderId 订单号 + * @param string|null $cursor 用于分页查询的游标,字符串类型,由上一次调用返回,首次调用可不填 + * @param int $limit 返回的最大记录数,整型,最大值1000,默认值500 + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + * @noinspection SpellCheckingInspection + * @noinspection PhpFullyQualifiedNameUsageInspection + */ + public function getAccountList(string $orderId, ?string $cursor = null, int $limit = 500) + { + return $this->httpPostJson('cgi-bin/license/list_order_account', [ + 'order_id' => $orderId, + 'limit' => $limit, + 'cursor' => $cursor + ]); + } + + /** + * 取消订单 + * + * 取消接口许可购买和续费订单,只可取消未支付且未失效的订单。 + * + * @param string $corpId 企业id,只支持加密的corpid + * @param string $orderId 订单号 + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + * @noinspection SpellCheckingInspection + * @noinspection PhpFullyQualifiedNameUsageInspection + */ + public function cancel(string $corpId, string $orderId) + { + return $this->httpPostJson('cgi-bin/license/cancel_order', [ + 'corpid' => $corpId, + 'order_id' => $orderId, + ]); + } +} diff --git a/vendor/overtrue/wechat/src/OpenWork/License/ServiceProvider.php b/vendor/overtrue/wechat/src/OpenWork/License/ServiceProvider.php new file mode 100644 index 0000000..19bed00 --- /dev/null +++ b/vendor/overtrue/wechat/src/OpenWork/License/ServiceProvider.php @@ -0,0 +1,45 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OpenWork\License; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +/** + * ServiceProvider. + * + * @author moniang + */ +class ServiceProvider implements ServiceProviderInterface +{ + /** + * {@inheritdoc}. + */ + public function register(Container $app) + { + !isset($app['license_order']) && $app['license_order'] = function ($app) { + return new Client($app); + }; + + !isset($app['license_account']) && $app['license_account'] = function ($app) { + return new Account($app); + }; + + !isset($app['license_app']) && $app['license_app'] = function ($app) { + return new App($app); + }; + + !isset($app['license_auto_active']) && $app['license_auto_active'] = function ($app) { + return new AutoActive($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/OpenWork/Media/Client.php b/vendor/overtrue/wechat/src/OpenWork/Media/Client.php new file mode 100644 index 0000000..549aa5d --- /dev/null +++ b/vendor/overtrue/wechat/src/OpenWork/Media/Client.php @@ -0,0 +1,105 @@ + + */ +class Client extends BaseClient +{ + public function __construct(ServiceContainer $app) + { + parent::__construct($app, $app['provider_access_token']); + } + + /** + * 上传图片文件 + * + * @param string $path + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + * @noinspection PhpFullyQualifiedNameUsageInspection + */ + public function uploadImage(string $path) + { + return $this->upload('image', $path); + } + + /** + * 上传语音文件 + * + * @param string $path + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + * @noinspection PhpFullyQualifiedNameUsageInspection + */ + public function uploadVoice(string $path) + { + return $this->upload('voice', $path); + } + + /** + * 上传视频文件 + * + * @param string $path + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + * @noinspection PhpFullyQualifiedNameUsageInspection + */ + public function uploadVideo(string $path) + { + return $this->upload('video', $path); + } + + + /** + * 上传普通文件 + * + * @param string $path + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + * @noinspection PhpFullyQualifiedNameUsageInspection + */ + public function uploadFile(string $path) + { + return $this->upload('file', $path); + } + + + /** + * 上传文件 + * + * @param string $type 媒体文件类型,分别有图片(image)、语音(voice)、视频(video),普通文件(file) + * @param string $path + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + * @noinspection PhpFullyQualifiedNameUsageInspection + */ + public function upload(string $type, string $path) + { + $files = [ + 'media' => $path, + ]; + + return $this->httpUpload('cgi-bin/service/media/upload', $files, [], compact('type')); + } +} diff --git a/vendor/overtrue/wechat/src/OpenWork/Media/ServiceProvider.php b/vendor/overtrue/wechat/src/OpenWork/Media/ServiceProvider.php new file mode 100644 index 0000000..9e50614 --- /dev/null +++ b/vendor/overtrue/wechat/src/OpenWork/Media/ServiceProvider.php @@ -0,0 +1,33 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OpenWork\Media; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +/** + * ServiceProvider. + * + * @author moniang + */ +class ServiceProvider implements ServiceProviderInterface +{ + /** + * {@inheritdoc}. + */ + public function register(Container $app) + { + !isset($app['media']) && $app['media'] = function ($app) { + return new Client($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/OpenWork/MiniProgram/Client.php b/vendor/overtrue/wechat/src/OpenWork/MiniProgram/Client.php new file mode 100644 index 0000000..29dae19 --- /dev/null +++ b/vendor/overtrue/wechat/src/OpenWork/MiniProgram/Client.php @@ -0,0 +1,50 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OpenWork\MiniProgram; + +use EasyWeChat\Kernel\BaseClient; +use EasyWeChat\Kernel\ServiceContainer; + +/** + * Class Client. + */ +class Client extends BaseClient +{ + /** + * Client constructor. + * + * @param \EasyWeChat\Kernel\ServiceContainer $app + */ + public function __construct(ServiceContainer $app) + { + parent::__construct($app, $app['suite_access_token']); + } + + /** + * Get session info by code. + * + * @param string $code + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function session(string $code) + { + $params = [ + 'js_code' => $code, + 'grant_type' => 'authorization_code', + ]; + + return $this->httpGet('cgi-bin/service/miniprogram/jscode2session', $params); + } +} diff --git a/vendor/overtrue/wechat/src/OpenWork/MiniProgram/ServiceProvider.php b/vendor/overtrue/wechat/src/OpenWork/MiniProgram/ServiceProvider.php new file mode 100644 index 0000000..8e7dba2 --- /dev/null +++ b/vendor/overtrue/wechat/src/OpenWork/MiniProgram/ServiceProvider.php @@ -0,0 +1,31 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OpenWork\MiniProgram; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +/** + * ServiceProvider. + */ +class ServiceProvider implements ServiceProviderInterface +{ + /** + * {@inheritdoc}. + */ + public function register(Container $app) + { + !isset($app['mini_program']) && $app['mini_program'] = function ($app) { + return new Client($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/OpenWork/Provider/Client.php b/vendor/overtrue/wechat/src/OpenWork/Provider/Client.php new file mode 100644 index 0000000..fe80883 --- /dev/null +++ b/vendor/overtrue/wechat/src/OpenWork/Provider/Client.php @@ -0,0 +1,259 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OpenWork\Provider; + +use EasyWeChat\Kernel\BaseClient; +use EasyWeChat\Kernel\ServiceContainer; + +/** + * Client. + * + * @author xiaomin + */ +class Client extends BaseClient +{ + /** + * Client constructor. + * + * + * @param ServiceContainer $app + */ + public function __construct(ServiceContainer $app) + { + parent::__construct($app, $app['provider_access_token']); + } + + /** + * 单点登录 - 获取登录的地址. + * + * @param string $redirectUri + * @param string $userType + * @param string $state + * + * @return string + */ + public function getLoginUrl(string $redirectUri = '', string $userType = 'admin', string $state = '') + { + $redirectUri || $redirectUri = $this->app->config['redirect_uri_single']; + $state || $state = random_bytes(64); + $params = [ + 'appid' => $this->app['config']['corp_id'], + 'redirect_uri' => $redirectUri, + 'usertype' => $userType, + 'state' => $state, + ]; + + return 'https://open.work.weixin.qq.com/wwopen/sso/3rd_qrConnect?'.http_build_query($params); + } + + /** + * 单点登录 - 获取登录用户信息. + * + * @param string $authCode + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function getLoginInfo(string $authCode) + { + $params = [ + 'auth_code' => $authCode, + ]; + + return $this->httpPostJson('cgi-bin/service/get_login_info', $params); + } + + /** + * 获取注册定制化URL. + * + * @param string $registerCode + * + * @return string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + */ + public function getRegisterUri(string $registerCode = '') + { + if (!$registerCode) { + /** @var array $response */ + $response = $this->detectAndCastResponseToType($this->getRegisterCode(), 'array'); + + $registerCode = $response['register_code']; + } + + $params = ['register_code' => $registerCode]; + + return 'https://open.work.weixin.qq.com/3rdservice/wework/register?'.http_build_query($params); + } + + /** + * 获取注册码. + * + * @param string $corpName + * @param string $adminName + * @param string $adminMobile + * @param string $state + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function getRegisterCode( + string $corpName = '', + string $adminName = '', + string $adminMobile = '', + string $state = '', + string $templateId = '' + ) { + $params = []; + $params['template_id'] = $this->app['config']['reg_template_id']; + !empty($corpName) && $params['corp_name'] = $corpName; + !empty($adminName) && $params['admin_name'] = $adminName; + !empty($adminMobile) && $params['admin_mobile'] = $adminMobile; + !empty($state) && $params['state'] = $state; + !empty($templateId) && $params['template_id'] = $templateId; + + return $this->httpPostJson('cgi-bin/service/get_register_code', $params); + } + + /** + * 查询注册状态. + * + * Desc:该API用于查询企业注册状态,企业注册成功返回注册信息. + * + * @param string $registerCode + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function getRegisterInfo(string $registerCode) + { + $params = [ + 'register_code' => $registerCode, + ]; + + return $this->httpPostJson('cgi-bin/service/get_register_info', $params); + } + + /** + * 设置授权应用可见范围. + * + * Desc:调用该接口前提是开启通讯录迁移,收到授权成功通知后可调用。 + * 企业注册初始化安装应用后,应用默认可见范围为根部门。 + * 如需修改应用可见范围,服务商可以调用该接口设置授权应用的可见范围。 + * 该接口只能使用注册完成回调事件或者查询注册状态返回的access_token。 + * 调用设置通讯录同步完成后或者access_token超过30分钟失效(即解除通讯录锁定状态)则不能继续调用该接口。 + * + * @param string $accessToken + * @param string $agentId + * @param array $allowUser + * @param array $allowParty + * @param array $allowTag + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function setAgentScope( + string $accessToken, + string $agentId, + array $allowUser = [], + array $allowParty = [], + array $allowTag = [] + ) { + $params = [ + 'agentid' => $agentId, + 'allow_user' => $allowUser, + 'allow_party' => $allowParty, + 'allow_tag' => $allowTag, + 'access_token' => $accessToken, + ]; + + return $this->httpGet('cgi-bin/agent/set_scope', $params); + } + + /** + * 设置通讯录同步完成. + * + * Desc:该API用于设置通讯录同步完成,解除通讯录锁定状态,同时使通讯录迁移access_token失效。 + * + * @param string $accessToken + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function contactSyncSuccess(string $accessToken) + { + $params = ['access_token' => $accessToken]; + + return $this->httpGet('cgi-bin/sync/contact_sync_success', $params); + } + + /** + * 通讯录单个搜索 + * + * @param string $corpId + * @param string $queryWord + * @param int|string $agentId + * @param int $offset + * @param int $limit + * @param int $queryType + * @param null $fullMatchField + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function searchContact( + string $corpId, + string $queryWord, + $agentId, + int $offset = 0, + int $limit = 50, + int $queryType = 0, + $fullMatchField = null + ) { + $params = []; + $params['auth_corpid'] = $corpId; + $params['query_word'] = $queryWord; + $params['query_type'] = $queryType; + $params['agentid'] = $agentId; + $params['offset'] = $offset; + $params['limit'] = $limit; + !empty($fullMatchField) && $params['full_match_field'] = $fullMatchField; + + return $this->httpPostJson('cgi-bin/service/contact/search', $params); + } + + /** + * 自建应用代开发获取带参授权链接 + * + * @see https://developer.work.weixin.qq.com/document/path/95436 + * + * @param array $params 请求参数 + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function getCustomizedAuthUrl(array $params) + { + return $this->httpPostJson('cgi-bin/service/get_customized_auth_url', $params); + } +} diff --git a/vendor/overtrue/wechat/src/OpenWork/Provider/ServiceProvider.php b/vendor/overtrue/wechat/src/OpenWork/Provider/ServiceProvider.php new file mode 100644 index 0000000..2185fec --- /dev/null +++ b/vendor/overtrue/wechat/src/OpenWork/Provider/ServiceProvider.php @@ -0,0 +1,36 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OpenWork\Provider; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +/** + * ServiceProvider. + * + * @author xiaomin + */ +class ServiceProvider implements ServiceProviderInterface +{ + protected $app; + + /** + * @param Container $app + */ + public function register(Container $app) + { + $this->app = $app; + isset($app['provider']) || $app['provider'] = function ($app) { + return new Client($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/OpenWork/Server/Guard.php b/vendor/overtrue/wechat/src/OpenWork/Server/Guard.php new file mode 100644 index 0000000..5700a77 --- /dev/null +++ b/vendor/overtrue/wechat/src/OpenWork/Server/Guard.php @@ -0,0 +1,68 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OpenWork\Server; + +use EasyWeChat\Kernel\Encryptor; +use EasyWeChat\Kernel\ServerGuard; + +/** + * Guard. + * + * @author xiaomin + */ +class Guard extends ServerGuard +{ + /** + * @var bool + */ + protected $alwaysValidate = true; + + /** + * @return $this + */ + public function validate() + { + return $this; + } + + /** + * @return bool + */ + protected function shouldReturnRawResponse(): bool + { + return !is_null($this->app['request']->get('echostr')); + } + + protected function isSafeMode(): bool + { + return true; + } + + /** + * @param array $message + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\RuntimeException + */ + protected function decryptMessage(array $message) + { + $encryptor = new Encryptor($message['ToUserName'], $this->app['config']->get('token'), $this->app['config']->get('aes_key')); + + return $message = $encryptor->decrypt( + $message['Encrypt'], + $this->app['request']->get('msg_signature'), + $this->app['request']->get('nonce'), + $this->app['request']->get('timestamp') + ); + } +} diff --git a/vendor/overtrue/wechat/src/OpenWork/Server/Handlers/EchoStrHandler.php b/vendor/overtrue/wechat/src/OpenWork/Server/Handlers/EchoStrHandler.php new file mode 100644 index 0000000..7843cc8 --- /dev/null +++ b/vendor/overtrue/wechat/src/OpenWork/Server/Handlers/EchoStrHandler.php @@ -0,0 +1,66 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OpenWork\Server\Handlers; + +use EasyWeChat\Kernel\Contracts\EventHandlerInterface; +use EasyWeChat\Kernel\Decorators\FinallyResult; +use EasyWeChat\Kernel\ServiceContainer; + +/** + * EchoStrHandler. + * + * @author xiaomin + */ +class EchoStrHandler implements EventHandlerInterface +{ + /** + * @var ServiceContainer + */ + protected $app; + + /** + * EchoStrHandler constructor. + * + * @param ServiceContainer $app + */ + public function __construct(ServiceContainer $app) + { + $this->app = $app; + } + + /** + * @param mixed $payload + * + * @return FinallyResult|null + */ + public function handle($payload = null) + { + if ($decrypted = $this->app['request']->get('echostr')) { + $str = $this->app['encryptor_corp']->decrypt( + $decrypted, + $this->app['request']->get('msg_signature'), + $this->app['request']->get('nonce'), + $this->app['request']->get('timestamp') + ); + + return new FinallyResult($str); + } + //把SuiteTicket缓存起来 + if (!empty($payload['SuiteTicket'])) { + $this->app['suite_ticket']->setTicket($payload['SuiteTicket']); + + return new FinallyResult("success"); + } + + return null; + } +} diff --git a/vendor/overtrue/wechat/src/OpenWork/Server/ServiceProvider.php b/vendor/overtrue/wechat/src/OpenWork/Server/ServiceProvider.php new file mode 100644 index 0000000..d33d5c8 --- /dev/null +++ b/vendor/overtrue/wechat/src/OpenWork/Server/ServiceProvider.php @@ -0,0 +1,56 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OpenWork\Server; + +use EasyWeChat\Kernel\Encryptor; +use EasyWeChat\OpenWork\Server\Handlers\EchoStrHandler; +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +/** + * ServiceProvider. + * + * @author xiaomin + */ +class ServiceProvider implements ServiceProviderInterface +{ + /** + * {@inheritdoc}. + */ + public function register(Container $app) + { + //微信第三方在校验url是使用的是GET方式请求和corp_id进行加密 + !isset($app['encryptor_corp']) && $app['encryptor_corp'] = function ($app) { + return new Encryptor( + $app['config']['corp_id'], + $app['config']['token'], + $app['config']['aes_key'] + ); + }; + + //微信第三方推送数据时使用的是suite_id进行加密 + !isset($app['encryptor']) && $app['encryptor'] = function ($app) { + return new Encryptor( + $app['config']['suite_id'], + $app['config']['token'], + $app['config']['aes_key'] + ); + }; + + !isset($app['server']) && $app['server'] = function ($app) { + $guard = new Guard($app); + $guard->push(new EchoStrHandler($app)); + + return $guard; + }; + } +} diff --git a/vendor/overtrue/wechat/src/OpenWork/SuiteAuth/AccessToken.php b/vendor/overtrue/wechat/src/OpenWork/SuiteAuth/AccessToken.php new file mode 100644 index 0000000..e4e248d --- /dev/null +++ b/vendor/overtrue/wechat/src/OpenWork/SuiteAuth/AccessToken.php @@ -0,0 +1,56 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OpenWork\SuiteAuth; + +use EasyWeChat\Kernel\AccessToken as BaseAccessToken; + +/** + * AccessToken. + * + * @author xiaomin + */ +class AccessToken extends BaseAccessToken +{ + /** + * @var string + */ + protected $requestMethod = 'POST'; + + /** + * @var string + */ + protected $endpointToGetToken = 'cgi-bin/service/get_suite_token'; + + /** + * @var string + */ + protected $tokenKey = 'suite_access_token'; + + /** + * @var string + */ + protected $cachePrefix = 'easywechat.kernel.suite_access_token.'; + + /** + * Credential for get token. + * + * @return array + */ + protected function getCredentials(): array + { + return [ + 'suite_id' => $this->app['config']['suite_id'], + 'suite_secret' => $this->app['config']['suite_secret'], + 'suite_ticket' => $this->app['suite_ticket']->getTicket(), + ]; + } +} diff --git a/vendor/overtrue/wechat/src/OpenWork/SuiteAuth/ServiceProvider.php b/vendor/overtrue/wechat/src/OpenWork/SuiteAuth/ServiceProvider.php new file mode 100644 index 0000000..a4f5386 --- /dev/null +++ b/vendor/overtrue/wechat/src/OpenWork/SuiteAuth/ServiceProvider.php @@ -0,0 +1,37 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OpenWork\SuiteAuth; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +/** + * ServiceProvider. + * + * @author xiaomin + */ +class ServiceProvider implements ServiceProviderInterface +{ + /** + * {@inheritdoc}. + */ + public function register(Container $app) + { + $app['suite_ticket'] = function ($app) { + return new SuiteTicket($app); + }; + + isset($app['suite_access_token']) || $app['suite_access_token'] = function ($app) { + return new AccessToken($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/OpenWork/SuiteAuth/SuiteTicket.php b/vendor/overtrue/wechat/src/OpenWork/SuiteAuth/SuiteTicket.php new file mode 100644 index 0000000..4c01710 --- /dev/null +++ b/vendor/overtrue/wechat/src/OpenWork/SuiteAuth/SuiteTicket.php @@ -0,0 +1,85 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OpenWork\SuiteAuth; + +use EasyWeChat\Kernel\Exceptions\RuntimeException; +use EasyWeChat\Kernel\Traits\InteractsWithCache; +use EasyWeChat\OpenWork\Application; + +/** + * SuiteTicket. + * + * @author xiaomin + */ +class SuiteTicket +{ + use InteractsWithCache; + + /** + * @var Application + */ + protected $app; + + /** + * SuiteTicket constructor. + * + * @param Application $app + */ + public function __construct(Application $app) + { + $this->app = $app; + } + + /** + * @param string $ticket + * + * @return $this + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \EasyWeChat\Kernel\Exceptions\RuntimeException + * @throws \Psr\SimpleCache\InvalidArgumentException + */ + public function setTicket(string $ticket) + { + $this->getCache()->set($this->getCacheKey(), $ticket, 1800); + + if (!$this->getCache()->has($this->getCacheKey())) { + throw new RuntimeException('Failed to cache suite ticket.'); + } + + return $this; + } + + /** + * @return string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \EasyWeChat\Kernel\Exceptions\RuntimeException + * @throws \Psr\SimpleCache\InvalidArgumentException + */ + public function getTicket(): string + { + if ($cached = $this->getCache()->get($this->getCacheKey())) { + return $cached; + } + + throw new RuntimeException('Credential "suite_ticket" does not exist in cache.'); + } + + /** + * @return string + */ + protected function getCacheKey(): string + { + return 'easywechat.open_work.suite_ticket.'.$this->app['config']['suite_id']; + } +} diff --git a/vendor/overtrue/wechat/src/OpenWork/Work/Application.php b/vendor/overtrue/wechat/src/OpenWork/Work/Application.php new file mode 100644 index 0000000..c2f611a --- /dev/null +++ b/vendor/overtrue/wechat/src/OpenWork/Work/Application.php @@ -0,0 +1,41 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OpenWork\Work; + +use EasyWeChat\OpenWork\Application as OpenWork; +use EasyWeChat\OpenWork\Work\Auth\AccessToken; +use EasyWeChat\Work\Application as Work; + +/** + * Application. + * + * @author xiaomin + */ +class Application extends Work +{ + /** + * Application constructor. + * + * @param string $authCorpId + * @param string $permanentCode + * @param OpenWork $component + * @param array $prepends + */ + public function __construct(string $authCorpId, string $permanentCode, OpenWork $component, array $prepends = []) + { + parent::__construct(\array_merge($component->getConfig(), ['corp_id' => $authCorpId]), $prepends + [ + 'access_token' => function ($app) use ($authCorpId, $permanentCode, $component) { + return new AccessToken($app, $authCorpId, $permanentCode, $component); + }, + ]); + } +} diff --git a/vendor/overtrue/wechat/src/OpenWork/Work/Auth/AccessToken.php b/vendor/overtrue/wechat/src/OpenWork/Work/Auth/AccessToken.php new file mode 100644 index 0000000..e80758a --- /dev/null +++ b/vendor/overtrue/wechat/src/OpenWork/Work/Auth/AccessToken.php @@ -0,0 +1,80 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\OpenWork\Work\Auth; + +use EasyWeChat\Kernel\AccessToken as BaseAccessToken; +use EasyWeChat\OpenWork\Application; +use Pimple\Container; + +/** + * AccessToken. + * + * @author xiaomin + */ +class AccessToken extends BaseAccessToken +{ + /** + * @var string + */ + protected $requestMethod = 'POST'; + + /** + * @var string 授权方企业ID + */ + protected $authCorpid; + + /** + * @var string 授权方企业永久授权码,通过get_permanent_code获取 + */ + protected $permanentCode; + + protected $component; + + /** + * AccessToken constructor. + * + * @param Container $app + * @param string $authCorpId + * @param string $permanentCode + * @param Application $component + */ + public function __construct(Container $app, string $authCorpId, string $permanentCode, Application $component) + { + $this->authCorpid = $authCorpId; + $this->permanentCode = $permanentCode; + $this->component = $component; + parent::__construct($app); + } + + /** + * Credential for get token. + * + * @return array + */ + protected function getCredentials(): array + { + return [ + 'auth_corpid' => $this->authCorpid, + 'permanent_code' => $this->permanentCode, + ]; + } + + /** + * @return string + */ + public function getEndpoint(): string + { + return 'cgi-bin/service/get_corp_token?'.http_build_query([ + 'suite_access_token' => $this->component['suite_access_token']->getToken()['suite_access_token'], + ]); + } +} diff --git a/vendor/overtrue/wechat/src/Payment/Application.php b/vendor/overtrue/wechat/src/Payment/Application.php new file mode 100644 index 0000000..ce820ac --- /dev/null +++ b/vendor/overtrue/wechat/src/Payment/Application.php @@ -0,0 +1,210 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Payment; + +use Closure; +use EasyWeChat\BasicService; +use EasyWeChat\Kernel\Exceptions\InvalidArgumentException; +use EasyWeChat\Kernel\ServiceContainer; +use EasyWeChat\Kernel\Support; +use EasyWeChat\OfficialAccount; + +/** + * Class Application. + * + * @property \EasyWeChat\Payment\Bill\Client $bill + * @property \EasyWeChat\Payment\Fundflow\Client $fundflow + * @property \EasyWeChat\Payment\Jssdk\Client $jssdk + * @property \EasyWeChat\Payment\Order\Client $order + * @property \EasyWeChat\Payment\Refund\Client $refund + * @property \EasyWeChat\Payment\Coupon\Client $coupon + * @property \EasyWeChat\Payment\Reverse\Client $reverse + * @property \EasyWeChat\Payment\Redpack\Client $redpack + * @property \EasyWeChat\BasicService\Url\Client $url + * @property \EasyWeChat\Payment\Transfer\Client $transfer + * @property \EasyWeChat\Payment\Security\Client $security + * @property \EasyWeChat\Payment\ProfitSharing\Client $profit_sharing + * @property \EasyWeChat\Payment\Contract\Client $contract + * @property \EasyWeChat\OfficialAccount\Auth\AccessToken $access_token + * + * @method mixed pay(array $attributes) + * @method mixed authCodeToOpenid(string $authCode) + */ +class Application extends ServiceContainer +{ + /** + * @var array + */ + protected $providers = [ + OfficialAccount\Auth\ServiceProvider::class, + BasicService\Url\ServiceProvider::class, + Base\ServiceProvider::class, + Bill\ServiceProvider::class, + Fundflow\ServiceProvider::class, + Coupon\ServiceProvider::class, + Jssdk\ServiceProvider::class, + Merchant\ServiceProvider::class, + Order\ServiceProvider::class, + Redpack\ServiceProvider::class, + Refund\ServiceProvider::class, + Reverse\ServiceProvider::class, + Sandbox\ServiceProvider::class, + Transfer\ServiceProvider::class, + Security\ServiceProvider::class, + ProfitSharing\ServiceProvider::class, + Contract\ServiceProvider::class, + ]; + + /** + * @var array + */ + protected $defaultConfig = [ + 'http' => [ + 'base_uri' => 'https://api.mch.weixin.qq.com/', + ], + ]; + + /** + * Build payment scheme for product. + * + * @param string $productId + * + * @return string + */ + public function scheme(string $productId): string + { + $params = [ + 'appid' => $this['config']->app_id, + 'mch_id' => $this['config']->mch_id, + 'time_stamp' => time(), + 'nonce_str' => uniqid(), + 'product_id' => $productId, + ]; + + $params['sign'] = Support\generate_sign($params, $this['config']->key); + + return 'weixin://wxpay/bizpayurl?'.http_build_query($params); + } + + /** + * @param string $codeUrl + * + * @return string + */ + public function codeUrlScheme(string $codeUrl) + { + return \sprintf('weixin://wxpay/bizpayurl?sr=%s', $codeUrl); + } + + /** + * @param \Closure $closure + * + * @return \Symfony\Component\HttpFoundation\Response + * + * @codeCoverageIgnore + * + * @throws \EasyWeChat\Kernel\Exceptions\Exception + */ + public function handlePaidNotify(Closure $closure) + { + return (new Notify\Paid($this))->handle($closure); + } + + /** + * @param \Closure $closure + * + * @return \Symfony\Component\HttpFoundation\Response + * + * @codeCoverageIgnore + * + * @throws \EasyWeChat\Kernel\Exceptions\Exception + */ + public function handleRefundedNotify(Closure $closure) + { + return (new Notify\Refunded($this))->handle($closure); + } + + /** + * @param \Closure $closure + * + * @return \Symfony\Component\HttpFoundation\Response + * + * @codeCoverageIgnore + * + * @throws \EasyWeChat\Kernel\Exceptions\Exception + */ + public function handleScannedNotify(Closure $closure) + { + return (new Notify\Scanned($this))->handle($closure); + } + + /** + * Set sub-merchant. + * + * @param string $mchId + * @param string|null $appId + * + * @return $this + */ + public function setSubMerchant(string $mchId, string $appId = null) + { + $this['config']->set('sub_mch_id', $mchId); + $this['config']->set('sub_appid', $appId); + + return $this; + } + + /** + * @return bool + */ + public function inSandbox(): bool + { + return (bool) $this['config']->get('sandbox'); + } + + /** + * @param string|null $endpoint + * + * @return string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + */ + public function getKey(string $endpoint = null) + { + if ('sandboxnew/pay/getsignkey' === $endpoint) { + return $this['config']->key; + } + + $key = $this->inSandbox() ? $this['sandbox']->getKey() : $this['config']->key; + + if (empty($key)) { + throw new InvalidArgumentException('config key should not empty.'); + } + + if (32 !== strlen($key)) { + throw new InvalidArgumentException(sprintf("'%s' should be 32 chars length.", $key)); + } + + return $key; + } + + /** + * @param string $name + * @param array $arguments + * + * @return mixed + */ + public function __call($name, $arguments) + { + return call_user_func_array([$this['base'], $name], $arguments); + } +} diff --git a/vendor/overtrue/wechat/src/Payment/Base/Client.php b/vendor/overtrue/wechat/src/Payment/Base/Client.php new file mode 100644 index 0000000..75d4c9a --- /dev/null +++ b/vendor/overtrue/wechat/src/Payment/Base/Client.php @@ -0,0 +1,54 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Payment\Base; + +use EasyWeChat\Payment\Kernel\BaseClient; + +class Client extends BaseClient +{ + /** + * Pay the order. + * + * @param array $params + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function pay(array $params) + { + $params['appid'] = $this->app['config']->app_id; + + return $this->request($this->wrap('pay/micropay'), $params); + } + + /** + * Get openid by auth code. + * + * @param string $authCode + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function authCodeToOpenid(string $authCode) + { + return $this->request('tools/authcodetoopenid', [ + 'appid' => $this->app['config']->app_id, + 'auth_code' => $authCode, + ]); + } +} diff --git a/vendor/overtrue/wechat/src/Payment/Base/ServiceProvider.php b/vendor/overtrue/wechat/src/Payment/Base/ServiceProvider.php new file mode 100644 index 0000000..71aebd9 --- /dev/null +++ b/vendor/overtrue/wechat/src/Payment/Base/ServiceProvider.php @@ -0,0 +1,33 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Payment\Base; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +/** + * Class ServiceProvider. + * + * @author overtrue + */ +class ServiceProvider implements ServiceProviderInterface +{ + /** + * {@inheritdoc}. + */ + public function register(Container $app) + { + $app['base'] = function ($app) { + return new Client($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/Payment/Bill/Client.php b/vendor/overtrue/wechat/src/Payment/Bill/Client.php new file mode 100644 index 0000000..20a9b63 --- /dev/null +++ b/vendor/overtrue/wechat/src/Payment/Bill/Client.php @@ -0,0 +1,48 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Payment\Bill; + +use EasyWeChat\Kernel\Http\StreamResponse; +use EasyWeChat\Payment\Kernel\BaseClient; + +class Client extends BaseClient +{ + /** + * Download bill history as a table file. + * + * @param string $date + * @param string $type + * @param array $optional + * + * @return \EasyWeChat\Kernel\Http\StreamResponse|\Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function get(string $date, string $type = 'ALL', array $optional = []) + { + $params = [ + 'appid' => $this->app['config']->app_id, + 'bill_date' => $date, + 'bill_type' => $type, + ] + $optional; + + $response = $this->requestRaw($this->wrap('pay/downloadbill'), $params); + + if (0 === strpos($response->getBody()->getContents(), '')) { + return $this->castResponseToType($response, $this->app['config']->get('response_type')); + } + + return StreamResponse::buildFromPsrResponse($response); + } +} diff --git a/vendor/overtrue/wechat/src/Payment/Bill/ServiceProvider.php b/vendor/overtrue/wechat/src/Payment/Bill/ServiceProvider.php new file mode 100644 index 0000000..3fd98d4 --- /dev/null +++ b/vendor/overtrue/wechat/src/Payment/Bill/ServiceProvider.php @@ -0,0 +1,33 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Payment\Bill; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +/** + * Class ServiceProvider. + * + * @author overtrue + */ +class ServiceProvider implements ServiceProviderInterface +{ + /** + * {@inheritdoc}. + */ + public function register(Container $app) + { + $app['bill'] = function ($app) { + return new Client($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/Payment/Contract/Client.php b/vendor/overtrue/wechat/src/Payment/Contract/Client.php new file mode 100644 index 0000000..22acebc --- /dev/null +++ b/vendor/overtrue/wechat/src/Payment/Contract/Client.php @@ -0,0 +1,112 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Payment\Contract; + +use EasyWeChat\Payment\Kernel\BaseClient; + +/** + * Class Client. + * + * @author tianyong90 <412039588@qq.com> + */ +class Client extends BaseClient +{ + /** + * entrust official account. + * + * @param array $params + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function web(array $params) + { + $params['appid'] = $this->app['config']->app_id; + + return $this->safeRequest('papay/entrustweb', $params); + } + + /** + * entrust app. + * + * @param array $params + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function app(array $params) + { + $params['appid'] = $this->app['config']->app_id; + + return $this->safeRequest('papay/preentrustweb', $params); + } + + /** + * entrust html 5. + * + * @param array $params + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function h5(array $params) + { + $params['appid'] = $this->app['config']->app_id; + + return $this->safeRequest('papay/h5entrustweb', $params); + } + + /** + * apply papay. + * + * @param array $params + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function apply(array $params) + { + $params['appid'] = $this->app['config']->app_id; + + return $this->safeRequest('pay/pappayapply', $params); + } + + /** + * delete papay contrace. + * + * @param array $params + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function delete(array $params) + { + $params['appid'] = $this->app['config']->app_id; + + return $this->safeRequest('papay/deletecontract', $params); + } +} diff --git a/vendor/overtrue/wechat/src/Payment/Contract/ServiceProvider.php b/vendor/overtrue/wechat/src/Payment/Contract/ServiceProvider.php new file mode 100644 index 0000000..945ea68 --- /dev/null +++ b/vendor/overtrue/wechat/src/Payment/Contract/ServiceProvider.php @@ -0,0 +1,33 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Payment\Contract; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +/** + * Class ServiceProvider. + * + * @author overtrue + */ +class ServiceProvider implements ServiceProviderInterface +{ + /** + * {@inheritdoc}. + */ + public function register(Container $app) + { + $app['contract'] = function ($app) { + return new Client($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/Payment/Coupon/Client.php b/vendor/overtrue/wechat/src/Payment/Coupon/Client.php new file mode 100644 index 0000000..101a42b --- /dev/null +++ b/vendor/overtrue/wechat/src/Payment/Coupon/Client.php @@ -0,0 +1,77 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Payment\Coupon; + +use EasyWeChat\Payment\Kernel\BaseClient; + +/** + * Class Client. + * + * @author tianyong90 <412039588@qq.com> + */ +class Client extends BaseClient +{ + /** + * send a cash coupon. + * + * @param array $params + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function send(array $params) + { + $params['appid'] = $this->app['config']->app_id; + $params['openid_count'] = 1; + + return $this->safeRequest('mmpaymkttransfers/send_coupon', $params); + } + + /** + * query a coupon stock. + * + * @param array $params + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function stock(array $params) + { + $params['appid'] = $this->app['config']->app_id; + + return $this->request('mmpaymkttransfers/query_coupon_stock', $params); + } + + /** + * query a info of coupon. + * + * @param array $params + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function info(array $params) + { + $params['appid'] = $this->app['config']->app_id; + + return $this->request('mmpaymkttransfers/querycouponsinfo', $params); + } +} diff --git a/vendor/overtrue/wechat/src/Payment/Coupon/ServiceProvider.php b/vendor/overtrue/wechat/src/Payment/Coupon/ServiceProvider.php new file mode 100644 index 0000000..513734b --- /dev/null +++ b/vendor/overtrue/wechat/src/Payment/Coupon/ServiceProvider.php @@ -0,0 +1,33 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Payment\Coupon; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +/** + * Class ServiceProvider. + * + * @author overtrue + */ +class ServiceProvider implements ServiceProviderInterface +{ + /** + * {@inheritdoc}. + */ + public function register(Container $app) + { + $app['coupon'] = function ($app) { + return new Client($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/Payment/Fundflow/Client.php b/vendor/overtrue/wechat/src/Payment/Fundflow/Client.php new file mode 100644 index 0000000..359d4f3 --- /dev/null +++ b/vendor/overtrue/wechat/src/Payment/Fundflow/Client.php @@ -0,0 +1,56 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Payment\Fundflow; + +use EasyWeChat\Kernel\Http\StreamResponse; +use EasyWeChat\Payment\Kernel\BaseClient; + +class Client extends BaseClient +{ + /** + * Download fundflow history as a table file. + * + * @param string $date + * @param string $type + * @param array $options + * + * @return array|\EasyWeChat\Kernel\Http\Response|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function get(string $date, string $type = 'Basic', $options = []) + { + $params = [ + 'appid' => $this->app['config']->app_id, + 'bill_date' => $date, + 'account_type' => $type, + 'sign_type' => 'HMAC-SHA256', + 'nonce_str' => uniqid('micro'), + ]; + $options = array_merge( + [ + 'cert' => $this->app['config']->get('cert_path'), + 'ssl_key' => $this->app['config']->get('key_path'), + ], + $options + ); + $response = $this->requestRaw('pay/downloadfundflow', $params, 'post', $options); + + if (0 === strpos($response->getBody()->getContents(), '')) { + return $this->castResponseToType($response, $this->app['config']->get('response_type')); + } + + return StreamResponse::buildFromPsrResponse($response); + } +} diff --git a/vendor/overtrue/wechat/src/Payment/Fundflow/ServiceProvider.php b/vendor/overtrue/wechat/src/Payment/Fundflow/ServiceProvider.php new file mode 100644 index 0000000..9901124 --- /dev/null +++ b/vendor/overtrue/wechat/src/Payment/Fundflow/ServiceProvider.php @@ -0,0 +1,33 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Payment\Fundflow; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +/** + * Class ServiceProvider. + * + * @author overtrue + */ +class ServiceProvider implements ServiceProviderInterface +{ + /** + * {@inheritdoc}. + */ + public function register(Container $app) + { + $app['fundflow'] = function ($app) { + return new Client($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/Payment/Jssdk/Client.php b/vendor/overtrue/wechat/src/Payment/Jssdk/Client.php new file mode 100644 index 0000000..0780134 --- /dev/null +++ b/vendor/overtrue/wechat/src/Payment/Jssdk/Client.php @@ -0,0 +1,175 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Payment\Jssdk; + +use EasyWeChat\BasicService\Jssdk\Client as JssdkClient; +use EasyWeChat\Kernel\Support; + +/** + * Class Client. + * + * @author overtrue + */ +class Client extends JssdkClient +{ + /** + * [WeixinJSBridge] Generate js config for payment. + * + *
+     * WeixinJSBridge.invoke(
+     *  'getBrandWCPayRequest',
+     *  ...
+     * );
+     * 
+ * + * @param string $prepayId + * @param bool $json + * + * @return string|array + */ + public function bridgeConfig(string $prepayId, bool $json = true) + { + $params = [ + 'appId' => $this->app['config']->sub_appid ?: $this->app['config']->app_id, + 'timeStamp' => strval(time()), + 'nonceStr' => uniqid(), + 'package' => "prepay_id=$prepayId", + 'signType' => 'MD5', + ]; + + $params['paySign'] = Support\generate_sign($params, $this->app['config']->key, 'md5'); + + return $json ? json_encode($params) : $params; + } + + /** + * [JSSDK] Generate js config for payment. + * + *
+     * wx.chooseWXPay({...});
+     * 
+ * + * @param string $prepayId + * + * @return array + */ + public function sdkConfig(string $prepayId): array + { + $config = $this->bridgeConfig($prepayId, false); + + $config['timestamp'] = $config['timeStamp']; + unset($config['timeStamp']); + + return $config; + } + + /** + * Generate app payment parameters. + * + * @param string $prepayId + * + * @return array + */ + public function appConfig(string $prepayId): array + { + $params = [ + 'appid' => $this->app['config']->app_id, + 'partnerid' => $this->app['config']->mch_id, + 'prepayid' => $prepayId, + 'noncestr' => uniqid(), + 'timestamp' => time(), + 'package' => 'Sign=WXPay', + ]; + + $params['sign'] = Support\generate_sign($params, $this->app['config']->key); + + return $params; + } + + /** + * Generate js config for share user address. + * + * @param string $accessToken + * @param bool $json + * + * @return string|array + */ + public function shareAddressConfig(string $accessToken, bool $json = true) + { + $params = [ + 'appId' => $this->app['config']->app_id, + 'scope' => 'jsapi_address', + 'timeStamp' => strval(time()), + 'nonceStr' => uniqid(), + 'signType' => 'SHA1', + ]; + + $signParams = [ + 'appid' => $params['appId'], + 'url' => $this->getUrl(), + 'timestamp' => $params['timeStamp'], + 'noncestr' => $params['nonceStr'], + 'accesstoken' => strval($accessToken), + ]; + + ksort($signParams); + + $params['addrSign'] = sha1(urldecode(http_build_query($signParams))); + + return $json ? json_encode($params) : $params; + } + + /** + * Generate js config for contract of mini program. + * + * @param array $params + * + * @return array + */ + public function contractConfig(array $params): array + { + $params['appid'] = $this->app['config']->app_id; + $params['timestamp'] = time(); + + $params['sign'] = Support\generate_sign($params, $this->app['config']->key); + + return $params; + } + + /** + * Generate js config for biz red packet of mini program. + * + * @param string $package + * @return array + */ + public function miniprogramRedpackConfig(string $package): array + { + $param = [ + 'appId' => $this->app['config']->app_id, + 'timeStamp' => '' . time(), + 'nonceStr' => uniqid(), + 'package' => urlencode($package), + ]; + ksort($param); + + $buff = ''; + foreach ($param as $k => $v) { + $buff .= $k . "=" . $v . "&"; + } + + $param['paySign'] = md5($buff . 'key=' . $this->app['config']->key); + $param['signType'] = 'MD5'; + unset($param['appId']); + + return $param; + } +} diff --git a/vendor/overtrue/wechat/src/Payment/Jssdk/ServiceProvider.php b/vendor/overtrue/wechat/src/Payment/Jssdk/ServiceProvider.php new file mode 100644 index 0000000..24f2a76 --- /dev/null +++ b/vendor/overtrue/wechat/src/Payment/Jssdk/ServiceProvider.php @@ -0,0 +1,33 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Payment\Jssdk; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +/** + * Class ServiceProvider. + * + * @author overtrue + */ +class ServiceProvider implements ServiceProviderInterface +{ + /** + * {@inheritdoc}. + */ + public function register(Container $app) + { + $app['jssdk'] = function ($app) { + return new Client($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/Payment/Kernel/BaseClient.php b/vendor/overtrue/wechat/src/Payment/Kernel/BaseClient.php new file mode 100644 index 0000000..f564994 --- /dev/null +++ b/vendor/overtrue/wechat/src/Payment/Kernel/BaseClient.php @@ -0,0 +1,190 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Payment\Kernel; + +use EasyWeChat\Kernel\Support; +use EasyWeChat\Kernel\Traits\HasHttpRequests; +use EasyWeChat\Payment\Application; +use GuzzleHttp\MessageFormatter; +use GuzzleHttp\Middleware; +use Psr\Http\Message\ResponseInterface; + +/** + * Class BaseClient. + * + * @author overtrue + */ +class BaseClient +{ + use HasHttpRequests { request as performRequest; } + + /** + * @var \EasyWeChat\Payment\Application + */ + protected $app; + + /** + * Constructor. + * + * @param \EasyWeChat\Payment\Application $app + */ + public function __construct(Application $app) + { + $this->app = $app; + + $this->setHttpClient($this->app['http_client']); + } + + /** + * Extra request params. + * + * @return array + */ + protected function prepends() + { + return []; + } + + /** + * Make a API request. + * + * @param string $endpoint + * @param array $params + * @param string $method + * @param array $options + * @param bool $returnResponse + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + protected function request(string $endpoint, array $params = [], $method = 'post', array $options = [], $returnResponse = false) + { + $base = [ + 'mch_id' => $this->app['config']['mch_id'], + 'nonce_str' => uniqid(), + 'sub_mch_id' => $this->app['config']['sub_mch_id'], + 'sub_appid' => $this->app['config']['sub_appid'], + ]; + + $params = array_filter(array_filter(array_merge($base, $this->prepends(), $params)), 'strlen'); + + $secretKey = $this->app->getKey($endpoint); + + $encryptMethod = Support\get_encrypt_method(Support\Arr::get($params, 'sign_type', 'MD5'), $secretKey); + + $params['sign'] = Support\generate_sign($params, $secretKey, $encryptMethod); + + $options = array_merge([ + 'body' => Support\XML::build($params), + ], $options); + + $this->pushMiddleware($this->logMiddleware(), 'log'); + + $response = $this->performRequest($endpoint, $method, $options); + + return $returnResponse ? $response : $this->castResponseToType($response, $this->app->config->get('response_type')); + } + + /** + * Log the request. + * + * @return \Closure + */ + protected function logMiddleware() + { + $formatter = new MessageFormatter($this->app['config']['http.log_template'] ?? MessageFormatter::DEBUG); + + return Middleware::log($this->app['logger'], $formatter); + } + + /** + * Make a request and return raw response. + * + * @param string $endpoint + * @param array $params + * @param string $method + * @param array $options + * + * @return ResponseInterface + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + protected function requestRaw(string $endpoint, array $params = [], $method = 'post', array $options = []) + { + /** @var ResponseInterface $response */ + $response = $this->request($endpoint, $params, $method, $options, true); + + return $response; + } + + /** + * Make a request and return an array. + * + * @param string $endpoint + * @param array $params + * @param string $method + * @param array $options + * + * @return array + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + protected function requestArray(string $endpoint, array $params = [], $method = 'post', array $options = []): array + { + $response = $this->requestRaw($endpoint, $params, $method, $options); + + return $this->castResponseToType($response, 'array'); + } + + /** + * Request with SSL. + * + * @param string $endpoint + * @param array $params + * @param string $method + * @param array $options + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + protected function safeRequest($endpoint, array $params, $method = 'post', array $options = []) + { + $options = array_merge([ + 'cert' => $this->app['config']->get('cert_path'), + 'ssl_key' => $this->app['config']->get('key_path'), + ], $options); + + return $this->request($endpoint, $params, $method, $options); + } + + /** + * Wrapping an API endpoint. + * + * @param string $endpoint + * + * @return string + */ + protected function wrap(string $endpoint): string + { + return $this->app->inSandbox() ? "sandboxnew/{$endpoint}" : $endpoint; + } +} diff --git a/vendor/overtrue/wechat/src/Payment/Kernel/Exceptions/InvalidSignException.php b/vendor/overtrue/wechat/src/Payment/Kernel/Exceptions/InvalidSignException.php new file mode 100644 index 0000000..cdd25ba --- /dev/null +++ b/vendor/overtrue/wechat/src/Payment/Kernel/Exceptions/InvalidSignException.php @@ -0,0 +1,18 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Payment\Kernel\Exceptions; + +use EasyWeChat\Kernel\Exceptions\Exception; + +class InvalidSignException extends Exception +{ +} diff --git a/vendor/overtrue/wechat/src/Payment/Kernel/Exceptions/SandboxException.php b/vendor/overtrue/wechat/src/Payment/Kernel/Exceptions/SandboxException.php new file mode 100644 index 0000000..01f9dd5 --- /dev/null +++ b/vendor/overtrue/wechat/src/Payment/Kernel/Exceptions/SandboxException.php @@ -0,0 +1,18 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Payment\Kernel\Exceptions; + +use EasyWeChat\Kernel\Exceptions\Exception; + +class SandboxException extends Exception +{ +} diff --git a/vendor/overtrue/wechat/src/Payment/Merchant/Client.php b/vendor/overtrue/wechat/src/Payment/Merchant/Client.php new file mode 100644 index 0000000..f31a7e2 --- /dev/null +++ b/vendor/overtrue/wechat/src/Payment/Merchant/Client.php @@ -0,0 +1,94 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Payment\Merchant; + +use EasyWeChat\Payment\Kernel\BaseClient; + +/** + * Class Client. + * + * @author mingyoung + */ +class Client extends BaseClient +{ + /** + * Add sub-merchant. + * + * @param array $params + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function addSubMerchant(array $params) + { + return $this->manage($params, ['action' => 'add']); + } + + /** + * Query sub-merchant by merchant id. + * + * @param string $id + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function querySubMerchantByMerchantId(string $id) + { + $params = [ + 'micro_mch_id' => $id, + ]; + + return $this->manage($params, ['action' => 'query']); + } + + /** + * Query sub-merchant by wechat id. + * + * @param string $id + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function querySubMerchantByWeChatId(string $id) + { + $params = [ + 'recipient_wechatid' => $id, + ]; + + return $this->manage($params, ['action' => 'query']); + } + + /** + * @param array $params + * @param array $query + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + protected function manage(array $params, array $query) + { + $params = array_merge($params, [ + 'appid' => $this->app['config']->app_id, + 'nonce_str' => '', + 'sub_mch_id' => '', + 'sub_appid' => '', + ]); + + return $this->safeRequest('secapi/mch/submchmanage', $params, 'post', compact('query')); + } +} diff --git a/vendor/overtrue/wechat/src/Payment/Merchant/ServiceProvider.php b/vendor/overtrue/wechat/src/Payment/Merchant/ServiceProvider.php new file mode 100644 index 0000000..5d05c95 --- /dev/null +++ b/vendor/overtrue/wechat/src/Payment/Merchant/ServiceProvider.php @@ -0,0 +1,33 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Payment\Merchant; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +/** + * Class ServiceProvider. + * + * @author mingyoung + */ +class ServiceProvider implements ServiceProviderInterface +{ + /** + * {@inheritdoc}. + */ + public function register(Container $app) + { + $app['merchant'] = function ($app) { + return new Client($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/Payment/Notify/Handler.php b/vendor/overtrue/wechat/src/Payment/Notify/Handler.php new file mode 100644 index 0000000..96a9956 --- /dev/null +++ b/vendor/overtrue/wechat/src/Payment/Notify/Handler.php @@ -0,0 +1,205 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Payment\Notify; + +use Closure; +use EasyWeChat\Kernel\Exceptions\Exception; +use EasyWeChat\Kernel\Support; +use EasyWeChat\Kernel\Support\XML; +use EasyWeChat\Payment\Kernel\Exceptions\InvalidSignException; +use Symfony\Component\HttpFoundation\Response; + +abstract class Handler +{ + public const SUCCESS = 'SUCCESS'; + public const FAIL = 'FAIL'; + + /** + * @var \EasyWeChat\Payment\Application + */ + protected $app; + + /** + * @var array + */ + protected $message; + + /** + * @var string|null + */ + protected $fail; + + /** + * @var array + */ + protected $attributes = []; + + /** + * Check sign. + * If failed, throws an exception. + * + * @var bool + */ + protected $check = true; + + /** + * Respond with sign. + * + * @var bool + */ + protected $sign = false; + + /** + * @param \EasyWeChat\Payment\Application $app + */ + public function __construct($app) + { + $this->app = $app; + } + + /** + * Handle incoming notify. + * + * @param \Closure $closure + * + * @return \Symfony\Component\HttpFoundation\Response + */ + abstract public function handle(Closure $closure); + + /** + * @param string $message + */ + public function fail(string $message) + { + $this->fail = $message; + } + + /** + * @param array $attributes + * @param bool $sign + * + * @return $this + */ + public function respondWith(array $attributes, bool $sign = false) + { + $this->attributes = $attributes; + $this->sign = $sign; + + return $this; + } + + /** + * Build xml and return the response to WeChat. + * + * @return \Symfony\Component\HttpFoundation\Response + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + */ + public function toResponse(): Response + { + $base = [ + 'return_code' => is_null($this->fail) ? static::SUCCESS : static::FAIL, + 'return_msg' => $this->fail, + ]; + + $attributes = array_merge($base, $this->attributes); + + if ($this->sign) { + $attributes['sign'] = Support\generate_sign($attributes, $this->app->getKey()); + } + + return new Response(XML::build($attributes)); + } + + /** + * Return the notify message from request. + * + * @return array + * + * @throws \EasyWeChat\Kernel\Exceptions\Exception + */ + public function getMessage(): array + { + if (!empty($this->message)) { + return $this->message; + } + + try { + $message = XML::parse(strval($this->app['request']->getContent())); + } catch (\Throwable $e) { + throw new Exception('Invalid request XML: '.$e->getMessage(), 400); + } + + if (!is_array($message) || empty($message)) { + throw new Exception('Invalid request XML.', 400); + } + + if ($this->check) { + $this->validate($message); + } + + return $this->message = $message; + } + + /** + * Decrypt message. + * + * @param string $key + * + * @return string|null + * + * @throws \EasyWeChat\Kernel\Exceptions\Exception + */ + public function decryptMessage(string $key) + { + $message = $this->getMessage(); + if (empty($message[$key])) { + return null; + } + + return Support\AES::decrypt( + base64_decode($message[$key], true), + md5($this->app['config']->key), + '', + OPENSSL_RAW_DATA, + 'AES-256-ECB' + ); + } + + /** + * Validate the request params. + * + * @param array $message + * + * @throws \EasyWeChat\Payment\Kernel\Exceptions\InvalidSignException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + */ + protected function validate(array $message) + { + $sign = $message['sign']; + unset($message['sign']); + + if (Support\generate_sign($message, $this->app->getKey()) !== $sign) { + throw new InvalidSignException(); + } + } + + /** + * @param mixed $result + */ + protected function strict($result) + { + if (true !== $result && is_null($this->fail)) { + $this->fail(strval($result)); + } + } +} diff --git a/vendor/overtrue/wechat/src/Payment/Notify/Paid.php b/vendor/overtrue/wechat/src/Payment/Notify/Paid.php new file mode 100644 index 0000000..c54b9cd --- /dev/null +++ b/vendor/overtrue/wechat/src/Payment/Notify/Paid.php @@ -0,0 +1,33 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Payment\Notify; + +use Closure; + +class Paid extends Handler +{ + /** + * @param \Closure $closure + * + * @return \Symfony\Component\HttpFoundation\Response + * + * @throws \EasyWeChat\Kernel\Exceptions\Exception + */ + public function handle(Closure $closure) + { + $this->strict( + \call_user_func($closure, $this->getMessage(), [$this, 'fail']) + ); + + return $this->toResponse(); + } +} diff --git a/vendor/overtrue/wechat/src/Payment/Notify/Refunded.php b/vendor/overtrue/wechat/src/Payment/Notify/Refunded.php new file mode 100644 index 0000000..8241892 --- /dev/null +++ b/vendor/overtrue/wechat/src/Payment/Notify/Refunded.php @@ -0,0 +1,48 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Payment\Notify; + +use Closure; +use EasyWeChat\Kernel\Support\XML; + +class Refunded extends Handler +{ + protected $check = false; + + /** + * @param \Closure $closure + * + * @return \Symfony\Component\HttpFoundation\Response + * + * @throws \EasyWeChat\Kernel\Exceptions\Exception + */ + public function handle(Closure $closure) + { + $this->strict( + \call_user_func($closure, $this->getMessage(), $this->reqInfo(), [$this, 'fail']) + ); + + return $this->toResponse(); + } + + /** + * Decrypt the `req_info` from request message. + * + * @return array + * + * @throws \EasyWeChat\Kernel\Exceptions\Exception + */ + public function reqInfo() + { + return XML::parse($this->decryptMessage('req_info')); + } +} diff --git a/vendor/overtrue/wechat/src/Payment/Notify/Scanned.php b/vendor/overtrue/wechat/src/Payment/Notify/Scanned.php new file mode 100644 index 0000000..023a905 --- /dev/null +++ b/vendor/overtrue/wechat/src/Payment/Notify/Scanned.php @@ -0,0 +1,60 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Payment\Notify; + +use Closure; + +class Scanned extends Handler +{ + protected $check = false; + + /** + * @var string|null + */ + protected $alert; + + /** + * @param string $message + */ + public function alert(string $message) + { + $this->alert = $message; + } + + /** + * @param \Closure $closure + * + * @return \Symfony\Component\HttpFoundation\Response + * + * @throws \EasyWeChat\Kernel\Exceptions\Exception + */ + public function handle(Closure $closure) + { + $result = \call_user_func($closure, $this->getMessage(), [$this, 'fail'], [$this, 'alert']); + + $attributes = [ + 'result_code' => is_null($this->alert) && is_null($this->fail) ? static::SUCCESS : static::FAIL, + 'err_code_des' => $this->alert, + ]; + + if (is_null($this->alert) && is_string($result)) { + $attributes += [ + 'appid' => $this->app['config']->app_id, + 'mch_id' => $this->app['config']->mch_id, + 'nonce_str' => uniqid(), + 'prepay_id' => $result, + ]; + } + + return $this->respondWith($attributes, true)->toResponse(); + } +} diff --git a/vendor/overtrue/wechat/src/Payment/Order/Client.php b/vendor/overtrue/wechat/src/Payment/Order/Client.php new file mode 100644 index 0000000..ff2ca2b --- /dev/null +++ b/vendor/overtrue/wechat/src/Payment/Order/Client.php @@ -0,0 +1,126 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Payment\Order; + +use EasyWeChat\Kernel\Exceptions\InvalidArgumentException; +use EasyWeChat\Kernel\Exceptions\InvalidConfigException; +use EasyWeChat\Kernel\Support; +use EasyWeChat\Kernel\Support\Collection; +use EasyWeChat\Payment\Kernel\BaseClient; +use Psr\Http\Message\ResponseInterface; + +class Client extends BaseClient +{ + /** + * Unify order. + * + * @param array $params + * @param bool $isContract + * + * @return ResponseInterface|Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function unify(array $params, $isContract = false) + { + if (empty($params['spbill_create_ip'])) { + $params['spbill_create_ip'] = ('NATIVE' === $params['trade_type']) ? Support\get_server_ip() : Support\get_client_ip(); + } + + $params['appid'] = $this->app['config']->app_id; + $params['notify_url'] = $params['notify_url'] ?? $this->app['config']['notify_url']; + + if ($isContract) { + $params['contract_appid'] = $this->app['config']['app_id']; + $params['contract_mchid'] = $this->app['config']['mch_id']; + $params['request_serial'] = $params['request_serial'] ?? time(); + $params['contract_notify_url'] = $params['contract_notify_url'] ?? $this->app['config']['contract_notify_url']; + + return $this->request($this->wrap('pay/contractorder'), $params); + } + + return $this->request($this->wrap('pay/unifiedorder'), $params); + } + + /** + * Query order by out trade number. + * + * @param string $number + * + * @return ResponseInterface|Collection|array|object|string + * + * @throws InvalidArgumentException + * @throws InvalidConfigException + */ + public function queryByOutTradeNumber(string $number) + { + return $this->query([ + 'out_trade_no' => $number, + ]); + } + + /** + * Query order by transaction id. + * + * @param string $transactionId + * + * @return ResponseInterface|Collection|array|object|string + * + * @throws InvalidArgumentException + * @throws InvalidConfigException + */ + public function queryByTransactionId(string $transactionId) + { + return $this->query([ + 'transaction_id' => $transactionId, + ]); + } + + /** + * @param array $params + * + * @return ResponseInterface|Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + protected function query(array $params) + { + $params['appid'] = $this->app['config']->app_id; + + return $this->request($this->wrap('pay/orderquery'), $params); + } + + /** + * Close order by out_trade_no. + * + * @param string $tradeNo + * + * @return ResponseInterface|Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function close(string $tradeNo) + { + $params = [ + 'appid' => $this->app['config']->app_id, + 'out_trade_no' => $tradeNo, + ]; + + return $this->request($this->wrap('pay/closeorder'), $params); + } +} diff --git a/vendor/overtrue/wechat/src/Payment/Order/ServiceProvider.php b/vendor/overtrue/wechat/src/Payment/Order/ServiceProvider.php new file mode 100644 index 0000000..9e781c0 --- /dev/null +++ b/vendor/overtrue/wechat/src/Payment/Order/ServiceProvider.php @@ -0,0 +1,33 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Payment\Order; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +/** + * Class ServiceProvider. + * + * @author mingyoung + */ +class ServiceProvider implements ServiceProviderInterface +{ + /** + * {@inheritdoc}. + */ + public function register(Container $app) + { + $app['order'] = function ($app) { + return new Client($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/Payment/ProfitSharing/Client.php b/vendor/overtrue/wechat/src/Payment/ProfitSharing/Client.php new file mode 100644 index 0000000..c051a3d --- /dev/null +++ b/vendor/overtrue/wechat/src/Payment/ProfitSharing/Client.php @@ -0,0 +1,251 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Payment\ProfitSharing; + +use EasyWeChat\Payment\Kernel\BaseClient; + +/** + * Class Client. + * + * @author ClouderSky + */ +class Client extends BaseClient +{ + /** + * {@inheritdoc}. + */ + protected function prepends() + { + return [ + 'sign_type' => 'HMAC-SHA256', + ]; + } + + /** + * Add profit sharing receiver. + * 服务商代子商户发起添加分账接收方请求. + * 后续可通过发起分账请求将结算后的钱分到该分账接收方. + * + * @param array $receiver 分账接收方对象,json格式 + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function addReceiver(array $receiver) + { + $params = [ + 'appid' => $this->app['config']->app_id, + 'receiver' => json_encode( + $receiver, + JSON_UNESCAPED_UNICODE + ), + ]; + + return $this->request( + 'pay/profitsharingaddreceiver', + $params + ); + } + + /** + * Delete profit sharing receiver. + * 服务商代子商户发起删除分账接收方请求. + * 删除后不支持将结算后的钱分到该分账接收方. + * + * @param array $receiver 分账接收方对象,json格式 + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function deleteReceiver(array $receiver) + { + $params = [ + 'appid' => $this->app['config']->app_id, + 'receiver' => json_encode( + $receiver, + JSON_UNESCAPED_UNICODE + ), + ]; + + return $this->request( + 'pay/profitsharingremovereceiver', + $params + ); + } + + /** + * Single profit sharing. + * 请求单次分账. + * + * @param string $transactionId 微信支付订单号 + * @param string $outOrderNo 商户系统内部的分账单号 + * @param array $receivers 分账接收方列表 + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function share( + string $transactionId, + string $outOrderNo, + array $receivers + ) { + $params = [ + 'appid' => $this->app['config']->app_id, + 'transaction_id' => $transactionId, + 'out_order_no' => $outOrderNo, + 'receivers' => json_encode( + $receivers, + JSON_UNESCAPED_UNICODE + ), + ]; + + return $this->safeRequest( + 'secapi/pay/profitsharing', + $params + ); + } + + /** + * Multi profit sharing. + * 请求多次分账. + * + * @param string $transactionId 微信支付订单号 + * @param string $outOrderNo 商户系统内部的分账单号 + * @param array $receivers 分账接收方列表 + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function multiShare( + string $transactionId, + string $outOrderNo, + array $receivers + ) { + $params = [ + 'appid' => $this->app['config']->app_id, + 'transaction_id' => $transactionId, + 'out_order_no' => $outOrderNo, + 'receivers' => json_encode( + $receivers, + JSON_UNESCAPED_UNICODE + ), + ]; + + return $this->safeRequest( + 'secapi/pay/multiprofitsharing', + $params + ); + } + + /** + * Finish profit sharing. + * 完结分账. + * + * @param array $params + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function markOrderAsFinished(array $params) + { + $params['appid'] = $this->app['config']->app_id; + $params['sub_appid'] = null; + + return $this->safeRequest( + 'secapi/pay/profitsharingfinish', + $params + ); + } + + /** + * Query profit sharing result. + * 查询分账结果. + * + * @param string $transactionId 微信支付订单号 + * @param string $outOrderNo 商户系统内部的分账单号 + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function query( + string $transactionId, + string $outOrderNo + ) { + $params = [ + 'sub_appid' => null, + 'transaction_id' => $transactionId, + 'out_order_no' => $outOrderNo, + ]; + + return $this->request( + 'pay/profitsharingquery', + $params + ); + } + + /** + * Profit sharing return. + * 分账回退. + * + * @param string $outOrderNo 商户系统内部的分账单号 + * @param string $outReturnNo 商户系统内部分账回退单号 + * @param int $returnAmount 回退金额 + * @param string $returnAccount 回退方账号 + * @param string $description 回退描述 + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function returnShare( + string $outOrderNo, + string $outReturnNo, + int $returnAmount, + string $returnAccount, + string $description + ) { + $params = [ + 'appid' => $this->app['config']->app_id, + 'out_order_no' => $outOrderNo, + 'out_return_no' => $outReturnNo, + 'return_account_type' => 'MERCHANT_ID', + 'return_account' => $returnAccount, + 'return_amount' => $returnAmount, + 'description' => $description, + ]; + + return $this->safeRequest( + 'secapi/pay/profitsharingreturn', + $params + ); + } +} diff --git a/vendor/overtrue/wechat/src/Payment/ProfitSharing/ServiceProvider.php b/vendor/overtrue/wechat/src/Payment/ProfitSharing/ServiceProvider.php new file mode 100644 index 0000000..d247d53 --- /dev/null +++ b/vendor/overtrue/wechat/src/Payment/ProfitSharing/ServiceProvider.php @@ -0,0 +1,33 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Payment\ProfitSharing; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +/** + * Class ServiceProvider. + * + * @author ClouderSky + */ +class ServiceProvider implements ServiceProviderInterface +{ + /** + * {@inheritdoc}. + */ + public function register(Container $app) + { + $app['profit_sharing'] = function ($app) { + return new Client($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/Payment/Redpack/Client.php b/vendor/overtrue/wechat/src/Payment/Redpack/Client.php new file mode 100644 index 0000000..5b49ef5 --- /dev/null +++ b/vendor/overtrue/wechat/src/Payment/Redpack/Client.php @@ -0,0 +1,109 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Payment\Redpack; + +use EasyWeChat\Kernel\Support; +use EasyWeChat\Payment\Kernel\BaseClient; + +/** + * Class Client. + * + * @author tianyong90 <412039588@qq.com> + */ +class Client extends BaseClient +{ + /** + * Query redpack. + * + * @param mixed $mchBillno + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function info($mchBillno) + { + $params = is_array($mchBillno) ? $mchBillno : ['mch_billno' => $mchBillno]; + $base = [ + 'appid' => $this->app['config']->app_id, + 'bill_type' => 'MCHT', + ]; + + return $this->safeRequest('mmpaymkttransfers/gethbinfo', array_merge($base, $params)); + } + + /** + * Send miniprogram normal redpack. + * + * @param array $params + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function sendMiniprogramNormal(array $params) + { + $base = [ + 'total_num' => 1, + 'client_ip' => $params['client_ip'] ?? Support\get_server_ip(), + 'wxappid' => $this->app['config']->app_id, + 'notify_way' => 'MINI_PROGRAM_JSAPI', + ]; + + return $this->safeRequest('mmpaymkttransfers/sendminiprogramhb', array_merge($base, $params)); + } + + /** + * Send normal redpack. + * + * @param array $params + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function sendNormal(array $params) + { + $base = [ + 'total_num' => 1, + 'client_ip' => $params['client_ip'] ?? Support\get_server_ip(), + 'wxappid' => $this->app['config']->app_id, + ]; + + return $this->safeRequest('mmpaymkttransfers/sendredpack', array_merge($base, $params)); + } + + /** + * Send group redpack. + * + * @param array $params + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function sendGroup(array $params) + { + $base = [ + 'amt_type' => 'ALL_RAND', + 'wxappid' => $this->app['config']->app_id, + ]; + + return $this->safeRequest('mmpaymkttransfers/sendgroupredpack', array_merge($base, $params)); + } +} diff --git a/vendor/overtrue/wechat/src/Payment/Redpack/ServiceProvider.php b/vendor/overtrue/wechat/src/Payment/Redpack/ServiceProvider.php new file mode 100644 index 0000000..af36f35 --- /dev/null +++ b/vendor/overtrue/wechat/src/Payment/Redpack/ServiceProvider.php @@ -0,0 +1,33 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Payment\Redpack; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +/** + * Class ServiceProvider. + * + * @author overtrue + */ +class ServiceProvider implements ServiceProviderInterface +{ + /** + * {@inheritdoc}. + */ + public function register(Container $app) + { + $app['redpack'] = function ($app) { + return new Client($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/Payment/Refund/Client.php b/vendor/overtrue/wechat/src/Payment/Refund/Client.php new file mode 100644 index 0000000..128c6e7 --- /dev/null +++ b/vendor/overtrue/wechat/src/Payment/Refund/Client.php @@ -0,0 +1,159 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Payment\Refund; + +use EasyWeChat\Payment\Kernel\BaseClient; + +class Client extends BaseClient +{ + /** + * Refund by out trade number. + * + * @param string $number + * @param string $refundNumber + * @param int $totalFee + * @param int $refundFee + * @param array $optional + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function byOutTradeNumber(string $number, string $refundNumber, int $totalFee, int $refundFee, array $optional = []) + { + return $this->refund($refundNumber, $totalFee, $refundFee, array_merge($optional, ['out_trade_no' => $number])); + } + + /** + * Refund by transaction id. + * + * @param string $transactionId + * @param string $refundNumber + * @param int $totalFee + * @param int $refundFee + * @param array $optional + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function byTransactionId(string $transactionId, string $refundNumber, int $totalFee, int $refundFee, array $optional = []) + { + return $this->refund($refundNumber, $totalFee, $refundFee, array_merge($optional, ['transaction_id' => $transactionId])); + } + + /** + * Query refund by transaction id. + * + * @param string $transactionId + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function queryByTransactionId(string $transactionId) + { + return $this->query($transactionId, 'transaction_id'); + } + + /** + * Query refund by out trade number. + * + * @param string $outTradeNumber + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function queryByOutTradeNumber(string $outTradeNumber) + { + return $this->query($outTradeNumber, 'out_trade_no'); + } + + /** + * Query refund by out refund number. + * + * @param string $outRefundNumber + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function queryByOutRefundNumber(string $outRefundNumber) + { + return $this->query($outRefundNumber, 'out_refund_no'); + } + + /** + * Query refund by refund id. + * + * @param string $refundId + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function queryByRefundId(string $refundId) + { + return $this->query($refundId, 'refund_id'); + } + + /** + * Refund. + * + * @param string $refundNumber + * @param int $totalFee + * @param int $refundFee + * @param array $optional + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + protected function refund(string $refundNumber, int $totalFee, int $refundFee, $optional = []) + { + $params = array_merge([ + 'out_refund_no' => $refundNumber, + 'total_fee' => $totalFee, + 'refund_fee' => $refundFee, + 'appid' => $this->app['config']->app_id, + ], $optional); + + return $this->safeRequest($this->wrap( + $this->app->inSandbox() ? 'pay/refund' : 'secapi/pay/refund' + ), $params); + } + + /** + * Query refund. + * + * @param string $number + * @param string $type + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + protected function query(string $number, string $type) + { + $params = [ + 'appid' => $this->app['config']->app_id, + $type => $number, + ]; + + return $this->request($this->wrap('pay/refundquery'), $params); + } +} diff --git a/vendor/overtrue/wechat/src/Payment/Refund/ServiceProvider.php b/vendor/overtrue/wechat/src/Payment/Refund/ServiceProvider.php new file mode 100644 index 0000000..faa4e89 --- /dev/null +++ b/vendor/overtrue/wechat/src/Payment/Refund/ServiceProvider.php @@ -0,0 +1,33 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Payment\Refund; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +/** + * Class ServiceProvider. + * + * @author mingyoung + */ +class ServiceProvider implements ServiceProviderInterface +{ + /** + * {@inheritdoc}. + */ + public function register(Container $app) + { + $app['refund'] = function ($app) { + return new Client($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/Payment/Reverse/Client.php b/vendor/overtrue/wechat/src/Payment/Reverse/Client.php new file mode 100644 index 0000000..990e6e6 --- /dev/null +++ b/vendor/overtrue/wechat/src/Payment/Reverse/Client.php @@ -0,0 +1,67 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Payment\Reverse; + +use EasyWeChat\Payment\Kernel\BaseClient; + +class Client extends BaseClient +{ + /** + * Reverse order by out trade number. + * + * @param string $outTradeNumber + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function byOutTradeNumber(string $outTradeNumber) + { + return $this->reverse($outTradeNumber, 'out_trade_no'); + } + + /** + * Reverse order by transaction_id. + * + * @param string $transactionId + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function byTransactionId(string $transactionId) + { + return $this->reverse($transactionId, 'transaction_id'); + } + + /** + * Reverse order. + * + * @param string $number + * @param string $type + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + protected function reverse(string $number, string $type) + { + $params = [ + 'appid' => $this->app['config']->app_id, + $type => $number, + ]; + + return $this->safeRequest($this->wrap('secapi/pay/reverse'), $params); + } +} diff --git a/vendor/overtrue/wechat/src/Payment/Reverse/ServiceProvider.php b/vendor/overtrue/wechat/src/Payment/Reverse/ServiceProvider.php new file mode 100644 index 0000000..2417874 --- /dev/null +++ b/vendor/overtrue/wechat/src/Payment/Reverse/ServiceProvider.php @@ -0,0 +1,33 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Payment\Reverse; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +/** + * Class ServiceProvider. + * + * @author overtrue + */ +class ServiceProvider implements ServiceProviderInterface +{ + /** + * {@inheritdoc}. + */ + public function register(Container $app) + { + $app['reverse'] = function ($app) { + return new Client($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/Payment/Sandbox/Client.php b/vendor/overtrue/wechat/src/Payment/Sandbox/Client.php new file mode 100644 index 0000000..9f1ec7c --- /dev/null +++ b/vendor/overtrue/wechat/src/Payment/Sandbox/Client.php @@ -0,0 +1,60 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Payment\Sandbox; + +use EasyWeChat\Kernel\Traits\InteractsWithCache; +use EasyWeChat\Payment\Kernel\BaseClient; +use EasyWeChat\Payment\Kernel\Exceptions\SandboxException; + +/** + * Class Client. + * + * @author mingyoung + */ +class Client extends BaseClient +{ + use InteractsWithCache; + + /** + * @return string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \EasyWeChat\Payment\Kernel\Exceptions\SandboxException + * @throws \Psr\SimpleCache\InvalidArgumentException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function getKey(): string + { + if ($cache = $this->getCache()->get($this->getCacheKey())) { + return $cache; + } + + $response = $this->requestArray('sandboxnew/pay/getsignkey'); + + if ('SUCCESS' === $response['return_code']) { + $this->getCache()->set($this->getCacheKey(), $key = $response['sandbox_signkey'], 24 * 3600); + + return $key; + } + + throw new SandboxException($response['retmsg'] ?? $response['return_msg']); + } + + /** + * @return string + */ + protected function getCacheKey(): string + { + return 'easywechat.payment.sandbox.'.md5($this->app['config']->app_id.$this->app['config']['mch_id']); + } +} diff --git a/vendor/overtrue/wechat/src/Payment/Sandbox/ServiceProvider.php b/vendor/overtrue/wechat/src/Payment/Sandbox/ServiceProvider.php new file mode 100644 index 0000000..d0b5d6e --- /dev/null +++ b/vendor/overtrue/wechat/src/Payment/Sandbox/ServiceProvider.php @@ -0,0 +1,33 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Payment\Sandbox; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +/** + * Class ServiceProvider. + * + * @author mingyoung + */ +class ServiceProvider implements ServiceProviderInterface +{ + /** + * @param \Pimple\Container $app + */ + public function register(Container $app) + { + $app['sandbox'] = function ($app) { + return new Client($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/Payment/Security/Client.php b/vendor/overtrue/wechat/src/Payment/Security/Client.php new file mode 100644 index 0000000..01aa752 --- /dev/null +++ b/vendor/overtrue/wechat/src/Payment/Security/Client.php @@ -0,0 +1,38 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Payment\Security; + +use EasyWeChat\Payment\Kernel\BaseClient; + +/** + * Class Client. + * + * @author overtrue + */ +class Client extends BaseClient +{ + /** + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function getPublicKey() + { + $params = [ + 'sign_type' => 'MD5', + ]; + + return $this->safeRequest('https://fraud.mch.weixin.qq.com/risk/getpublickey', $params); + } +} diff --git a/vendor/overtrue/wechat/src/Payment/Security/ServiceProvider.php b/vendor/overtrue/wechat/src/Payment/Security/ServiceProvider.php new file mode 100644 index 0000000..e0e31f8 --- /dev/null +++ b/vendor/overtrue/wechat/src/Payment/Security/ServiceProvider.php @@ -0,0 +1,33 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Payment\Security; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +/** + * Class ServiceProvider. + * + * @author overtrue + */ +class ServiceProvider implements ServiceProviderInterface +{ + /** + * {@inheritdoc}. + */ + public function register(Container $app) + { + $app['security'] = function ($app) { + return new Client($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/Payment/Transfer/Client.php b/vendor/overtrue/wechat/src/Payment/Transfer/Client.php new file mode 100644 index 0000000..619cc0f --- /dev/null +++ b/vendor/overtrue/wechat/src/Payment/Transfer/Client.php @@ -0,0 +1,122 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Payment\Transfer; + +use EasyWeChat\Kernel\Exceptions\RuntimeException; +use EasyWeChat\Payment\Kernel\BaseClient; +use function EasyWeChat\Kernel\Support\get_server_ip; +use function EasyWeChat\Kernel\Support\rsa_public_encrypt; + +/** + * Class Client. + * + * @author AC + */ +class Client extends BaseClient +{ + /** + * Query MerchantPay to balance. + * + * @param string $partnerTradeNo + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function queryBalanceOrder(string $partnerTradeNo) + { + $params = [ + 'appid' => $this->app['config']->app_id, + 'mch_id' => $this->app['config']->mch_id, + 'partner_trade_no' => $partnerTradeNo, + ]; + + return $this->safeRequest('mmpaymkttransfers/gettransferinfo', $params); + } + + /** + * Send MerchantPay to balance. + * + * @param array $params + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function toBalance(array $params) + { + $base = [ + 'mch_id' => null, + 'mchid' => $this->app['config']->mch_id, + 'mch_appid' => $this->app['config']->app_id, + ]; + + if (empty($params['spbill_create_ip'])) { + $params['spbill_create_ip'] = get_server_ip(); + } + + return $this->safeRequest('mmpaymkttransfers/promotion/transfers', array_merge($base, $params)); + } + + /** + * Query MerchantPay order to BankCard. + * + * @param string $partnerTradeNo + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function queryBankCardOrder(string $partnerTradeNo) + { + $params = [ + 'mch_id' => $this->app['config']->mch_id, + 'partner_trade_no' => $partnerTradeNo, + ]; + + return $this->safeRequest('mmpaysptrans/query_bank', $params); + } + + /** + * Send MerchantPay to BankCard. + * + * @param array $params + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \EasyWeChat\Kernel\Exceptions\RuntimeException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function toBankCard(array $params) + { + foreach (['bank_code', 'partner_trade_no', 'enc_bank_no', 'enc_true_name', 'amount'] as $key) { + if (empty($params[$key])) { + throw new RuntimeException(\sprintf('"%s" is required.', $key)); + } + } + + $publicKey = file_get_contents($this->app['config']->get('rsa_public_key_path')); + + $params['enc_bank_no'] = rsa_public_encrypt($params['enc_bank_no'], $publicKey); + $params['enc_true_name'] = rsa_public_encrypt($params['enc_true_name'], $publicKey); + + return $this->safeRequest('mmpaysptrans/pay_bank', $params); + } +} diff --git a/vendor/overtrue/wechat/src/Payment/Transfer/ServiceProvider.php b/vendor/overtrue/wechat/src/Payment/Transfer/ServiceProvider.php new file mode 100644 index 0000000..0e27aad --- /dev/null +++ b/vendor/overtrue/wechat/src/Payment/Transfer/ServiceProvider.php @@ -0,0 +1,33 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Payment\Transfer; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +/** + * Class ServiceProvider. + * + * @author overtrue + */ +class ServiceProvider implements ServiceProviderInterface +{ + /** + * {@inheritdoc}. + */ + public function register(Container $app) + { + $app['transfer'] = function ($app) { + return new Client($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/Work/Agent/Client.php b/vendor/overtrue/wechat/src/Work/Agent/Client.php new file mode 100644 index 0000000..9e11aac --- /dev/null +++ b/vendor/overtrue/wechat/src/Work/Agent/Client.php @@ -0,0 +1,68 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Work\Agent; + +use EasyWeChat\Kernel\BaseClient; + +/** + * This is WeWork Agent Client. + * + * @author mingyoung + */ +class Client extends BaseClient +{ + /** + * Get agent. + * + * @param int $agentId + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function get(int $agentId) + { + $params = [ + 'agentid' => $agentId, + ]; + + return $this->httpGet('cgi-bin/agent/get', $params); + } + + /** + * Set agent. + * + * @param int $agentId + * @param array $attributes + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function set(int $agentId, array $attributes) + { + return $this->httpPostJson('cgi-bin/agent/set', array_merge(['agentid' => $agentId], $attributes)); + } + + /** + * Get agent list. + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function list() + { + return $this->httpGet('cgi-bin/agent/list'); + } +} diff --git a/vendor/overtrue/wechat/src/Work/Agent/ServiceProvider.php b/vendor/overtrue/wechat/src/Work/Agent/ServiceProvider.php new file mode 100644 index 0000000..87f4384 --- /dev/null +++ b/vendor/overtrue/wechat/src/Work/Agent/ServiceProvider.php @@ -0,0 +1,37 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Work\Agent; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +/** + * Class ServiceProvider. + * + * @author mingyoung + */ +class ServiceProvider implements ServiceProviderInterface +{ + /** + * {@inheritdoc}. + */ + public function register(Container $app) + { + $app['agent'] = function ($app) { + return new Client($app); + }; + + $app['agent_workbench'] = function ($app) { + return new WorkbenchClient($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/Work/Agent/WorkbenchClient.php b/vendor/overtrue/wechat/src/Work/Agent/WorkbenchClient.php new file mode 100644 index 0000000..2a4bf0b --- /dev/null +++ b/vendor/overtrue/wechat/src/Work/Agent/WorkbenchClient.php @@ -0,0 +1,74 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Work\Agent; + +use EasyWeChat\Kernel\BaseClient; + +/** + * This is WeWork Agent WorkbenchClient. + * + * @author 读心印 + */ +class WorkbenchClient extends BaseClient +{ + /** + * 设置应用在工作台展示的模版. + * + * @see https://open.work.weixin.qq.com/api/doc/90000/90135/92535#设置应用在工作台展示的模版 + * + * @param array $params + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException|\GuzzleHttp\Exception\GuzzleException + */ + public function setWorkbenchTemplate(array $params) + { + return $this->httpPostJson('cgi-bin/agent/set_workbench_template', $params); + } + + /** + * 获取应用在工作台展示的模版. + * + * @see https://open.work.weixin.qq.com/api/doc/90000/90135/92535#获取应用在工作台展示的模版 + * + * @param int $agentId + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException|\GuzzleHttp\Exception\GuzzleException + */ + public function getWorkbenchTemplate(int $agentId) + { + $params = [ + 'agentid' => $agentId + ]; + + return $this->httpPostJson('cgi-bin/agent/get_workbench_template', $params); + } + + /** + * 设置应用在用户工作台展示的数据. + * + * @see https://open.work.weixin.qq.com/api/doc/90000/90135/92535#设置应用在用户工作台展示的数据 + * + * @param array $params + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException|\GuzzleHttp\Exception\GuzzleException + */ + public function setWorkbenchData(array $params) + { + return $this->httpPostJson('cgi-bin/agent/set_workbench_data', $params); + } +} diff --git a/vendor/overtrue/wechat/src/Work/Application.php b/vendor/overtrue/wechat/src/Work/Application.php new file mode 100644 index 0000000..6f0fa77 --- /dev/null +++ b/vendor/overtrue/wechat/src/Work/Application.php @@ -0,0 +1,124 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Work; + +use EasyWeChat\Kernel\ServiceContainer; +use EasyWeChat\Work\MiniProgram\Application as MiniProgram; + +/** + * Application. + * + * @author mingyoung + * + * @property \EasyWeChat\Work\OA\Client $oa + * @property \EasyWeChat\Work\Auth\AccessToken $access_token + * @property \EasyWeChat\Work\Agent\Client $agent + * @property \EasyWeChat\Work\Department\Client $department + * @property \EasyWeChat\Work\Media\Client $media + * @property \EasyWeChat\Work\Menu\Client $menu + * @property \EasyWeChat\Work\Message\Client $message + * @property \EasyWeChat\Work\Message\Messenger $messenger + * @property \EasyWeChat\Work\User\Client $user + * @property \EasyWeChat\Work\User\TagClient $tag + * @property \EasyWeChat\Work\Server\Guard $server + * @property \EasyWeChat\Work\Jssdk\Client $jssdk + * @property \Overtrue\Socialite\Providers\WeWork $oauth + * @property \EasyWeChat\Work\Invoice\Client $invoice + * @property \EasyWeChat\Work\Chat\Client $chat + * @property \EasyWeChat\Work\ExternalContact\Client $external_contact + * @property \EasyWeChat\Work\ExternalContact\ContactWayClient $contact_way + * @property \EasyWeChat\Work\ExternalContact\GroupChatWayClient $group_chat_way + * @property \EasyWeChat\Work\ExternalContact\StatisticsClient $external_contact_statistics + * @property \EasyWeChat\Work\ExternalContact\MessageClient $external_contact_message + * @property \EasyWeChat\Work\ExternalContact\InterceptClient $intercept + * @property \EasyWeChat\Work\ExternalContact\ProductClient $product + * @property \EasyWeChat\Work\GroupRobot\Client $group_robot + * @property \EasyWeChat\Work\GroupRobot\Messenger $group_robot_messenger + * @property \EasyWeChat\Work\Calendar\Client $calendar + * @property \EasyWeChat\Work\Schedule\Client $schedule + * @property \EasyWeChat\Work\MsgAudit\Client $msg_audit + * @property \EasyWeChat\Work\Live\Client $live + * @property \EasyWeChat\Work\CorpGroup\Client $corp_group + * @property \EasyWeChat\Work\ExternalContact\SchoolClient $school + * @property \EasyWeChat\Work\ExternalContact\MessageTemplateClient $external_contact_message_template + * @property \EasyWeChat\Work\Kf\AccountClient $kf_account + * @property \EasyWeChat\Work\Kf\ServicerClient $kf_servicer + * @property \EasyWeChat\Work\Kf\MessageClient $kf_message + * @property \EasyWeChat\Work\GroupWelcomeTemplate\Client $group_welcome_templage + * @property \EasyWeChat\Work\Wedrive\Wedrive $wedrive + * + * @method mixed getCallbackIp() + */ +class Application extends ServiceContainer +{ + /** + * @var array + */ + protected $providers = [ + OA\ServiceProvider::class, + Auth\ServiceProvider::class, + Base\ServiceProvider::class, + Menu\ServiceProvider::class, + OAuth\ServiceProvider::class, + User\ServiceProvider::class, + Agent\ServiceProvider::class, + Media\ServiceProvider::class, + Message\ServiceProvider::class, + Department\ServiceProvider::class, + Server\ServiceProvider::class, + Jssdk\ServiceProvider::class, + Invoice\ServiceProvider::class, + Chat\ServiceProvider::class, + ExternalContact\ServiceProvider::class, + GroupRobot\ServiceProvider::class, + Calendar\ServiceProvider::class, + Schedule\ServiceProvider::class, + MsgAudit\ServiceProvider::class, + Live\ServiceProvider::class, + CorpGroup\ServiceProvider::class, + Mobile\ServiceProvider::class, + Kf\ServiceProvider::class, + GroupWelcomeTemplate\ServiceProvider::class, + Wedrive\ServiceProvider::class, + ]; + + /** + * @var array + */ + protected $defaultConfig = [ + // http://docs.guzzlephp.org/en/stable/request-options.html + 'http' => [ + 'base_uri' => 'https://qyapi.weixin.qq.com/', + ], + ]; + + /** + * Creates the miniProgram application. + * + * @return \EasyWeChat\Work\MiniProgram\Application + */ + public function miniProgram(): MiniProgram + { + return new MiniProgram($this->getConfig()); + } + + /** + * @param string $method + * @param array $arguments + * + * @return mixed + */ + public function __call($method, $arguments) + { + return $this['base']->$method(...$arguments); + } +} diff --git a/vendor/overtrue/wechat/src/Work/Auth/AccessToken.php b/vendor/overtrue/wechat/src/Work/Auth/AccessToken.php new file mode 100644 index 0000000..56d5218 --- /dev/null +++ b/vendor/overtrue/wechat/src/Work/Auth/AccessToken.php @@ -0,0 +1,45 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Work\Auth; + +use EasyWeChat\Kernel\AccessToken as BaseAccessToken; + +/** + * Class AccessToken. + * + * @author mingyoung + */ +class AccessToken extends BaseAccessToken +{ + /** + * @var string + */ + protected $endpointToGetToken = 'cgi-bin/gettoken'; + + /** + * @var int + */ + protected $safeSeconds = 0; + + /** + * Credential for get token. + * + * @return array + */ + protected function getCredentials(): array + { + return [ + 'corpid' => $this->app['config']['corp_id'], + 'corpsecret' => $this->app['config']['secret'], + ]; + } +} diff --git a/vendor/overtrue/wechat/src/Work/Auth/Client.php b/vendor/overtrue/wechat/src/Work/Auth/Client.php new file mode 100644 index 0000000..4584eb8 --- /dev/null +++ b/vendor/overtrue/wechat/src/Work/Auth/Client.php @@ -0,0 +1,94 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Work\Auth; + +use EasyWeChat\Kernel\BaseClient; + +/** + * Class Client. + * + * @author lujunyi + */ +class Client extends BaseClient +{ + /** + * 获取网页授权登录url,适用于自建应用与代开发应用。 + * + * @see https://developer.work.weixin.qq.com/document/path/91022 + * + * @param string $redirectUri + * @param string $scope + * @param string $agentId + * @param string|null $state + * + * @return string + * @throws \Exception + */ + public function getOAuthRedirectUrl(string $redirectUri = '', string $scope = 'snsapi_privateinfo', string $agentId = '', string $state = null) + { + $redirectUri || $redirectUri = $this->app->config['redirect_uri_oauth']; + $state || $state = random_bytes(64); + $params = [ + 'appid' => $this->app['config']['suite_id'], + 'redirect_uri' => $redirectUri, + 'response_type' => 'code', + 'scope' => $scope, + 'state' => $state, + 'agentid' => $agentId, + ]; + + return 'https://open.weixin.qq.com/connect/oauth2/authorize?' . http_build_query($params) . '#wechat_redirect'; + } + + + /** + * 获取访问用户身份。根据code获取成员信息,适用于自建应用与代开发应用。 + * + * @see https://developer.work.weixin.qq.com/document/path/91023 + * + * @param string $code + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function getUserByCode(string $code) + { + $params = [ + 'code' => $code, + ]; + + return $this->httpGet('cgi-bin/auth/getuserinfo', $params); + } + + /** + * 获取访问用户敏感信息。自建应用与代开发应用可通过该接口获取成员授权的敏感字段。 + * + * @see https://developer.work.weixin.qq.com/document/path/95833 + * + * @param string $userTicket + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function getUserByTicket(string $userTicket) + { + $params = [ + 'user_ticket' => $userTicket, + ]; + + return $this->httpPostJson('cgi-bin/auth/getuserdetail', $params); + } +} diff --git a/vendor/overtrue/wechat/src/Work/Auth/ServiceProvider.php b/vendor/overtrue/wechat/src/Work/Auth/ServiceProvider.php new file mode 100644 index 0000000..7e0ee95 --- /dev/null +++ b/vendor/overtrue/wechat/src/Work/Auth/ServiceProvider.php @@ -0,0 +1,36 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Work\Auth; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +/** + * Class ServiceProvider. + * + * @author overtrue + */ +class ServiceProvider implements ServiceProviderInterface +{ + /** + * {@inheritdoc}. + */ + public function register(Container $app) + { + isset($app['access_token']) || $app['access_token'] = function ($app) { + return new AccessToken($app); + }; + !isset($app['auth']) && $app['auth'] = function ($app) { + return new Client($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/Work/Base/Client.php b/vendor/overtrue/wechat/src/Work/Base/Client.php new file mode 100644 index 0000000..97b5445 --- /dev/null +++ b/vendor/overtrue/wechat/src/Work/Base/Client.php @@ -0,0 +1,34 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Work\Base; + +use EasyWeChat\Kernel\BaseClient; + +/** + * Class Client. + * + * @author mingyoung + */ +class Client extends BaseClient +{ + /** + * Get callback ip. + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function getCallbackIp() + { + return $this->httpGet('cgi-bin/getcallbackip'); + } +} diff --git a/vendor/overtrue/wechat/src/Work/Base/ServiceProvider.php b/vendor/overtrue/wechat/src/Work/Base/ServiceProvider.php new file mode 100644 index 0000000..5e28fd1 --- /dev/null +++ b/vendor/overtrue/wechat/src/Work/Base/ServiceProvider.php @@ -0,0 +1,33 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Work\Base; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +/** + * Class ServiceProvider. + * + * @author mingyoung + */ +class ServiceProvider implements ServiceProviderInterface +{ + /** + * @param Container $app + */ + public function register(Container $app) + { + $app['base'] = function ($app) { + return new Client($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/Work/Calendar/Client.php b/vendor/overtrue/wechat/src/Work/Calendar/Client.php new file mode 100644 index 0000000..90a6849 --- /dev/null +++ b/vendor/overtrue/wechat/src/Work/Calendar/Client.php @@ -0,0 +1,85 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Work\Calendar; + +use EasyWeChat\Kernel\BaseClient; + +/** + * Class Client. + * + * @author her-cat + */ +class Client extends BaseClient +{ + /** + * Add a calendar. + * + * @param array $calendar + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function add(array $calendar) + { + return $this->httpPostJson('cgi-bin/oa/calendar/add', compact('calendar')); + } + + /** + * Update the calendar. + * + * @param string $id + * @param array $calendar + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function update(string $id, array $calendar) + { + $calendar += ['cal_id' => $id]; + + return $this->httpPostJson('cgi-bin/oa/calendar/update', compact('calendar')); + } + + /** + * Get one or more calendars. + * + * @param string|array $ids + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function get($ids) + { + return $this->httpPostJson('cgi-bin/oa/calendar/get', ['cal_id_list' => (array) $ids]); + } + + /** + * Delete a calendar. + * + * @param string $id + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function delete(string $id) + { + return $this->httpPostJson('cgi-bin/oa/calendar/del', ['cal_id' => $id]); + } +} diff --git a/vendor/overtrue/wechat/src/Work/Calendar/ServiceProvider.php b/vendor/overtrue/wechat/src/Work/Calendar/ServiceProvider.php new file mode 100644 index 0000000..1819e4f --- /dev/null +++ b/vendor/overtrue/wechat/src/Work/Calendar/ServiceProvider.php @@ -0,0 +1,33 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Work\Calendar; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +/** + * Class ServiceProvider. + * + * @author her-cat + */ +class ServiceProvider implements ServiceProviderInterface +{ + /** + * {@inheritdoc} + */ + public function register(Container $app) + { + $app['calendar'] = function ($app) { + return new Client($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/Work/Chat/Client.php b/vendor/overtrue/wechat/src/Work/Chat/Client.php new file mode 100644 index 0000000..0d4fdec --- /dev/null +++ b/vendor/overtrue/wechat/src/Work/Chat/Client.php @@ -0,0 +1,82 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Work\Chat; + +use EasyWeChat\Kernel\BaseClient; + +/** + * Class Client. + * + * @author XiaolonY + */ +class Client extends BaseClient +{ + /** + * Get chat. + * + * @param string $chatId + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function get(string $chatId) + { + return $this->httpGet('cgi-bin/appchat/get', ['chatid' => $chatId]); + } + + /** + * Create chat. + * + * @param array $data + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function create(array $data) + { + return $this->httpPostJson('cgi-bin/appchat/create', $data); + } + + /** + * Update chat. + * + * @param string $chatId + * @param array $data + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function update(string $chatId, array $data) + { + return $this->httpPostJson('cgi-bin/appchat/update', array_merge(['chatid' => $chatId], $data)); + } + + /** + * Send a message. + * + * @param array $message + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function send(array $message) + { + return $this->httpPostJson('cgi-bin/appchat/send', $message); + } +} diff --git a/vendor/overtrue/wechat/src/Work/Chat/ServiceProvider.php b/vendor/overtrue/wechat/src/Work/Chat/ServiceProvider.php new file mode 100644 index 0000000..5bf9b2c --- /dev/null +++ b/vendor/overtrue/wechat/src/Work/Chat/ServiceProvider.php @@ -0,0 +1,33 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Work\Chat; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +/** + * Class ServiceProvider. + * + * @author XiaolonY + */ +class ServiceProvider implements ServiceProviderInterface +{ + /** + * {@inheritdoc}. + */ + public function register(Container $app) + { + $app['chat'] = function ($app) { + return new Client($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/Work/CorpGroup/Client.php b/vendor/overtrue/wechat/src/Work/CorpGroup/Client.php new file mode 100644 index 0000000..e1ecd42 --- /dev/null +++ b/vendor/overtrue/wechat/src/Work/CorpGroup/Client.php @@ -0,0 +1,121 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Work\CorpGroup; + +use EasyWeChat\Kernel\BaseClient; + +/** + * Class Client. + * + * @author 读心印 + */ +class Client extends BaseClient +{ + /** + * 获取应用共享信息. + * + * @see https://open.work.weixin.qq.com/api/doc/90000/90135/93403 + * + * @param int $agentId + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function getAppShareInfo(int $agentId) + { + $params = [ + 'agentid' => $agentId + ]; + + return $this->httpPostJson('cgi-bin/corpgroup/corp/list_app_share_info', $params); + } + + /** + * 获取下级企业的access_token. + * + * @see https://open.work.weixin.qq.com/api/doc/90000/90135/93359 + * + * @param string $corpId + * @param int $agentId + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function getToken(string $corpId, int $agentId) + { + $params = [ + 'corpid' => $corpId, + 'agentid' => $agentId + ]; + + return $this->httpPostJson('cgi-bin/corpgroup/corp/gettoken', $params); + } + + /** + * 获取下级企业的小程序session. + * + * @see https://open.work.weixin.qq.com/api/doc/90000/90135/93355 + * + * @param string $userId + * @param string $sessionKey + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function getMiniProgramTransferSession(string $userId, string $sessionKey) + { + $params = [ + 'userid' => $userId, + 'session_key' => $sessionKey + ]; + + return $this->httpPostJson('cgi-bin/miniprogram/transfer_session', $params); + } + + /** + * 将明文corpid转换为第三方应用获取的corpid(仅限第三方服务商,转换已获授权企业的corpid) + * + * @see https://open.work.weixin.qq.com/api/doc/90001/90143/95327#1.4%20corpid%E8%BD%AC%E6%8D%A2 + * + * @param string $corpId 获取到的企业ID + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function getOpenCorpid(string $corpId) + { + return $this->httpPostJson('cgi-bin/corp/to_open_corpid', ['corpid' => $corpId]); + } + + /** + * 将自建应用获取的userid转换为第三方应用获取的userid(仅代开发自建应用或第三方应用可调用) + * + * @see https://open.work.weixin.qq.com/api/doc/90001/90143/95327#2.4%20userid%E7%9A%84%E8%BD%AC%E6%8D%A2 + * + * @param array $useridList 获取到的成员ID + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function batchUseridToOpenUserid(array $useridList) + { + return $this->httpPostJson('cgi-bin/batch/userid_to_openuserid', ['userid_list' => $useridList]); + } +} diff --git a/vendor/overtrue/wechat/src/Work/CorpGroup/ServiceProvider.php b/vendor/overtrue/wechat/src/Work/CorpGroup/ServiceProvider.php new file mode 100644 index 0000000..0e558c3 --- /dev/null +++ b/vendor/overtrue/wechat/src/Work/CorpGroup/ServiceProvider.php @@ -0,0 +1,35 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Work\CorpGroup; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +/** + * ServiceProvider. + * + * @author 读心印 + */ +class ServiceProvider implements ServiceProviderInterface +{ + protected $app; + + /** + * @param Container $app + */ + public function register(Container $app) + { + $app['corp_group'] = function ($app) { + return new Client($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/Work/Department/Client.php b/vendor/overtrue/wechat/src/Work/Department/Client.php new file mode 100644 index 0000000..db80389 --- /dev/null +++ b/vendor/overtrue/wechat/src/Work/Department/Client.php @@ -0,0 +1,109 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Work\Department; + +use EasyWeChat\Kernel\BaseClient; + +/** + * This is WeWork Department Client. + * + * @author mingyoung + */ +class Client extends BaseClient +{ + /** + * Create a department. + * + * @param array $data + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function create(array $data) + { + return $this->httpPostJson('cgi-bin/department/create', $data); + } + + /** + * Update a department. + * + * @param int $id + * @param array $data + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function update(int $id, array $data) + { + return $this->httpPostJson('cgi-bin/department/update', array_merge(compact('id'), $data)); + } + + /** + * Delete a department. + * + * @param int $id + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function delete(int $id) + { + return $this->httpGet('cgi-bin/department/delete', compact('id')); + } + + /** + * Get department lists. + * + * @param int|null $id + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function list(?int $id = null) + { + return $this->httpGet('cgi-bin/department/list', compact('id')); + } + + /** + * Get sub department lists. + * + * @param null|int $id + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function simpleList(?int $id = null) + { + return $this->httpGet('cgi-bin/department/simplelist', compact('id')); + } + + /** + * Get department details. + * + * @param int $id + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function get(int $id) + { + return $this->httpGet('cgi-bin/department/get', compact('id')); + } +} diff --git a/vendor/overtrue/wechat/src/Work/Department/ServiceProvider.php b/vendor/overtrue/wechat/src/Work/Department/ServiceProvider.php new file mode 100644 index 0000000..2fe5bc6 --- /dev/null +++ b/vendor/overtrue/wechat/src/Work/Department/ServiceProvider.php @@ -0,0 +1,33 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Work\Department; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +/** + * Class ServiceProvider. + * + * @author mingyoung + */ +class ServiceProvider implements ServiceProviderInterface +{ + /** + * {@inheritdoc}. + */ + public function register(Container $app) + { + $app['department'] = function ($app) { + return new Client($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/Work/ExternalContact/Client.php b/vendor/overtrue/wechat/src/Work/ExternalContact/Client.php new file mode 100644 index 0000000..4ccd589 --- /dev/null +++ b/vendor/overtrue/wechat/src/Work/ExternalContact/Client.php @@ -0,0 +1,629 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Work\ExternalContact; + +use EasyWeChat\Kernel\BaseClient; + +/** + * Class Client. + * + * @author mingyoung + */ +class Client extends BaseClient +{ + /** + * 获取配置了客户联系功能的成员列表. + * + * @see https://work.weixin.qq.com/api/doc#90000/90135/91554 + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException|\GuzzleHttp\Exception\GuzzleException + */ + public function getFollowUsers() + { + return $this->httpGet('cgi-bin/externalcontact/get_follow_user_list'); + } + + /** + * 获取外部联系人列表. + * + * @see https://work.weixin.qq.com/api/doc#90000/90135/91555 + * + * @param string $userId + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException|\GuzzleHttp\Exception\GuzzleException + */ + public function list(string $userId) + { + return $this->httpGet('cgi-bin/externalcontact/list', [ + 'userid' => $userId, + ]); + } + + /** + * 批量获取客户详情. + * + * @see https://work.weixin.qq.com/api/doc/90000/90135/92994 + * + * @param array $userIdList + * @param string $cursor + * @param integer $limit + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException|\GuzzleHttp\Exception\GuzzleException + */ + public function batchGet(array $userIdList, string $cursor = '', int $limit = 100) + { + return $this->httpPostJson('cgi-bin/externalcontact/batch/get_by_user', [ + 'userid_list' => $userIdList, + 'cursor' => $cursor, + 'limit' => $limit, + ]); + } + + /** + * 获取外部联系人详情. + * + * @see https://work.weixin.qq.com/api/doc#90000/90135/91556 + * + * @param string $externalUserId + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException|\GuzzleHttp\Exception\GuzzleException + */ + public function get(string $externalUserId) + { + return $this->httpGet('cgi-bin/externalcontact/get', [ + 'external_userid' => $externalUserId, + ]); + } + + /** + * 批量获取外部联系人详情. + * + * @see https://work.weixin.qq.com/api/doc/90001/90143/93010 + * + * @param array $userIdList + * @param string $cursor + * @param int $limit + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function batchGetByUser(array $userIdList, string $cursor, int $limit) + { + return $this->httpPostJson('cgi-bin/externalcontact/batch/get_by_user', [ + 'userid_list' => $userIdList, + 'cursor' => $cursor, + 'limit' => $limit + ]); + } + + + /** + * 修改客户备注信息. + * + * @see https://work.weixin.qq.com/api/doc/90000/90135/92115 + * + * @param array $data + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException|\GuzzleHttp\Exception\GuzzleException + */ + public function remark(array $data) + { + return $this->httpPostJson( + 'cgi-bin/externalcontact/remark', + $data + ); + } + + + /** + * 获取离职成员的客户列表. + * + * @see https://work.weixin.qq.com/api/doc/90000/90135/92124 + * + * @param null|int $pageId + * @param null|int $pageSize + * @param string $cursor + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function getUnassigned(?int $pageId = null, ?int $pageSize = 1000, ?string $cursor = null) + { + $params = [ + 'page_id' => $pageId, + 'page_size' => $pageSize, + 'cursor' => $cursor, + ]; + $writableParams = array_filter($params, function (string $key) use ($params) { + return !is_null($params[$key]); + }, ARRAY_FILTER_USE_KEY); + return $this->httpPostJson('cgi-bin/externalcontact/get_unassigned_list', $writableParams); + } + + /** + * 离职成员的外部联系人再分配. + * + * @see https://work.weixin.qq.com/api/doc#90000/90135/91564 + * + * @param string $externalUserId + * @param string $handoverUserId + * @param string $takeoverUserId + * @param string $transferSuccessMessage + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function transfer(string $externalUserId, string $handoverUserId, string $takeoverUserId, string $transferSuccessMessage) + { + $params = [ + 'external_userid' => $externalUserId, + 'handover_userid' => $handoverUserId, + 'takeover_userid' => $takeoverUserId, + 'transfer_success_msg' => $transferSuccessMessage + ]; + + return $this->httpPostJson('cgi-bin/externalcontact/transfer', $params); + } + + /** + * 分配在职成员的客户. + * + * @see https://work.weixin.qq.com/api/doc/90000/90135/92125 + * + * @param array $externalUserId + * @param string $handoverUserId + * @param string $takeoverUserId + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function transferCustomer(array $externalUserId, string $handoverUserId, string $takeoverUserId, string $transferSuccessMessage) + { + $params = [ + 'external_userid' => $externalUserId, + 'handover_userid' => $handoverUserId, + 'takeover_userid' => $takeoverUserId, + 'transfer_success_msg' => $transferSuccessMessage + ]; + + return $this->httpPostJson('cgi-bin/externalcontact/transfer_customer', $params); + } + + /** + * 分配离职成员的客户. + * + * @see https://work.weixin.qq.com/api/doc/90000/90135/94081 + * + * @param array $externalUserId + * @param string $handoverUserId + * @param string $takeoverUserId + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function resignedTransferCustomer(array $externalUserId, string $handoverUserId, string $takeoverUserId) + { + $params = [ + 'external_userid' => $externalUserId, + 'handover_userid' => $handoverUserId, + 'takeover_userid' => $takeoverUserId, + ]; + + return $this->httpPostJson('cgi-bin/externalcontact/resigned/transfer_customer', $params); + } + + /** + * 离职成员的群再分配. + * + * @see https://work.weixin.qq.com/api/doc/90000/90135/92127 + * + * @param array $chatIds + * @param string $newOwner + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function transferGroupChat(array $chatIds, string $newOwner) + { + $params = [ + 'chat_id_list' => $chatIds, + 'new_owner' => $newOwner + ]; + + return $this->httpPostJson('cgi-bin/externalcontact/groupchat/transfer', $params); + } + + /** + * 查询客户接替状态. + * + * @see https://work.weixin.qq.com/api/doc/90000/90135/94082 + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @param string $handoverUserId + * @param string $takeoverUserId + * @param null|string $cursor + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function transferResult(string $handoverUserId, string $takeoverUserId, ?string $cursor = null) + { + $params = [ + 'handover_userid' => $handoverUserId, + 'takeover_userid' => $takeoverUserId, + 'cursor' => $cursor, + ]; + + return $this->httpPostJson('cgi-bin/externalcontact/resigned/transfer_result', $params); + } + + /** + * 查询客户接替结果. + * + * @see https://work.weixin.qq.com/api/doc/90001/90143/93009 + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @param string $externalUserId + * @param string $handoverUserId + * @param string $takeoverUserId + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function getTransferResult(string $externalUserId, string $handoverUserId, string $takeoverUserId) + { + $params = [ + 'external_userid' => $externalUserId, + 'handover_userid' => $handoverUserId, + 'takeover_userid' => $takeoverUserId, + ]; + + return $this->httpPostJson('cgi-bin/externalcontact/get_transfer_result', $params); + } + + /** + * 获取客户群列表. + * + * @see https://work.weixin.qq.com/api/doc/90000/90135/92120 + * + * @param array $params + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + + public function getGroupChats(array $params) + { + return $this->httpPostJson('cgi-bin/externalcontact/groupchat/list', $params); + } + + /** + * 获取客户群详情. + * + * @see https://work.weixin.qq.com/api/doc/90000/90135/92122 + * + * @param string $chatId + * @param int $needName + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + + public function getGroupChat(string $chatId, int $needName = 0) + { + $params = [ + 'chat_id' => $chatId, + 'need_name' => $needName, + ]; + + return $this->httpPostJson('cgi-bin/externalcontact/groupchat/get', $params); + } + + /** + * 获取企业标签库. + * + * @see https://work.weixin.qq.com/api/doc/90000/90135/92117#获取企业标签库 + * + * @param array $tagIds + * @param array $groupIds + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + + public function getCorpTags(array $tagIds = [], array $groupIds = []) + { + $params = [ + 'tag_id' => $tagIds, + 'group_id' => $groupIds + ]; + + return $this->httpPostJson('cgi-bin/externalcontact/get_corp_tag_list', $params); + } + + + /** + * 添加企业客户标签. + * + * @see https://work.weixin.qq.com/api/doc/90000/90135/92117#添加企业客户标签 + * + * @param array $params + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + + public function addCorpTag(array $params) + { + return $this->httpPostJson('cgi-bin/externalcontact/add_corp_tag', $params); + } + + + /** + * 编辑企业客户标签. + * + * @see https://work.weixin.qq.com/api/doc/90000/90135/92117#编辑企业客户标签 + * + * @param string $id + * @param string|null $name + * @param int|null $order + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + + public function updateCorpTag(string $id, ?string $name = null, ?int $order = null) + { + $params = [ + "id" => $id + ]; + + if (!\is_null($name)) { + $params['name'] = $name; + } + + if (!\is_null($order)) { + $params['order'] = $order; + } + + return $this->httpPostJson('cgi-bin/externalcontact/edit_corp_tag', $params); + } + + + /** + * 删除企业客户标签. + * + * @see https://work.weixin.qq.com/api/doc/90000/90135/92117#删除企业客户标签 + * + * @param array $tagId + * @param array $groupId + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + + public function deleteCorpTag(array $tagId, array $groupId) + { + $params = [ + "tag_id" => $tagId, + "group_id" => $groupId, + ]; + + return $this->httpPostJson('cgi-bin/externalcontact/del_corp_tag', $params); + } + + + /** + * 编辑客户企业标签. + * + * @see https://work.weixin.qq.com/api/doc/90000/90135/92118 + * + * @param array $params + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + + public function markTags(array $params) + { + return $this->httpPostJson('cgi-bin/externalcontact/mark_tag', $params); + } + + /** + * 外部联系人unionid转换. + * + * @see https://work.weixin.qq.com/api/doc/90001/90143/93274 + * + * @param string|null $unionid 微信客户的unionid + * @param string|null $openid 微信客户的openid + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function unionidToExternalUserid(?string $unionid = null, ?string $openid = null) + { + return $this->httpPostJson( + 'cgi-bin/externalcontact/unionid_to_external_userid', + [ + 'unionid' => $unionid, + 'openid' => $openid, + ] + ); + } + + /** + * 代开发应用external_userid转换. + * + * @see https://work.weixin.qq.com/api/doc/90001/90143/95195 + * + * @param string $externalUserid 代开发自建应用获取到的外部联系人ID + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function toServiceExternalUserid(string $externalUserid) + { + return $this->httpPostJson( + 'cgi-bin/externalcontact/to_service_external_userid', + [ + 'external_userid' => $externalUserid, + ] + ); + } + + + /** + * 转换external_userid + * + * @see https://open.work.weixin.qq.com/api/doc/90001/90143/95327 + * + * @param array $externalUserIds + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + * + * @author 读心印 + */ + + public function getNewExternalUserid(array $externalUserIds) + { + return $this->httpPostJson('cgi-bin/externalcontact/get_new_external_userid', ['external_userid_list' => $externalUserIds]); + } + + /** + * 设置迁移完成 + * + * @see https://open.work.weixin.qq.com/api/doc/90001/90143/95327 + * + * @param string $corpid + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + * + * @author 读心印 + */ + + public function finishExternalUseridMigration(string $corpid) + { + return $this->httpPostJson('cgi-bin/externalcontact/finish_external_userid_migration', ['corpid' => $corpid]); + } + + /** + * unionid查询external_userid + * + * @param string $unionid + * @param string $openid + * @param string $corpid + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + * + * @deprecated 使用新方法`\EasyWeChat\OpenWork\Corp\unionidToExternalUserid` + * + * @see https://open.work.weixin.qq.com/api/doc/90001/90143/95327 + * + * @author 读心印 + */ + + public function unionidToexternalUserid3rd(string $unionid, string $openid, string $corpid = '') + { + $params = [ + 'unionid' => $unionid, + 'openid' => $openid, + 'corpid' => $corpid + ]; + + return $this->httpPostJson('cgi-bin/externalcontact/unionid_to_external_userid_3rd', $params); + } + + + /** + * 客户群opengid转换 + * + * @see https://work.weixin.qq.com/api/doc/90000/90135/94822 + * @param string $opengid 小程序在微信获取到的群ID + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function opengidToChatid(string $opengid) + { + return $this->httpPostJson('cgi-bin/externalcontact/opengid_to_chatid', compact('opengid')); + } + + + /** + * 上传附件资源 + * + * @see https://work.weixin.qq.com/api/doc/90000/90135/95098 + * @param string $path 附件资源路径 + * @param string $mediaType 媒体文件类型 + * @param string $attachmentType 附件类型 + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function uploadAttachment(string $path, string $mediaType, string $attachmentType) + { + $query = [ + 'media_type' => $mediaType, + 'attachment_type' => $attachmentType, + ]; + + return $this->httpUpload('cgi-bin/media/upload_attachment', ['media' => $path], [], $query); + } +} diff --git a/vendor/overtrue/wechat/src/Work/ExternalContact/ContactWayClient.php b/vendor/overtrue/wechat/src/Work/ExternalContact/ContactWayClient.php new file mode 100644 index 0000000..21ed94f --- /dev/null +++ b/vendor/overtrue/wechat/src/Work/ExternalContact/ContactWayClient.php @@ -0,0 +1,149 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Work\ExternalContact; + +use EasyWeChat\Kernel\BaseClient; + +/** + * Class ContactWayClient. + * + * @author milkmeowo + */ +class ContactWayClient extends BaseClient +{ + /** + * 配置客户联系「联系我」方式. + * + * @param int $type + * @param int $scene + * @param array $config + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function create(int $type, int $scene, array $config = []) + { + $params = array_merge([ + 'type' => $type, + 'scene' => $scene, + ], $config); + + return $this->httpPostJson('cgi-bin/externalcontact/add_contact_way', $params); + } + + /** + * 获取企业已配置的「联系我」方式. + * + * @param string $configId + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function get(string $configId) + { + return $this->httpPostJson('cgi-bin/externalcontact/get_contact_way', [ + 'config_id' => $configId, + ]); + } + + /** + * 更新企业已配置的「联系我」方式. + * + * @param string $configId + * @param array $config + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function update(string $configId, array $config = []) + { + $params = array_merge([ + 'config_id' => $configId, + ], $config); + + return $this->httpPostJson('cgi-bin/externalcontact/update_contact_way', $params); + } + + /** + * 删除企业已配置的「联系我」方式. + * + * @param string $configId + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function delete(string $configId) + { + return $this->httpPostJson('cgi-bin/externalcontact/del_contact_way', [ + 'config_id' => $configId, + ]); + } + + /** + * 获取企业已配置的「联系我」列表,注意,该接口仅可获取2021年7月10日以后创建的「联系我」 + * + * @param string $cursor 分页查询使用的游标,为上次请求返回的 next_cursor + * @param int $limit 每次查询的分页大小,默认为100条,最多支持1000条 + * @param int|null $startTime 「联系我」创建起始时间戳, 不传默认为90天前 + * @param int|null $endTime 「联系我」创建结束时间戳, 不传默认为当前时间 + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function list(string $cursor = '', int $limit = 100, int $startTime = null, int $endTime = null) + { + $data = [ + 'cursor' => $cursor, + 'limit' => $limit, + ]; + if ($startTime) { + $data['start_time'] = $startTime; + } + if ($endTime) { + $data['end_time'] = $endTime; + } + return $this->httpPostJson('cgi-bin/externalcontact/list_contact_way', $data); + } + + /** + * 结束临时会话 + * + * 将指定的企业成员和客户之前的临时会话断开,断开前会自动下发已配置的结束语。 + * + * 注意:请保证传入的企业成员和客户之间有仍然有效的临时会话, 通过其他方式的添加外部联系人无法通过此接口关闭会话。 + * @param string $userId 企业成员的user_id + * @param string $externalUserId 客户的外部联系人user_id + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + * @noinspection PhpFullyQualifiedNameUsageInspection + */ + public function closeTempChat(string $userId, string $externalUserId) + { + return $this->httpPostJson('cgi-bin/externalcontact/close_temp_chat', [ + 'userid' => $userId, + 'external_userid' => $externalUserId + ]); + } +} diff --git a/vendor/overtrue/wechat/src/Work/ExternalContact/GroupChatWayClient.php b/vendor/overtrue/wechat/src/Work/ExternalContact/GroupChatWayClient.php new file mode 100644 index 0000000..e77bbf6 --- /dev/null +++ b/vendor/overtrue/wechat/src/Work/ExternalContact/GroupChatWayClient.php @@ -0,0 +1,94 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Work\ExternalContact; + +use EasyWeChat\Kernel\BaseClient; + +/** + * Class GroupChatWayClient. + * + * @see https://developer.work.weixin.qq.com/document/path/92229 + * + * @author SinyLi + */ +class GroupChatWayClient extends BaseClient +{ + /** + * 配置客户群进群方式 + * + * @param array $params 创建参数 + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function create(array $params) + { + return $this->httpPostJson('cgi-bin/externalcontact/groupchat/add_join_way', $params); + } + + /** + * 获取客户群进群方式配置 + * + * @param string $configId 联系方式的配置id + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function get(string $configId) + { + $params = [ + 'config_id' => $configId + ]; + return $this->httpPostJson('cgi-bin/externalcontact/groupchat/get_join_way', $params); + } + + /** + * 更新客户群进群方式配置,注意:使用覆盖的方式更新 + * + * @param string $configId 企业联系方式的配置id + * @param array $config 更新参数 + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function update(string $configId, array $config = []) + { + $params = array_merge([ + 'config_id' => $configId, + ], $config); + return $this->httpPostJson('cgi-bin/externalcontact/groupchat/update_join_way', $params); + } + + /** + * 删除客户群进群方式配置 + * + * @param string $configId + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function delete(string $configId) + { + $params = [ + 'config_id' => $configId + ]; + return $this->httpPostJson('cgi-bin/externalcontact/groupchat/del_join_way', $params); + } +} diff --git a/vendor/overtrue/wechat/src/Work/ExternalContact/InterceptClient.php b/vendor/overtrue/wechat/src/Work/ExternalContact/InterceptClient.php new file mode 100644 index 0000000..81dfdfe --- /dev/null +++ b/vendor/overtrue/wechat/src/Work/ExternalContact/InterceptClient.php @@ -0,0 +1,106 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Work\ExternalContact; + +use EasyWeChat\Kernel\BaseClient; + +/** + * Class InterceptClient. + * + * @package EasyWeChat\Work\ExternalContact + * + * @author 读心印 + */ +class InterceptClient extends BaseClient +{ + /** + * 新建敏感词规则. + * + * @see https://developer.work.weixin.qq.com/document/path/95097#新建敏感词规则 + * + * @param array $params + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @author 读心印 + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function createInterceptRule(array $params) + { + return $this->httpPostJson('cgi-bin/externalcontact/add_intercept_rule', $params); + } + + /** + * 获取敏感词规则列表. + * + * @see https://developer.work.weixin.qq.com/document/path/95097#获取敏感词规则列表 + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @author 读心印 + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function getInterceptRules() + { + return $this->httpGet('cgi-bin/externalcontact/get_intercept_rule_list'); + } + + /** + * 获取敏感词规则详情. + * + * @see https://developer.work.weixin.qq.com/document/path/95097#获取敏感词规则详情 + * + * @param string $ruleId + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @author 读心印 + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function getInterceptRuleDetails(string $ruleId) + { + $params = [ + 'rule_id' => $ruleId + ]; + + return $this->httpPostJson('cgi-bin/externalcontact/get_intercept_rule', $params); + } + + /** + * 删除敏感词规则. + * + * @see https://developer.work.weixin.qq.com/document/path/95097#删除敏感词规则 + * + * @param string $ruleId + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @author 读心印 + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function deleteInterceptRule(string $ruleId) + { + $params = [ + 'rule_id' => $ruleId + ]; + + return $this->httpPostJson('cgi-bin/externalcontact/del_intercept_rule', $params); + } +} diff --git a/vendor/overtrue/wechat/src/Work/ExternalContact/MessageClient.php b/vendor/overtrue/wechat/src/Work/ExternalContact/MessageClient.php new file mode 100644 index 0000000..67fbe2c --- /dev/null +++ b/vendor/overtrue/wechat/src/Work/ExternalContact/MessageClient.php @@ -0,0 +1,268 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Work\ExternalContact; + +use EasyWeChat\Kernel\BaseClient; +use EasyWeChat\Kernel\Exceptions\InvalidArgumentException; + +/** + * Class MessageClient. + * + * @author milkmeowo + */ +class MessageClient extends BaseClient +{ + /** + * Required attributes. + * + * @var array + */ + protected $required = ['content', 'title', 'url', 'pic_media_id', 'appid', 'page']; + + protected $textMessage = [ + 'content' => '', + ]; + + protected $imageMessage = [ + + ]; + + protected $linkMessage = [ + 'title' => '', + 'picurl' => '', + 'desc' => '', + 'url' => '', + ]; + + protected $miniprogramMessage = [ + 'title' => '', + 'pic_media_id' => '', + 'appid' => '', + 'page' => '', + ]; + + /** + * 添加企业群发消息模板 + * + * @see https://work.weixin.qq.com/api/doc#90000/90135/91560 + * + * @param array $msg + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function submit(array $msg) + { + $params = $this->formatMessage($msg); + + return $this->httpPostJson('cgi-bin/externalcontact/add_msg_template', $params); + } + + /** + * 获取企业群发消息发送结果. + * + * @see https://developer.work.weixin.qq.com/document/16251 + * + * @param string $msgId 群发消息的id,通过{@see MessageClient::submit() 添加企业群发消息模板}接口返回 + * @param int $limit 返回的最大记录数,整型,最大值10000,默认值10000 + * @param string|null $cursor 用于分页查询的游标,字符串类型,由上一次调用返回,首次调用可不填 + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + * @noinspection PhpFullyQualifiedNameUsageInspection + * @noinspection SpellCheckingInspection + */ + public function get(string $msgId, int $limit = 10000, ?string $cursor = null) + { + return $this->httpPostJson('cgi-bin/externalcontact/get_group_msg_result', [ + 'msgid' => $msgId, + 'limit' => $limit, + 'cursor' => $cursor + ]); + } + + /** + * 获取群发记录列表. + * + * @see https://open.work.weixin.qq.com/api/doc/90000/90135/93338#%E8%8E%B7%E5%8F%96%E7%BE%A4%E5%8F%91%E8%AE%B0%E5%BD%95%E5%88%97%E8%A1%A8 + * + * @param string $chatType 群发任务的类型,默认为single,表示发送给客户,group表示发送给客户群 + * @param int $startTime 群发任务记录开始时间 + * @param int $endTime 群发任务记录结束时间 + * @param string|null $creator 群发任务创建人企业账号id + * @param int|null $filterType 创建人类型。0:企业发表 1:个人发表 2:所有,包括个人创建以及企业创建,默认情况下为所有类型 + * @param int|null $limit 返回的最大记录数,整型,最大值100,默认值50,超过最大值时取默认值 + * @param string|null $cursor 用于分页查询的游标,字符串类型,由上一次调用返回,首次调用可不填 + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function getGroupmsgListV2(string $chatType, int $startTime, int $endTime, ?string $creator = null, ?int $filterType = null, ?int $limit = null, ?string $cursor = null) + { + $data = [ + 'chat_type' => $chatType, + 'start_time' => $startTime, + 'end_time' => $endTime, + 'creator' => $creator, + 'filter_type' => $filterType, + 'limit' => $limit, + 'cursor' => $cursor, + ]; + $writableData = array_filter($data, function (string $key) use ($data) { + return !is_null($data[$key]); + }, ARRAY_FILTER_USE_KEY); + return $this->httpPostJson('cgi-bin/externalcontact/get_groupmsg_list_v2', $writableData); + } + + /** + * 获取群发成员发送任务列表. + * + * @see https://open.work.weixin.qq.com/api/doc/90000/90135/93338#%E8%8E%B7%E5%8F%96%E7%BE%A4%E5%8F%91%E6%88%90%E5%91%98%E5%8F%91%E9%80%81%E4%BB%BB%E5%8A%A1%E5%88%97%E8%A1%A8 + * + * @param string $msgId 群发消息的id,通过获取群发记录列表接口返回 + * @param int|null $limit 返回的最大记录数,整型,最大值1000,默认值500,超过最大值时取默认值 + * @param string|null $cursor 用于分页查询的游标,字符串类型,由上一次调用返回,首次调用可不填 + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function getGroupmsgTask(string $msgId, ?int $limit = null, ?string $cursor = null) + { + $data = [ + 'msgid' => $msgId, + 'limit' => $limit, + 'cursor' => $cursor, + ]; + $writableData = array_filter($data, function (string $key) use ($data) { + return !is_null($data[$key]); + }, ARRAY_FILTER_USE_KEY); + return $this->httpPostJson('cgi-bin/externalcontact/get_groupmsg_task', $writableData); + } + + /** + * 获取企业群发成员执行结果. + * + * @see https://open.work.weixin.qq.com/api/doc/90000/90135/93338#%E8%8E%B7%E5%8F%96%E4%BC%81%E4%B8%9A%E7%BE%A4%E5%8F%91%E6%88%90%E5%91%98%E6%89%A7%E8%A1%8C%E7%BB%93%E6%9E%9C + * + * @param string $msgId 群发消息的id,通过获取群发记录列表接口返回 + * @param string $userid 发送成员userid,通过获取群发成员发送任务列表接口返回 + * @param int|null $limit 返回的最大记录数,整型,最大值1000,默认值500,超过最大值时取默认值 + * @param string|null $cursor 用于分页查询的游标,字符串类型,由上一次调用返回,首次调用可不填 + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function getGroupmsgSendResult(string $msgId, string $userid, ?int $limit = null, ?string $cursor = null) + { + $data = [ + 'msgid' => $msgId, + 'userid' => $userid, + 'limit' => $limit, + 'cursor' => $cursor, + ]; + $writableData = array_filter($data, function (string $key) use ($data) { + return !is_null($data[$key]); + }, ARRAY_FILTER_USE_KEY); + return $this->httpPostJson('cgi-bin/externalcontact/get_groupmsg_send_result', $writableData); + } + + /** + * 发送新客户欢迎语. + * + * @see https://work.weixin.qq.com/api/doc#90000/90135/91688 + * + * @param string $welcomeCode + * @param array $msg + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function sendWelcome(string $welcomeCode, array $msg) + { + $formattedMsg = $this->formatMessage($msg); + + $params = array_merge($formattedMsg, [ + 'welcome_code' => $welcomeCode, + ]); + + return $this->httpPostJson('cgi-bin/externalcontact/send_welcome_msg', $params); + } + + /** + * @param array $data + * + * @return array + * + * @throws InvalidArgumentException + */ + protected function formatMessage(array $data = []) + { + $params = $data; + + if (!empty($params['text'])) { + $params['text'] = $this->formatFields($params['text'], $this->textMessage); + } + + if (!empty($params['image'])) { + $params['image'] = $this->formatFields($params['image'], $this->imageMessage); + } + + if (!empty($params['link'])) { + $params['link'] = $this->formatFields($params['link'], $this->linkMessage); + } + + if (!empty($params['miniprogram'])) { + $params['miniprogram'] = $this->formatFields($params['miniprogram'], $this->miniprogramMessage); + } + + return $params; + } + + /** + * @param array $data + * @param array $default + * + * @return array + * + * @throws InvalidArgumentException + */ + protected function formatFields(array $data = [], array $default = []) + { + $params = array_merge($default, $data); + foreach ($params as $key => $value) { + if (in_array($key, $this->required, true) && empty($value) && empty($default[$key])) { + throw new InvalidArgumentException(sprintf('Attribute "%s" can not be empty!', $key)); + } + + $params[$key] = empty($value) ? $default[$key] : $value; + } + + return $params; + } +} diff --git a/vendor/overtrue/wechat/src/Work/ExternalContact/MessageTemplateClient.php b/vendor/overtrue/wechat/src/Work/ExternalContact/MessageTemplateClient.php new file mode 100644 index 0000000..92d34ca --- /dev/null +++ b/vendor/overtrue/wechat/src/Work/ExternalContact/MessageTemplateClient.php @@ -0,0 +1,166 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Work\ExternalContact; + +use EasyWeChat\Kernel\BaseClient; +use EasyWeChat\Kernel\Exceptions\InvalidArgumentException; + +/** + * Class MessageTemplateClient. + * + * @author ljyljy0211 + */ +class MessageTemplateClient extends BaseClient +{ + /** + * Required attributes. + * + * @var array + */ + protected $required = ['title', 'url', 'pic_media_id', 'appid', 'page']; + + protected $textMessage = [ + 'content' => '', + ]; + + protected $imageMessage = [ + 'media_id' => '', + 'pic_url' => '', + ]; + + protected $linkMessage = [ + 'title' => '', + 'picurl' => '', + 'desc' => '', + 'url' => '', + ]; + + protected $miniprogramMessage = [ + 'title' => '', + 'pic_media_id' => '', + 'appid' => '', + 'page' => '', + ]; + + /** + * 添加入群欢迎语素材. + * + * @see https://work.weixin.qq.com/api/doc/90000/90135/92366 + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + */ + public function create(array $msgTemplate) + { + $params = $this->formatMessage($msgTemplate); + + return $this->httpPostJson('cgi-bin/externalcontact/group_welcome_template/add', $params); + } + + /** + * 编辑入群欢迎语素材. + * + * @see https://work.weixin.qq.com/api/doc/90000/90135/92366 + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + */ + public function update(string $templateId, array $msgTemplate) + { + $params = $this->formatMessage($msgTemplate); + $params = array_merge([ + 'template_id' => $templateId, + ], $params); + return $this->httpPostJson('cgi-bin/externalcontact/group_welcome_template/edit', $params); + } + + /** + * 获取入群欢迎语素材. + * + * @see https://work.weixin.qq.com/api/doc/90000/90135/92366 + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + */ + public function get(string $templateId) + { + return $this->httpPostJson('cgi-bin/externalcontact/group_welcome_template/get', [ + 'template_id' => $templateId, + ]); + } + + /** + * 删除入群欢迎语素材. + * + * @see https://work.weixin.qq.com/api/doc/90000/90135/92366 + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + */ + public function delete(string $templateId) + { + return $this->httpPostJson('cgi-bin/externalcontact/group_welcome_template/del', [ + 'template_id' => $templateId, + ]); + } + + /** + * @throws InvalidArgumentException + * @return array + */ + protected function formatMessage(array $data = []) + { + $params = $data; + + if (!empty($params['text'])) { + $params['text'] = $this->formatFields($params['text'], $this->textMessage); + } + + if (!empty($params['image'])) { + $params['image'] = $this->formatFields($params['image'], $this->imageMessage); + } + + if (!empty($params['link'])) { + $params['link'] = $this->formatFields($params['link'], $this->linkMessage); + } + + if (!empty($params['miniprogram'])) { + $params['miniprogram'] = $this->formatFields($params['miniprogram'], $this->miniprogramMessage); + } + + return $params; + } + + /** + * @throws InvalidArgumentException + * @return array + */ + protected function formatFields(array $data = [], array $default = []) + { + $params = array_merge($default, $data); + foreach ($params as $key => $value) { + if (in_array($key, $this->required, true) && empty($value) && empty($default[$key])) { + throw new InvalidArgumentException(sprintf('Attribute "%s" can not be empty!', $key)); + } + + $params[$key] = empty($value) ? $default[$key] : $value; + } + + return $params; + } +} diff --git a/vendor/overtrue/wechat/src/Work/ExternalContact/MomentClient.php b/vendor/overtrue/wechat/src/Work/ExternalContact/MomentClient.php new file mode 100644 index 0000000..cf6db0b --- /dev/null +++ b/vendor/overtrue/wechat/src/Work/ExternalContact/MomentClient.php @@ -0,0 +1,166 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Work\ExternalContact; + +use EasyWeChat\Kernel\BaseClient; + +/** + * Class MomentClient. + * + * @author 读心印 + */ +class MomentClient extends BaseClient +{ + /** + * 创建发表任务 + * + * @see https://work.weixin.qq.com/api/doc/90000/90135/95094#%E5%88%9B%E5%BB%BA%E5%8F%91%E8%A1%A8%E4%BB%BB%E5%8A%A1 + * @param array $param + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function createTask(array $param) + { + return $this->httpPostJson('cgi-bin/externalcontact/add_moment_task', $param); + } + + /** + * 获取任务创建结果 + * + * @see https://work.weixin.qq.com/api/doc/90000/90135/95094#%E8%8E%B7%E5%8F%96%E4%BB%BB%E5%8A%A1%E5%88%9B%E5%BB%BA%E7%BB%93%E6%9E%9C + * + * @param string $jobId 异步任务id + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function getTask(string $jobId) + { + return $this->httpGet('cgi-bin/externalcontact/get_moment_task_result', ['jobid' => $jobId]); + } + + + /** + * 获取企业全部的发表列表. + * + * @see https://open.work.weixin.qq.com/api/doc/90000/90135/93333#获取企业全部的发表列表 + * + * @param array $params + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException|\GuzzleHttp\Exception\GuzzleException + */ + public function list(array $params) + { + return $this->httpPostJson('cgi-bin/externalcontact/get_moment_list', $params); + } + + /** + * 获取客户朋友圈企业发表的列表. + * + * @see https://open.work.weixin.qq.com/api/doc/90000/90135/93333#获取客户朋友圈企业发表的列表 + * + * @param string $momentId + * @param string $cursor + * @param int $limit + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException|\GuzzleHttp\Exception\GuzzleException + */ + public function getTasks(string $momentId, string $cursor = '', int $limit = 500) + { + $params = [ + 'moment_id' => $momentId, + 'cursor' => $cursor, + 'limit' => $limit + ]; + + return $this->httpPostJson('cgi-bin/externalcontact/get_moment_task', $params); + } + + /** + * 获取客户朋友圈发表时选择的可见范围. + * + * @see https://open.work.weixin.qq.com/api/doc/90000/90135/93333#获取客户朋友圈发表时选择的可见范围 + * + * @param string $momentId + * @param string $userId + * @param string $cursor + * @param int $limit + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException|\GuzzleHttp\Exception\GuzzleException + */ + public function getCustomers(string $momentId, string $userId, string $cursor, int $limit) + { + $params = [ + 'moment_id' => $momentId, + 'userid' => $userId, + 'cursor' => $cursor, + 'limit' => $limit + ]; + + return $this->httpPostJson('cgi-bin/externalcontact/get_moment_customer_list', $params); + } + + /** + * 获取客户朋友圈发表后的可见客户列表. + * + * @see https://open.work.weixin.qq.com/api/doc/90000/90135/93333#获取客户朋友圈发表后的可见客户列表 + * + * @param string $momentId + * @param string $userId + * @param string $cursor + * @param int $limit + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException|\GuzzleHttp\Exception\GuzzleException + */ + public function getSendResult(string $momentId, string $userId, string $cursor, int $limit) + { + $params = [ + 'moment_id' => $momentId, + 'userid' => $userId, + 'cursor' => $cursor, + 'limit' => $limit + ]; + + return $this->httpPostJson('cgi-bin/externalcontact/get_moment_send_result', $params); + } + + /** + * 获取客户朋友圈的互动数据. + * + * @see https://open.work.weixin.qq.com/api/doc/90000/90135/93333#获取客户朋友圈的互动数据 + * + * @param string $momentId + * @param string $userId + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException|\GuzzleHttp\Exception\GuzzleException + */ + public function getComments(string $momentId, string $userId) + { + $params = [ + 'moment_id' => $momentId, + 'userid' => $userId + ]; + + return $this->httpPostJson('cgi-bin/externalcontact/get_moment_comments', $params); + } +} diff --git a/vendor/overtrue/wechat/src/Work/ExternalContact/ProductClient.php b/vendor/overtrue/wechat/src/Work/ExternalContact/ProductClient.php new file mode 100644 index 0000000..a6301f8 --- /dev/null +++ b/vendor/overtrue/wechat/src/Work/ExternalContact/ProductClient.php @@ -0,0 +1,133 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Work\ExternalContact; + +use EasyWeChat\Kernel\BaseClient; + +/** + * Class ProductClient. + * + * @package EasyWeChat\Work\ExternalContact + * + * @author 读心印 + */ +class ProductClient extends BaseClient +{ + /** + * 创建商品图册. + * + * @see https://developer.work.weixin.qq.com/document/path/95096 + * + * @param array $params + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @author 读心印 + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function createProductAlbum(array $params) + { + return $this->httpPostJson('cgi-bin/externalcontact/add_product_album', $params); + } + + /** + * 获取商品图册. + * + * @see https://developer.work.weixin.qq.com/document/path/95096 + * + * @param string $productId + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @author 读心印 + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function getProductAlbumDetails(string $productId) + { + $params = [ + 'product_id' => $productId + ]; + + return $this->httpPostJson('cgi-bin/externalcontact/get_product_album', $params); + } + + /** + * 获取商品图册列表. + * + * @see https://developer.work.weixin.qq.com/document/path/95096 + * + * @param int $limit + * @param string $cursor + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @author 读心印 + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function getProductAlbums(int $limit, string $cursor) + { + $params = [ + 'limit' => $limit, + 'cursor' => $cursor, + ]; + + return $this->httpPostJson('cgi-bin/externalcontact/get_product_album_list', $params); + } + + /** + * 编辑商品图册. + * + * @see https://developer.work.weixin.qq.com/document/path/95096 + * + * @param array $params + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @author 读心印 + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function updateProductAlbum(array $params) + { + return $this->httpPostJson('cgi-bin/externalcontact/update_product_album', $params); + } + + /** + * 删除商品图册. + * + * @see https://developer.work.weixin.qq.com/document/path/95096 + * + * @param string $productId + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @author 读心印 + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function deleteProductAlbum(string $productId) + { + $params = [ + 'product_id' => $productId + ]; + + return $this->httpPostJson('cgi-bin/externalcontact/delete_product_album', $params); + } +} diff --git a/vendor/overtrue/wechat/src/Work/ExternalContact/SchoolClient.php b/vendor/overtrue/wechat/src/Work/ExternalContact/SchoolClient.php new file mode 100644 index 0000000..e0e1faf --- /dev/null +++ b/vendor/overtrue/wechat/src/Work/ExternalContact/SchoolClient.php @@ -0,0 +1,441 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Work\ExternalContact; + +use EasyWeChat\Kernel\BaseClient; + +/** + * Class Client. + * + * @author MillsGuo + */ +class SchoolClient extends BaseClient +{ + /** + * 创建部门 + * @see https://work.weixin.qq.com/api/doc/90000/90135/92340 + * @param string $name + * @param int $parentId + * @param int $type + * @param int $standardGrade + * @param int $registerYear + * @param int $order + * @param array $departmentAdmins [['userid':'139','type':1],['userid':'1399','type':2]] + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function createDepartment(string $name, int $parentId, int $type, int $standardGrade, int $registerYear, int $order, array $departmentAdmins) + { + $params = [ + 'name' => $name, + 'parentid' => $parentId, + 'type' => $type, + 'standard_grade' => $standardGrade, + 'register_year' => $registerYear, + 'order' => $order, + 'department_admins' => $departmentAdmins + ]; + + return $this->httpPostJson('cgi-bin/school/department/create', $params); + } + + /** + * 更新部门 + * @see https://work.weixin.qq.com/api/doc/90000/90135/92341 + * @param int $id + * @param string $name + * @param int $parentId + * @param int $type + * @param int $standardGrade + * @param int $registerYear + * @param int $order + * @param array $departmentAdmins [['op':0,'userid':'139','type':1],['op':1,'userid':'1399','type':2]] OP=0表示新增或更新,OP=1表示删除管理员 + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function updateDepartment(int $id, string $name, int $parentId, int $type, int $standardGrade, int $registerYear, int $order, array $departmentAdmins) + { + $params = [ + 'id' => $id, + 'name' => $name, + 'parentid' => $parentId, + 'type' => $type, + 'standard_grade' => $standardGrade, + 'register_year' => $registerYear, + 'order' => $order, + 'department_admins' => $departmentAdmins + ]; + $params = $this->filterNullValue($params); + + return $this->httpPostJson('cgi-bin/school/department/update', $params); + } + + /** + * 删除部门 + * @see https://work.weixin.qq.com/api/doc/90000/90135/92342 + * @param int $id + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function deleteDepartment(int $id) + { + return $this->httpGet('cgi-bin/school/department/delete', [ + 'id' => $id + ]); + } + + /** + * 获取部门列表 + * @see https://work.weixin.qq.com/api/doc/90000/90135/92343 + * @param int $id 如果ID为0,则获取全量组织架构 + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function getDepartments(int $id) + { + if ($id > 0) { + $params = [ + 'id' => $id + ]; + } else { + $params = []; + } + + return $this->httpGet('cgi-bin/school/department/list', $params); + } + + /** + * 创建学生 + * @see https://work.weixin.qq.com/api/doc/90000/90135/92325 + * @param string $userId + * @param string $name + * @param array $department + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function createStudent(string $userId, string $name, array $department) + { + $params = [ + 'student_userid' => $userId, + 'name' => $name, + 'department' => $department + ]; + + return $this->httpPostJson('cgi-bin/school/user/create_student', $params); + } + + /** + * 删除学生 + * @see https://work.weixin.qq.com/api/doc/90000/90135/92326 + * @param string $userId + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function deleteStudent(string $userId) + { + return $this->httpGet('cgi-bin/school/user/delete_student', [ + 'userid' => $userId + ]); + } + + /** + * 更新学生 + * @see https://work.weixin.qq.com/api/doc/90000/90135/92327 + * @param string $userId + * @param string $name + * @param string $newUserId + * @param array $department + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function updateStudent(string $userId, string $name, string $newUserId, array $department) + { + $params = [ + 'student_userid' => $userId + ]; + if (!empty($name)) { + $params['name'] = $name; + } + if (!empty($newUserId)) { + $params['new_student_userid'] = $newUserId; + } + if (!empty($department)) { + $params['department'] = $department; + } + + return $this->httpPostJson('cgi-bin/school/user/update_student', $params); + } + + /** + * 批量创建学生,学生最多100个 + * @see https://work.weixin.qq.com/api/doc/90000/90135/92328 + * @param array $students 学生格式:[[student_userid:'','name':'','department':[1,2]],['student_userid':'','name':'','department':[1,2]]] + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function batchCreateStudents(array $students) + { + $params = [ + 'students' => $students + ]; + + return $this->httpPostJson('cgi-bin/school/user/batch_create_student', $params); + } + + /** + * 批量删除学生,每次最多100个学生 + * @see https://work.weixin.qq.com/api/doc/90000/90135/92329 + * @param array $useridList 学生USERID,格式:['zhangsan','lisi'] + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function batchDeleteStudents(array $useridList) + { + return $this->httpPostJson('cgi-bin/school/user/batch_delete_student', [ + 'useridlist' => $useridList + ]); + } + + /** + * 批量更新学生,每次最多100个 + * @see https://open.work.weixin.qq.com/api/doc/90001/90143/92042 + * @param array $students 格式:[['student_userid':'lisi','new_student_userid':'lisi2','name':'','department':[1,2]],.....] + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function batchUpdateStudents(array $students) + { + return $this->httpPostJson('cgi-bin/school/user/batch_update_student', [ + 'students' => $students + ]); + } + + /** + * 创建家长 + * @see https://open.work.weixin.qq.com/api/doc/90001/90143/92077 + * @param string $userId + * @param string $mobile + * @param bool $toInvite + * @param array $children + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function createParent(string $userId, string $mobile, bool $toInvite, array $children) + { + $params = [ + 'parent_userid' => $userId, + 'mobile' => $mobile, + 'to_invite' => $toInvite, + 'children' => $children + ]; + + return $this->httpPostJson('cgi-bin/school/user/create_parent', $params); + } + + /** + * 删除家长 + * @see https://open.work.weixin.qq.com/api/doc/90001/90143/92079 + * @param string $userId + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function deleteParent(string $userId) + { + return $this->httpPostJson('cgi-bin/school/user/delete_parent', [ + 'userid' => $userId + ]); + } + + /** + * 更新家长 + * @see https://open.work.weixin.qq.com/api/doc/90001/90143/92081 + * @param string $userId + * @param string $mobile + * @param string $newUserId + * @param array $children 格式:[['student_userid':'','relation':''],[]] + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function updateParent(string $userId, string $mobile, string $newUserId, array $children) + { + $params = [ + 'parent_userid' => $userId + ]; + if (!empty($newUserId)) { + $params['new_parent_userid'] = $newUserId; + } + if (!empty($mobile)) { + $params['mobile'] = $mobile; + } + if (!empty($children)) { + $params['children'] = $children; + } + + return $this->httpPostJson('cgi-bin/school/user/update_parent', $params); + } + + /** + * 批量创建家长 每次最多100个 + * @see https://open.work.weixin.qq.com/api/doc/90001/90143/92078 + * @param array $parents [['parent_userid':'','mobile':'','to_invite':true,'children':['student_userid':'','relation':'']],.....] + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function batchCreateParents(array $parents) + { + return $this->httpPostJson('cgi-bin/school/user/batch_create_parent', [ + 'parents' => $parents + ]); + } + + /** + * 批量删除家长,每次最多100个 + * @see https://open.work.weixin.qq.com/api/doc/90001/90143/92080 + * @param array $userIdList 格式:['chang','lisi'] + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function batchDeleteParents(array $userIdList) + { + return $this->httpPostJson('cgi-bin/school/user/batch_delete_parent', [ + 'useridlist' => $userIdList + ]); + } + + /** + * 批量更新家长,每次最多100个 + * @see https://open.work.weixin.qq.com/api/doc/90001/90143/92082 + * @param array $parents 格式:[['parent_userid':'','new_parent_userid':'','mobile':'','children':[['student_userid':'','relation':''],...]],.....] + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function batchUpdateParents(array $parents) + { + return $this->httpPostJson('cgi-bin/school/user/batch_update_parent', [ + 'parents' => $parents + ]); + } + + /** + * 读取学生或家长 + * @see https://open.work.weixin.qq.com/api/doc/90001/90143/92038 + * @param string $userId 学生或家长的userid + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function getUser(string $userId) + { + return $this->httpGet('cgi-bin/school/user/get', [ + 'userid' => $userId + ]); + } + + /** + * 获取部门成员详情 + * @see https://open.work.weixin.qq.com/api/doc/90001/90143/92038 + * @param int $departmentId + * @param bool $fetchChild + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function getStudents(int $departmentId, bool $fetchChild) + { + $params = [ + 'department_id' => $departmentId + ]; + if ($fetchChild) { + $params['fetch_child'] = 1; + } else { + $params['fetch_child'] = 0; + } + + return $this->httpGet('cgi-bin/school/user/list', $params); + } + + /** + * 获取学校通知二维码 + * @see https://open.work.weixin.qq.com/api/doc/90001/90143/92197 + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function getSubscribeQrCode() + { + return $this->httpGet('cgi-bin/externalcontact/get_subscribe_qr_code'); + } + + /** + * 设置关注学校通知的模式 + * @see https://open.work.weixin.qq.com/api/doc/90001/90143/92290 + * @param int $mode 关注模式,1可扫码填写资料加入,2禁止扫码填写资料加入 + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function setSubscribeMode(int $mode) + { + return $this->httpPostJson('cgi-bin/externalcontact/set_subscribe_mode', [ + 'subscribe_mode' => $mode + ]); + } + + /** + * 获取关注学校通知的模式 + * @see https://open.work.weixin.qq.com/api/doc/90001/90143/92290 + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function getSubscribeMode() + { + return $this->httpGet('cgi-bin/externalcontact/get_subscribe_mode'); + } + + /** + * 设置【老师可查看班级】的模式 + * @see https://open.work.weixin.qq.com/api/doc/90001/90143/92652 + * @param int $mode + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function setTeacherViewMode(int $mode) + { + return $this->httpPostJson('cgi-bin/school/set_teacher_view_mode', [ + 'view_mode' => $mode + ]); + } + + /** + * 获取【老师可查看班级】的模式 + * @see https://open.work.weixin.qq.com/api/doc/90001/90143/92652 + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function getTeacherViewMode() + { + return $this->httpGet('cgi-bin/school/get_teacher_view_mode'); + } + + /** + * 过滤数组中值为NULL的键 + * @param array $data + * @return array + */ + protected function filterNullValue(array $data) + { + $returnData = []; + foreach ($data as $key => $value) { + if ($value !== null) { + $returnData[$key] = trim($value); + } + } + + return $returnData; + } +} diff --git a/vendor/overtrue/wechat/src/Work/ExternalContact/ServiceProvider.php b/vendor/overtrue/wechat/src/Work/ExternalContact/ServiceProvider.php new file mode 100644 index 0000000..96a4b98 --- /dev/null +++ b/vendor/overtrue/wechat/src/Work/ExternalContact/ServiceProvider.php @@ -0,0 +1,69 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Work\ExternalContact; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +/** + * Class ServiceProvider. + * + * @author mingyoung + */ +class ServiceProvider implements ServiceProviderInterface +{ + /** + * {@inheritdoc}. + */ + public function register(Container $app) + { + $app['external_contact'] = function ($app) { + return new Client($app); + }; + + $app['contact_way'] = function ($app) { + return new ContactWayClient($app); + }; + + $app['group_chat_way'] = function ($app) { + return new GroupChatWayClient($app); + }; + + $app['external_contact_statistics'] = function ($app) { + return new StatisticsClient($app); + }; + + $app['external_contact_message'] = function ($app) { + return new MessageClient($app); + }; + + $app['school'] = function ($app) { + return new SchoolClient($app); + }; + + $app['external_contact_moment'] = function ($app) { + return new MomentClient($app); + }; + + $app['external_contact_message_template'] = function ($app) { + return new MessageTemplateClient($app); + }; + + $app['product'] = function ($app) { + return new ProductClient($app); + }; + + $app['intercept'] = function ($app) { + return new InterceptClient($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/Work/ExternalContact/StatisticsClient.php b/vendor/overtrue/wechat/src/Work/ExternalContact/StatisticsClient.php new file mode 100644 index 0000000..7cfa4d0 --- /dev/null +++ b/vendor/overtrue/wechat/src/Work/ExternalContact/StatisticsClient.php @@ -0,0 +1,96 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Work\ExternalContact; + +use EasyWeChat\Kernel\BaseClient; + +/** + * Class StatisticsClient. + * + * @author 读心印 + */ +class StatisticsClient extends BaseClient +{ + /** + * 获取「联系客户统计」数据. + * + * @see https://work.weixin.qq.com/api/doc/90000/90135/92132 + * + * @param array $userIds + * @param string $from + * @param string $to + * @param array $partyIds + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + + public function userBehavior(array $userIds, string $from, string $to, array $partyIds = []) + { + $params = [ + 'userid' => $userIds, + 'partyid' => $partyIds, + 'start_time' => $from, + 'end_time' => $to, + ]; + return $this->httpPostJson('cgi-bin/externalcontact/get_user_behavior_data', $params); + } + + + /** + * 获取「群聊数据统计」数据. (按群主聚合的方式) + * + * @see https://work.weixin.qq.com/api/doc/90000/90135/92133 + * + * @param array $params + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + + public function groupChatStatistic(array $params) + { + return $this->httpPostJson('cgi-bin/externalcontact/groupchat/statistic', $params); + } + + + /** + * 获取「群聊数据统计」数据. (按自然日聚合的方式) + * + * @see https://work.weixin.qq.com/api/doc/90000/90135/92133 + * + * @param int $dayBeginTime + * @param int $dayEndTime + * @param array $userIds + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + + public function groupChatStatisticGroupByDay(int $dayBeginTime, int $dayEndTime, array $userIds = []) + { + $params = [ + 'day_begin_time' => $dayBeginTime, + 'day_end_time' => $dayEndTime, + 'owner_filter' => [ + 'userid_list' => $userIds + ] + ]; + return $this->httpPostJson('cgi-bin/externalcontact/groupchat/statistic_group_by_day', $params); + } +} diff --git a/vendor/overtrue/wechat/src/Work/GroupRobot/Client.php b/vendor/overtrue/wechat/src/Work/GroupRobot/Client.php new file mode 100644 index 0000000..c2e0aa0 --- /dev/null +++ b/vendor/overtrue/wechat/src/Work/GroupRobot/Client.php @@ -0,0 +1,51 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Work\GroupRobot; + +use EasyWeChat\Kernel\BaseClient; +use EasyWeChat\Work\GroupRobot\Messages\Message; + +/** + * Class Client. + * + * @author her-cat + */ +class Client extends BaseClient +{ + /** + * @param string|Message $message + * + * @return Messenger + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + */ + public function message($message) + { + return (new Messenger($this))->message($message); + } + + /** + * @param string $key + * @param array $message + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function send(string $key, array $message) + { + $this->accessToken = null; + + return $this->httpPostJson('cgi-bin/webhook/send', $message, ['key' => $key]); + } +} diff --git a/vendor/overtrue/wechat/src/Work/GroupRobot/Messages/Image.php b/vendor/overtrue/wechat/src/Work/GroupRobot/Messages/Image.php new file mode 100644 index 0000000..14beb81 --- /dev/null +++ b/vendor/overtrue/wechat/src/Work/GroupRobot/Messages/Image.php @@ -0,0 +1,41 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Work\GroupRobot\Messages; + +/** + * Class Image. + * + * @author her-cat + */ +class Image extends Message +{ + /** + * @var string + */ + protected $type = 'image'; + + /** + * @var array + */ + protected $properties = ['base64', 'md5']; + + /** + * Image constructor. + * + * @param string $base64 + * @param string $md5 + */ + public function __construct(string $base64, string $md5) + { + parent::__construct(compact('base64', 'md5')); + } +} diff --git a/vendor/overtrue/wechat/src/Work/GroupRobot/Messages/Markdown.php b/vendor/overtrue/wechat/src/Work/GroupRobot/Messages/Markdown.php new file mode 100644 index 0000000..dfe6980 --- /dev/null +++ b/vendor/overtrue/wechat/src/Work/GroupRobot/Messages/Markdown.php @@ -0,0 +1,40 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Work\GroupRobot\Messages; + +/** + * Class Markdown. + * + * @author her-cat + */ +class Markdown extends Message +{ + /** + * @var string + */ + protected $type = 'markdown'; + + /** + * @var array + */ + protected $properties = ['content']; + + /** + * Markdown constructor. + * + * @param string $content + */ + public function __construct(string $content) + { + parent::__construct(compact('content')); + } +} diff --git a/vendor/overtrue/wechat/src/Work/GroupRobot/Messages/Message.php b/vendor/overtrue/wechat/src/Work/GroupRobot/Messages/Message.php new file mode 100644 index 0000000..50201b9 --- /dev/null +++ b/vendor/overtrue/wechat/src/Work/GroupRobot/Messages/Message.php @@ -0,0 +1,23 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Work\GroupRobot\Messages; + +use EasyWeChat\Kernel\Messages\Message as BaseMessage; + +/** + * Class Message. + * + * @author her-cat + */ +class Message extends BaseMessage +{ +} diff --git a/vendor/overtrue/wechat/src/Work/GroupRobot/Messages/News.php b/vendor/overtrue/wechat/src/Work/GroupRobot/Messages/News.php new file mode 100644 index 0000000..835023e --- /dev/null +++ b/vendor/overtrue/wechat/src/Work/GroupRobot/Messages/News.php @@ -0,0 +1,55 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Work\GroupRobot\Messages; + +/** + * Class News. + * + * @author her-cat + */ +class News extends Message +{ + /** + * @var string + */ + protected $type = 'news'; + + /** + * @var array + */ + protected $properties = ['items']; + + /** + * News constructor. + * + * @param array $items + */ + public function __construct(array $items = []) + { + parent::__construct(compact('items')); + } + + /** + * @param array $data + * @param array $aliases + * + * @return array + */ + public function propertiesToArray(array $data, array $aliases = []): array + { + return ['articles' => array_map(function ($item) { + if ($item instanceof NewsItem) { + return $item->toJsonArray(); + } + }, $this->get('items'))]; + } +} diff --git a/vendor/overtrue/wechat/src/Work/GroupRobot/Messages/NewsItem.php b/vendor/overtrue/wechat/src/Work/GroupRobot/Messages/NewsItem.php new file mode 100644 index 0000000..2d206de --- /dev/null +++ b/vendor/overtrue/wechat/src/Work/GroupRobot/Messages/NewsItem.php @@ -0,0 +1,45 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Work\GroupRobot\Messages; + +/** + * Class NewsItem. + * + * @author her-cat + */ +class NewsItem extends Message +{ + /** + * @var string + */ + protected $type = 'news'; + + /** + * @var array + */ + protected $properties = [ + 'title', + 'description', + 'url', + 'image', + ]; + + public function toJsonArray() + { + return [ + 'title' => $this->get('title'), + 'description' => $this->get('description'), + 'url' => $this->get('url'), + 'picurl' => $this->get('image'), + ]; + } +} diff --git a/vendor/overtrue/wechat/src/Work/GroupRobot/Messages/Text.php b/vendor/overtrue/wechat/src/Work/GroupRobot/Messages/Text.php new file mode 100644 index 0000000..a1e6dda --- /dev/null +++ b/vendor/overtrue/wechat/src/Work/GroupRobot/Messages/Text.php @@ -0,0 +1,70 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Work\GroupRobot\Messages; + +/** + * Class Text. + * + * @author her-cat + */ +class Text extends Message +{ + /** + * @var string + */ + protected $type = 'text'; + + /** + * @var array + */ + protected $properties = ['content', 'mentioned_list', 'mentioned_mobile_list']; + + /** + * Text constructor. + * + * @param string $content + * @param string|array $userIds + * @param string|array $mobiles + */ + public function __construct(string $content, $userIds = [], $mobiles = []) + { + parent::__construct([ + 'content' => $content, + 'mentioned_list' => (array) $userIds, + 'mentioned_mobile_list' => (array) $mobiles, + ]); + } + + /** + * @param array $userIds + * + * @return Text + */ + public function mention($userIds) + { + $this->set('mentioned_list', (array) $userIds); + + return $this; + } + + /** + * @param array $mobiles + * + * @return Text + */ + public function mentionByMobile($mobiles) + { + $this->set('mentioned_mobile_list', (array) $mobiles); + + return $this; + } +} diff --git a/vendor/overtrue/wechat/src/Work/GroupRobot/Messenger.php b/vendor/overtrue/wechat/src/Work/GroupRobot/Messenger.php new file mode 100644 index 0000000..573296a --- /dev/null +++ b/vendor/overtrue/wechat/src/Work/GroupRobot/Messenger.php @@ -0,0 +1,129 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Work\GroupRobot; + +use EasyWeChat\Kernel\Exceptions\InvalidArgumentException; +use EasyWeChat\Kernel\Exceptions\InvalidConfigException; +use EasyWeChat\Kernel\Exceptions\RuntimeException; +use EasyWeChat\Work\GroupRobot\Messages\Message; +use EasyWeChat\Work\GroupRobot\Messages\Text; + +/** + * Class Messenger. + * + * @author her-cat + */ +class Messenger +{ + /** + * @var Client + */ + protected $client; + + /** + * @var Message|null + */ + protected $message; + + /** + * @var string|null + */ + protected $groupKey; + + /** + * Messenger constructor. + * + * @param Client $client + */ + public function __construct(Client $client) + { + $this->client = $client; + } + + /** + * @param string|Message $message + * + * @return Messenger + * + * @throws InvalidArgumentException + */ + public function message($message) + { + if (is_string($message) || is_numeric($message)) { + $message = new Text($message); + } + + if (!($message instanceof Message)) { + throw new InvalidArgumentException('Invalid message.'); + } + + $this->message = $message; + + return $this; + } + + /** + * @param string $groupKey + * + * @return Messenger + */ + public function toGroup(string $groupKey) + { + $this->groupKey = $groupKey; + + return $this; + } + + /** + * @param string|Message|null $message + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws RuntimeException + * @throws InvalidArgumentException + * @throws InvalidConfigException + */ + public function send($message = null) + { + if ($message) { + $this->message($message); + } + + if (empty($this->message)) { + throw new RuntimeException('No message to send.'); + } + + if (is_null($this->groupKey)) { + throw new RuntimeException('No group key specified.'); + } + + $message = $this->message->transformForJsonRequest(); + + return $this->client->send($this->groupKey, $message); + } + + /** + * @param string $property + * + * @return mixed + * + * @throws InvalidArgumentException + */ + public function __get($property) + { + if (property_exists($this, $property)) { + return $this->$property; + } + + throw new InvalidArgumentException(sprintf('No property named "%s"', $property)); + } +} diff --git a/vendor/overtrue/wechat/src/Work/GroupRobot/ServiceProvider.php b/vendor/overtrue/wechat/src/Work/GroupRobot/ServiceProvider.php new file mode 100644 index 0000000..d72d630 --- /dev/null +++ b/vendor/overtrue/wechat/src/Work/GroupRobot/ServiceProvider.php @@ -0,0 +1,37 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Work\GroupRobot; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +/** + * Class ServiceProvider. + * + * @author her-cat + */ +class ServiceProvider implements ServiceProviderInterface +{ + /** + * {@inheritdoc} + */ + public function register(Container $app) + { + $app['group_robot'] = function ($app) { + return new Client($app); + }; + + $app['group_robot_messenger'] = function ($app) { + return new Messenger($app['group_robot']); + }; + } +} diff --git a/vendor/overtrue/wechat/src/Work/GroupWelcomeTemplate/Client.php b/vendor/overtrue/wechat/src/Work/GroupWelcomeTemplate/Client.php new file mode 100644 index 0000000..686ceb6 --- /dev/null +++ b/vendor/overtrue/wechat/src/Work/GroupWelcomeTemplate/Client.php @@ -0,0 +1,84 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Work\GroupWelcomeTemplate; + +use EasyWeChat\Kernel\BaseClient; + +/** + * 入群欢迎语素材管理 + * + * @package EasyWeChat\Work\GroupWelcomeTemplate\Client + * @author HaoLiang + */ +class Client extends BaseClient +{ + /** + * 添加入群欢迎语素材 + * + * @description 企业可通过此API向企业的入群欢迎语素材库中添加素材。每个企业的入群欢迎语素材库中,最多容纳100个素材。 + * @param array $data + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function add(array $data) + { + return $this->httpPostJson('cgi-bin/externalcontact/group_welcome_template/add', $data); + } + + + /** + * 编辑入群欢迎语素材 + * + * @description 企业可通过此API编辑入群欢迎语素材库中的素材,且仅能够编辑调用方自己创建的入群欢迎语素材。 + * @param string $templateId 欢迎语素材id + * @param array $data + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function edit(string $templateId, array $data) + { + return $this->httpPostJson('cgi-bin/externalcontact/group_welcome_template/edit', array_merge( + ['template_id' => $templateId], + $data + )); + } + + /** + * 获取入群欢迎语素材 + * + * @description 企业可通过此API获取入群欢迎语素材。 + * @param string $templateId 欢迎语素材id + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function get(string $templateId) + { + return $this->httpPostJson('cgi-bin/externalcontact/group_welcome_template/get', ['template_id' => $templateId]); + } + + /** + * 删除入群欢迎语素材 + * + * @description 企业可通过此API删除入群欢迎语素材,且仅能删除调用方自己创建的入群欢迎语素材。 + * @param string $templateId 欢迎语素材id + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function del(string $templateId) + { + return $this->httpPostJson('cgi-bin/externalcontact/group_welcome_template/del', ['template_id' => $templateId]); + } +} diff --git a/vendor/overtrue/wechat/src/Work/GroupWelcomeTemplate/ServiceProvider.php b/vendor/overtrue/wechat/src/Work/GroupWelcomeTemplate/ServiceProvider.php new file mode 100644 index 0000000..c609b55 --- /dev/null +++ b/vendor/overtrue/wechat/src/Work/GroupWelcomeTemplate/ServiceProvider.php @@ -0,0 +1,34 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Work\GroupWelcomeTemplate; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +/** + * 入群欢迎语素材管理 + * + * @package EasyWeChat\Work\GroupWelcomeTemplate\ServiceProvider + * @author HaoLiang + */ +class ServiceProvider implements ServiceProviderInterface +{ + /** + * {@inheritdoc}. + */ + public function register(Container $app) + { + $app['group_welcome_template'] = function ($app) { + return new Client($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/Work/Invoice/Client.php b/vendor/overtrue/wechat/src/Work/Invoice/Client.php new file mode 100644 index 0000000..edbd34b --- /dev/null +++ b/vendor/overtrue/wechat/src/Work/Invoice/Client.php @@ -0,0 +1,100 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Work\Invoice; + +use EasyWeChat\Kernel\BaseClient; + +/** + * Class Client. + * + * @author mingyoung + */ +class Client extends BaseClient +{ + /** + * @param string $cardId + * @param string $encryptCode + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function get(string $cardId, string $encryptCode) + { + $params = [ + 'card_id' => $cardId, + 'encrypt_code' => $encryptCode, + ]; + + return $this->httpPostJson('cgi-bin/card/invoice/reimburse/getinvoiceinfo', $params); + } + + /** + * @param array $invoices + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function select(array $invoices) + { + $params = [ + 'item_list' => $invoices, + ]; + + return $this->httpPostJson('cgi-bin/card/invoice/reimburse/getinvoiceinfobatch', $params); + } + + /** + * @param string $cardId + * @param string $encryptCode + * @param string $status + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function update(string $cardId, string $encryptCode, string $status) + { + $params = [ + 'card_id' => $cardId, + 'encrypt_code' => $encryptCode, + 'reimburse_status' => $status, + ]; + + return $this->httpPostJson('cgi-bin/card/invoice/reimburse/updateinvoicestatus', $params); + } + + /** + * @param array $invoices + * @param string $openid + * @param string $status + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function batchUpdate(array $invoices, string $openid, string $status) + { + $params = [ + 'openid' => $openid, + 'reimburse_status' => $status, + 'invoice_list' => $invoices, + ]; + + return $this->httpPostJson('cgi-bin/card/invoice/reimburse/updatestatusbatch', $params); + } +} diff --git a/vendor/overtrue/wechat/src/Work/Invoice/ServiceProvider.php b/vendor/overtrue/wechat/src/Work/Invoice/ServiceProvider.php new file mode 100644 index 0000000..3259d80 --- /dev/null +++ b/vendor/overtrue/wechat/src/Work/Invoice/ServiceProvider.php @@ -0,0 +1,33 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Work\Invoice; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +/** + * Class ServiceProvider. + * + * @author mingyoung + */ +class ServiceProvider implements ServiceProviderInterface +{ + /** + * {@inheritdoc}. + */ + public function register(Container $app) + { + $app['invoice'] = function ($app) { + return new Client($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/Work/Jssdk/Client.php b/vendor/overtrue/wechat/src/Work/Jssdk/Client.php new file mode 100644 index 0000000..f146c3c --- /dev/null +++ b/vendor/overtrue/wechat/src/Work/Jssdk/Client.php @@ -0,0 +1,206 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Work\Jssdk; + +use EasyWeChat\BasicService\Jssdk\Client as BaseClient; +use EasyWeChat\Kernel\Contracts\AccessTokenInterface; +use EasyWeChat\Kernel\Exceptions\RuntimeException; +use EasyWeChat\Kernel\ServiceContainer; +use EasyWeChat\Kernel\Support; + +/** + * Class Client. + * + * @author mingyoung + */ +class Client extends BaseClient +{ + public function __construct(ServiceContainer $app, AccessTokenInterface $accessToken = null) + { + parent::__construct($app, $accessToken); + + $this->ticketEndpoint = \rtrim($app->config->get('http.base_uri'), '/').'/cgi-bin/get_jsapi_ticket'; + } + + /** + * @return string + */ + protected function getAppId() + { + return $this->app['config']->get('corp_id'); + } + + /** + * Return jsapi agent config as a PHP array. + * + * @param array $apis + * @param int|string $agentId + * @param bool $debug + * @param bool $beta + * @param array $openTagList + * @param string|null $url + * + * @return array|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \EasyWeChat\Kernel\Exceptions\RuntimeException + * @throws \GuzzleHttp\Exception\GuzzleException + * @throws \Psr\SimpleCache\InvalidArgumentException + */ + public function getAgentConfigArray( + array $apis, + $agentId, + bool $debug = false, + bool $beta = false, + array $openTagList = [], + string $url = null + ) { + return $this->buildAgentConfig($apis, $agentId, $debug, $beta, false, $openTagList, $url); + } + + /** + * Get agent config json for jsapi. + * + * @param array $jsApiList + * @param int|string $agentId + * @param bool $debug + * @param bool $beta + * @param bool $json + * @param array $openTagList + * @param string|null $url + * + * @return array|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \EasyWeChat\Kernel\Exceptions\RuntimeException + * @throws \GuzzleHttp\Exception\GuzzleException + * @throws \Psr\SimpleCache\InvalidArgumentException + */ + public function buildAgentConfig( + array $jsApiList, + $agentId, + bool $debug = false, + bool $beta = false, + bool $json = true, + array $openTagList = [], + string $url = null + ) { + $config = array_merge(compact('debug', 'beta', 'jsApiList', 'openTagList'), $this->agentConfigSignature($agentId, $url)); + + return $json ? json_encode($config) : $config; + } + + /** + * @param int|string $agentId + * @param string|null $url + * @param string|null $nonce + * @param null $timestamp + * + * @return array + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \EasyWeChat\Kernel\Exceptions\RuntimeException + * @throws \GuzzleHttp\Exception\GuzzleException + * @throws \Psr\SimpleCache\InvalidArgumentException + */ + protected function agentConfigSignature($agentId, string $url = null, string $nonce = null, $timestamp = null): array + { + $url = $url ?: $this->getUrl(); + $nonce = $nonce ?: Support\Str::quickRandom(10); + $timestamp = $timestamp ?: time(); + + return [ + 'corpid' => $this->getAppId(), + 'agentid' => $agentId, + 'nonceStr' => $nonce, + 'timestamp' => $timestamp, + 'url' => $url, + 'signature' => $this->getTicketSignature($this->getAgentTicket($agentId)['ticket'], $nonce, $timestamp, $url), + ]; + } + + /** + * Get js ticket. + * + * @param bool $refresh + * @param string $type + * + * @return array + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \EasyWeChat\Kernel\Exceptions\RuntimeException + * @throws \GuzzleHttp\Exception\GuzzleException + * @throws \Psr\SimpleCache\InvalidArgumentException + */ + public function getTicket(bool $refresh = false, string $type = 'config'): array + { + $cacheKey = sprintf('easywechat.work.jssdk.ticket.%s.%s', $type, $this->getAppId()); + + if (!$refresh && $this->getCache()->has($cacheKey)) { + return $this->getCache()->get($cacheKey); + } + + /** @var array $result */ + $result = $this->castResponseToType( + $this->requestRaw($this->ticketEndpoint, 'GET'), + 'array' + ); + + $this->getCache()->set($cacheKey, $result, $result['expires_in'] - 500); + + if (!$this->getCache()->has($cacheKey)) { + throw new RuntimeException('Failed to cache jssdk ticket.'); + } + + return $result; + } + + /** + * @param int $agentId + * @param bool $refresh + * @param string $type + * + * @return array|\EasyWeChat\Kernel\Support\Collection|mixed|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \EasyWeChat\Kernel\Exceptions\RuntimeException + * @throws \GuzzleHttp\Exception\GuzzleException + * @throws \Psr\SimpleCache\InvalidArgumentException + */ + public function getAgentTicket($agentId, bool $refresh = false, string $type = 'agent_config') + { + $cacheKey = sprintf('easywechat.work.jssdk.ticket.%s.%s.%s', $agentId, $type, $this->getAppId()); + + if (!$refresh && $this->getCache()->has($cacheKey)) { + return $this->getCache()->get($cacheKey); + } + + /** @var array $result */ + $result = $this->castResponseToType( + $this->requestRaw('cgi-bin/ticket/get', 'GET', ['query' => ['type' => $type]]), + 'array' + ); + + $this->getCache()->set($cacheKey, $result, $result['expires_in'] - 500); + + if (!$this->getCache()->has($cacheKey)) { + throw new RuntimeException('Failed to cache jssdk ticket.'); + } + + return $result; + } +} diff --git a/vendor/overtrue/wechat/src/Work/Jssdk/ServiceProvider.php b/vendor/overtrue/wechat/src/Work/Jssdk/ServiceProvider.php new file mode 100644 index 0000000..efb509c --- /dev/null +++ b/vendor/overtrue/wechat/src/Work/Jssdk/ServiceProvider.php @@ -0,0 +1,33 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Work\Jssdk; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +/** + * Class ServiceProvider. + * + * @author mingyoung + */ +class ServiceProvider implements ServiceProviderInterface +{ + /** + * {@inheritdoc}. + */ + public function register(Container $app) + { + $app['jssdk'] = function ($app) { + return new Client($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/Work/Kf/AccountClient.php b/vendor/overtrue/wechat/src/Work/Kf/AccountClient.php new file mode 100644 index 0000000..afee269 --- /dev/null +++ b/vendor/overtrue/wechat/src/Work/Kf/AccountClient.php @@ -0,0 +1,131 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Work\Kf; + +use EasyWeChat\Kernel\BaseClient; + +/** + * Class AccountClient. + * + * @package EasyWeChat\Work\Kf + * + * @author 读心印 + */ +class AccountClient extends BaseClient +{ + /** + * 添加客服帐号. + * + * @see https://open.work.weixin.qq.com/api/doc/90000/90135/94662 + * + * @param string $name + * @param string $mediaId + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function add(string $name, string $mediaId) + { + $params = [ + 'name' => $name, + 'media_id' => $mediaId, + ]; + + return $this->httpPostJson('cgi-bin/kf/account/add', $params); + } + + /** + * 修改客服帐号. + * + * @see https://open.work.weixin.qq.com/api/doc/90000/90135/94664 + * + * @param string $openKfId + * @param string $name + * @param string $mediaId + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function update(string $openKfId, string $name, string $mediaId) + { + $params = [ + 'open_kfid' => $openKfId, + 'name' => $name, + 'media_id' => $mediaId, + ]; + + return $this->httpPostJson('cgi-bin/kf/account/update', $params); + } + + /** + * 删除客服帐号. + * + * @see https://open.work.weixin.qq.com/api/doc/90000/90135/94663 + * + * @param string $openKfId + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function del(string $openKfId) + { + $params = [ + 'open_kfid' => $openKfId + ]; + + return $this->httpPostJson('cgi-bin/kf/account/del', $params); + } + + /** + * 获取客服帐号列表. + * + * @see https://open.work.weixin.qq.com/api/doc/90000/90135/94661 + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function list() + { + return $this->httpGet('cgi-bin/kf/account/list'); + } + + /** + * 获取客服帐号链接. + * + * @see https://open.work.weixin.qq.com/api/doc/90000/90135/94665 + * + * @param string $openKfId + * @param string $scene + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function getAccountLink(string $openKfId, string $scene) + { + $params = [ + 'open_kfid' => $openKfId, + 'scene' => $scene + ]; + + return $this->httpPostJson('cgi-bin/kf/add_contact_way', $params); + } +} diff --git a/vendor/overtrue/wechat/src/Work/Kf/MessageClient.php b/vendor/overtrue/wechat/src/Work/Kf/MessageClient.php new file mode 100644 index 0000000..4246879 --- /dev/null +++ b/vendor/overtrue/wechat/src/Work/Kf/MessageClient.php @@ -0,0 +1,133 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Work\Kf; + +use EasyWeChat\Kernel\BaseClient; + +/** + * Class MessageClient. + * + * @package EasyWeChat\Work\Kf + * + * @author 读心印 + */ +class MessageClient extends BaseClient +{ + /** + * 获取会话状态. + * + * @see https://open.work.weixin.qq.com/api/doc/90000/90135/94669 + * + * @param string $openKfId + * @param string $externalUserId + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function state(string $openKfId, string $externalUserId) + { + $params = [ + 'open_kfid' => $openKfId, + 'external_userid' => $externalUserId + ]; + + return $this->httpPostJson('cgi-bin/kf/service_state/get', $params); + } + + /** + * 变更会话状态. + * + * @see https://open.work.weixin.qq.com/api/doc/90000/90135/94669 + * + * @param string $openKfId + * @param string $externalUserId + * @param int $serviceState + * @param string $serviceUserId + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function updateState(string $openKfId, string $externalUserId, int $serviceState, string $serviceUserId) + { + $params = [ + 'open_kfid' => $openKfId, + 'external_userid' => $externalUserId, + 'service_state' => $serviceState, + 'servicer_userid' => $serviceUserId + ]; + + return $this->httpPostJson('cgi-bin/kf/service_state/trans', $params); + } + + /** + * 读取消息. + * + * @see https://open.work.weixin.qq.com/api/doc/90000/90135/94670 + * + * @param string $cursor + * @param string $token + * @param int $limit + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function sync(string $cursor, string $token, int $limit) + { + $params = [ + 'cursor' => $cursor, + 'token' => $token, + 'limit' => $limit + ]; + + return $this->httpPostJson('cgi-bin/kf/sync_msg', $params); + } + + /** + * 发送消息. + * + * @see https://open.work.weixin.qq.com/api/doc/90000/90135/94677 + * + * @param array $params + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function send(array $params) + { + return $this->httpPostJson('cgi-bin/kf/send_msg', $params); + } + + /** + * 发送事件响应消息. + * + * @see https://open.work.weixin.qq.com/api/doc/90000/90135/94677 + * + * @param array $params + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function event(array $params) + { + return $this->httpPostJson('cgi-bin/kf/send_msg_on_event', $params); + } +} diff --git a/vendor/overtrue/wechat/src/Work/Kf/ServiceProvider.php b/vendor/overtrue/wechat/src/Work/Kf/ServiceProvider.php new file mode 100644 index 0000000..5bd3b9f --- /dev/null +++ b/vendor/overtrue/wechat/src/Work/Kf/ServiceProvider.php @@ -0,0 +1,43 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Work\Kf; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +/** + * Class ServiceProvider. + * + * @package EasyWeChat\Work\Kf + * + * @author 读心印 + */ +class ServiceProvider implements ServiceProviderInterface +{ + /** + * {@inheritdoc}. + */ + public function register(Container $app) + { + $app['kf_account'] = function ($app) { + return new AccountClient($app); + }; + + $app['kf_servicer'] = function ($app) { + return new ServicerClient($app); + }; + + $app['kf_message'] = function ($app) { + return new MessageClient($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/Work/Kf/ServicerClient.php b/vendor/overtrue/wechat/src/Work/Kf/ServicerClient.php new file mode 100644 index 0000000..90cba0b --- /dev/null +++ b/vendor/overtrue/wechat/src/Work/Kf/ServicerClient.php @@ -0,0 +1,91 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Work\Kf; + +use EasyWeChat\Kernel\BaseClient; + +/** + * Class ServicerClient. + * + * @package EasyWeChat\Work\Kf + * + * @author 读心印 + */ +class ServicerClient extends BaseClient +{ + /** + * 添加接待人员. + * + * @see https://open.work.weixin.qq.com/api/doc/90000/90135/94646 + * + * @param string $openKfId + * @param array $userIds + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function add(string $openKfId, array $userIds) + { + $params = [ + 'open_kfid' => $openKfId, + 'userid_list' => $userIds + ]; + + return $this->httpPostJson('cgi-bin/kf/servicer/add', $params); + } + + /** + * 删除接待人员. + * + * @see https://open.work.weixin.qq.com/api/doc/90000/90135/94647 + * + * @param string $openKfId + * @param array $userIds + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function del(string $openKfId, array $userIds) + { + $params = [ + 'open_kfid' => $openKfId, + 'userid_list' => $userIds + ]; + + return $this->httpPostJson('cgi-bin/kf/servicer/del', $params); + } + + /** + * 获取接待人员列表. + * + * @see https://open.work.weixin.qq.com/api/doc/90000/90135/94645 + * + * @param string $openKfId + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function list(string $openKfId) + { + $params = [ + 'open_kfid' => $openKfId + ]; + + return $this->httpGet('cgi-bin/kf/servicer/list', $params); + } +} diff --git a/vendor/overtrue/wechat/src/Work/Live/Client.php b/vendor/overtrue/wechat/src/Work/Live/Client.php new file mode 100644 index 0000000..4861731 --- /dev/null +++ b/vendor/overtrue/wechat/src/Work/Live/Client.php @@ -0,0 +1,84 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Work\Live; + +use EasyWeChat\Kernel\BaseClient; + +/** + * Class Client. + * + * @author arthasking + */ +class Client extends BaseClient +{ + /** + * 获取成员直播ID列表 + * + * @see https://work.weixin.qq.com/api/doc/90000/90135/92735 + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function getUserLivingId(string $userId, int $beginTime, int $endTime, string $nextKey = '0', int $limit = 100) + { + $params = [ + 'userid' => $userId, + 'begin_time' => $beginTime, + 'end_time' => $endTime, + 'next_key' => $nextKey, + 'limit' => $limit + ]; + + return $this->httpPostJson('cgi-bin/living/get_user_livingid', $params); + } + + /** + * 获取直播详情 + * + * @see https://work.weixin.qq.com/api/doc/90000/90135/92734 + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function getLiving(string $livingId) + { + $params = [ + 'livingid' => $livingId, + ]; + + return $this->httpGet('cgi-bin/living/get_living_info', $params); + } + + /** + * 获取看直播统计 + * + * @see https://work.weixin.qq.com/api/doc/90000/90135/92736 + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function getWatchStat(string $livingId, string $nextKey = '0') + { + $params = [ + 'livingid' => $livingId, + 'next_key' => $nextKey, + ]; + + return $this->httpPostJson('cgi-bin/living/get_watch_stat', $params); + } +} diff --git a/vendor/overtrue/wechat/src/Work/Live/ServiceProvider.php b/vendor/overtrue/wechat/src/Work/Live/ServiceProvider.php new file mode 100644 index 0000000..bb12eb3 --- /dev/null +++ b/vendor/overtrue/wechat/src/Work/Live/ServiceProvider.php @@ -0,0 +1,33 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Work\Live; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +/** + * Class ServiceProvider. + * + * @author arthasking + */ +class ServiceProvider implements ServiceProviderInterface +{ + /** + * {@inheritdoc}. + */ + public function register(Container $app) + { + $app['live'] = function ($app) { + return new Client($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/Work/Media/Client.php b/vendor/overtrue/wechat/src/Work/Media/Client.php new file mode 100644 index 0000000..ba81e7f --- /dev/null +++ b/vendor/overtrue/wechat/src/Work/Media/Client.php @@ -0,0 +1,173 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Work\Media; + +use EasyWeChat\Kernel\BaseClient; +use EasyWeChat\Kernel\Http\StreamResponse; + +/** + * Class Client. + * + * @author mingyoung + */ +class Client extends BaseClient +{ + /** + * Get media. + * + * @param string $mediaId + * + * @return array|\EasyWeChat\Kernel\Http\Response|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function get(string $mediaId) + { + return $this->getResources($mediaId, 'cgi-bin/media/get'); + } + + /** + * Upload Image. + * + * @param string $path + * @param array $form + * + * @return mixed + */ + public function uploadImage(string $path, array $form = []) + { + return $this->upload('image', $path, $form); + } + + /** + * Upload Voice. + * + * @param string $path + * @param array $form + * + * @return mixed + */ + public function uploadVoice(string $path, array $form = []) + { + return $this->upload('voice', $path, $form); + } + + /** + * Upload Video. + * + * @param string $path + * @param array $form + * + * @return mixed + */ + public function uploadVideo(string $path, array $form = []) + { + return $this->upload('video', $path, $form); + } + + /** + * Upload File. + * + * @param string $path + * @param array $form + * + * @return mixed + */ + public function uploadFile(string $path, array $form = []) + { + return $this->upload('file', $path, $form); + } + + /** + * Upload media. + * + * @param string $type + * @param string $path + * @param array $form + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function upload(string $type, string $path, array $form = []) + { + $files = [ + 'media' => $path, + ]; + + return $this->httpUpload('cgi-bin/media/upload', $files, $form, compact('type')); + } + + /** + * Upload permanently valid images + * + * @see https://work.weixin.qq.com/api/doc/90000/90135/90256 + * @param string $path + * @param array $form + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function uploadImg(string $path, array $form = []) + { + $files = [ + 'media' => $path, + ]; + + return $this->httpUpload('cgi-bin/media/uploadimg', $files, $form); + } + + + /** + * Get HD voice material + * + * @see https://work.weixin.qq.com/api/doc/90000/90135/90255 + * @param string $mediaId + * + * @return array|\EasyWeChat\Kernel\Http\Response|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function getHdVoice(string $mediaId) + { + return $this->getResources($mediaId, 'cgi-bin/media/get/jssdk'); + } + + /** + * @param string $mediaId + * @param string $uri + * + * @return array|\EasyWeChat\Kernel\Http\Response|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + protected function getResources(string $mediaId, string $uri) + { + $response = $this->requestRaw($uri, 'GET', [ + 'query' => [ + 'media_id' => $mediaId, + ], + ]); + + if (false !== stripos($response->getHeaderLine('Content-Type'), 'text/plain')) { + return $this->castResponseToType($response, $this->app['config']->get('response_type')); + } + + return StreamResponse::buildFromPsrResponse($response); + } +} diff --git a/vendor/overtrue/wechat/src/Work/Media/ServiceProvider.php b/vendor/overtrue/wechat/src/Work/Media/ServiceProvider.php new file mode 100644 index 0000000..450d156 --- /dev/null +++ b/vendor/overtrue/wechat/src/Work/Media/ServiceProvider.php @@ -0,0 +1,28 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Work\Media; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +class ServiceProvider implements ServiceProviderInterface +{ + /** + * {@inheritdoc}. + */ + public function register(Container $app) + { + $app['media'] = function ($app) { + return new Client($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/Work/Menu/Client.php b/vendor/overtrue/wechat/src/Work/Menu/Client.php new file mode 100644 index 0000000..e57a3a1 --- /dev/null +++ b/vendor/overtrue/wechat/src/Work/Menu/Client.php @@ -0,0 +1,61 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Work\Menu; + +use EasyWeChat\Kernel\BaseClient; + +/** + * Class Client. + * + * @author mingyoung + */ +class Client extends BaseClient +{ + /** + * Get menu. + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function get() + { + return $this->httpGet('cgi-bin/menu/get', ['agentid' => $this->app['config']['agent_id']]); + } + + /** + * Create menu for the given agent. + * + * @param array $data + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function create(array $data) + { + return $this->httpPostJson('cgi-bin/menu/create', $data, ['agentid' => $this->app['config']['agent_id']]); + } + + /** + * Delete menu. + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function delete() + { + return $this->httpGet('cgi-bin/menu/delete', ['agentid' => $this->app['config']['agent_id']]); + } +} diff --git a/vendor/overtrue/wechat/src/Work/Menu/ServiceProvider.php b/vendor/overtrue/wechat/src/Work/Menu/ServiceProvider.php new file mode 100644 index 0000000..02c4290 --- /dev/null +++ b/vendor/overtrue/wechat/src/Work/Menu/ServiceProvider.php @@ -0,0 +1,33 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Work\Menu; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +/** + * Class ServiceProvider. + * + * @author mingyoung + */ +class ServiceProvider implements ServiceProviderInterface +{ + /** + * {@inheritdoc}. + */ + public function register(Container $app) + { + $app['menu'] = function ($app) { + return new Client($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/Work/Message/Client.php b/vendor/overtrue/wechat/src/Work/Message/Client.php new file mode 100644 index 0000000..fff1cbe --- /dev/null +++ b/vendor/overtrue/wechat/src/Work/Message/Client.php @@ -0,0 +1,104 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Work\Message; + +use EasyWeChat\Kernel\BaseClient; + +/** + * Class Client. + * + * @author mingyoung + */ +class Client extends BaseClient +{ + /** + * @param string|\EasyWeChat\Kernel\Messages\Message $message + * + * @return \EasyWeChat\Work\Message\Messenger + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + */ + public function message($message) + { + return (new Messenger($this))->message($message); + } + + /** + * @param array $message + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function send(array $message) + { + return $this->httpPostJson('cgi-bin/message/send', $message); + } + + /** + * 更新任务卡片消息状态 + * + * @see https://open.work.weixin.qq.com/api/doc/90000/90135/91579 + * + * @param array $userids + * @param int $agentId + * @param string $taskId + * @param string $replaceName + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + * + */ + public function updateTaskcard(array $userids, int $agentId, string $taskId, string $replaceName = '已收到') + { + $params = [ + 'userids' => $userids, + 'agentid' => $agentId, + 'task_id' => $taskId, + 'replace_name' => $replaceName + ]; + + return $this->httpPostJson('cgi-bin/message/update_taskcard', $params); + } + + /** + * * 更新模版卡片消息状态 + * + * @see https://developer.work.weixin.qq.com/document/path/94888 + * + * @param array $userids + * @param int $agentId + * @param string $responseCode + * @param string $replaceName + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function updateTemplateCard(array $userids, int $agentId, string $responseCode, string $replaceName = '已收到') + { + $params = [ + 'userids' => $userids, + 'agentid' => $agentId, + 'response_code' => $responseCode, + 'button' => [ + 'replace_name' => $replaceName + ] + ]; + + return $this->httpPostJson('cgi-bin/message/update_template_card', $params); + } +} diff --git a/vendor/overtrue/wechat/src/Work/Message/Messenger.php b/vendor/overtrue/wechat/src/Work/Message/Messenger.php new file mode 100644 index 0000000..b5e21b4 --- /dev/null +++ b/vendor/overtrue/wechat/src/Work/Message/Messenger.php @@ -0,0 +1,216 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Work\Message; + +use EasyWeChat\Kernel\Exceptions\InvalidArgumentException; +use EasyWeChat\Kernel\Exceptions\RuntimeException; +use EasyWeChat\Kernel\Messages\Message; +use EasyWeChat\Kernel\Messages\Text; +use EasyWeChat\Kernel\Support\Arr; + +/** + * Class MessageBuilder. + * + * @author overtrue + */ +class Messenger +{ + /** + * @var \EasyWeChat\Kernel\Messages\Message; + */ + protected $message; + + /** + * @var array + */ + protected $to = ['touser' => '@all']; + + /** + * @var int + */ + protected $agentId; + + /** + * @var bool + */ + protected $secretive = false; + + /** + * @var \EasyWeChat\Work\Message\Client + */ + protected $client; + + /** + * MessageBuilder constructor. + * + * @param \EasyWeChat\Work\Message\Client $client + */ + public function __construct(Client $client) + { + $this->client = $client; + } + + /** + * Set message to send. + * + * @param string|Message $message + * + * @return \EasyWeChat\Work\Message\Messenger + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + */ + public function message($message) + { + if (is_string($message) || is_numeric($message)) { + $message = new Text($message); + } + + if (!($message instanceof Message)) { + throw new InvalidArgumentException('Invalid message.'); + } + + $this->message = $message; + + return $this; + } + + /** + * @param int $agentId + * + * @return \EasyWeChat\Work\Message\Messenger + */ + public function ofAgent(int $agentId) + { + $this->agentId = $agentId; + + return $this; + } + + /** + * @param array|string $userIds + * + * @return \EasyWeChat\Work\Message\Messenger + */ + public function toUser($userIds) + { + return $this->setRecipients($userIds, 'touser'); + } + + /** + * @param array|string $partyIds + * + * @return \EasyWeChat\Work\Message\Messenger + */ + public function toParty($partyIds) + { + return $this->setRecipients($partyIds, 'toparty'); + } + + /** + * @param array|string $tagIds + * + * @return \EasyWeChat\Work\Message\Messenger + */ + public function toTag($tagIds) + { + return $this->setRecipients($tagIds, 'totag'); + } + + /** + * Keep secret. + * + * @return \EasyWeChat\Work\Message\Messenger + */ + public function secretive() + { + $this->secretive = true; + + return $this; + } + + /** + * verify recipient is '@all' or not + * + * @return bool + */ + protected function isBroadcast(): bool + { + return Arr::get($this->to, 'touser') === '@all'; + } + + /** + * @param array|string $ids + * @param string $key + * + * @return \EasyWeChat\Work\Message\Messenger + */ + protected function setRecipients($ids, string $key): self + { + if (is_array($ids)) { + $ids = implode('|', $ids); + } + + $this->to = $this->isBroadcast() ? [$key => $ids] : array_merge($this->to, [$key => $ids]); + + return $this; + } + + /** + * @param \EasyWeChat\Kernel\Messages\Message|string|null $message + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\RuntimeException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException + */ + public function send($message = null) + { + if ($message) { + $this->message($message); + } + + if (empty($this->message)) { + throw new RuntimeException('No message to send.'); + } + + if (is_null($this->agentId)) { + throw new RuntimeException('No agentid specified.'); + } + + $message = $this->message->transformForJsonRequest(array_merge([ + 'agentid' => $this->agentId, + 'safe' => intval($this->secretive), + ], $this->to)); + + $this->secretive = false; + + return $this->client->send($message); + } + + /** + * Return property. + * + * @param string $property + * + * @return mixed + * + * @throws InvalidArgumentException + */ + public function __get($property) + { + if (property_exists($this, $property)) { + return $this->$property; + } + + throw new InvalidArgumentException(sprintf('No property named "%s"', $property)); + } +} diff --git a/vendor/overtrue/wechat/src/Work/Message/ServiceProvider.php b/vendor/overtrue/wechat/src/Work/Message/ServiceProvider.php new file mode 100644 index 0000000..ea14f9e --- /dev/null +++ b/vendor/overtrue/wechat/src/Work/Message/ServiceProvider.php @@ -0,0 +1,43 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Work\Message; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +/** + * Class ServiceProvider. + * + * @author mingyoung + */ +class ServiceProvider implements ServiceProviderInterface +{ + /** + * {@inheritdoc}. + */ + public function register(Container $app) + { + $app['message'] = function ($app) { + return new Client($app); + }; + + $app['messenger'] = function ($app) { + $messenger = new Messenger($app['message']); + + if (is_numeric($app['config']['agent_id'])) { + $messenger->ofAgent($app['config']['agent_id']); + } + + return $messenger; + }; + } +} diff --git a/vendor/overtrue/wechat/src/Work/MiniProgram/Application.php b/vendor/overtrue/wechat/src/Work/MiniProgram/Application.php new file mode 100644 index 0000000..aa290cd --- /dev/null +++ b/vendor/overtrue/wechat/src/Work/MiniProgram/Application.php @@ -0,0 +1,44 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Work\MiniProgram; + +use EasyWeChat\MiniProgram\Application as MiniProgram; +use EasyWeChat\Work\Auth\AccessToken; +use EasyWeChat\Work\MiniProgram\Auth\Client; + +/** + * Class Application. + * + * @author Caikeal + * + * @property \EasyWeChat\Work\MiniProgram\Auth\Client $auth + */ +class Application extends MiniProgram +{ + /** + * Application constructor. + * + * @param array $config + * @param array $prepends + */ + public function __construct(array $config = [], array $prepends = []) + { + parent::__construct($config, $prepends + [ + 'access_token' => function ($app) { + return new AccessToken($app); + }, + 'auth' => function ($app) { + return new Client($app); + }, + ]); + } +} diff --git a/vendor/overtrue/wechat/src/Work/MiniProgram/Auth/Client.php b/vendor/overtrue/wechat/src/Work/MiniProgram/Auth/Client.php new file mode 100644 index 0000000..ac9baff --- /dev/null +++ b/vendor/overtrue/wechat/src/Work/MiniProgram/Auth/Client.php @@ -0,0 +1,39 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Work\MiniProgram\Auth; + +use EasyWeChat\Kernel\BaseClient; + +/** + * Class Client. + */ +class Client extends BaseClient +{ + /** + * Get session info by code. + * + * @param string $code + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function session(string $code) + { + $params = [ + 'js_code' => $code, + 'grant_type' => 'authorization_code', + ]; + + return $this->httpGet('cgi-bin/miniprogram/jscode2session', $params); + } +} diff --git a/vendor/overtrue/wechat/src/Work/Mobile/Auth/Client.php b/vendor/overtrue/wechat/src/Work/Mobile/Auth/Client.php new file mode 100644 index 0000000..357339b --- /dev/null +++ b/vendor/overtrue/wechat/src/Work/Mobile/Auth/Client.php @@ -0,0 +1,40 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Work\Mobile\Auth; + +use EasyWeChat\Kernel\BaseClient; + +/** + * Class Client. + */ +class Client extends BaseClient +{ + /** + * 通过code获取用户信息. + * + * @see https://open.work.weixin.qq.com/api/doc/90000/90136/91193 + * + * @param string $code + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function getUser(string $code) + { + $params = [ + 'code' => $code, + ]; + + return $this->httpGet('cgi-bin/user/getuserinfo', $params); + } +} diff --git a/vendor/overtrue/wechat/src/Work/Mobile/ServiceProvider.php b/vendor/overtrue/wechat/src/Work/Mobile/ServiceProvider.php new file mode 100644 index 0000000..eb26844 --- /dev/null +++ b/vendor/overtrue/wechat/src/Work/Mobile/ServiceProvider.php @@ -0,0 +1,36 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Work\Mobile; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; +use EasyWeChat\Work\Mobile\Auth\Client; + +/** + * ServiceProvider. + * + * @author 读心印 + */ +class ServiceProvider implements ServiceProviderInterface +{ + protected $app; + + /** + * @param Container $app + */ + public function register(Container $app) + { + $app['mobile'] = function ($app) { + return new Client($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/Work/MsgAudit/Client.php b/vendor/overtrue/wechat/src/Work/MsgAudit/Client.php new file mode 100644 index 0000000..8192ab2 --- /dev/null +++ b/vendor/overtrue/wechat/src/Work/MsgAudit/Client.php @@ -0,0 +1,85 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Work\MsgAudit; + +use EasyWeChat\Kernel\BaseClient; + +/** + * Class Client. + * + * @author ZengJJ + */ +class Client extends BaseClient +{ + /** + * @param string|null $type + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException|\GuzzleHttp\Exception\GuzzleException + */ + public function getPermitUsers(string $type = null) + { + return $this->httpPostJson('cgi-bin/msgaudit/get_permit_user_list', (empty($type) ? [] : ['type' => $type])); + } + + /** + * @param array $info 数组,格式: [[userid, exteranalopenid], [userid, exteranalopenid]] + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function getSingleAgreeStatus(array $info) + { + $params = [ + 'info' => $info + ]; + + return $this->httpPostJson('cgi-bin/msgaudit/check_single_agree', $params); + } + + /** + * @param string $roomId + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function getRoomAgreeStatus(string $roomId) + { + $params = [ + 'roomid' => $roomId + ]; + + return $this->httpPostJson('cgi-bin/msgaudit/check_room_agree', $params); + } + + /** + * @param string $roomId + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function getRoom(string $roomId) + { + $params = [ + 'roomid' => $roomId + ]; + + return $this->httpPostJson('cgi-bin/msgaudit/groupchat/get', $params); + } +} diff --git a/vendor/overtrue/wechat/src/Work/MsgAudit/ServiceProvider.php b/vendor/overtrue/wechat/src/Work/MsgAudit/ServiceProvider.php new file mode 100644 index 0000000..e24c8b3 --- /dev/null +++ b/vendor/overtrue/wechat/src/Work/MsgAudit/ServiceProvider.php @@ -0,0 +1,33 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Work\MsgAudit; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +/** + * Class ServiceProvider. + * + * @author ZengJJ + */ +class ServiceProvider implements ServiceProviderInterface +{ + /** + * {@inheritdoc}. + */ + public function register(Container $app) + { + $app['msg_audit'] = function ($app) { + return new Client($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/Work/OA/Client.php b/vendor/overtrue/wechat/src/Work/OA/Client.php new file mode 100644 index 0000000..1adc6ed --- /dev/null +++ b/vendor/overtrue/wechat/src/Work/OA/Client.php @@ -0,0 +1,339 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Work\OA; + +use EasyWeChat\Kernel\BaseClient; + +/** + * Class Client. + * + * @author mingyoung + */ +class Client extends BaseClient +{ + /** + * Get the checkin data. + * + * @param int $startTime + * @param int $endTime + * @param array $userList + * @param int $type + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function checkinRecords(int $startTime, int $endTime, array $userList, int $type = 3) + { + $params = [ + 'opencheckindatatype' => $type, + 'starttime' => $startTime, + 'endtime' => $endTime, + 'useridlist' => $userList, + ]; + + return $this->httpPostJson('cgi-bin/checkin/getcheckindata', $params); + } + + /** + * Get the checkin rules. + * + * @param int $datetime + * @param array $userList + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function checkinRules(int $datetime, array $userList) + { + $params = [ + 'datetime' => $datetime, + 'useridlist' => $userList, + ]; + + return $this->httpPostJson('cgi-bin/checkin/getcheckinoption', $params); + } + + /** + * 获取企业所有打卡规则. + * + * @see https://open.work.weixin.qq.com/api/doc/90000/90135/93384 + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + * + * @author 读心印 + */ + public function corpCheckinRules() + { + return $this->httpPostJson('cgi-bin/checkin/getcorpcheckinoption'); + } + + /** + * 获取打卡日报数据. + * + * @sse https://open.work.weixin.qq.com/api/doc/90000/90135/93374 + * + * @param int $startTime + * @param int $endTime + * @param array $userids + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + * + * @author 读心印 + */ + public function checkinDayData(int $startTime, int $endTime, array $userids) + { + $params = [ + 'starttime' => $startTime, + 'endtime' => $endTime, + 'useridlist' => $userids, + ]; + + return $this->httpPostJson('cgi-bin/checkin/getcheckin_daydata', $params); + } + + /** + * 获取打卡日报数据. + * + * @sse https://open.work.weixin.qq.com/api/doc/90000/90135/93387 + * + * @param int $startTime + * @param int $endTime + * @param array $userids + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + * + * @author 读心印 + */ + public function checkinMonthData(int $startTime, int $endTime, array $userids) + { + $params = [ + 'starttime' => $startTime, + 'endtime' => $endTime, + 'useridlist' => $userids, + ]; + + return $this->httpPostJson('cgi-bin/checkin/getcheckin_monthdata', $params); + } + + /** + * 获取打卡人员排班信息. + * + * @sse https://open.work.weixin.qq.com/api/doc/90000/90135/93380 + * + * @param int $startTime + * @param int $endTime + * @param array $userids + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + * + * @author 读心印 + */ + public function checkinSchedus(int $startTime, int $endTime, array $userids) + { + $params = [ + 'starttime' => $startTime, + 'endtime' => $endTime, + 'useridlist' => $userids, + ]; + + return $this->httpPostJson('cgi-bin/checkin/getcheckinschedulist', $params); + } + + /** + * 为打卡人员排班. + * + * @sse https://open.work.weixin.qq.com/api/doc/90000/90135/93385 + * + * @param array $params + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + * + * @author 读心印 + */ + public function setCheckinSchedus(array $params) + { + return $this->httpPostJson('cgi-bin/checkin/setcheckinschedulist', $params); + } + + /** + * 录入打卡人员人脸信息. + * + * @sse https://open.work.weixin.qq.com/api/doc/90000/90135/93378 + * + * @param string $userid + * @param string $userface + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + * + * @author 读心印 + */ + public function addCheckinUserface(string $userid, string $userface) + { + $params = [ + 'userid' => $userid, + 'userface' => $userface + ]; + + return $this->httpPostJson('cgi-bin/checkin/addcheckinuserface', $params); + } + + /** + * Get approval template details. + * + * @param string $templateId + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function approvalTemplate(string $templateId) + { + $params = [ + 'template_id' => $templateId, + ]; + + return $this->httpPostJson('cgi-bin/oa/gettemplatedetail', $params); + } + + /** + * Submit an application for approval. + * + * @param array $data + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function createApproval(array $data) + { + return $this->httpPostJson('cgi-bin/oa/applyevent', $data); + } + + /** + * Get Approval number. + * + * @param int $startTime + * @param int $endTime + * @param int $nextCursor + * @param int $size + * @param array $filters + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function approvalNumbers(int $startTime, int $endTime, int $nextCursor = 0, int $size = 100, array $filters = []) + { + $params = [ + 'starttime' => $startTime, + 'endtime' => $endTime, + 'cursor' => $nextCursor, + 'size' => $size > 100 ? 100 : $size, + 'filters' => $filters, + ]; + + return $this->httpPostJson('cgi-bin/oa/getapprovalinfo', $params); + } + + /** + * Get approval detail. + * + * @param int $number + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function approvalDetail(int $number) + { + $params = [ + 'sp_no' => $number, + ]; + + return $this->httpPostJson('cgi-bin/oa/getapprovaldetail', $params); + } + + /** + * Get Approval Data. + * + * @param int $startTime + * @param int $endTime + * @param int $nextNumber + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function approvalRecords(int $startTime, int $endTime, int $nextNumber = null) + { + $params = [ + 'starttime' => $startTime, + 'endtime' => $endTime, + 'next_spnum' => $nextNumber, + ]; + + return $this->httpPostJson('cgi-bin/corp/getapprovaldata', $params); + } + + + /** + * 获取公费电话拨打记录. + * + * @param int $startTime + * @param int $endTime + * @param int $offset + * @param int $limit + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function dialRecords(int $startTime, int $endTime, int $offset = 0, $limit = 100) + { + $params = [ + 'start_time' => $startTime, + 'end_time' => $endTime, + 'offset' => $offset, + 'limit' => $limit + ]; + + return $this->httpPostJson('cgi-bin/dial/get_dial_record', $params); + } +} diff --git a/vendor/overtrue/wechat/src/Work/OA/ServiceProvider.php b/vendor/overtrue/wechat/src/Work/OA/ServiceProvider.php new file mode 100644 index 0000000..5d389c2 --- /dev/null +++ b/vendor/overtrue/wechat/src/Work/OA/ServiceProvider.php @@ -0,0 +1,33 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Work\OA; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +/** + * Class ServiceProvider. + * + * @author mingyoung + */ +class ServiceProvider implements ServiceProviderInterface +{ + /** + * {@inheritdoc}. + */ + public function register(Container $app) + { + $app['oa'] = function ($app) { + return new Client($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/Work/OAuth/Manager.php b/vendor/overtrue/wechat/src/Work/OAuth/Manager.php new file mode 100644 index 0000000..e0d4b16 --- /dev/null +++ b/vendor/overtrue/wechat/src/Work/OAuth/Manager.php @@ -0,0 +1,51 @@ +config = $config; + $this->app = $app; + } + + public function redirect($redirect = null) + { + return new RedirectResponse($this->getProvider()->redirect($redirect)); + } + + public function user() + { + $this->getProvider()->withApiAccessToken($this->app['access_token']->getToken()['access_token']); + + return $this->getProvider()->userFromCode($this->app->request->get('code')); + } + + protected function getProvider(): ProviderInterface + { + return $this->provider ?? $this->provider = (new SocialiteManager($this->config))->create('wework'); + } + + public function __call($name, $arguments) + { + return \call_user_func_array([$this->getProvider(), $name], $arguments); + } +} diff --git a/vendor/overtrue/wechat/src/Work/OAuth/ServiceProvider.php b/vendor/overtrue/wechat/src/Work/OAuth/ServiceProvider.php new file mode 100644 index 0000000..b46af8f --- /dev/null +++ b/vendor/overtrue/wechat/src/Work/OAuth/ServiceProvider.php @@ -0,0 +1,64 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Work\OAuth; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +class ServiceProvider implements ServiceProviderInterface +{ + public function register(Container $app) + { + $app['oauth'] = function ($app) { + $socialite = (new Manager([ + 'wework' => [ + 'base_url' => $app['config']['http']['base_uri'], + 'client_id' => $app['config']['corp_id'], + 'client_secret' => null, + 'corp_id' => $app['config']['corp_id'], + 'corp_secret' => $app['config']['secret'], + 'redirect' => $this->prepareCallbackUrl($app), + ], + ], $app)); + + $scopes = (array) $app['config']->get('oauth.scopes', ['snsapi_base']); + + if (!empty($scopes)) { + $socialite->scopes($scopes); + } else { + $socialite->setAgentId($app['config']['agent_id']); + } + + return $socialite; + }; + } + + /** + * Prepare the OAuth callback url for wechat. + * + * @param Container $app + * + * @return string + */ + private function prepareCallbackUrl($app) + { + $callback = $app['config']->get('oauth.callback'); + + if (0 === stripos($callback, 'http')) { + return $callback; + } + + $baseUrl = $app['request']->getSchemeAndHttpHost(); + + return $baseUrl.'/'.ltrim($callback, '/'); + } +} diff --git a/vendor/overtrue/wechat/src/Work/Schedule/Client.php b/vendor/overtrue/wechat/src/Work/Schedule/Client.php new file mode 100644 index 0000000..ba41ddb --- /dev/null +++ b/vendor/overtrue/wechat/src/Work/Schedule/Client.php @@ -0,0 +1,104 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Work\Schedule; + +use EasyWeChat\Kernel\BaseClient; + +/** + * Class Client. + * + * @author her-cat + */ +class Client extends BaseClient +{ + /** + * Add a schedule. + * + * @param array $schedule + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function add(array $schedule) + { + return $this->httpPostJson('cgi-bin/oa/schedule/add', compact('schedule')); + } + + /** + * Update the schedule. + * + * @param string $id + * @param array $schedule + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function update(string $id, array $schedule) + { + $schedule += ['schedule_id' => $id]; + + return $this->httpPostJson('cgi-bin/oa/schedule/update', compact('schedule')); + } + + /** + * Get one or more schedules. + * + * @param string|array $ids + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function get($ids) + { + return $this->httpPostJson('cgi-bin/oa/schedule/get', ['schedule_id_list' => (array) $ids]); + } + + /** + * Get the list of schedules under a calendar. + * + * @param string $calendarId + * @param int $offset + * @param int $limit + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function getByCalendar(string $calendarId, int $offset = 0, int $limit = 500) + { + $data = compact('offset', 'limit') + ['cal_id' => $calendarId]; + + return $this->httpPostJson('cgi-bin/oa/schedule/get_by_calendar', $data); + } + + /** + * Delete a schedule. + * + * @param string $id + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function delete(string $id) + { + return $this->httpPostJson('cgi-bin/oa/schedule/del', ['schedule_id' => $id]); + } +} diff --git a/vendor/overtrue/wechat/src/Work/Schedule/ServiceProvider.php b/vendor/overtrue/wechat/src/Work/Schedule/ServiceProvider.php new file mode 100644 index 0000000..9bdd17b --- /dev/null +++ b/vendor/overtrue/wechat/src/Work/Schedule/ServiceProvider.php @@ -0,0 +1,33 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Work\Schedule; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +/** + * Class ServiceProvider. + * + * @author her-cat + */ +class ServiceProvider implements ServiceProviderInterface +{ + /** + * {@inheritdoc} + */ + public function register(Container $app) + { + $app['schedule'] = function ($app) { + return new Client($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/Work/Server/Guard.php b/vendor/overtrue/wechat/src/Work/Server/Guard.php new file mode 100644 index 0000000..b77c6c1 --- /dev/null +++ b/vendor/overtrue/wechat/src/Work/Server/Guard.php @@ -0,0 +1,48 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Work\Server; + +use EasyWeChat\Kernel\ServerGuard; + +/** + * Class Guard. + * + * @author overtrue + */ +class Guard extends ServerGuard +{ + /** + * @return $this + */ + public function validate() + { + return $this; + } + + /** + * Check the request message safe mode. + * + * @return bool + */ + protected function isSafeMode(): bool + { + return true; + } + + /** + * @return bool + */ + protected function shouldReturnRawResponse(): bool + { + return !is_null($this->app['request']->get('echostr')); + } +} diff --git a/vendor/overtrue/wechat/src/Work/Server/Handlers/EchoStrHandler.php b/vendor/overtrue/wechat/src/Work/Server/Handlers/EchoStrHandler.php new file mode 100644 index 0000000..52bf8d3 --- /dev/null +++ b/vendor/overtrue/wechat/src/Work/Server/Handlers/EchoStrHandler.php @@ -0,0 +1,60 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Work\Server\Handlers; + +use EasyWeChat\Kernel\Contracts\EventHandlerInterface; +use EasyWeChat\Kernel\Decorators\FinallyResult; +use EasyWeChat\Kernel\ServiceContainer; + +/** + * Class EchoStrHandler. + * + * @author overtrue + */ +class EchoStrHandler implements EventHandlerInterface +{ + /** + * @var ServiceContainer + */ + protected $app; + + /** + * EchoStrHandler constructor. + * + * @param ServiceContainer $app + */ + public function __construct(ServiceContainer $app) + { + $this->app = $app; + } + + /** + * @param mixed $payload + * + * @return FinallyResult|null + */ + public function handle($payload = null) + { + if ($decrypted = $this->app['request']->get('echostr')) { + $str = $this->app['encryptor']->decrypt( + $decrypted, + $this->app['request']->get('msg_signature'), + $this->app['request']->get('nonce'), + $this->app['request']->get('timestamp') + ); + + return new FinallyResult($str); + } + + return null; + } +} diff --git a/vendor/overtrue/wechat/src/Work/Server/ServiceProvider.php b/vendor/overtrue/wechat/src/Work/Server/ServiceProvider.php new file mode 100644 index 0000000..8a2fc3e --- /dev/null +++ b/vendor/overtrue/wechat/src/Work/Server/ServiceProvider.php @@ -0,0 +1,46 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Work\Server; + +use EasyWeChat\Kernel\Encryptor; +use EasyWeChat\Work\Server\Handlers\EchoStrHandler; +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +/** + * Class ServiceProvider. + * + * @author overtrue + */ +class ServiceProvider implements ServiceProviderInterface +{ + /** + * {@inheritdoc}. + */ + public function register(Container $app) + { + !isset($app['encryptor']) && $app['encryptor'] = function ($app) { + return new Encryptor( + $app['config']['corp_id'], + $app['config']['token'], + $app['config']['aes_key'] + ); + }; + + !isset($app['server']) && $app['server'] = function ($app) { + $guard = new Guard($app); + $guard->push(new EchoStrHandler($app)); + + return $guard; + }; + } +} diff --git a/vendor/overtrue/wechat/src/Work/User/BatchJobsClient.php b/vendor/overtrue/wechat/src/Work/User/BatchJobsClient.php new file mode 100644 index 0000000..d1e4716 --- /dev/null +++ b/vendor/overtrue/wechat/src/Work/User/BatchJobsClient.php @@ -0,0 +1,94 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Work\User; + +use EasyWeChat\Kernel\BaseClient; + +/** + * Class BatchJobsClient. + * + * @author 读心印 + */ +class BatchJobsClient extends BaseClient +{ + /** + * 增量更新成员. + * + * @see https://open.work.weixin.qq.com/api/doc/90000/90135/90980 + * + * @param array $params + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function batchUpdateUsers(array $params) + { + return $this->httpPostJson('cgi-bin/batch/syncuser', $params); + } + + /** + * 全量覆盖成员. + * + * @see https://open.work.weixin.qq.com/api/doc/90000/90135/90981 + * + * @param array $params + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function batchReplaceUsers(array $params) + { + return $this->httpPostJson('cgi-bin/batch/replaceuser', $params); + } + + /** + * 全量覆盖部门. + * + * @see https://open.work.weixin.qq.com/api/doc/90000/90135/90982 + * + * @param array $params + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function batchReplaceDepartments(array $params) + { + return $this->httpPostJson('cgi-bin/batch/replaceparty', $params); + } + + /** + * 获取异步任务结果. + * + * @see https://open.work.weixin.qq.com/api/doc/90000/90135/93169 + * + * @param string $jobId + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function getJobStatus(string $jobId) + { + $params = [ + 'jobid' => $jobId + ]; + + return $this->httpGet('cgi-bin/batch/getresult', $params); + } +} diff --git a/vendor/overtrue/wechat/src/Work/User/Client.php b/vendor/overtrue/wechat/src/Work/User/Client.php new file mode 100644 index 0000000..9923efd --- /dev/null +++ b/vendor/overtrue/wechat/src/Work/User/Client.php @@ -0,0 +1,315 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Work\User; + +use EasyWeChat\Kernel\BaseClient; +use EasyWeChat\Kernel\Exceptions\InvalidArgumentException; + +/** + * Class Client. + * + * @author mingyoung + */ +class Client extends BaseClient +{ + /** + * Create a user. + * + * @param array $data + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function create(array $data) + { + return $this->httpPostJson('cgi-bin/user/create', $data); + } + + /** + * Update an exist user. + * + * @param string $id + * @param array $data + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function update(string $id, array $data) + { + return $this->httpPostJson('cgi-bin/user/update', array_merge(['userid' => $id], $data)); + } + + /** + * Delete a user. + * + * @param string|array $userId + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function delete($userId) + { + if (is_array($userId)) { + return $this->batchDelete($userId); + } + + return $this->httpGet('cgi-bin/user/delete', ['userid' => $userId]); + } + + /** + * Batch delete users. + * + * @param array $userIds + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function batchDelete(array $userIds) + { + return $this->httpPostJson('cgi-bin/user/batchdelete', ['useridlist' => $userIds]); + } + + /** + * Get user. + * + * @param string $userId + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function get(string $userId) + { + return $this->httpGet('cgi-bin/user/get', ['userid' => $userId]); + } + + /** + * Get simple user list. + * + * @param int $departmentId + * @param bool $fetchChild + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function getDepartmentUsers(int $departmentId, bool $fetchChild = false) + { + $params = [ + 'department_id' => $departmentId, + 'fetch_child' => (int) $fetchChild, + ]; + + return $this->httpGet('cgi-bin/user/simplelist', $params); + } + + /** + * Get user list. + * + * @param int $departmentId + * @param bool $fetchChild + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function getDetailedDepartmentUsers(int $departmentId, bool $fetchChild = false) + { + $params = [ + 'department_id' => $departmentId, + 'fetch_child' => (int) $fetchChild, + ]; + + return $this->httpGet('cgi-bin/user/list', $params); + } + + /** + * Convert userId to openid. + * + * @param string $userId + * @param int|null $agentId + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function userIdToOpenid(string $userId, int $agentId = null) + { + $params = [ + 'userid' => $userId, + 'agentid' => $agentId, + ]; + + return $this->httpPostJson('cgi-bin/user/convert_to_openid', $params); + } + + /** + * Convert openid to userId. + * + * @param string $openid + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function openidToUserId(string $openid) + { + $params = [ + 'openid' => $openid, + ]; + + return $this->httpPostJson('cgi-bin/user/convert_to_userid', $params); + } + + /** + * Convert mobile to userId. + * + * @param string $mobile + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function mobileToUserId(string $mobile) + { + $params = [ + 'mobile' => $mobile, + ]; + + return $this->httpPostJson('cgi-bin/user/getuserid', $params); + } + + /** + * @param string $userId + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function accept(string $userId) + { + $params = [ + 'userid' => $userId, + ]; + + return $this->httpGet('cgi-bin/user/authsucc', $params); + } + + /** + * Batch invite users. + * + * @param array $params + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function invite(array $params) + { + return $this->httpPostJson('cgi-bin/batch/invite', $params); + } + + /** + * Get invitation QR code. + * + * @param int $sizeType + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws InvalidArgumentException + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function getInvitationQrCode(int $sizeType = 1) + { + if (!\in_array($sizeType, [1, 2, 3, 4], true)) { + throw new InvalidArgumentException('The sizeType must be 1, 2, 3, 4.'); + } + + return $this->httpGet('cgi-bin/corp/get_join_qrcode', ['size_type' => $sizeType]); + } + + /** + * @param string|null $cursor + * @param int $limit + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function getMemberAuthList(?string $cursor = null, int $limit = 1000) + { + return $this->httpPostJson('cgi-bin/user/list_member_auth', [ + 'cursor' => $cursor, + 'limit' => $limit + ]); + } + + /** + * @param string $openUserId + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function checkMemberAuth(string $openUserId) + { + return $this->httpPostJson('cgi-bin/user/check_member_auth', [ + 'open_userid' => $openUserId + ]); + } + + /** + * @param string $selectedTicket + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function getSelectedTicketUserList(string $selectedTicket) + { + return $this->httpPostJson('cgi-bin/user/list_selected_ticket_user', [ + 'selected_ticket' => $selectedTicket + ]); + } + + /** + * userid转换为open_userid + * + * @param array $user_ids + * + * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function userIdToOpenUserId(array $user_ids) + { + return $this->httpPostJson('cgi-bin/batch/userid_to_openuserid', [ + 'userid_list' => $user_ids + ]); + } +} diff --git a/vendor/overtrue/wechat/src/Work/User/LinkedCorpClient.php b/vendor/overtrue/wechat/src/Work/User/LinkedCorpClient.php new file mode 100644 index 0000000..b8595be --- /dev/null +++ b/vendor/overtrue/wechat/src/Work/User/LinkedCorpClient.php @@ -0,0 +1,125 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Work\User; + +use EasyWeChat\Kernel\BaseClient; + +/** + * Class Client. + * + * @author 读心印 + */ +class LinkedCorpClient extends BaseClient +{ + /** + * 获取应用的可见范围. + * + * @see https://open.work.weixin.qq.com/api/doc/90000/90135/93172 + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function getAgentPermissions() + { + return $this->httpPostJson('cgi-bin/linkedcorp/agent/get_perm_list'); + } + + /** + * 获取互联企业成员详细信息. + * + * @see https://open.work.weixin.qq.com/api/doc/90000/90135/93171 + * + * @param string $userId + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function getUser(string $userId) + { + $params = [ + 'userid' => $userId + ]; + + return $this->httpPostJson('cgi-bin/linkedcorp/user/get', $params); + } + + /** + * 获取互联企业部门成员. + * + * @see https://open.work.weixin.qq.com/api/doc/90000/90135/93168 + * + * @param string $departmentId + * @param bool $fetchChild + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function getUsers(string $departmentId, bool $fetchChild = true) + { + $params = [ + 'department_id' => $departmentId, + 'fetch_child' => $fetchChild + ]; + + return $this->httpPostJson('cgi-bin/linkedcorp/user/simplelist', $params); + } + + /** + * 获取互联企业部门成员详情. + * + * @see https://open.work.weixin.qq.com/api/doc/90000/90135/93169 + * + * @param string $departmentId + * @param bool $fetchChild + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function getDetailedUsers(string $departmentId, bool $fetchChild = true) + { + $params = [ + 'department_id' => $departmentId, + 'fetch_child' => $fetchChild + ]; + + return $this->httpPostJson('cgi-bin/linkedcorp/user/list', $params); + } + + /** + * 获取互联企业部门列表. + * + * @see https://open.work.weixin.qq.com/api/doc/90000/90135/93170 + * + * @param string $departmentId + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function getDepartments(string $departmentId) + { + $params = [ + 'department_id' => $departmentId, + ]; + + return $this->httpPostJson('cgi-bin/linkedcorp/department/list', $params); + } +} diff --git a/vendor/overtrue/wechat/src/Work/User/ServiceProvider.php b/vendor/overtrue/wechat/src/Work/User/ServiceProvider.php new file mode 100644 index 0000000..f5cdbc7 --- /dev/null +++ b/vendor/overtrue/wechat/src/Work/User/ServiceProvider.php @@ -0,0 +1,45 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Work\User; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +/** + * Class ServiceProvider. + * + * @author mingyoung + */ +class ServiceProvider implements ServiceProviderInterface +{ + /** + * {@inheritdoc}. + */ + public function register(Container $app) + { + $app['user'] = function ($app) { + return new Client($app); + }; + + $app['tag'] = function ($app) { + return new TagClient($app); + }; + + $app['linked_corp'] = function ($app) { + return new LinkedCorpClient($app); + }; + + $app['batch_jobs'] = function ($app) { + return new BatchJobsClient($app); + }; + } +} diff --git a/vendor/overtrue/wechat/src/Work/User/TagClient.php b/vendor/overtrue/wechat/src/Work/User/TagClient.php new file mode 100644 index 0000000..aae7cf1 --- /dev/null +++ b/vendor/overtrue/wechat/src/Work/User/TagClient.php @@ -0,0 +1,178 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Work\User; + +use EasyWeChat\Kernel\BaseClient; + +/** + * Class TagClient. + * + * @author mingyoung + */ +class TagClient extends BaseClient +{ + /** + * Create tag. + * + * @param string $tagName + * @param int|null $tagId + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function create(string $tagName, int $tagId = null) + { + $params = [ + 'tagname' => $tagName, + 'tagid' => $tagId, + ]; + + return $this->httpPostJson('cgi-bin/tag/create', $params); + } + + /** + * Update tag. + * + * @param int $tagId + * @param string $tagName + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function update(int $tagId, string $tagName) + { + $params = [ + 'tagid' => $tagId, + 'tagname' => $tagName, + ]; + + return $this->httpPostJson('cgi-bin/tag/update', $params); + } + + /** + * Delete tag. + * + * @param int $tagId + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function delete(int $tagId) + { + return $this->httpGet('cgi-bin/tag/delete', ['tagid' => $tagId]); + } + + /** + * @param int $tagId + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function get(int $tagId) + { + return $this->httpGet('cgi-bin/tag/get', ['tagid' => $tagId]); + } + + /** + * @param int $tagId + * @param array $userList + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function tagUsers(int $tagId, array $userList = []) + { + return $this->tagOrUntagUsers('cgi-bin/tag/addtagusers', $tagId, $userList); + } + + /** + * @param int $tagId + * @param array $partyList + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function tagDepartments(int $tagId, array $partyList = []) + { + return $this->tagOrUntagUsers('cgi-bin/tag/addtagusers', $tagId, [], $partyList); + } + + /** + * @param int $tagId + * @param array $userList + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function untagUsers(int $tagId, array $userList = []) + { + return $this->tagOrUntagUsers('cgi-bin/tag/deltagusers', $tagId, $userList); + } + + /** + * @param int $tagId + * @param array $partyList + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + public function untagDepartments(int $tagId, array $partyList = []) + { + return $this->tagOrUntagUsers('cgi-bin/tag/deltagusers', $tagId, [], $partyList); + } + + /** + * @param string $endpoint + * @param int $tagId + * @param array $userList + * @param array $partyList + * + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + */ + protected function tagOrUntagUsers(string $endpoint, int $tagId, array $userList = [], array $partyList = []) + { + $data = [ + 'tagid' => $tagId, + 'userlist' => $userList, + 'partylist' => $partyList, + ]; + + return $this->httpPostJson($endpoint, $data); + } + + /** + * @return mixed + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + */ + public function list() + { + return $this->httpGet('cgi-bin/tag/list'); + } +} diff --git a/vendor/overtrue/wechat/src/Work/Wedrive/Client.php b/vendor/overtrue/wechat/src/Work/Wedrive/Client.php new file mode 100644 index 0000000..317b753 --- /dev/null +++ b/vendor/overtrue/wechat/src/Work/Wedrive/Client.php @@ -0,0 +1,54 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Work\Wedrive; + +use EasyWeChat\Kernel\BaseClient; + +/** + * Class Client + * + * @author lio990527 + */ +class Client extends BaseClient +{ + + /** + * 获取盘专业版信息 + * + * @param string $userid + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + * + * @see https://developer.work.weixin.qq.com/document/path/95856#%E8%8E%B7%E5%8F%96%E7%9B%98%E4%B8%93%E4%B8%9A%E7%89%88%E4%BF%A1%E6%81%AF + */ + public function proInfo($userid) + { + return $this->httpPostJson('cgi-bin/wedrive/mng_pro_info', compact('userid')); + } + + /** + * 获取盘容量信息 + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + * + * @see https://developer.work.weixin.qq.com/document/path/95856#%E8%8E%B7%E5%8F%96%E7%9B%98%E5%AE%B9%E9%87%8F%E4%BF%A1%E6%81%AF + */ + public function capacity() + { + return $this->httpPostJson('cgi-bin/wedrive/mng_capacity'); + } +} diff --git a/vendor/overtrue/wechat/src/Work/Wedrive/FileClient.php b/vendor/overtrue/wechat/src/Work/Wedrive/FileClient.php new file mode 100644 index 0000000..965fb58 --- /dev/null +++ b/vendor/overtrue/wechat/src/Work/Wedrive/FileClient.php @@ -0,0 +1,324 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Work\Wedrive; + +use EasyWeChat\Kernel\BaseClient; +use EasyWeChat\Kernel\Support\Arr; +use GuzzleHttp\Cookie\CookieJar; + +/** + * Class FileClient + * + * @author lio990527 + */ +class FileClient extends BaseClient +{ + /** + * 新建文件/文档 + * + * @param string $userid 操作者userid + * @param string $spaceid 空间spaceid + * @param string $fatherid 父目录fileid, 在根目录时为空间spaceid + * @param int $fileType 文件类型, 1:文件夹 3:文档(文档) 4:文档(表格) 6:文档(幻灯片) + * @param string $fileName 文件名字 + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + * + * @see https://developer.work.weixin.qq.com/document/path/93657#%E6%96%B0%E5%BB%BA%E6%96%87%E4%BB%B6%E6%96%87%E6%A1%A3 + */ + public function create($userid, $spaceid, $fatherid, $fileType, $fileName) + { + $data = [ + 'userid' => $userid, + 'spaceid' => $spaceid, + 'fatherid' => $fatherid, + 'file_type' => $fileType, + 'file_name' => $fileName + ]; + + return $this->httpPostJson('cgi-bin/wedrive/file_create', $data); + } + + /** + * 重命名文件 + * + * @param string $userid 操作人userid + * @param string $fileid 文件id + * @param string $name 新文件名 + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + * + * @see https://developer.work.weixin.qq.com/document/path/93657#%E9%87%8D%E5%91%BD%E5%90%8D%E6%96%87%E4%BB%B6 + */ + public function rename($userid, $fileid, $name) + { + $data = [ + 'userid' => $userid, + 'fileid' => $fileid, + 'new_name' => $name + ]; + + return $this->httpPostJson('cgi-bin/wedrive/file_rename', $data); + } + + /** + * 移动文件 + * + * @param string $userid + * @param string|array $fileid 文件fileid + * @param string $fatherid 目标目录的fileid + * @param boolean $replace 重名时,是否覆盖 false:重名文件进行冲突重命名处理(移动后文件名格式如xxx(1).txt xxx(1).doc等) + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + * + * @see https://developer.work.weixin.qq.com/document/path/93657#%E7%A7%BB%E5%8A%A8%E6%96%87%E4%BB%B6 + */ + public function move($userid, $fileid, $fatherid, $replace = false) + { + $fileid = (array) $fileid; + + return $this->httpPostJson('cgi-bin/wedrive/file_move', compact('userid', 'fatherid', 'replace', 'fileid')); + } + + /** + * 删除文件 + * + * @param string $userid + * @param string|array $fileid + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + * + * @see https://developer.work.weixin.qq.com/document/path/93657#%E5%88%A0%E9%99%A4%E6%96%87%E4%BB%B6 + */ + public function delete($userid, $fileid) + { + $fileid = (array) $fileid; + + return $this->httpPostJson('cgi-bin/wedrive/file_delete', compact('userid', 'fileid')); + } + + /** + * 获取文件列表 + * + * @param string $userid + * @param string $spaceid 空间id + * @param string $fatherid 目录id + * @param integer $start 查询游标 首次填0, 后续填上一次请求返回的next_start + * @param integer $limit 拉取条数 最大1000 + * @param integer $sort 列表排序方式 1:名字升序;2:名字降序;3:大小升序;4:大小降序;5:修改时间升序;6:修改时间降序 + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + * + * @see https://developer.work.weixin.qq.com/document/path/93657#%E8%8E%B7%E5%8F%96%E6%96%87%E4%BB%B6%E5%88%97%E8%A1%A8 + */ + public function list($userid, $spaceid, $fatherid = null, $start = 0, $limit = 1000, $sort = 1) + { + $data = [ + 'userid' => $userid, + 'spaceid' => $spaceid, + 'fatherid' => $fatherid ?: $spaceid, + 'start' => $start, + 'limit' => min($limit, 1000), + 'sort_type' => $sort + ]; + + return $this->httpPostJson('cgi-bin/wedrive/file_list', $data); + } + + /** + * 文件信息 + * + * @param string $userid + * @param string $fileid + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + * + * @see https://developer.work.weixin.qq.com/document/path/93657#%E6%96%87%E4%BB%B6%E4%BF%A1%E6%81%AF + */ + public function info($userid, $fileid) + { + return $this->httpPostJson('cgi-bin/wedrive/file_info', compact('userid', 'fileid')); + } + + /** + * 上传文件 + * + * @param string $userid + * @param string $spaceid 空间id + * @param string $fatherid 目录id + * @param string $fileName 文件名 + * @param string $fileContent 文件内容 + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + * + * @see https://developer.work.weixin.qq.com/document/path/93657#%E4%B8%8A%E4%BC%A0%E6%96%87%E4%BB%B6 + */ + public function upload($userid, $spaceid, $fatherid, $fileName, $fileContent) + { + $data = [ + 'userid' => $userid, + 'spaceid' => $spaceid, + 'fatherid' => $fatherid, + 'file_name' => $fileName, + 'file_base64_content' => base64_encode($fileContent) + ]; + + return $this->httpPostJson('cgi-bin/wedrive/file_upload', $data); + } + + /** + * 文件下载 + * + * @param string $userid + * @param string $fileid + * @param boolean $download 是否直接下载 + * + * @return \EasyWeChat\Kernel\Http\StreamResponse|\Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + * + * @see https://developer.work.weixin.qq.com/document/path/93657#%E4%B8%8B%E8%BD%BD%E6%96%87%E4%BB%B6 + */ + public function download($userid, $fileid, $download = false) + { + $response = $this->httpPostJson('cgi-bin/wedrive/file_download', compact('userid', 'fileid')); + + if (!$download || 0 <> $response['errcode']) { + return $response; + } + + return $this->getHttpClient()->request('GET', $response['download_url'], [ + 'cookies' => CookieJar::fromArray([ + $response['cookie_name'] => $response['cookie_value'], + ], parse_url($response['download_url'])['host'] ?? 'qq.com'), + ]); + } + + /** + * 获取分享链接 + * + * @param string $userid + * @param string $fileid + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + * + * @see https://developer.work.weixin.qq.com/document/path/93658#%E8%8E%B7%E5%8F%96%E5%88%86%E4%BA%AB%E9%93%BE%E6%8E%A5 + */ + public function share($userid, $fileid) + { + return $this->httpPostJson('cgi-bin/wedrive/file_share', compact('userid', 'fileid')); + } + + /** + * 分享设置 + * + * @param string $userid + * @param string $fileid + * @param int $authScope 权限范围:1:指定人 2:企业内 3:企业外 + * @param int $auth 权限信息 权限信息 + * 普通文档: 1:仅浏览(可下载) 4:仅预览(仅专业版企业可设置);如果不填充此字段为保持原有状态 + * 微文档: 1:仅浏览(可下载) 2:可编辑;如果不填充此字段为保持原有状态 + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + * + * @see https://developer.work.weixin.qq.com/document/path/93658#%E5%88%86%E4%BA%AB%E8%AE%BE%E7%BD%AE + */ + public function setting($userid, $fileid, $authScope, $auth = null) + { + $data = [ + 'userid' => $userid, + 'fileid' => $fileid, + 'auth_scope' => $authScope, + 'auth' => $auth + ]; + + return $this->httpPostJson('cgi-bin/wedrive/file_setting', array_filter($data)); + } + + /** + * 新增成员 + * + * @param string $userid + * @param string $fileid + * @param array $authInfo 添加成员的信息 + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + * + * @see https://developer.work.weixin.qq.com/document/path/93658#%E6%96%B0%E5%A2%9E%E6%88%90%E5%91%98 + */ + public function aclAdd($userid, $fileid, $authInfo) + { + $data = [ + 'userid' => $userid, + 'fileid' => $fileid, + 'auth_info' => Arr::isAssoc($authInfo) ? [$authInfo] : $authInfo + ]; + + return $this->httpPostJson('cgi-bin/wedrive/file_acl_add', $data); + } + + /** + * 删除成员 + * + * @param string $userid + * @param string $fileid + * @param array $authInfo 删除成员的信息 + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + * + * @see https://developer.work.weixin.qq.com/document/path/93658#%E5%88%A0%E9%99%A4%E6%88%90%E5%91%98 + */ + public function aclDel($userid, $fileid, $authInfo) + { + $data = [ + 'userid' => $userid, + 'fileid' => $fileid, + 'auth_info' => Arr::isAssoc($authInfo) ? [$authInfo] : $authInfo + ]; + + return $this->httpPostJson('cgi-bin/wedrive/file_acl_del', $data); + } +} diff --git a/vendor/overtrue/wechat/src/Work/Wedrive/ServiceProvider.php b/vendor/overtrue/wechat/src/Work/Wedrive/ServiceProvider.php new file mode 100644 index 0000000..822d42d --- /dev/null +++ b/vendor/overtrue/wechat/src/Work/Wedrive/ServiceProvider.php @@ -0,0 +1,37 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Work\Wedrive; + +use Pimple\Container; +use Pimple\ServiceProviderInterface; + +/** + * Class ServiceProvider + * + * @author lio990527 + */ +class ServiceProvider implements ServiceProviderInterface +{ + /** + * {@inheritdoc} + */ + public function register(Container $app) + { + $app['wedrive'] = function ($app) { + return new Wedrive([ + 'base' => new Client($app), + 'space' => new SpaceClient($app), + 'file' => new FileClient($app), + ]); + }; + } +} diff --git a/vendor/overtrue/wechat/src/Work/Wedrive/SpaceClient.php b/vendor/overtrue/wechat/src/Work/Wedrive/SpaceClient.php new file mode 100644 index 0000000..6824bd7 --- /dev/null +++ b/vendor/overtrue/wechat/src/Work/Wedrive/SpaceClient.php @@ -0,0 +1,201 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Work\Wedrive; + +use EasyWeChat\Kernel\BaseClient; +use EasyWeChat\Kernel\Support\Arr; + +/** + * Class SpaceClient + * + * @author lio990527 + */ +class SpaceClient extends BaseClient +{ + + /** + * 新建空间 + * + * @param string $userid 操作者userid + * @param string $spaceName 空间名称 + * @param array $authInfo 空间成员权限信息 + * @param integer $spaceSubType 空间类型, 0:普通 1:相册 + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + * + * @see https://developer.work.weixin.qq.com/document/path/93656#%E6%96%B0%E5%BB%BA%E7%A9%BA%E9%97%B4 + */ + public function create($userid, $spaceName, $authInfo = [], $spaceSubType = 0) + { + $data = [ + 'userid' => $userid, + 'space_name' => $spaceName, + 'auth_info' => Arr::isAssoc($authInfo) ? [$authInfo] : $authInfo, + 'space_sub_type' => $spaceSubType, + ]; + + return $this->httpPostJson('cgi-bin/wedrive/space_create', $data); + } + + /** + * 重命名空间 + * + * @param string $userid + * @param string $spaceid + * @param string $spaceName 重命名后的空间名 + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + * + * @see https://developer.work.weixin.qq.com/document/path/93656#%E9%87%8D%E5%91%BD%E5%90%8D%E7%A9%BA%E9%97%B4 + */ + public function rename($userid, $spaceid, $spaceName) + { + $data = [ + 'userid' => $userid, + 'spaceid' => $spaceid, + 'space_name' => $spaceName + ]; + + return $this->httpPostJson('cgi-bin/wedrive/space_rename', $data); + } + + /** + * 解散空间 + * + * @param string $userid + * @param string $spaceid + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + * + * @see https://developer.work.weixin.qq.com/document/path/93656#%E8%A7%A3%E6%95%A3%E7%A9%BA%E9%97%B4 + */ + public function dismiss($userid, $spaceid) + { + return $this->httpPostJson('cgi-bin/wedrive/space_dismiss', compact('userid', 'spaceid')); + } + + /** + * 获取空间/相册信息 + * + * @param string $userid + * @param string $spaceid + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + * + * @see https://developer.work.weixin.qq.com/document/path/93656#%E8%8E%B7%E5%8F%96%E7%A9%BA%E9%97%B4%E7%9B%B8%E5%86%8C%E4%BF%A1%E6%81%AF + */ + public function info($userid, $spaceid) + { + return $this->httpPostJson('cgi-bin/wedrive/space_info', compact('userid', 'spaceid')); + } + + /** + * 获取邀请链接 + * + * @param string $userid + * @param string $spaceid + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + * + * @see https://developer.work.weixin.qq.com/document/path/93656#%E8%8E%B7%E5%8F%96%E9%82%80%E8%AF%B7%E9%93%BE%E6%8E%A5 + */ + public function share($userid, $spaceid) + { + return $this->httpPostJson('cgi-bin/wedrive/space_share', compact('userid', 'spaceid')); + } + + /** + * 安全设置 + * + * @param string $userid + * @param string $spaceid + * @param array $settings 设置 + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + * + * @see https://developer.work.weixin.qq.com/document/path/93656#%E5%AE%89%E5%85%A8%E8%AE%BE%E7%BD%AE + */ + public function setting($userid, $spaceid, $settings) + { + $data = array_merge(compact('userid', 'spaceid'), $settings); + + return $this->httpPostJson('cgi-bin/wedrive/space_setting', $data); + } + + /** + * 添加成员/部门 + * + * @param string $userid + * @param string $spaceid + * @param array $authInfo 被添加的空间成员信息 + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + * + * @see https://developer.work.weixin.qq.com/document/path/93656#%E6%B7%BB%E5%8A%A0%E6%88%90%E5%91%98%E9%83%A8%E9%97%A8 + */ + public function aclAdd($userid, $spaceid, $authInfo) + { + $data = [ + 'userid' => $userid, + 'spaceid' => $spaceid, + 'auth_info' => Arr::isAssoc($authInfo) ? [$authInfo] : $authInfo + ]; + + return $this->httpPostJson('cgi-bin/wedrive/space_acl_add', $data); + } + + /** + * 移除成员/部门 + * + * @param string $userid + * @param string $spaceid + * @param array $authInfo 被移除的空间成员信息 + * + * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string + * + * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException + * @throws \GuzzleHttp\Exception\GuzzleException + * + * @see https://developer.work.weixin.qq.com/document/path/93656#%E6%B7%BB%E5%8A%A0%E6%88%90%E5%91%98%E9%83%A8%E9%97%A8 + */ + public function aclDel($userid, $spaceid, $authInfo) + { + $data = [ + 'userid' => $userid, + 'spaceid' => $spaceid, + 'auth_info' => Arr::isAssoc($authInfo) ? [$authInfo] : $authInfo + ]; + + return $this->httpPostJson('cgi-bin/wedrive/space_acl_del', $data); + } +} diff --git a/vendor/overtrue/wechat/src/Work/Wedrive/Wedrive.php b/vendor/overtrue/wechat/src/Work/Wedrive/Wedrive.php new file mode 100644 index 0000000..bb01931 --- /dev/null +++ b/vendor/overtrue/wechat/src/Work/Wedrive/Wedrive.php @@ -0,0 +1,32 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +namespace EasyWeChat\Work\Wedrive; + +use Pimple\Container; + +/** + * Class Wedrive + * + * @property \EasyWeChat\Work\Wedrive\Client $base + * @property \EasyWeChat\Work\Wedrive\SpaceClient $space + * @property \EasyWeChat\Work\Wedrive\FileClient $file + * + * @author lio990527 + */ +class Wedrive extends Container +{ + + public function __get($key) + { + return $this->offsetGet($key); + } +}