diff --git a/app/controller/api/Common.php b/app/controller/api/Common.php index 265feb19..680bd4fe 100644 --- a/app/controller/api/Common.php +++ b/app/controller/api/Common.php @@ -48,7 +48,13 @@ use think\facade\Cache; use think\facade\Db; use think\facade\Log; use think\Response; +use AlibabaCloud\SDK\Ocr\V20191230\Ocr; +use AlibabaCloud\Tea\Exception\TeaError; +use AlibabaCloud\Tea\Utils\Utils; +use Darabonba\OpenApi\Models\Config; +use AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeBusinessLicenseRequest; +use AlibabaCloud\Tea\Utils\Utils\RuntimeOptions; /** * Class Common * @package app\controller\api @@ -543,4 +549,48 @@ class Common extends BaseController return app('json')->success($data); } + + /** + * + * 商户营业执照 + */ + public function merchant_license_identify($image){ + $config = new Config([ + // 必填,您的 AccessKey ID + "accessKeyId" => 'LTAI5t7mhH3ij2cNWs1zhPmv', + // 必填,您的 AccessKey Secret + "accessKeySecret" => 'gqo2wMpvi8h5bDBmCpMje6BaiXvcPu' + ]); + // Endpoint 请参考 https://api.aliyun.com/product/ocr + $config->endpoint = "ocr.cn-shanghai.aliyuncs.com"; + $client= new Ocr($config); + $recognizeBusinessLicenseRequest = new RecognizeBusinessLicenseRequest([ + "imageURL" => $image + ]); + $runtime = new RuntimeOptions([]); + try { + // 复制代码运行请自行打印 API 的返回值 + $resp=$client->recognizeBusinessLicenseWithOptions($recognizeBusinessLicenseRequest, $runtime); + $a= Utils::toArray($resp->body); + $data=[]; + if($a){ + $data['address']=$a['Data']['Address']; + $data['business']=$a['Data']['Business']; + $data['legal_person']=$a['Data']['LegalPerson']; + $data['name']=$a['Data']['Name']; + $data['register_number']=$a['Data']['RegisterNumber']; + $data['type']=$a['Data']['Type']; + } + return app('json')->success($data); + + } + catch (Exception $error) { + if (!($error instanceof TeaError)) { + $error = new TeaError([], $error->getMessage(), $error->getCode(), $error); + } + $a=Utils::assertAsString($error->message); + return app('json')->fail($a); + + } + } } diff --git a/app/controller/api/store/product/StoreSpu.php b/app/controller/api/store/product/StoreSpu.php index 76bff57e..59fbadb0 100644 --- a/app/controller/api/store/product/StoreSpu.php +++ b/app/controller/api/store/product/StoreSpu.php @@ -59,7 +59,8 @@ class StoreSpu extends BaseController 'product_ids', 'mer_id', 'type_id', - 'street_id' + 'street_id', + 'category_id' ]); if ($where['type_id']) { $arr = ['status' => 1, 'mer_state' => 1, 'is_del' => 0]; @@ -74,6 +75,9 @@ class StoreSpu extends BaseController $where['product_type'] = $where['product_type']??0; $where['order'] = $where['order'] ?: 'star'; if ($where['is_trader'] != 1) unset($where['is_trader']); + if($where['category_id']!=''){ + $where['mer_ids']= Db::name('merchant')->where(['category_id'=>$where['category_id'],'status'=>1,'is_del'=>0])->column('mer_id'); + } $data = $this->repository->getApiSearch($where, $page, $limit, $this->userInfo); return app('json')->success($data); } diff --git a/composer.json b/composer.json index eeb7ca31..0d419104 100644 --- a/composer.json +++ b/composer.json @@ -60,7 +60,8 @@ "topthink/think-api": "1.0.27", "intervention/image": "^2.7", "fastknife/ajcaptcha": "^1.2", - "nelexa/zip": "^4.0" + "nelexa/zip": "^4.0", + "alibabacloud/ocr-20191230": "^3.0" }, "require-dev": { "symfony/var-dumper": "^4.2", diff --git a/composer.lock b/composer.lock index 68d601ea..bdd6c404 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "60838a051e04cfb13dd75049f7540171", + "content-hash": "58b44ebbb4f75dc8b47bcaa0ae8327f7", "packages": [ { "name": "adbario/php-dot-notation", @@ -252,6 +252,59 @@ "description": "Alibaba Cloud Gateway SPI Client", "time": "2022-07-14T05:31:35+00:00" }, + { + "name": "alibabacloud/ocr-20191230", + "version": "3.0.0", + "source": { + "type": "git", + "url": "https://github.com/alibabacloud-sdk-php/Ocr-20191230.git", + "reference": "8d7ad521074b2fd6c392cf0f2b114ce43f0612b8" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/alibabacloud-sdk-php/Ocr-20191230/zipball/8d7ad521074b2fd6c392cf0f2b114ce43f0612b8", + "reference": "8d7ad521074b2fd6c392cf0f2b114ce43f0612b8", + "shasum": "", + "mirrors": [ + { + "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%", + "preferred": true + } + ] + }, + "require": { + "alibabacloud/darabonba-openapi": "^0.2.8", + "alibabacloud/endpoint-util": "^0.1.0", + "alibabacloud/openapi-util": "^0.1.10|^0.2.1", + "alibabacloud/openplatform-20191219": "^2.0.1", + "alibabacloud/tea-fileform": "^0.3.0", + "alibabacloud/tea-oss-sdk": "^0.3.0", + "alibabacloud/tea-oss-utils": "^0.3.1", + "alibabacloud/tea-utils": "^0.2.19", + "php": ">5.5" + }, + "type": "library", + "autoload": { + "psr-4": { + "AlibabaCloud\\SDK\\Ocr\\V20191230\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "Apache-2.0" + ], + "authors": [ + { + "name": "Alibaba Cloud SDK", + "email": "sdk-team@alibabacloud.com" + } + ], + "description": "Alibaba Cloud OCR (20191230) SDK Library for PHP", + "support": { + "source": "https://github.com/alibabacloud-sdk-php/Ocr-20191230/tree/3.0.0" + }, + "time": "2023-07-04T02:18:29+00:00" + }, { "name": "alibabacloud/openapi-util", "version": "0.1.13", @@ -288,6 +341,55 @@ "description": "Alibaba Cloud OpenApi Util", "time": "2022-11-06T05:49:55+00:00" }, + { + "name": "alibabacloud/openplatform-20191219", + "version": "2.0.1", + "source": { + "type": "git", + "url": "https://github.com/alibabacloud-sdk-php/OpenPlatform-20191219.git", + "reference": "02ffa72369f8649214f1cfa336b52a544735f517" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/alibabacloud-sdk-php/OpenPlatform-20191219/zipball/02ffa72369f8649214f1cfa336b52a544735f517", + "reference": "02ffa72369f8649214f1cfa336b52a544735f517", + "shasum": "", + "mirrors": [ + { + "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%", + "preferred": true + } + ] + }, + "require": { + "alibabacloud/darabonba-openapi": "^0.2.8", + "alibabacloud/endpoint-util": "^0.1.0", + "alibabacloud/openapi-util": "^0.1.10|^0.2.1", + "alibabacloud/tea-utils": "^0.2.17", + "php": ">5.5" + }, + "type": "library", + "autoload": { + "psr-4": { + "AlibabaCloud\\SDK\\OpenPlatform\\V20191219\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "Apache-2.0" + ], + "authors": [ + { + "name": "Alibaba Cloud SDK", + "email": "sdk-team@alibabacloud.com" + } + ], + "description": "Alibaba Cloud OpenPlatform (20191219) SDK Library for PHP", + "support": { + "source": "https://github.com/alibabacloud-sdk-php/OpenPlatform-20191219/tree/2.0.1" + }, + "time": "2023-02-07T06:39:39+00:00" + }, { "name": "alibabacloud/tea", "version": "3.2.1", @@ -343,6 +445,156 @@ ], "time": "2023-05-16T06:43:41+00:00" }, + { + "name": "alibabacloud/tea-fileform", + "version": "0.3.4", + "source": { + "type": "git", + "url": "https://github.com/alibabacloud-sdk-php/tea-fileform.git", + "reference": "4bf0c75a045c8115aa8cb1a394bd08d8bb833181" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/alibabacloud-sdk-php/tea-fileform/zipball/4bf0c75a045c8115aa8cb1a394bd08d8bb833181", + "reference": "4bf0c75a045c8115aa8cb1a394bd08d8bb833181", + "shasum": "", + "mirrors": [ + { + "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%", + "preferred": true + } + ] + }, + "require": { + "alibabacloud/tea": "^3.0", + "php": ">5.5" + }, + "require-dev": { + "phpunit/phpunit": "^4.8.35|^5.4.3" + }, + "type": "library", + "autoload": { + "psr-4": { + "AlibabaCloud\\Tea\\FileForm\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "Apache-2.0" + ], + "authors": [ + { + "name": "Alibaba Cloud SDK", + "email": "sdk-team@alibabacloud.com" + } + ], + "description": "Alibaba Cloud Tea File Library for PHP", + "support": { + "issues": "https://github.com/alibabacloud-sdk-php/tea-fileform/issues", + "source": "https://github.com/alibabacloud-sdk-php/tea-fileform/tree/0.3.4" + }, + "time": "2020-12-01T07:24:35+00:00" + }, + { + "name": "alibabacloud/tea-oss-sdk", + "version": "0.3.6", + "source": { + "type": "git", + "url": "https://github.com/alibabacloud-sdk-php/tea-oss-sdk.git", + "reference": "e28e70e2842b2e4da031a774209231bf08d7965c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/alibabacloud-sdk-php/tea-oss-sdk/zipball/e28e70e2842b2e4da031a774209231bf08d7965c", + "reference": "e28e70e2842b2e4da031a774209231bf08d7965c", + "shasum": "", + "mirrors": [ + { + "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%", + "preferred": true + } + ] + }, + "require": { + "alibabacloud/credentials": "^1.1", + "alibabacloud/tea-fileform": "^0.3.0", + "alibabacloud/tea-oss-utils": "^0.3.0", + "alibabacloud/tea-utils": "^0.2.0", + "alibabacloud/tea-xml": "^0.2", + "php": ">5.5" + }, + "type": "library", + "autoload": { + "psr-4": { + "AlibabaCloud\\SDK\\OSS\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "Apache-2.0" + ], + "authors": [ + { + "name": "Alibaba Cloud SDK", + "email": "sdk-team@alibabacloud.com" + } + ], + "description": "Aliyun Tea OSS SDK Library for PHP", + "support": { + "source": "https://github.com/alibabacloud-sdk-php/tea-oss-sdk/tree/0.3.6" + }, + "time": "2022-10-13T07:23:51+00:00" + }, + { + "name": "alibabacloud/tea-oss-utils", + "version": "0.3.1", + "source": { + "type": "git", + "url": "https://github.com/alibabacloud-sdk-php/tea-oss-utils.git", + "reference": "19f58fc509347f075664e377742d4f9e18465372" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/alibabacloud-sdk-php/tea-oss-utils/zipball/19f58fc509347f075664e377742d4f9e18465372", + "reference": "19f58fc509347f075664e377742d4f9e18465372", + "shasum": "", + "mirrors": [ + { + "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%", + "preferred": true + } + ] + }, + "require": { + "alibabacloud/tea": "^3.0", + "guzzlehttp/psr7": "^1.0", + "php": ">5.5" + }, + "require-dev": { + "phpunit/phpunit": "^4.8.35|^5.4.3|^9.4" + }, + "type": "library", + "autoload": { + "psr-4": { + "AlibabaCloud\\Tea\\OSSUtils\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "Apache-2.0" + ], + "authors": [ + { + "name": "Alibaba Cloud SDK", + "email": "sdk-team@alibabacloud.com" + } + ], + "description": "Alibaba Cloud Tea OSS Utils Library for PHP", + "support": { + "source": "https://github.com/alibabacloud-sdk-php/tea-oss-utils/tree/0.3.1" + }, + "time": "2023-01-08T13:26:58+00:00" + }, { "name": "alibabacloud/tea-utils", "version": "0.2.19", @@ -5053,5 +5305,5 @@ "ext-swoole": "^4.4.0" }, "platform-dev": [], - "plugin-api-version": "2.3.0" + "plugin-api-version": "2.1.0" } diff --git a/route/api.php b/route/api.php index 3606e8f7..397f3572 100644 --- a/route/api.php +++ b/route/api.php @@ -44,6 +44,8 @@ Route::group('api/', function () { //强制登录 Route::group(function () { + Route::post('merchant_license_identify', 'api.Common/merchant_license_identify');//营业执照识别 + Route::post('user_free_trial/:id', 'api.store.product.StoreProduct/UserFreeTrial')->option([ '_alias' => '免审编辑', ]); diff --git a/vendor/alibabacloud/ocr-20191230/.gitignore b/vendor/alibabacloud/ocr-20191230/.gitignore new file mode 100644 index 00000000..89c7aa58 --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/.gitignore @@ -0,0 +1,15 @@ +composer.phar +/vendor/ + +# Commit your application's lock file https://getcomposer.org/doc/01-basic-usage.md#commit-your-composer-lock-file-to-version-control +# You may choose to ignore a library lock file http://getcomposer.org/doc/02-libraries.md#lock-file +composer.lock + +.vscode/ +.idea +.DS_Store + +cache/ +*.cache +runtime/ +.php_cs.cache diff --git a/vendor/alibabacloud/ocr-20191230/.php_cs.dist b/vendor/alibabacloud/ocr-20191230/.php_cs.dist new file mode 100644 index 00000000..8617ec2f --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/.php_cs.dist @@ -0,0 +1,65 @@ +setRiskyAllowed(true) + ->setIndent(' ') + ->setRules([ + '@PSR2' => true, + '@PhpCsFixer' => true, + '@Symfony:risky' => true, + 'concat_space' => ['spacing' => 'one'], + 'array_syntax' => ['syntax' => 'short'], + 'array_indentation' => true, + 'combine_consecutive_unsets' => true, + 'method_separation' => true, + 'single_quote' => true, + 'declare_equal_normalize' => true, + 'function_typehint_space' => true, + 'hash_to_slash_comment' => true, + 'include' => true, + 'lowercase_cast' => true, + 'no_multiline_whitespace_before_semicolons' => true, + 'no_leading_import_slash' => true, + 'no_multiline_whitespace_around_double_arrow' => true, + 'no_spaces_around_offset' => true, + 'no_unneeded_control_parentheses' => true, + 'no_unused_imports' => true, + 'no_whitespace_before_comma_in_array' => true, + 'no_whitespace_in_blank_line' => true, + 'object_operator_without_whitespace' => true, + 'single_blank_line_before_namespace' => true, + 'single_class_element_per_statement' => true, + 'space_after_semicolon' => true, + 'standardize_not_equals' => true, + 'ternary_operator_spaces' => true, + 'trailing_comma_in_multiline_array' => true, + 'trim_array_spaces' => true, + 'unary_operator_spaces' => true, + 'whitespace_after_comma_in_array' => true, + 'no_extra_consecutive_blank_lines' => [ + 'curly_brace_block', + 'extra', + 'parenthesis_brace_block', + 'square_brace_block', + 'throw', + 'use', + ], + 'binary_operator_spaces' => [ + 'align_double_arrow' => true, + 'align_equals' => true, + ], + 'braces' => [ + 'allow_single_line_closure' => true, + ], + ]) + ->setFinder( + PhpCsFixer\Finder::create() + ->exclude('vendor') + ->exclude('tests') + ->in(__DIR__) + ); diff --git a/vendor/alibabacloud/ocr-20191230/ChangeLog.md b/vendor/alibabacloud/ocr-20191230/ChangeLog.md new file mode 100644 index 00000000..b94bfc3f --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/ChangeLog.md @@ -0,0 +1,70 @@ +2023-07-04 Version: 3.0.0 +- Update TrimDocument. +- Update RecognizeTakeoutOrder. +- Update RecognizePassportMRZ. +- Update RecognizeChinapassport. +- Update DetectCardScreenshot. +- Update RecognizeVerificationcode. +- Update RecognizePoiName. +- Update RecognizeAccountPage. + +2023-02-16 Version: 2.0.17 +- Update RecognizeVideoCharacter. + +2023-01-13 Version: 2.0.16 +- Update sdk. + +2023-01-11 Version: 2.0.15 +- Update sdk. + +2023-01-05 Version: 2.0.14 +- Release RecognizeVATInvoice. + +2022-11-10 Version: 2.0.13 +- Release RecognizeVATInvoice. + +2022-10-17 Version: 2.0.12 +- Release RecognizeVATInvoice. + +2022-10-14 Version: 2.0.11 +- Release RecognizeVATInvoice. + +2022-06-21 Version: 2.0.10 +- Release RecognizeTurkeyIdentityCard RecognizeMalaysiaIdentityCard RecognizeRussiaIdentityCard RecognizeIndonesiaIdentityCard RecognizeUkraineIdentityCard RecognizeVietnamIdentityCard. + +2022-05-25 Version: 2.0.9 +- Release RecognizeTurkeyIdentityCard RecognizeMalaysiaIdentityCard RecognizeRussiaIdentityCard RecognizeIndonesiaIdentityCard RecognizeIndonesiaIdentityCard. + +2022-05-05 Version: 2.0.8 +- Release RecognizeUkraineIdentityCard. + +2022-03-09 Version: 2.0.7 +- Release RecognizeVideoCastCrewList. + +2022-03-03 Version: 2.0.6 +- RecognizeVideoCharacter add output field inputFile. + +2021-12-15 Version: 2.0.5 +- RecognizeVideoCharacter add output field inputFile. + +2021-11-23 Version: 1.0.5 +- Update RecognizeCharacter. + +2021-07-02 Version: 1.0.4 +- Release RecognizeQuotaInvoice RecognizeTicketInvoice RecognizePdf. + +2021-05-10 Version: 1.0.3 +- Update RecognizeDriverLicense RecognizeLicensePlate. + +2021-03-25 Version: 1.0.2 +- Generated php 2019-12-30 for ocr. + +2021-03-04 Version: 1.0.1 +- Update Ocr. + +2021-01-29 Version: 1.0.0 +- Generated php 2019-12-30 for ocr. + +2020-11-13 Version: 0.1.16 +- Release DetectCardScreenshot RecognizePoiName. + diff --git a/vendor/alibabacloud/ocr-20191230/LICENSE b/vendor/alibabacloud/ocr-20191230/LICENSE new file mode 100644 index 00000000..0c44dcef --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/LICENSE @@ -0,0 +1,201 @@ + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright (c) 2009-present, Alibaba Cloud All rights reserved. + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. diff --git a/vendor/alibabacloud/ocr-20191230/README-CN.md b/vendor/alibabacloud/ocr-20191230/README-CN.md new file mode 100644 index 00000000..d7fdd39f --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/README-CN.md @@ -0,0 +1,35 @@ +[English](README.md) | 简体中文 + +![](https://aliyunsdk-pages.alicdn.com/icons/AlibabaCloud.svg) + +# Alibaba Cloud ocr SDK for PHP + +## 安装 + +### Composer + +```bash +composer require alibabacloud/ocr-20191230 +``` + +## 问题 + +[提交 Issue](https://github.com/aliyun/alibabacloud-php-sdk/issues/new),不符合指南的问题可能会立即关闭。 + +## 使用说明 + +[快速使用](https://github.com/aliyun/alibabacloud-php-sdk/blob/master/docs/0-Examples-CN.md#%E5%BF%AB%E9%80%9F%E4%BD%BF%E7%94%A8) + +## 发行说明 + +每个版本的详细更改记录在[发行说明](./ChangeLog.txt)中。 + +## 相关 + +* [最新源码](https://github.com/aliyun/alibabacloud-php-sdk/) + +## 许可证 + +[Apache-2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Copyright (c) 2009-present, Alibaba Cloud All rights reserved. diff --git a/vendor/alibabacloud/ocr-20191230/README.md b/vendor/alibabacloud/ocr-20191230/README.md new file mode 100644 index 00000000..329f3e93 --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/README.md @@ -0,0 +1,35 @@ +English | [简体中文](README-CN.md) + +![](https://aliyunsdk-pages.alicdn.com/icons/AlibabaCloud.svg) + +# Alibaba Cloud ocr SDK for PHP + +## Installation + +### Composer + +```bash +composer require alibabacloud/ocr-20191230 +``` + +## Issues + +[Opening an Issue](https://github.com/aliyun/alibabacloud-php-sdk/issues/new), Issues not conforming to the guidelines may be closed immediately. + +## Usage + +[Quick Examples](https://github.com/aliyun/alibabacloud-php-sdk/blob/master/docs/0-Examples-EN.md#quick-examples) + +## Changelog + +Detailed changes for each release are documented in the [release notes](./ChangeLog.txt). + +## References + +* [Latest Release](https://github.com/aliyun/alibabacloud-php-sdk/) + +## License + +[Apache-2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Copyright (c) 2009-present, Alibaba Cloud All rights reserved. diff --git a/vendor/alibabacloud/ocr-20191230/autoload.php b/vendor/alibabacloud/ocr-20191230/autoload.php new file mode 100644 index 00000000..508ac344 --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/autoload.php @@ -0,0 +1,17 @@ +5.5", + "alibabacloud/tea-utils": "^0.2.19", + "alibabacloud/tea-oss-sdk": "^0.3.0", + "alibabacloud/openplatform-20191219": "^2.0.1", + "alibabacloud/tea-oss-utils": "^0.3.1", + "alibabacloud/tea-fileform": "^0.3.0", + "alibabacloud/darabonba-openapi": "^0.2.8", + "alibabacloud/openapi-util": "^0.1.10|^0.2.1", + "alibabacloud/endpoint-util": "^0.1.0" + }, + "autoload": { + "psr-4": { + "AlibabaCloud\\SDK\\Ocr\\V20191230\\": "src" + } + }, + "scripts": { + "fixer": "php-cs-fixer fix ./" + }, + "config": { + "sort-packages": true, + "preferred-install": "dist", + "optimize-autoloader": true + }, + "prefer-stable": true +} \ No newline at end of file diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/GetAsyncJobResultRequest.php b/vendor/alibabacloud/ocr-20191230/src/Models/GetAsyncJobResultRequest.php new file mode 100644 index 00000000..7f489cc0 --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/GetAsyncJobResultRequest.php @@ -0,0 +1,49 @@ + 'JobId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->jobId) { + $res['JobId'] = $this->jobId; + } + + return $res; + } + + /** + * @param array $map + * + * @return GetAsyncJobResultRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['JobId'])) { + $model->jobId = $map['JobId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/GetAsyncJobResultResponse.php b/vendor/alibabacloud/ocr-20191230/src/Models/GetAsyncJobResultResponse.php new file mode 100644 index 00000000..01b2fcdd --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/GetAsyncJobResultResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return GetAsyncJobResultResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = GetAsyncJobResultResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/GetAsyncJobResultResponseBody.php b/vendor/alibabacloud/ocr-20191230/src/Models/GetAsyncJobResultResponseBody.php new file mode 100644 index 00000000..ed3010ad --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/GetAsyncJobResultResponseBody.php @@ -0,0 +1,62 @@ + 'Data', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->data) { + $res['Data'] = null !== $this->data ? $this->data->toMap() : null; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return GetAsyncJobResultResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Data'])) { + $model->data = data::fromMap($map['Data']); + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/GetAsyncJobResultResponseBody/data.php b/vendor/alibabacloud/ocr-20191230/src/Models/GetAsyncJobResultResponseBody/data.php new file mode 100644 index 00000000..824ab6c1 --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/GetAsyncJobResultResponseBody/data.php @@ -0,0 +1,103 @@ + 'ErrorCode', + 'errorMessage' => 'ErrorMessage', + 'jobId' => 'JobId', + 'result' => 'Result', + 'status' => 'Status', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->errorCode) { + $res['ErrorCode'] = $this->errorCode; + } + if (null !== $this->errorMessage) { + $res['ErrorMessage'] = $this->errorMessage; + } + if (null !== $this->jobId) { + $res['JobId'] = $this->jobId; + } + if (null !== $this->result) { + $res['Result'] = $this->result; + } + if (null !== $this->status) { + $res['Status'] = $this->status; + } + + return $res; + } + + /** + * @param array $map + * + * @return data + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['ErrorCode'])) { + $model->errorCode = $map['ErrorCode']; + } + if (isset($map['ErrorMessage'])) { + $model->errorMessage = $map['ErrorMessage']; + } + if (isset($map['JobId'])) { + $model->jobId = $map['JobId']; + } + if (isset($map['Result'])) { + $model->result = $map['Result']; + } + if (isset($map['Status'])) { + $model->status = $map['Status']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBankCardAdvanceRequest.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBankCardAdvanceRequest.php new file mode 100644 index 00000000..64333edb --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBankCardAdvanceRequest.php @@ -0,0 +1,50 @@ + 'ImageURL', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->imageURLObject) { + $res['ImageURL'] = $this->imageURLObject; + } + + return $res; + } + + /** + * @param array $map + * + * @return RecognizeBankCardAdvanceRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['ImageURL'])) { + $model->imageURLObject = $map['ImageURL']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBankCardRequest.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBankCardRequest.php new file mode 100644 index 00000000..3bd8179b --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBankCardRequest.php @@ -0,0 +1,49 @@ + 'ImageURL', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->imageURL) { + $res['ImageURL'] = $this->imageURL; + } + + return $res; + } + + /** + * @param array $map + * + * @return RecognizeBankCardRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['ImageURL'])) { + $model->imageURL = $map['ImageURL']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBankCardResponse.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBankCardResponse.php new file mode 100644 index 00000000..d468001a --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBankCardResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return RecognizeBankCardResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = RecognizeBankCardResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBankCardResponseBody.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBankCardResponseBody.php new file mode 100644 index 00000000..6e5bca67 --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBankCardResponseBody.php @@ -0,0 +1,62 @@ + 'Data', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->data) { + $res['Data'] = null !== $this->data ? $this->data->toMap() : null; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return RecognizeBankCardResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Data'])) { + $model->data = data::fromMap($map['Data']); + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBankCardResponseBody/data.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBankCardResponseBody/data.php new file mode 100644 index 00000000..621bed59 --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBankCardResponseBody/data.php @@ -0,0 +1,75 @@ + 'BankName', + 'cardNumber' => 'CardNumber', + 'validDate' => 'ValidDate', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->bankName) { + $res['BankName'] = $this->bankName; + } + if (null !== $this->cardNumber) { + $res['CardNumber'] = $this->cardNumber; + } + if (null !== $this->validDate) { + $res['ValidDate'] = $this->validDate; + } + + return $res; + } + + /** + * @param array $map + * + * @return data + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['BankName'])) { + $model->bankName = $map['BankName']; + } + if (isset($map['CardNumber'])) { + $model->cardNumber = $map['CardNumber']; + } + if (isset($map['ValidDate'])) { + $model->validDate = $map['ValidDate']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBusinessCardAdvanceRequest.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBusinessCardAdvanceRequest.php new file mode 100644 index 00000000..51e7af38 --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBusinessCardAdvanceRequest.php @@ -0,0 +1,50 @@ + 'ImageURL', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->imageURLObject) { + $res['ImageURL'] = $this->imageURLObject; + } + + return $res; + } + + /** + * @param array $map + * + * @return RecognizeBusinessCardAdvanceRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['ImageURL'])) { + $model->imageURLObject = $map['ImageURL']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBusinessCardRequest.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBusinessCardRequest.php new file mode 100644 index 00000000..c58ec50c --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBusinessCardRequest.php @@ -0,0 +1,49 @@ + 'ImageURL', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->imageURL) { + $res['ImageURL'] = $this->imageURL; + } + + return $res; + } + + /** + * @param array $map + * + * @return RecognizeBusinessCardRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['ImageURL'])) { + $model->imageURL = $map['ImageURL']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBusinessCardResponse.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBusinessCardResponse.php new file mode 100644 index 00000000..0d4687d9 --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBusinessCardResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return RecognizeBusinessCardResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = RecognizeBusinessCardResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBusinessCardResponseBody.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBusinessCardResponseBody.php new file mode 100644 index 00000000..68dde4e4 --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBusinessCardResponseBody.php @@ -0,0 +1,62 @@ + 'Data', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->data) { + $res['Data'] = null !== $this->data ? $this->data->toMap() : null; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return RecognizeBusinessCardResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Data'])) { + $model->data = data::fromMap($map['Data']); + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBusinessCardResponseBody/data.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBusinessCardResponseBody/data.php new file mode 100644 index 00000000..d871dae6 --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBusinessCardResponseBody/data.php @@ -0,0 +1,145 @@ + 'Addresses', + 'cellPhoneNumbers' => 'CellPhoneNumbers', + 'companies' => 'Companies', + 'departments' => 'Departments', + 'emails' => 'Emails', + 'name' => 'Name', + 'officePhoneNumbers' => 'OfficePhoneNumbers', + 'titles' => 'Titles', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->addresses) { + $res['Addresses'] = $this->addresses; + } + if (null !== $this->cellPhoneNumbers) { + $res['CellPhoneNumbers'] = $this->cellPhoneNumbers; + } + if (null !== $this->companies) { + $res['Companies'] = $this->companies; + } + if (null !== $this->departments) { + $res['Departments'] = $this->departments; + } + if (null !== $this->emails) { + $res['Emails'] = $this->emails; + } + if (null !== $this->name) { + $res['Name'] = $this->name; + } + if (null !== $this->officePhoneNumbers) { + $res['OfficePhoneNumbers'] = $this->officePhoneNumbers; + } + if (null !== $this->titles) { + $res['Titles'] = $this->titles; + } + + return $res; + } + + /** + * @param array $map + * + * @return data + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Addresses'])) { + if (!empty($map['Addresses'])) { + $model->addresses = $map['Addresses']; + } + } + if (isset($map['CellPhoneNumbers'])) { + if (!empty($map['CellPhoneNumbers'])) { + $model->cellPhoneNumbers = $map['CellPhoneNumbers']; + } + } + if (isset($map['Companies'])) { + if (!empty($map['Companies'])) { + $model->companies = $map['Companies']; + } + } + if (isset($map['Departments'])) { + if (!empty($map['Departments'])) { + $model->departments = $map['Departments']; + } + } + if (isset($map['Emails'])) { + if (!empty($map['Emails'])) { + $model->emails = $map['Emails']; + } + } + if (isset($map['Name'])) { + $model->name = $map['Name']; + } + if (isset($map['OfficePhoneNumbers'])) { + if (!empty($map['OfficePhoneNumbers'])) { + $model->officePhoneNumbers = $map['OfficePhoneNumbers']; + } + } + if (isset($map['Titles'])) { + if (!empty($map['Titles'])) { + $model->titles = $map['Titles']; + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBusinessLicenseAdvanceRequest.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBusinessLicenseAdvanceRequest.php new file mode 100644 index 00000000..6ef9a69e --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBusinessLicenseAdvanceRequest.php @@ -0,0 +1,50 @@ + 'ImageURL', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->imageURLObject) { + $res['ImageURL'] = $this->imageURLObject; + } + + return $res; + } + + /** + * @param array $map + * + * @return RecognizeBusinessLicenseAdvanceRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['ImageURL'])) { + $model->imageURLObject = $map['ImageURL']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBusinessLicenseRequest.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBusinessLicenseRequest.php new file mode 100644 index 00000000..c0dc10dd --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBusinessLicenseRequest.php @@ -0,0 +1,49 @@ + 'ImageURL', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->imageURL) { + $res['ImageURL'] = $this->imageURL; + } + + return $res; + } + + /** + * @param array $map + * + * @return RecognizeBusinessLicenseRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['ImageURL'])) { + $model->imageURL = $map['ImageURL']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBusinessLicenseResponse.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBusinessLicenseResponse.php new file mode 100644 index 00000000..ad0ba958 --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBusinessLicenseResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return RecognizeBusinessLicenseResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = RecognizeBusinessLicenseResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBusinessLicenseResponseBody.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBusinessLicenseResponseBody.php new file mode 100644 index 00000000..7a240a3c --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBusinessLicenseResponseBody.php @@ -0,0 +1,62 @@ + 'Data', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->data) { + $res['Data'] = null !== $this->data ? $this->data->toMap() : null; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return RecognizeBusinessLicenseResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Data'])) { + $model->data = data::fromMap($map['Data']); + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBusinessLicenseResponseBody/data.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBusinessLicenseResponseBody/data.php new file mode 100644 index 00000000..1a2516e3 --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBusinessLicenseResponseBody/data.php @@ -0,0 +1,215 @@ + 'Address', + 'angle' => 'Angle', + 'business' => 'Business', + 'capital' => 'Capital', + 'emblem' => 'Emblem', + 'establishDate' => 'EstablishDate', + 'legalPerson' => 'LegalPerson', + 'name' => 'Name', + 'QRCode' => 'QRCode', + 'registerNumber' => 'RegisterNumber', + 'stamp' => 'Stamp', + 'title' => 'Title', + 'type' => 'Type', + 'validPeriod' => 'ValidPeriod', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->address) { + $res['Address'] = $this->address; + } + if (null !== $this->angle) { + $res['Angle'] = $this->angle; + } + if (null !== $this->business) { + $res['Business'] = $this->business; + } + if (null !== $this->capital) { + $res['Capital'] = $this->capital; + } + if (null !== $this->emblem) { + $res['Emblem'] = null !== $this->emblem ? $this->emblem->toMap() : null; + } + if (null !== $this->establishDate) { + $res['EstablishDate'] = $this->establishDate; + } + if (null !== $this->legalPerson) { + $res['LegalPerson'] = $this->legalPerson; + } + if (null !== $this->name) { + $res['Name'] = $this->name; + } + if (null !== $this->QRCode) { + $res['QRCode'] = null !== $this->QRCode ? $this->QRCode->toMap() : null; + } + if (null !== $this->registerNumber) { + $res['RegisterNumber'] = $this->registerNumber; + } + if (null !== $this->stamp) { + $res['Stamp'] = null !== $this->stamp ? $this->stamp->toMap() : null; + } + if (null !== $this->title) { + $res['Title'] = null !== $this->title ? $this->title->toMap() : null; + } + if (null !== $this->type) { + $res['Type'] = $this->type; + } + if (null !== $this->validPeriod) { + $res['ValidPeriod'] = $this->validPeriod; + } + + return $res; + } + + /** + * @param array $map + * + * @return data + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Address'])) { + $model->address = $map['Address']; + } + if (isset($map['Angle'])) { + $model->angle = $map['Angle']; + } + if (isset($map['Business'])) { + $model->business = $map['Business']; + } + if (isset($map['Capital'])) { + $model->capital = $map['Capital']; + } + if (isset($map['Emblem'])) { + $model->emblem = emblem::fromMap($map['Emblem']); + } + if (isset($map['EstablishDate'])) { + $model->establishDate = $map['EstablishDate']; + } + if (isset($map['LegalPerson'])) { + $model->legalPerson = $map['LegalPerson']; + } + if (isset($map['Name'])) { + $model->name = $map['Name']; + } + if (isset($map['QRCode'])) { + $model->QRCode = QRCode::fromMap($map['QRCode']); + } + if (isset($map['RegisterNumber'])) { + $model->registerNumber = $map['RegisterNumber']; + } + if (isset($map['Stamp'])) { + $model->stamp = stamp::fromMap($map['Stamp']); + } + if (isset($map['Title'])) { + $model->title = title::fromMap($map['Title']); + } + if (isset($map['Type'])) { + $model->type = $map['Type']; + } + if (isset($map['ValidPeriod'])) { + $model->validPeriod = $map['ValidPeriod']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBusinessLicenseResponseBody/data/QRCode.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBusinessLicenseResponseBody/data/QRCode.php new file mode 100644 index 00000000..2d4ed8d7 --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBusinessLicenseResponseBody/data/QRCode.php @@ -0,0 +1,91 @@ + 'Height', + 'left' => 'Left', + 'top' => 'Top', + 'width' => 'Width', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->height) { + $res['Height'] = $this->height; + } + if (null !== $this->left) { + $res['Left'] = $this->left; + } + if (null !== $this->top) { + $res['Top'] = $this->top; + } + if (null !== $this->width) { + $res['Width'] = $this->width; + } + + return $res; + } + + /** + * @param array $map + * + * @return QRCode + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Height'])) { + $model->height = $map['Height']; + } + if (isset($map['Left'])) { + $model->left = $map['Left']; + } + if (isset($map['Top'])) { + $model->top = $map['Top']; + } + if (isset($map['Width'])) { + $model->width = $map['Width']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBusinessLicenseResponseBody/data/emblem.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBusinessLicenseResponseBody/data/emblem.php new file mode 100644 index 00000000..71cbe433 --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBusinessLicenseResponseBody/data/emblem.php @@ -0,0 +1,91 @@ + 'Height', + 'left' => 'Left', + 'top' => 'Top', + 'width' => 'Width', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->height) { + $res['Height'] = $this->height; + } + if (null !== $this->left) { + $res['Left'] = $this->left; + } + if (null !== $this->top) { + $res['Top'] = $this->top; + } + if (null !== $this->width) { + $res['Width'] = $this->width; + } + + return $res; + } + + /** + * @param array $map + * + * @return emblem + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Height'])) { + $model->height = $map['Height']; + } + if (isset($map['Left'])) { + $model->left = $map['Left']; + } + if (isset($map['Top'])) { + $model->top = $map['Top']; + } + if (isset($map['Width'])) { + $model->width = $map['Width']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBusinessLicenseResponseBody/data/stamp.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBusinessLicenseResponseBody/data/stamp.php new file mode 100644 index 00000000..fc267f81 --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBusinessLicenseResponseBody/data/stamp.php @@ -0,0 +1,91 @@ + 'Height', + 'left' => 'Left', + 'top' => 'Top', + 'width' => 'Width', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->height) { + $res['Height'] = $this->height; + } + if (null !== $this->left) { + $res['Left'] = $this->left; + } + if (null !== $this->top) { + $res['Top'] = $this->top; + } + if (null !== $this->width) { + $res['Width'] = $this->width; + } + + return $res; + } + + /** + * @param array $map + * + * @return stamp + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Height'])) { + $model->height = $map['Height']; + } + if (isset($map['Left'])) { + $model->left = $map['Left']; + } + if (isset($map['Top'])) { + $model->top = $map['Top']; + } + if (isset($map['Width'])) { + $model->width = $map['Width']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBusinessLicenseResponseBody/data/title.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBusinessLicenseResponseBody/data/title.php new file mode 100644 index 00000000..3f812546 --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBusinessLicenseResponseBody/data/title.php @@ -0,0 +1,91 @@ + 'Height', + 'left' => 'Left', + 'top' => 'Top', + 'width' => 'Width', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->height) { + $res['Height'] = $this->height; + } + if (null !== $this->left) { + $res['Left'] = $this->left; + } + if (null !== $this->top) { + $res['Top'] = $this->top; + } + if (null !== $this->width) { + $res['Width'] = $this->width; + } + + return $res; + } + + /** + * @param array $map + * + * @return title + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Height'])) { + $model->height = $map['Height']; + } + if (isset($map['Left'])) { + $model->left = $map['Left']; + } + if (isset($map['Top'])) { + $model->top = $map['Top']; + } + if (isset($map['Width'])) { + $model->width = $map['Width']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeCharacterAdvanceRequest.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeCharacterAdvanceRequest.php new file mode 100644 index 00000000..4e94416d --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeCharacterAdvanceRequest.php @@ -0,0 +1,78 @@ + 'ImageURL', + 'minHeight' => 'MinHeight', + 'outputProbability' => 'OutputProbability', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->imageURLObject) { + $res['ImageURL'] = $this->imageURLObject; + } + if (null !== $this->minHeight) { + $res['MinHeight'] = $this->minHeight; + } + if (null !== $this->outputProbability) { + $res['OutputProbability'] = $this->outputProbability; + } + + return $res; + } + + /** + * @param array $map + * + * @return RecognizeCharacterAdvanceRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['ImageURL'])) { + $model->imageURLObject = $map['ImageURL']; + } + if (isset($map['MinHeight'])) { + $model->minHeight = $map['MinHeight']; + } + if (isset($map['OutputProbability'])) { + $model->outputProbability = $map['OutputProbability']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeCharacterRequest.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeCharacterRequest.php new file mode 100644 index 00000000..513bc925 --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeCharacterRequest.php @@ -0,0 +1,77 @@ + 'ImageURL', + 'minHeight' => 'MinHeight', + 'outputProbability' => 'OutputProbability', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->imageURL) { + $res['ImageURL'] = $this->imageURL; + } + if (null !== $this->minHeight) { + $res['MinHeight'] = $this->minHeight; + } + if (null !== $this->outputProbability) { + $res['OutputProbability'] = $this->outputProbability; + } + + return $res; + } + + /** + * @param array $map + * + * @return RecognizeCharacterRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['ImageURL'])) { + $model->imageURL = $map['ImageURL']; + } + if (isset($map['MinHeight'])) { + $model->minHeight = $map['MinHeight']; + } + if (isset($map['OutputProbability'])) { + $model->outputProbability = $map['OutputProbability']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeCharacterResponse.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeCharacterResponse.php new file mode 100644 index 00000000..9a489788 --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeCharacterResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return RecognizeCharacterResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = RecognizeCharacterResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeCharacterResponseBody.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeCharacterResponseBody.php new file mode 100644 index 00000000..1b31be48 --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeCharacterResponseBody.php @@ -0,0 +1,62 @@ + 'Data', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->data) { + $res['Data'] = null !== $this->data ? $this->data->toMap() : null; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return RecognizeCharacterResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Data'])) { + $model->data = data::fromMap($map['Data']); + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeCharacterResponseBody/data.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeCharacterResponseBody/data.php new file mode 100644 index 00000000..23d688df --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeCharacterResponseBody/data.php @@ -0,0 +1,60 @@ + 'Results', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->results) { + $res['Results'] = []; + if (null !== $this->results && \is_array($this->results)) { + $n = 0; + foreach ($this->results as $item) { + $res['Results'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return data + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Results'])) { + if (!empty($map['Results'])) { + $model->results = []; + $n = 0; + foreach ($map['Results'] as $item) { + $model->results[$n++] = null !== $item ? results::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeCharacterResponseBody/data/results.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeCharacterResponseBody/data/results.php new file mode 100644 index 00000000..70d21639 --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeCharacterResponseBody/data/results.php @@ -0,0 +1,74 @@ + 'Probability', + 'text' => 'Text', + 'textRectangles' => 'TextRectangles', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->probability) { + $res['Probability'] = $this->probability; + } + if (null !== $this->text) { + $res['Text'] = $this->text; + } + if (null !== $this->textRectangles) { + $res['TextRectangles'] = null !== $this->textRectangles ? $this->textRectangles->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return results + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Probability'])) { + $model->probability = $map['Probability']; + } + if (isset($map['Text'])) { + $model->text = $map['Text']; + } + if (isset($map['TextRectangles'])) { + $model->textRectangles = textRectangles::fromMap($map['TextRectangles']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeCharacterResponseBody/data/results/textRectangles.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeCharacterResponseBody/data/results/textRectangles.php new file mode 100644 index 00000000..94d04822 --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeCharacterResponseBody/data/results/textRectangles.php @@ -0,0 +1,105 @@ + 'Angle', + 'height' => 'Height', + 'left' => 'Left', + 'top' => 'Top', + 'width' => 'Width', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->angle) { + $res['Angle'] = $this->angle; + } + if (null !== $this->height) { + $res['Height'] = $this->height; + } + if (null !== $this->left) { + $res['Left'] = $this->left; + } + if (null !== $this->top) { + $res['Top'] = $this->top; + } + if (null !== $this->width) { + $res['Width'] = $this->width; + } + + return $res; + } + + /** + * @param array $map + * + * @return textRectangles + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Angle'])) { + $model->angle = $map['Angle']; + } + if (isset($map['Height'])) { + $model->height = $map['Height']; + } + if (isset($map['Left'])) { + $model->left = $map['Left']; + } + if (isset($map['Top'])) { + $model->top = $map['Top']; + } + if (isset($map['Width'])) { + $model->width = $map['Width']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeDriverLicenseAdvanceRequest.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeDriverLicenseAdvanceRequest.php new file mode 100644 index 00000000..d756b15d --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeDriverLicenseAdvanceRequest.php @@ -0,0 +1,64 @@ + 'ImageURL', + 'side' => 'Side', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->imageURLObject) { + $res['ImageURL'] = $this->imageURLObject; + } + if (null !== $this->side) { + $res['Side'] = $this->side; + } + + return $res; + } + + /** + * @param array $map + * + * @return RecognizeDriverLicenseAdvanceRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['ImageURL'])) { + $model->imageURLObject = $map['ImageURL']; + } + if (isset($map['Side'])) { + $model->side = $map['Side']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeDriverLicenseRequest.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeDriverLicenseRequest.php new file mode 100644 index 00000000..2d695324 --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeDriverLicenseRequest.php @@ -0,0 +1,63 @@ + 'ImageURL', + 'side' => 'Side', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->imageURL) { + $res['ImageURL'] = $this->imageURL; + } + if (null !== $this->side) { + $res['Side'] = $this->side; + } + + return $res; + } + + /** + * @param array $map + * + * @return RecognizeDriverLicenseRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['ImageURL'])) { + $model->imageURL = $map['ImageURL']; + } + if (isset($map['Side'])) { + $model->side = $map['Side']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeDriverLicenseResponse.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeDriverLicenseResponse.php new file mode 100644 index 00000000..c46341ee --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeDriverLicenseResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return RecognizeDriverLicenseResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = RecognizeDriverLicenseResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeDriverLicenseResponseBody.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeDriverLicenseResponseBody.php new file mode 100644 index 00000000..04e98b73 --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeDriverLicenseResponseBody.php @@ -0,0 +1,62 @@ + 'Data', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->data) { + $res['Data'] = null !== $this->data ? $this->data->toMap() : null; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return RecognizeDriverLicenseResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Data'])) { + $model->data = data::fromMap($map['Data']); + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeDriverLicenseResponseBody/data.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeDriverLicenseResponseBody/data.php new file mode 100644 index 00000000..d7949a22 --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeDriverLicenseResponseBody/data.php @@ -0,0 +1,61 @@ + 'BackResult', + 'faceResult' => 'FaceResult', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->backResult) { + $res['BackResult'] = null !== $this->backResult ? $this->backResult->toMap() : null; + } + if (null !== $this->faceResult) { + $res['FaceResult'] = null !== $this->faceResult ? $this->faceResult->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return data + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['BackResult'])) { + $model->backResult = backResult::fromMap($map['BackResult']); + } + if (isset($map['FaceResult'])) { + $model->faceResult = faceResult::fromMap($map['FaceResult']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeDriverLicenseResponseBody/data/backResult.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeDriverLicenseResponseBody/data/backResult.php new file mode 100644 index 00000000..7f6802a8 --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeDriverLicenseResponseBody/data/backResult.php @@ -0,0 +1,87 @@ + 'ArchiveNumber', + 'cardNumber' => 'CardNumber', + 'name' => 'Name', + 'record' => 'Record', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->archiveNumber) { + $res['ArchiveNumber'] = $this->archiveNumber; + } + if (null !== $this->cardNumber) { + $res['CardNumber'] = $this->cardNumber; + } + if (null !== $this->name) { + $res['Name'] = $this->name; + } + if (null !== $this->record) { + $res['Record'] = $this->record; + } + + return $res; + } + + /** + * @param array $map + * + * @return backResult + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['ArchiveNumber'])) { + $model->archiveNumber = $map['ArchiveNumber']; + } + if (isset($map['CardNumber'])) { + $model->cardNumber = $map['CardNumber']; + } + if (isset($map['Name'])) { + $model->name = $map['Name']; + } + if (isset($map['Record'])) { + $model->record = $map['Record']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeDriverLicenseResponseBody/data/faceResult.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeDriverLicenseResponseBody/data/faceResult.php new file mode 100644 index 00000000..2bab3948 --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeDriverLicenseResponseBody/data/faceResult.php @@ -0,0 +1,153 @@ + 'Address', + 'endDate' => 'EndDate', + 'gender' => 'Gender', + 'issueDate' => 'IssueDate', + 'issueUnit' => 'IssueUnit', + 'licenseNumber' => 'LicenseNumber', + 'name' => 'Name', + 'startDate' => 'StartDate', + 'vehicleType' => 'VehicleType', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->address) { + $res['Address'] = $this->address; + } + if (null !== $this->endDate) { + $res['EndDate'] = $this->endDate; + } + if (null !== $this->gender) { + $res['Gender'] = $this->gender; + } + if (null !== $this->issueDate) { + $res['IssueDate'] = $this->issueDate; + } + if (null !== $this->issueUnit) { + $res['IssueUnit'] = $this->issueUnit; + } + if (null !== $this->licenseNumber) { + $res['LicenseNumber'] = $this->licenseNumber; + } + if (null !== $this->name) { + $res['Name'] = $this->name; + } + if (null !== $this->startDate) { + $res['StartDate'] = $this->startDate; + } + if (null !== $this->vehicleType) { + $res['VehicleType'] = $this->vehicleType; + } + + return $res; + } + + /** + * @param array $map + * + * @return faceResult + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Address'])) { + $model->address = $map['Address']; + } + if (isset($map['EndDate'])) { + $model->endDate = $map['EndDate']; + } + if (isset($map['Gender'])) { + $model->gender = $map['Gender']; + } + if (isset($map['IssueDate'])) { + $model->issueDate = $map['IssueDate']; + } + if (isset($map['IssueUnit'])) { + $model->issueUnit = $map['IssueUnit']; + } + if (isset($map['LicenseNumber'])) { + $model->licenseNumber = $map['LicenseNumber']; + } + if (isset($map['Name'])) { + $model->name = $map['Name']; + } + if (isset($map['StartDate'])) { + $model->startDate = $map['StartDate']; + } + if (isset($map['VehicleType'])) { + $model->vehicleType = $map['VehicleType']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeDrivingLicenseAdvanceRequest.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeDrivingLicenseAdvanceRequest.php new file mode 100644 index 00000000..6c9d8e0b --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeDrivingLicenseAdvanceRequest.php @@ -0,0 +1,64 @@ + 'ImageURL', + 'side' => 'Side', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->imageURLObject) { + $res['ImageURL'] = $this->imageURLObject; + } + if (null !== $this->side) { + $res['Side'] = $this->side; + } + + return $res; + } + + /** + * @param array $map + * + * @return RecognizeDrivingLicenseAdvanceRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['ImageURL'])) { + $model->imageURLObject = $map['ImageURL']; + } + if (isset($map['Side'])) { + $model->side = $map['Side']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeDrivingLicenseRequest.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeDrivingLicenseRequest.php new file mode 100644 index 00000000..c08b1b18 --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeDrivingLicenseRequest.php @@ -0,0 +1,63 @@ + 'ImageURL', + 'side' => 'Side', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->imageURL) { + $res['ImageURL'] = $this->imageURL; + } + if (null !== $this->side) { + $res['Side'] = $this->side; + } + + return $res; + } + + /** + * @param array $map + * + * @return RecognizeDrivingLicenseRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['ImageURL'])) { + $model->imageURL = $map['ImageURL']; + } + if (isset($map['Side'])) { + $model->side = $map['Side']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeDrivingLicenseResponse.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeDrivingLicenseResponse.php new file mode 100644 index 00000000..0c9e8a82 --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeDrivingLicenseResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return RecognizeDrivingLicenseResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = RecognizeDrivingLicenseResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeDrivingLicenseResponseBody.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeDrivingLicenseResponseBody.php new file mode 100644 index 00000000..d79d1df4 --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeDrivingLicenseResponseBody.php @@ -0,0 +1,62 @@ + 'Data', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->data) { + $res['Data'] = null !== $this->data ? $this->data->toMap() : null; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return RecognizeDrivingLicenseResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Data'])) { + $model->data = data::fromMap($map['Data']); + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeDrivingLicenseResponseBody/data.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeDrivingLicenseResponseBody/data.php new file mode 100644 index 00000000..a2aec2d8 --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeDrivingLicenseResponseBody/data.php @@ -0,0 +1,61 @@ + 'BackResult', + 'faceResult' => 'FaceResult', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->backResult) { + $res['BackResult'] = null !== $this->backResult ? $this->backResult->toMap() : null; + } + if (null !== $this->faceResult) { + $res['FaceResult'] = null !== $this->faceResult ? $this->faceResult->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return data + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['BackResult'])) { + $model->backResult = backResult::fromMap($map['BackResult']); + } + if (isset($map['FaceResult'])) { + $model->faceResult = faceResult::fromMap($map['FaceResult']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeDrivingLicenseResponseBody/data/backResult.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeDrivingLicenseResponseBody/data/backResult.php new file mode 100644 index 00000000..e57464b0 --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeDrivingLicenseResponseBody/data/backResult.php @@ -0,0 +1,169 @@ + 'ApprovedLoad', + 'approvedPassengerCapacity' => 'ApprovedPassengerCapacity', + 'energyType' => 'EnergyType', + 'fileNumber' => 'FileNumber', + 'grossMass' => 'GrossMass', + 'inspectionRecord' => 'InspectionRecord', + 'overallDimension' => 'OverallDimension', + 'plateNumber' => 'PlateNumber', + 'tractionMass' => 'TractionMass', + 'unladenMass' => 'UnladenMass', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->approvedLoad) { + $res['ApprovedLoad'] = $this->approvedLoad; + } + if (null !== $this->approvedPassengerCapacity) { + $res['ApprovedPassengerCapacity'] = $this->approvedPassengerCapacity; + } + if (null !== $this->energyType) { + $res['EnergyType'] = $this->energyType; + } + if (null !== $this->fileNumber) { + $res['FileNumber'] = $this->fileNumber; + } + if (null !== $this->grossMass) { + $res['GrossMass'] = $this->grossMass; + } + if (null !== $this->inspectionRecord) { + $res['InspectionRecord'] = $this->inspectionRecord; + } + if (null !== $this->overallDimension) { + $res['OverallDimension'] = $this->overallDimension; + } + if (null !== $this->plateNumber) { + $res['PlateNumber'] = $this->plateNumber; + } + if (null !== $this->tractionMass) { + $res['TractionMass'] = $this->tractionMass; + } + if (null !== $this->unladenMass) { + $res['UnladenMass'] = $this->unladenMass; + } + + return $res; + } + + /** + * @param array $map + * + * @return backResult + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['ApprovedLoad'])) { + $model->approvedLoad = $map['ApprovedLoad']; + } + if (isset($map['ApprovedPassengerCapacity'])) { + $model->approvedPassengerCapacity = $map['ApprovedPassengerCapacity']; + } + if (isset($map['EnergyType'])) { + $model->energyType = $map['EnergyType']; + } + if (isset($map['FileNumber'])) { + $model->fileNumber = $map['FileNumber']; + } + if (isset($map['GrossMass'])) { + $model->grossMass = $map['GrossMass']; + } + if (isset($map['InspectionRecord'])) { + $model->inspectionRecord = $map['InspectionRecord']; + } + if (isset($map['OverallDimension'])) { + $model->overallDimension = $map['OverallDimension']; + } + if (isset($map['PlateNumber'])) { + $model->plateNumber = $map['PlateNumber']; + } + if (isset($map['TractionMass'])) { + $model->tractionMass = $map['TractionMass']; + } + if (isset($map['UnladenMass'])) { + $model->unladenMass = $map['UnladenMass']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeDrivingLicenseResponseBody/data/faceResult.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeDrivingLicenseResponseBody/data/faceResult.php new file mode 100644 index 00000000..84172d6f --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeDrivingLicenseResponseBody/data/faceResult.php @@ -0,0 +1,163 @@ + 'Address', + 'engineNumber' => 'EngineNumber', + 'issueDate' => 'IssueDate', + 'model' => 'Model', + 'owner' => 'Owner', + 'plateNumber' => 'PlateNumber', + 'registerDate' => 'RegisterDate', + 'useCharacter' => 'UseCharacter', + 'vehicleType' => 'VehicleType', + 'vin' => 'Vin', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->address) { + $res['Address'] = $this->address; + } + if (null !== $this->engineNumber) { + $res['EngineNumber'] = $this->engineNumber; + } + if (null !== $this->issueDate) { + $res['IssueDate'] = $this->issueDate; + } + if (null !== $this->model) { + $res['Model'] = $this->model; + } + if (null !== $this->owner) { + $res['Owner'] = $this->owner; + } + if (null !== $this->plateNumber) { + $res['PlateNumber'] = $this->plateNumber; + } + if (null !== $this->registerDate) { + $res['RegisterDate'] = $this->registerDate; + } + if (null !== $this->useCharacter) { + $res['UseCharacter'] = $this->useCharacter; + } + if (null !== $this->vehicleType) { + $res['VehicleType'] = $this->vehicleType; + } + if (null !== $this->vin) { + $res['Vin'] = $this->vin; + } + + return $res; + } + + /** + * @param array $map + * + * @return faceResult + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Address'])) { + $model->address = $map['Address']; + } + if (isset($map['EngineNumber'])) { + $model->engineNumber = $map['EngineNumber']; + } + if (isset($map['IssueDate'])) { + $model->issueDate = $map['IssueDate']; + } + if (isset($map['Model'])) { + $model->model = $map['Model']; + } + if (isset($map['Owner'])) { + $model->owner = $map['Owner']; + } + if (isset($map['PlateNumber'])) { + $model->plateNumber = $map['PlateNumber']; + } + if (isset($map['RegisterDate'])) { + $model->registerDate = $map['RegisterDate']; + } + if (isset($map['UseCharacter'])) { + $model->useCharacter = $map['UseCharacter']; + } + if (isset($map['VehicleType'])) { + $model->vehicleType = $map['VehicleType']; + } + if (isset($map['Vin'])) { + $model->vin = $map['Vin']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeIdentityCardAdvanceRequest.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeIdentityCardAdvanceRequest.php new file mode 100644 index 00000000..0404a23d --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeIdentityCardAdvanceRequest.php @@ -0,0 +1,64 @@ + 'ImageURL', + 'side' => 'Side', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->imageURLObject) { + $res['ImageURL'] = $this->imageURLObject; + } + if (null !== $this->side) { + $res['Side'] = $this->side; + } + + return $res; + } + + /** + * @param array $map + * + * @return RecognizeIdentityCardAdvanceRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['ImageURL'])) { + $model->imageURLObject = $map['ImageURL']; + } + if (isset($map['Side'])) { + $model->side = $map['Side']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeIdentityCardRequest.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeIdentityCardRequest.php new file mode 100644 index 00000000..fffa4784 --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeIdentityCardRequest.php @@ -0,0 +1,63 @@ + 'ImageURL', + 'side' => 'Side', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->imageURL) { + $res['ImageURL'] = $this->imageURL; + } + if (null !== $this->side) { + $res['Side'] = $this->side; + } + + return $res; + } + + /** + * @param array $map + * + * @return RecognizeIdentityCardRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['ImageURL'])) { + $model->imageURL = $map['ImageURL']; + } + if (isset($map['Side'])) { + $model->side = $map['Side']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeIdentityCardResponse.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeIdentityCardResponse.php new file mode 100644 index 00000000..77d5b4e1 --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeIdentityCardResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return RecognizeIdentityCardResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = RecognizeIdentityCardResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeIdentityCardResponseBody.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeIdentityCardResponseBody.php new file mode 100644 index 00000000..a7f8df4a --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeIdentityCardResponseBody.php @@ -0,0 +1,62 @@ + 'Data', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->data) { + $res['Data'] = null !== $this->data ? $this->data->toMap() : null; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return RecognizeIdentityCardResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Data'])) { + $model->data = data::fromMap($map['Data']); + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeIdentityCardResponseBody/data.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeIdentityCardResponseBody/data.php new file mode 100644 index 00000000..71423ef5 --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeIdentityCardResponseBody/data.php @@ -0,0 +1,61 @@ + 'BackResult', + 'frontResult' => 'FrontResult', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->backResult) { + $res['BackResult'] = null !== $this->backResult ? $this->backResult->toMap() : null; + } + if (null !== $this->frontResult) { + $res['FrontResult'] = null !== $this->frontResult ? $this->frontResult->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return data + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['BackResult'])) { + $model->backResult = backResult::fromMap($map['BackResult']); + } + if (isset($map['FrontResult'])) { + $model->frontResult = frontResult::fromMap($map['FrontResult']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeIdentityCardResponseBody/data/backResult.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeIdentityCardResponseBody/data/backResult.php new file mode 100644 index 00000000..9436f1c6 --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeIdentityCardResponseBody/data/backResult.php @@ -0,0 +1,75 @@ + 'EndDate', + 'issue' => 'Issue', + 'startDate' => 'StartDate', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->endDate) { + $res['EndDate'] = $this->endDate; + } + if (null !== $this->issue) { + $res['Issue'] = $this->issue; + } + if (null !== $this->startDate) { + $res['StartDate'] = $this->startDate; + } + + return $res; + } + + /** + * @param array $map + * + * @return backResult + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['EndDate'])) { + $model->endDate = $map['EndDate']; + } + if (isset($map['Issue'])) { + $model->issue = $map['Issue']; + } + if (isset($map['StartDate'])) { + $model->startDate = $map['StartDate']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeIdentityCardResponseBody/data/frontResult.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeIdentityCardResponseBody/data/frontResult.php new file mode 100644 index 00000000..68612c04 --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeIdentityCardResponseBody/data/frontResult.php @@ -0,0 +1,174 @@ + 'Address', + 'birthDate' => 'BirthDate', + 'cardAreas' => 'CardAreas', + 'faceRectVertices' => 'FaceRectVertices', + 'faceRectangle' => 'FaceRectangle', + 'gender' => 'Gender', + 'IDNumber' => 'IDNumber', + 'name' => 'Name', + 'nationality' => 'Nationality', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->address) { + $res['Address'] = $this->address; + } + if (null !== $this->birthDate) { + $res['BirthDate'] = $this->birthDate; + } + if (null !== $this->cardAreas) { + $res['CardAreas'] = []; + if (null !== $this->cardAreas && \is_array($this->cardAreas)) { + $n = 0; + foreach ($this->cardAreas as $item) { + $res['CardAreas'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + if (null !== $this->faceRectVertices) { + $res['FaceRectVertices'] = []; + if (null !== $this->faceRectVertices && \is_array($this->faceRectVertices)) { + $n = 0; + foreach ($this->faceRectVertices as $item) { + $res['FaceRectVertices'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + if (null !== $this->faceRectangle) { + $res['FaceRectangle'] = null !== $this->faceRectangle ? $this->faceRectangle->toMap() : null; + } + if (null !== $this->gender) { + $res['Gender'] = $this->gender; + } + if (null !== $this->IDNumber) { + $res['IDNumber'] = $this->IDNumber; + } + if (null !== $this->name) { + $res['Name'] = $this->name; + } + if (null !== $this->nationality) { + $res['Nationality'] = $this->nationality; + } + + return $res; + } + + /** + * @param array $map + * + * @return frontResult + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Address'])) { + $model->address = $map['Address']; + } + if (isset($map['BirthDate'])) { + $model->birthDate = $map['BirthDate']; + } + if (isset($map['CardAreas'])) { + if (!empty($map['CardAreas'])) { + $model->cardAreas = []; + $n = 0; + foreach ($map['CardAreas'] as $item) { + $model->cardAreas[$n++] = null !== $item ? cardAreas::fromMap($item) : $item; + } + } + } + if (isset($map['FaceRectVertices'])) { + if (!empty($map['FaceRectVertices'])) { + $model->faceRectVertices = []; + $n = 0; + foreach ($map['FaceRectVertices'] as $item) { + $model->faceRectVertices[$n++] = null !== $item ? faceRectVertices::fromMap($item) : $item; + } + } + } + if (isset($map['FaceRectangle'])) { + $model->faceRectangle = faceRectangle::fromMap($map['FaceRectangle']); + } + if (isset($map['Gender'])) { + $model->gender = $map['Gender']; + } + if (isset($map['IDNumber'])) { + $model->IDNumber = $map['IDNumber']; + } + if (isset($map['Name'])) { + $model->name = $map['Name']; + } + if (isset($map['Nationality'])) { + $model->nationality = $map['Nationality']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeIdentityCardResponseBody/data/frontResult/cardAreas.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeIdentityCardResponseBody/data/frontResult/cardAreas.php new file mode 100644 index 00000000..986abd75 --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeIdentityCardResponseBody/data/frontResult/cardAreas.php @@ -0,0 +1,63 @@ + 'X', + 'y' => 'Y', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->x) { + $res['X'] = $this->x; + } + if (null !== $this->y) { + $res['Y'] = $this->y; + } + + return $res; + } + + /** + * @param array $map + * + * @return cardAreas + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['X'])) { + $model->x = $map['X']; + } + if (isset($map['Y'])) { + $model->y = $map['Y']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeIdentityCardResponseBody/data/frontResult/faceRectVertices.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeIdentityCardResponseBody/data/frontResult/faceRectVertices.php new file mode 100644 index 00000000..9bae783e --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeIdentityCardResponseBody/data/frontResult/faceRectVertices.php @@ -0,0 +1,63 @@ + 'X', + 'y' => 'Y', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->x) { + $res['X'] = $this->x; + } + if (null !== $this->y) { + $res['Y'] = $this->y; + } + + return $res; + } + + /** + * @param array $map + * + * @return faceRectVertices + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['X'])) { + $model->x = $map['X']; + } + if (isset($map['Y'])) { + $model->y = $map['Y']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeIdentityCardResponseBody/data/frontResult/faceRectangle.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeIdentityCardResponseBody/data/frontResult/faceRectangle.php new file mode 100644 index 00000000..4c012c55 --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeIdentityCardResponseBody/data/frontResult/faceRectangle.php @@ -0,0 +1,75 @@ + 'Angle', + 'center' => 'Center', + 'size' => 'Size', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->angle) { + $res['Angle'] = $this->angle; + } + if (null !== $this->center) { + $res['Center'] = null !== $this->center ? $this->center->toMap() : null; + } + if (null !== $this->size) { + $res['Size'] = null !== $this->size ? $this->size->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return faceRectangle + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Angle'])) { + $model->angle = $map['Angle']; + } + if (isset($map['Center'])) { + $model->center = center::fromMap($map['Center']); + } + if (isset($map['Size'])) { + $model->size = size::fromMap($map['Size']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeIdentityCardResponseBody/data/frontResult/faceRectangle/center.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeIdentityCardResponseBody/data/frontResult/faceRectangle/center.php new file mode 100644 index 00000000..9d8906bf --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeIdentityCardResponseBody/data/frontResult/faceRectangle/center.php @@ -0,0 +1,63 @@ + 'X', + 'y' => 'Y', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->x) { + $res['X'] = $this->x; + } + if (null !== $this->y) { + $res['Y'] = $this->y; + } + + return $res; + } + + /** + * @param array $map + * + * @return center + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['X'])) { + $model->x = $map['X']; + } + if (isset($map['Y'])) { + $model->y = $map['Y']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeIdentityCardResponseBody/data/frontResult/faceRectangle/size.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeIdentityCardResponseBody/data/frontResult/faceRectangle/size.php new file mode 100644 index 00000000..dbacc2fe --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeIdentityCardResponseBody/data/frontResult/faceRectangle/size.php @@ -0,0 +1,63 @@ + 'Height', + 'width' => 'Width', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->height) { + $res['Height'] = $this->height; + } + if (null !== $this->width) { + $res['Width'] = $this->width; + } + + return $res; + } + + /** + * @param array $map + * + * @return size + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Height'])) { + $model->height = $map['Height']; + } + if (isset($map['Width'])) { + $model->width = $map['Width']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeLicensePlateAdvanceRequest.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeLicensePlateAdvanceRequest.php new file mode 100644 index 00000000..4510a48b --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeLicensePlateAdvanceRequest.php @@ -0,0 +1,50 @@ + 'ImageURL', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->imageURLObject) { + $res['ImageURL'] = $this->imageURLObject; + } + + return $res; + } + + /** + * @param array $map + * + * @return RecognizeLicensePlateAdvanceRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['ImageURL'])) { + $model->imageURLObject = $map['ImageURL']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeLicensePlateRequest.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeLicensePlateRequest.php new file mode 100644 index 00000000..f3722c81 --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeLicensePlateRequest.php @@ -0,0 +1,49 @@ + 'ImageURL', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->imageURL) { + $res['ImageURL'] = $this->imageURL; + } + + return $res; + } + + /** + * @param array $map + * + * @return RecognizeLicensePlateRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['ImageURL'])) { + $model->imageURL = $map['ImageURL']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeLicensePlateResponse.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeLicensePlateResponse.php new file mode 100644 index 00000000..634bf3dd --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeLicensePlateResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return RecognizeLicensePlateResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = RecognizeLicensePlateResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeLicensePlateResponseBody.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeLicensePlateResponseBody.php new file mode 100644 index 00000000..feb686f9 --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeLicensePlateResponseBody.php @@ -0,0 +1,62 @@ + 'Data', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->data) { + $res['Data'] = null !== $this->data ? $this->data->toMap() : null; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return RecognizeLicensePlateResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Data'])) { + $model->data = data::fromMap($map['Data']); + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeLicensePlateResponseBody/data.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeLicensePlateResponseBody/data.php new file mode 100644 index 00000000..27b0b8e6 --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeLicensePlateResponseBody/data.php @@ -0,0 +1,60 @@ + 'Plates', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->plates) { + $res['Plates'] = []; + if (null !== $this->plates && \is_array($this->plates)) { + $n = 0; + foreach ($this->plates as $item) { + $res['Plates'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return data + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Plates'])) { + if (!empty($map['Plates'])) { + $model->plates = []; + $n = 0; + foreach ($map['Plates'] as $item) { + $model->plates[$n++] = null !== $item ? plates::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeLicensePlateResponseBody/data/plates.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeLicensePlateResponseBody/data/plates.php new file mode 100644 index 00000000..7fa2fcea --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeLicensePlateResponseBody/data/plates.php @@ -0,0 +1,125 @@ + 'Confidence', + 'plateNumber' => 'PlateNumber', + 'plateType' => 'PlateType', + 'plateTypeConfidence' => 'PlateTypeConfidence', + 'positions' => 'Positions', + 'roi' => 'Roi', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->confidence) { + $res['Confidence'] = $this->confidence; + } + if (null !== $this->plateNumber) { + $res['PlateNumber'] = $this->plateNumber; + } + if (null !== $this->plateType) { + $res['PlateType'] = $this->plateType; + } + if (null !== $this->plateTypeConfidence) { + $res['PlateTypeConfidence'] = $this->plateTypeConfidence; + } + if (null !== $this->positions) { + $res['Positions'] = []; + if (null !== $this->positions && \is_array($this->positions)) { + $n = 0; + foreach ($this->positions as $item) { + $res['Positions'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + if (null !== $this->roi) { + $res['Roi'] = null !== $this->roi ? $this->roi->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return plates + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Confidence'])) { + $model->confidence = $map['Confidence']; + } + if (isset($map['PlateNumber'])) { + $model->plateNumber = $map['PlateNumber']; + } + if (isset($map['PlateType'])) { + $model->plateType = $map['PlateType']; + } + if (isset($map['PlateTypeConfidence'])) { + $model->plateTypeConfidence = $map['PlateTypeConfidence']; + } + if (isset($map['Positions'])) { + if (!empty($map['Positions'])) { + $model->positions = []; + $n = 0; + foreach ($map['Positions'] as $item) { + $model->positions[$n++] = null !== $item ? positions::fromMap($item) : $item; + } + } + } + if (isset($map['Roi'])) { + $model->roi = roi::fromMap($map['Roi']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeLicensePlateResponseBody/data/plates/positions.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeLicensePlateResponseBody/data/plates/positions.php new file mode 100644 index 00000000..38148826 --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeLicensePlateResponseBody/data/plates/positions.php @@ -0,0 +1,63 @@ + 'X', + 'y' => 'Y', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->x) { + $res['X'] = $this->x; + } + if (null !== $this->y) { + $res['Y'] = $this->y; + } + + return $res; + } + + /** + * @param array $map + * + * @return positions + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['X'])) { + $model->x = $map['X']; + } + if (isset($map['Y'])) { + $model->y = $map['Y']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeLicensePlateResponseBody/data/plates/roi.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeLicensePlateResponseBody/data/plates/roi.php new file mode 100644 index 00000000..6f72fda2 --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeLicensePlateResponseBody/data/plates/roi.php @@ -0,0 +1,91 @@ + 'H', + 'w' => 'W', + 'x' => 'X', + 'y' => 'Y', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->h) { + $res['H'] = $this->h; + } + if (null !== $this->w) { + $res['W'] = $this->w; + } + if (null !== $this->x) { + $res['X'] = $this->x; + } + if (null !== $this->y) { + $res['Y'] = $this->y; + } + + return $res; + } + + /** + * @param array $map + * + * @return roi + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['H'])) { + $model->h = $map['H']; + } + if (isset($map['W'])) { + $model->w = $map['W']; + } + if (isset($map['X'])) { + $model->x = $map['X']; + } + if (isset($map['Y'])) { + $model->y = $map['Y']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizePdfAdvanceRequest.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizePdfAdvanceRequest.php new file mode 100644 index 00000000..3d92fc87 --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizePdfAdvanceRequest.php @@ -0,0 +1,50 @@ + 'FileURL', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->fileURLObject) { + $res['FileURL'] = $this->fileURLObject; + } + + return $res; + } + + /** + * @param array $map + * + * @return RecognizePdfAdvanceRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['FileURL'])) { + $model->fileURLObject = $map['FileURL']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizePdfRequest.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizePdfRequest.php new file mode 100644 index 00000000..f2b0d7cb --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizePdfRequest.php @@ -0,0 +1,49 @@ + 'FileURL', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->fileURL) { + $res['FileURL'] = $this->fileURL; + } + + return $res; + } + + /** + * @param array $map + * + * @return RecognizePdfRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['FileURL'])) { + $model->fileURL = $map['FileURL']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizePdfResponse.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizePdfResponse.php new file mode 100644 index 00000000..6fc30568 --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizePdfResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return RecognizePdfResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = RecognizePdfResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizePdfResponseBody.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizePdfResponseBody.php new file mode 100644 index 00000000..6fde82b7 --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizePdfResponseBody.php @@ -0,0 +1,62 @@ + 'Data', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->data) { + $res['Data'] = null !== $this->data ? $this->data->toMap() : null; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return RecognizePdfResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Data'])) { + $model->data = data::fromMap($map['Data']); + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizePdfResponseBody/data.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizePdfResponseBody/data.php new file mode 100644 index 00000000..6b3fc3cb --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizePdfResponseBody/data.php @@ -0,0 +1,144 @@ + 'Angle', + 'height' => 'Height', + 'orgHeight' => 'OrgHeight', + 'orgWidth' => 'OrgWidth', + 'pageIndex' => 'PageIndex', + 'width' => 'Width', + 'wordsInfo' => 'WordsInfo', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->angle) { + $res['Angle'] = $this->angle; + } + if (null !== $this->height) { + $res['Height'] = $this->height; + } + if (null !== $this->orgHeight) { + $res['OrgHeight'] = $this->orgHeight; + } + if (null !== $this->orgWidth) { + $res['OrgWidth'] = $this->orgWidth; + } + if (null !== $this->pageIndex) { + $res['PageIndex'] = $this->pageIndex; + } + if (null !== $this->width) { + $res['Width'] = $this->width; + } + if (null !== $this->wordsInfo) { + $res['WordsInfo'] = []; + if (null !== $this->wordsInfo && \is_array($this->wordsInfo)) { + $n = 0; + foreach ($this->wordsInfo as $item) { + $res['WordsInfo'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return data + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Angle'])) { + $model->angle = $map['Angle']; + } + if (isset($map['Height'])) { + $model->height = $map['Height']; + } + if (isset($map['OrgHeight'])) { + $model->orgHeight = $map['OrgHeight']; + } + if (isset($map['OrgWidth'])) { + $model->orgWidth = $map['OrgWidth']; + } + if (isset($map['PageIndex'])) { + $model->pageIndex = $map['PageIndex']; + } + if (isset($map['Width'])) { + $model->width = $map['Width']; + } + if (isset($map['WordsInfo'])) { + if (!empty($map['WordsInfo'])) { + $model->wordsInfo = []; + $n = 0; + foreach ($map['WordsInfo'] as $item) { + $model->wordsInfo[$n++] = null !== $item ? wordsInfo::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizePdfResponseBody/data/wordsInfo.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizePdfResponseBody/data/wordsInfo.php new file mode 100644 index 00000000..241503de --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizePdfResponseBody/data/wordsInfo.php @@ -0,0 +1,142 @@ + 'Angle', + 'height' => 'Height', + 'positions' => 'Positions', + 'width' => 'Width', + 'word' => 'Word', + 'x' => 'X', + 'y' => 'Y', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->angle) { + $res['Angle'] = $this->angle; + } + if (null !== $this->height) { + $res['Height'] = $this->height; + } + if (null !== $this->positions) { + $res['Positions'] = []; + if (null !== $this->positions && \is_array($this->positions)) { + $n = 0; + foreach ($this->positions as $item) { + $res['Positions'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + if (null !== $this->width) { + $res['Width'] = $this->width; + } + if (null !== $this->word) { + $res['Word'] = $this->word; + } + if (null !== $this->x) { + $res['X'] = $this->x; + } + if (null !== $this->y) { + $res['Y'] = $this->y; + } + + return $res; + } + + /** + * @param array $map + * + * @return wordsInfo + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Angle'])) { + $model->angle = $map['Angle']; + } + if (isset($map['Height'])) { + $model->height = $map['Height']; + } + if (isset($map['Positions'])) { + if (!empty($map['Positions'])) { + $model->positions = []; + $n = 0; + foreach ($map['Positions'] as $item) { + $model->positions[$n++] = null !== $item ? positions::fromMap($item) : $item; + } + } + } + if (isset($map['Width'])) { + $model->width = $map['Width']; + } + if (isset($map['Word'])) { + $model->word = $map['Word']; + } + if (isset($map['X'])) { + $model->x = $map['X']; + } + if (isset($map['Y'])) { + $model->y = $map['Y']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizePdfResponseBody/data/wordsInfo/positions.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizePdfResponseBody/data/wordsInfo/positions.php new file mode 100644 index 00000000..9a609f4d --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizePdfResponseBody/data/wordsInfo/positions.php @@ -0,0 +1,63 @@ + 'X', + 'y' => 'Y', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->x) { + $res['X'] = $this->x; + } + if (null !== $this->y) { + $res['Y'] = $this->y; + } + + return $res; + } + + /** + * @param array $map + * + * @return positions + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['X'])) { + $model->x = $map['X']; + } + if (isset($map['Y'])) { + $model->y = $map['Y']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeQrCodeAdvanceRequest.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeQrCodeAdvanceRequest.php new file mode 100644 index 00000000..2513b374 --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeQrCodeAdvanceRequest.php @@ -0,0 +1,62 @@ + 'Tasks', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->tasks) { + $res['Tasks'] = []; + if (null !== $this->tasks && \is_array($this->tasks)) { + $n = 0; + foreach ($this->tasks as $item) { + $res['Tasks'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return RecognizeQrCodeAdvanceRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Tasks'])) { + if (!empty($map['Tasks'])) { + $model->tasks = []; + $n = 0; + foreach ($map['Tasks'] as $item) { + $model->tasks[$n++] = null !== $item ? tasks::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeQrCodeAdvanceRequest/tasks.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeQrCodeAdvanceRequest/tasks.php new file mode 100644 index 00000000..b7607fdf --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeQrCodeAdvanceRequest/tasks.php @@ -0,0 +1,50 @@ + 'ImageURL', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->imageURLObject) { + $res['ImageURL'] = $this->imageURLObject; + } + + return $res; + } + + /** + * @param array $map + * + * @return tasks + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['ImageURL'])) { + $model->imageURLObject = $map['ImageURL']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeQrCodeRequest.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeQrCodeRequest.php new file mode 100644 index 00000000..bd063bfb --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeQrCodeRequest.php @@ -0,0 +1,62 @@ + 'Tasks', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->tasks) { + $res['Tasks'] = []; + if (null !== $this->tasks && \is_array($this->tasks)) { + $n = 0; + foreach ($this->tasks as $item) { + $res['Tasks'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return RecognizeQrCodeRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Tasks'])) { + if (!empty($map['Tasks'])) { + $model->tasks = []; + $n = 0; + foreach ($map['Tasks'] as $item) { + $model->tasks[$n++] = null !== $item ? tasks::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeQrCodeRequest/tasks.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeQrCodeRequest/tasks.php new file mode 100644 index 00000000..1d0da6ec --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeQrCodeRequest/tasks.php @@ -0,0 +1,49 @@ + 'ImageURL', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->imageURL) { + $res['ImageURL'] = $this->imageURL; + } + + return $res; + } + + /** + * @param array $map + * + * @return tasks + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['ImageURL'])) { + $model->imageURL = $map['ImageURL']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeQrCodeResponse.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeQrCodeResponse.php new file mode 100644 index 00000000..6fbb5c08 --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeQrCodeResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return RecognizeQrCodeResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = RecognizeQrCodeResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeQrCodeResponseBody.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeQrCodeResponseBody.php new file mode 100644 index 00000000..d4156f20 --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeQrCodeResponseBody.php @@ -0,0 +1,62 @@ + 'Data', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->data) { + $res['Data'] = null !== $this->data ? $this->data->toMap() : null; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return RecognizeQrCodeResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Data'])) { + $model->data = data::fromMap($map['Data']); + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeQrCodeResponseBody/data.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeQrCodeResponseBody/data.php new file mode 100644 index 00000000..35e2fda9 --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeQrCodeResponseBody/data.php @@ -0,0 +1,60 @@ + 'Elements', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->elements) { + $res['Elements'] = []; + if (null !== $this->elements && \is_array($this->elements)) { + $n = 0; + foreach ($this->elements as $item) { + $res['Elements'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return data + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Elements'])) { + if (!empty($map['Elements'])) { + $model->elements = []; + $n = 0; + foreach ($map['Elements'] as $item) { + $model->elements[$n++] = null !== $item ? elements::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeQrCodeResponseBody/data/elements.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeQrCodeResponseBody/data/elements.php new file mode 100644 index 00000000..daff87eb --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeQrCodeResponseBody/data/elements.php @@ -0,0 +1,88 @@ + 'ImageURL', + 'results' => 'Results', + 'taskId' => 'TaskId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->imageURL) { + $res['ImageURL'] = $this->imageURL; + } + if (null !== $this->results) { + $res['Results'] = []; + if (null !== $this->results && \is_array($this->results)) { + $n = 0; + foreach ($this->results as $item) { + $res['Results'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + if (null !== $this->taskId) { + $res['TaskId'] = $this->taskId; + } + + return $res; + } + + /** + * @param array $map + * + * @return elements + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['ImageURL'])) { + $model->imageURL = $map['ImageURL']; + } + if (isset($map['Results'])) { + if (!empty($map['Results'])) { + $model->results = []; + $n = 0; + foreach ($map['Results'] as $item) { + $model->results[$n++] = null !== $item ? results::fromMap($item) : $item; + } + } + } + if (isset($map['TaskId'])) { + $model->taskId = $map['TaskId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeQrCodeResponseBody/data/elements/results.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeQrCodeResponseBody/data/elements/results.php new file mode 100644 index 00000000..d1f02f0b --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeQrCodeResponseBody/data/elements/results.php @@ -0,0 +1,93 @@ + 'Label', + 'qrCodesData' => 'QrCodesData', + 'rate' => 'Rate', + 'suggestion' => 'Suggestion', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->label) { + $res['Label'] = $this->label; + } + if (null !== $this->qrCodesData) { + $res['QrCodesData'] = $this->qrCodesData; + } + if (null !== $this->rate) { + $res['Rate'] = $this->rate; + } + if (null !== $this->suggestion) { + $res['Suggestion'] = $this->suggestion; + } + + return $res; + } + + /** + * @param array $map + * + * @return results + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Label'])) { + $model->label = $map['Label']; + } + if (isset($map['QrCodesData'])) { + if (!empty($map['QrCodesData'])) { + $model->qrCodesData = $map['QrCodesData']; + } + } + if (isset($map['Rate'])) { + $model->rate = $map['Rate']; + } + if (isset($map['Suggestion'])) { + $model->suggestion = $map['Suggestion']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeQuotaInvoiceAdvanceRequest.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeQuotaInvoiceAdvanceRequest.php new file mode 100644 index 00000000..cdaaf232 --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeQuotaInvoiceAdvanceRequest.php @@ -0,0 +1,50 @@ + 'ImageURL', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->imageURLObject) { + $res['ImageURL'] = $this->imageURLObject; + } + + return $res; + } + + /** + * @param array $map + * + * @return RecognizeQuotaInvoiceAdvanceRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['ImageURL'])) { + $model->imageURLObject = $map['ImageURL']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeQuotaInvoiceRequest.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeQuotaInvoiceRequest.php new file mode 100644 index 00000000..9d6e0bdd --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeQuotaInvoiceRequest.php @@ -0,0 +1,49 @@ + 'ImageURL', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->imageURL) { + $res['ImageURL'] = $this->imageURL; + } + + return $res; + } + + /** + * @param array $map + * + * @return RecognizeQuotaInvoiceRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['ImageURL'])) { + $model->imageURL = $map['ImageURL']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeQuotaInvoiceResponse.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeQuotaInvoiceResponse.php new file mode 100644 index 00000000..dc661c80 --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeQuotaInvoiceResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return RecognizeQuotaInvoiceResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = RecognizeQuotaInvoiceResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeQuotaInvoiceResponseBody.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeQuotaInvoiceResponseBody.php new file mode 100644 index 00000000..edf5af6e --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeQuotaInvoiceResponseBody.php @@ -0,0 +1,62 @@ + 'Data', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->data) { + $res['Data'] = null !== $this->data ? $this->data->toMap() : null; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return RecognizeQuotaInvoiceResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Data'])) { + $model->data = data::fromMap($map['Data']); + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeQuotaInvoiceResponseBody/data.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeQuotaInvoiceResponseBody/data.php new file mode 100644 index 00000000..9d9ab928 --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeQuotaInvoiceResponseBody/data.php @@ -0,0 +1,143 @@ + 'Angle', + 'content' => 'Content', + 'height' => 'Height', + 'keyValueInfos' => 'KeyValueInfos', + 'orgHeight' => 'OrgHeight', + 'orgWidth' => 'OrgWidth', + 'width' => 'Width', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->angle) { + $res['Angle'] = $this->angle; + } + if (null !== $this->content) { + $res['Content'] = null !== $this->content ? $this->content->toMap() : null; + } + if (null !== $this->height) { + $res['Height'] = $this->height; + } + if (null !== $this->keyValueInfos) { + $res['KeyValueInfos'] = []; + if (null !== $this->keyValueInfos && \is_array($this->keyValueInfos)) { + $n = 0; + foreach ($this->keyValueInfos as $item) { + $res['KeyValueInfos'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + if (null !== $this->orgHeight) { + $res['OrgHeight'] = $this->orgHeight; + } + if (null !== $this->orgWidth) { + $res['OrgWidth'] = $this->orgWidth; + } + if (null !== $this->width) { + $res['Width'] = $this->width; + } + + return $res; + } + + /** + * @param array $map + * + * @return data + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Angle'])) { + $model->angle = $map['Angle']; + } + if (isset($map['Content'])) { + $model->content = content::fromMap($map['Content']); + } + if (isset($map['Height'])) { + $model->height = $map['Height']; + } + if (isset($map['KeyValueInfos'])) { + if (!empty($map['KeyValueInfos'])) { + $model->keyValueInfos = []; + $n = 0; + foreach ($map['KeyValueInfos'] as $item) { + $model->keyValueInfos[$n++] = null !== $item ? keyValueInfos::fromMap($item) : $item; + } + } + } + if (isset($map['OrgHeight'])) { + $model->orgHeight = $map['OrgHeight']; + } + if (isset($map['OrgWidth'])) { + $model->orgWidth = $map['OrgWidth']; + } + if (isset($map['Width'])) { + $model->width = $map['Width']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeQuotaInvoiceResponseBody/data/content.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeQuotaInvoiceResponseBody/data/content.php new file mode 100644 index 00000000..3684a267 --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeQuotaInvoiceResponseBody/data/content.php @@ -0,0 +1,101 @@ + 'InvoiceAmount', + 'invoiceCode' => 'InvoiceCode', + 'invoiceDetails' => 'InvoiceDetails', + 'invoiceNo' => 'InvoiceNo', + 'sumAmount' => 'SumAmount', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->invoiceAmount) { + $res['InvoiceAmount'] = $this->invoiceAmount; + } + if (null !== $this->invoiceCode) { + $res['InvoiceCode'] = $this->invoiceCode; + } + if (null !== $this->invoiceDetails) { + $res['InvoiceDetails'] = $this->invoiceDetails; + } + if (null !== $this->invoiceNo) { + $res['InvoiceNo'] = $this->invoiceNo; + } + if (null !== $this->sumAmount) { + $res['SumAmount'] = $this->sumAmount; + } + + return $res; + } + + /** + * @param array $map + * + * @return content + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['InvoiceAmount'])) { + $model->invoiceAmount = $map['InvoiceAmount']; + } + if (isset($map['InvoiceCode'])) { + $model->invoiceCode = $map['InvoiceCode']; + } + if (isset($map['InvoiceDetails'])) { + $model->invoiceDetails = $map['InvoiceDetails']; + } + if (isset($map['InvoiceNo'])) { + $model->invoiceNo = $map['InvoiceNo']; + } + if (isset($map['SumAmount'])) { + $model->sumAmount = $map['SumAmount']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeQuotaInvoiceResponseBody/data/keyValueInfos.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeQuotaInvoiceResponseBody/data/keyValueInfos.php new file mode 100644 index 00000000..ce5afff4 --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeQuotaInvoiceResponseBody/data/keyValueInfos.php @@ -0,0 +1,98 @@ + 'Key', + 'value' => 'Value', + 'valuePositions' => 'ValuePositions', + 'valueScore' => 'ValueScore', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->key) { + $res['Key'] = $this->key; + } + if (null !== $this->value) { + $res['Value'] = $this->value; + } + if (null !== $this->valuePositions) { + $res['ValuePositions'] = []; + if (null !== $this->valuePositions && \is_array($this->valuePositions)) { + $n = 0; + foreach ($this->valuePositions as $item) { + $res['ValuePositions'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + if (null !== $this->valueScore) { + $res['ValueScore'] = $this->valueScore; + } + + return $res; + } + + /** + * @param array $map + * + * @return keyValueInfos + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Key'])) { + $model->key = $map['Key']; + } + if (isset($map['Value'])) { + $model->value = $map['Value']; + } + if (isset($map['ValuePositions'])) { + if (!empty($map['ValuePositions'])) { + $model->valuePositions = []; + $n = 0; + foreach ($map['ValuePositions'] as $item) { + $model->valuePositions[$n++] = null !== $item ? valuePositions::fromMap($item) : $item; + } + } + } + if (isset($map['ValueScore'])) { + $model->valueScore = $map['ValueScore']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeQuotaInvoiceResponseBody/data/keyValueInfos/valuePositions.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeQuotaInvoiceResponseBody/data/keyValueInfos/valuePositions.php new file mode 100644 index 00000000..540ac260 --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeQuotaInvoiceResponseBody/data/keyValueInfos/valuePositions.php @@ -0,0 +1,63 @@ + 'X', + 'y' => 'Y', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->x) { + $res['X'] = $this->x; + } + if (null !== $this->y) { + $res['Y'] = $this->y; + } + + return $res; + } + + /** + * @param array $map + * + * @return valuePositions + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['X'])) { + $model->x = $map['X']; + } + if (isset($map['Y'])) { + $model->y = $map['Y']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeStampAdvanceRequest.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeStampAdvanceRequest.php new file mode 100644 index 00000000..a1891961 --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeStampAdvanceRequest.php @@ -0,0 +1,50 @@ + 'ImageURL', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->imageURLObject) { + $res['ImageURL'] = $this->imageURLObject; + } + + return $res; + } + + /** + * @param array $map + * + * @return RecognizeStampAdvanceRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['ImageURL'])) { + $model->imageURLObject = $map['ImageURL']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeStampRequest.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeStampRequest.php new file mode 100644 index 00000000..d5097cdf --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeStampRequest.php @@ -0,0 +1,49 @@ + 'ImageURL', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->imageURL) { + $res['ImageURL'] = $this->imageURL; + } + + return $res; + } + + /** + * @param array $map + * + * @return RecognizeStampRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['ImageURL'])) { + $model->imageURL = $map['ImageURL']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeStampResponse.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeStampResponse.php new file mode 100644 index 00000000..1f004044 --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeStampResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return RecognizeStampResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = RecognizeStampResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeStampResponseBody.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeStampResponseBody.php new file mode 100644 index 00000000..d7dfd1fa --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeStampResponseBody.php @@ -0,0 +1,62 @@ + 'Data', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->data) { + $res['Data'] = null !== $this->data ? $this->data->toMap() : null; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return RecognizeStampResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Data'])) { + $model->data = data::fromMap($map['Data']); + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeStampResponseBody/data.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeStampResponseBody/data.php new file mode 100644 index 00000000..b3d2e88d --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeStampResponseBody/data.php @@ -0,0 +1,60 @@ + 'Results', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->results) { + $res['Results'] = []; + if (null !== $this->results && \is_array($this->results)) { + $n = 0; + foreach ($this->results as $item) { + $res['Results'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return data + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Results'])) { + if (!empty($map['Results'])) { + $model->results = []; + $n = 0; + foreach ($map['Results'] as $item) { + $model->results[$n++] = null !== $item ? results::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeStampResponseBody/data/results.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeStampResponseBody/data/results.php new file mode 100644 index 00000000..6e097204 --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeStampResponseBody/data/results.php @@ -0,0 +1,86 @@ + 'GeneralText', + 'roi' => 'Roi', + 'text' => 'Text', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->generalText) { + $res['GeneralText'] = []; + if (null !== $this->generalText && \is_array($this->generalText)) { + $n = 0; + foreach ($this->generalText as $item) { + $res['GeneralText'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + if (null !== $this->roi) { + $res['Roi'] = null !== $this->roi ? $this->roi->toMap() : null; + } + if (null !== $this->text) { + $res['Text'] = null !== $this->text ? $this->text->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return results + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['GeneralText'])) { + if (!empty($map['GeneralText'])) { + $model->generalText = []; + $n = 0; + foreach ($map['GeneralText'] as $item) { + $model->generalText[$n++] = null !== $item ? generalText::fromMap($item) : $item; + } + } + } + if (isset($map['Roi'])) { + $model->roi = roi::fromMap($map['Roi']); + } + if (isset($map['Text'])) { + $model->text = text::fromMap($map['Text']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeStampResponseBody/data/results/generalText.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeStampResponseBody/data/results/generalText.php new file mode 100644 index 00000000..876198f2 --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeStampResponseBody/data/results/generalText.php @@ -0,0 +1,61 @@ + 'Confidence', + 'content' => 'Content', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->confidence) { + $res['Confidence'] = $this->confidence; + } + if (null !== $this->content) { + $res['Content'] = $this->content; + } + + return $res; + } + + /** + * @param array $map + * + * @return generalText + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Confidence'])) { + $model->confidence = $map['Confidence']; + } + if (isset($map['Content'])) { + $model->content = $map['Content']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeStampResponseBody/data/results/roi.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeStampResponseBody/data/results/roi.php new file mode 100644 index 00000000..0a741548 --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeStampResponseBody/data/results/roi.php @@ -0,0 +1,91 @@ + 'Height', + 'left' => 'Left', + 'top' => 'Top', + 'width' => 'Width', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->height) { + $res['Height'] = $this->height; + } + if (null !== $this->left) { + $res['Left'] = $this->left; + } + if (null !== $this->top) { + $res['Top'] = $this->top; + } + if (null !== $this->width) { + $res['Width'] = $this->width; + } + + return $res; + } + + /** + * @param array $map + * + * @return roi + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Height'])) { + $model->height = $map['Height']; + } + if (isset($map['Left'])) { + $model->left = $map['Left']; + } + if (isset($map['Top'])) { + $model->top = $map['Top']; + } + if (isset($map['Width'])) { + $model->width = $map['Width']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeStampResponseBody/data/results/text.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeStampResponseBody/data/results/text.php new file mode 100644 index 00000000..19cc9033 --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeStampResponseBody/data/results/text.php @@ -0,0 +1,61 @@ + 'Confidence', + 'content' => 'Content', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->confidence) { + $res['Confidence'] = $this->confidence; + } + if (null !== $this->content) { + $res['Content'] = $this->content; + } + + return $res; + } + + /** + * @param array $map + * + * @return text + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Confidence'])) { + $model->confidence = $map['Confidence']; + } + if (isset($map['Content'])) { + $model->content = $map['Content']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeTableAdvanceRequest.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeTableAdvanceRequest.php new file mode 100644 index 00000000..539a3ab0 --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeTableAdvanceRequest.php @@ -0,0 +1,120 @@ + 'AssureDirection', + 'hasLine' => 'HasLine', + 'imageURLObject' => 'ImageURL', + 'outputFormat' => 'OutputFormat', + 'skipDetection' => 'SkipDetection', + 'useFinanceModel' => 'UseFinanceModel', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->assureDirection) { + $res['AssureDirection'] = $this->assureDirection; + } + if (null !== $this->hasLine) { + $res['HasLine'] = $this->hasLine; + } + if (null !== $this->imageURLObject) { + $res['ImageURL'] = $this->imageURLObject; + } + if (null !== $this->outputFormat) { + $res['OutputFormat'] = $this->outputFormat; + } + if (null !== $this->skipDetection) { + $res['SkipDetection'] = $this->skipDetection; + } + if (null !== $this->useFinanceModel) { + $res['UseFinanceModel'] = $this->useFinanceModel; + } + + return $res; + } + + /** + * @param array $map + * + * @return RecognizeTableAdvanceRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AssureDirection'])) { + $model->assureDirection = $map['AssureDirection']; + } + if (isset($map['HasLine'])) { + $model->hasLine = $map['HasLine']; + } + if (isset($map['ImageURL'])) { + $model->imageURLObject = $map['ImageURL']; + } + if (isset($map['OutputFormat'])) { + $model->outputFormat = $map['OutputFormat']; + } + if (isset($map['SkipDetection'])) { + $model->skipDetection = $map['SkipDetection']; + } + if (isset($map['UseFinanceModel'])) { + $model->useFinanceModel = $map['UseFinanceModel']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeTableRequest.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeTableRequest.php new file mode 100644 index 00000000..43f0f4f5 --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeTableRequest.php @@ -0,0 +1,119 @@ + 'AssureDirection', + 'hasLine' => 'HasLine', + 'imageURL' => 'ImageURL', + 'outputFormat' => 'OutputFormat', + 'skipDetection' => 'SkipDetection', + 'useFinanceModel' => 'UseFinanceModel', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->assureDirection) { + $res['AssureDirection'] = $this->assureDirection; + } + if (null !== $this->hasLine) { + $res['HasLine'] = $this->hasLine; + } + if (null !== $this->imageURL) { + $res['ImageURL'] = $this->imageURL; + } + if (null !== $this->outputFormat) { + $res['OutputFormat'] = $this->outputFormat; + } + if (null !== $this->skipDetection) { + $res['SkipDetection'] = $this->skipDetection; + } + if (null !== $this->useFinanceModel) { + $res['UseFinanceModel'] = $this->useFinanceModel; + } + + return $res; + } + + /** + * @param array $map + * + * @return RecognizeTableRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AssureDirection'])) { + $model->assureDirection = $map['AssureDirection']; + } + if (isset($map['HasLine'])) { + $model->hasLine = $map['HasLine']; + } + if (isset($map['ImageURL'])) { + $model->imageURL = $map['ImageURL']; + } + if (isset($map['OutputFormat'])) { + $model->outputFormat = $map['OutputFormat']; + } + if (isset($map['SkipDetection'])) { + $model->skipDetection = $map['SkipDetection']; + } + if (isset($map['UseFinanceModel'])) { + $model->useFinanceModel = $map['UseFinanceModel']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeTableResponse.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeTableResponse.php new file mode 100644 index 00000000..f9ad765d --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeTableResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return RecognizeTableResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = RecognizeTableResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeTableResponseBody.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeTableResponseBody.php new file mode 100644 index 00000000..cce227c8 --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeTableResponseBody.php @@ -0,0 +1,62 @@ + 'Data', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->data) { + $res['Data'] = null !== $this->data ? $this->data->toMap() : null; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return RecognizeTableResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Data'])) { + $model->data = data::fromMap($map['Data']); + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeTableResponseBody/data.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeTableResponseBody/data.php new file mode 100644 index 00000000..c149e516 --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeTableResponseBody/data.php @@ -0,0 +1,74 @@ + 'FileContent', + 'tables' => 'Tables', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->fileContent) { + $res['FileContent'] = $this->fileContent; + } + if (null !== $this->tables) { + $res['Tables'] = []; + if (null !== $this->tables && \is_array($this->tables)) { + $n = 0; + foreach ($this->tables as $item) { + $res['Tables'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return data + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['FileContent'])) { + $model->fileContent = $map['FileContent']; + } + if (isset($map['Tables'])) { + if (!empty($map['Tables'])) { + $model->tables = []; + $n = 0; + foreach ($map['Tables'] as $item) { + $model->tables[$n++] = null !== $item ? tables::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeTableResponseBody/data/tables.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeTableResponseBody/data/tables.php new file mode 100644 index 00000000..9030fdb7 --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeTableResponseBody/data/tables.php @@ -0,0 +1,88 @@ + 'Head', + 'tableRows' => 'TableRows', + 'tail' => 'Tail', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->head) { + $res['Head'] = $this->head; + } + if (null !== $this->tableRows) { + $res['TableRows'] = []; + if (null !== $this->tableRows && \is_array($this->tableRows)) { + $n = 0; + foreach ($this->tableRows as $item) { + $res['TableRows'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + if (null !== $this->tail) { + $res['Tail'] = $this->tail; + } + + return $res; + } + + /** + * @param array $map + * + * @return tables + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Head'])) { + if (!empty($map['Head'])) { + $model->head = $map['Head']; + } + } + if (isset($map['TableRows'])) { + if (!empty($map['TableRows'])) { + $model->tableRows = []; + $n = 0; + foreach ($map['TableRows'] as $item) { + $model->tableRows[$n++] = null !== $item ? tableRows::fromMap($item) : $item; + } + } + } + if (isset($map['Tail'])) { + if (!empty($map['Tail'])) { + $model->tail = $map['Tail']; + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeTableResponseBody/data/tables/tableRows.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeTableResponseBody/data/tables/tableRows.php new file mode 100644 index 00000000..613dea6b --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeTableResponseBody/data/tables/tableRows.php @@ -0,0 +1,60 @@ + 'TableColumns', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->tableColumns) { + $res['TableColumns'] = []; + if (null !== $this->tableColumns && \is_array($this->tableColumns)) { + $n = 0; + foreach ($this->tableColumns as $item) { + $res['TableColumns'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return tableRows + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['TableColumns'])) { + if (!empty($map['TableColumns'])) { + $model->tableColumns = []; + $n = 0; + foreach ($map['TableColumns'] as $item) { + $model->tableColumns[$n++] = null !== $item ? tableColumns::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeTableResponseBody/data/tables/tableRows/tableColumns.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeTableResponseBody/data/tables/tableRows/tableColumns.php new file mode 100644 index 00000000..b8d6673f --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeTableResponseBody/data/tables/tableRows/tableColumns.php @@ -0,0 +1,133 @@ + 'EndColumn', + 'endRow' => 'EndRow', + 'height' => 'Height', + 'startColumn' => 'StartColumn', + 'startRow' => 'StartRow', + 'texts' => 'Texts', + 'width' => 'Width', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->endColumn) { + $res['EndColumn'] = $this->endColumn; + } + if (null !== $this->endRow) { + $res['EndRow'] = $this->endRow; + } + if (null !== $this->height) { + $res['Height'] = $this->height; + } + if (null !== $this->startColumn) { + $res['StartColumn'] = $this->startColumn; + } + if (null !== $this->startRow) { + $res['StartRow'] = $this->startRow; + } + if (null !== $this->texts) { + $res['Texts'] = $this->texts; + } + if (null !== $this->width) { + $res['Width'] = $this->width; + } + + return $res; + } + + /** + * @param array $map + * + * @return tableColumns + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['EndColumn'])) { + $model->endColumn = $map['EndColumn']; + } + if (isset($map['EndRow'])) { + $model->endRow = $map['EndRow']; + } + if (isset($map['Height'])) { + $model->height = $map['Height']; + } + if (isset($map['StartColumn'])) { + $model->startColumn = $map['StartColumn']; + } + if (isset($map['StartRow'])) { + $model->startRow = $map['StartRow']; + } + if (isset($map['Texts'])) { + if (!empty($map['Texts'])) { + $model->texts = $map['Texts']; + } + } + if (isset($map['Width'])) { + $model->width = $map['Width']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeTaxiInvoiceAdvanceRequest.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeTaxiInvoiceAdvanceRequest.php new file mode 100644 index 00000000..da838b84 --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeTaxiInvoiceAdvanceRequest.php @@ -0,0 +1,50 @@ + 'ImageURL', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->imageURLObject) { + $res['ImageURL'] = $this->imageURLObject; + } + + return $res; + } + + /** + * @param array $map + * + * @return RecognizeTaxiInvoiceAdvanceRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['ImageURL'])) { + $model->imageURLObject = $map['ImageURL']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeTaxiInvoiceRequest.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeTaxiInvoiceRequest.php new file mode 100644 index 00000000..6590748e --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeTaxiInvoiceRequest.php @@ -0,0 +1,49 @@ + 'ImageURL', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->imageURL) { + $res['ImageURL'] = $this->imageURL; + } + + return $res; + } + + /** + * @param array $map + * + * @return RecognizeTaxiInvoiceRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['ImageURL'])) { + $model->imageURL = $map['ImageURL']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeTaxiInvoiceResponse.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeTaxiInvoiceResponse.php new file mode 100644 index 00000000..9f34fa57 --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeTaxiInvoiceResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return RecognizeTaxiInvoiceResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = RecognizeTaxiInvoiceResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeTaxiInvoiceResponseBody.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeTaxiInvoiceResponseBody.php new file mode 100644 index 00000000..bcbdd60c --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeTaxiInvoiceResponseBody.php @@ -0,0 +1,62 @@ + 'Data', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->data) { + $res['Data'] = null !== $this->data ? $this->data->toMap() : null; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return RecognizeTaxiInvoiceResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Data'])) { + $model->data = data::fromMap($map['Data']); + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeTaxiInvoiceResponseBody/data.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeTaxiInvoiceResponseBody/data.php new file mode 100644 index 00000000..8bd221ec --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeTaxiInvoiceResponseBody/data.php @@ -0,0 +1,60 @@ + 'Invoices', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->invoices) { + $res['Invoices'] = []; + if (null !== $this->invoices && \is_array($this->invoices)) { + $n = 0; + foreach ($this->invoices as $item) { + $res['Invoices'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return data + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Invoices'])) { + if (!empty($map['Invoices'])) { + $model->invoices = []; + $n = 0; + foreach ($map['Invoices'] as $item) { + $model->invoices[$n++] = null !== $item ? invoices::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeTaxiInvoiceResponseBody/data/invoices.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeTaxiInvoiceResponseBody/data/invoices.php new file mode 100644 index 00000000..d3954b41 --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeTaxiInvoiceResponseBody/data/invoices.php @@ -0,0 +1,87 @@ + 'InvoiceRoi', + 'items' => 'Items', + 'rotateType' => 'RotateType', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->invoiceRoi) { + $res['InvoiceRoi'] = null !== $this->invoiceRoi ? $this->invoiceRoi->toMap() : null; + } + if (null !== $this->items) { + $res['Items'] = []; + if (null !== $this->items && \is_array($this->items)) { + $n = 0; + foreach ($this->items as $item) { + $res['Items'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + if (null !== $this->rotateType) { + $res['RotateType'] = $this->rotateType; + } + + return $res; + } + + /** + * @param array $map + * + * @return invoices + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['InvoiceRoi'])) { + $model->invoiceRoi = invoiceRoi::fromMap($map['InvoiceRoi']); + } + if (isset($map['Items'])) { + if (!empty($map['Items'])) { + $model->items = []; + $n = 0; + foreach ($map['Items'] as $item) { + $model->items[$n++] = null !== $item ? items::fromMap($item) : $item; + } + } + } + if (isset($map['RotateType'])) { + $model->rotateType = $map['RotateType']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeTaxiInvoiceResponseBody/data/invoices/invoiceRoi.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeTaxiInvoiceResponseBody/data/invoices/invoiceRoi.php new file mode 100644 index 00000000..cdd999d0 --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeTaxiInvoiceResponseBody/data/invoices/invoiceRoi.php @@ -0,0 +1,91 @@ + 'H', + 'w' => 'W', + 'x' => 'X', + 'y' => 'Y', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->h) { + $res['H'] = $this->h; + } + if (null !== $this->w) { + $res['W'] = $this->w; + } + if (null !== $this->x) { + $res['X'] = $this->x; + } + if (null !== $this->y) { + $res['Y'] = $this->y; + } + + return $res; + } + + /** + * @param array $map + * + * @return invoiceRoi + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['H'])) { + $model->h = $map['H']; + } + if (isset($map['W'])) { + $model->w = $map['W']; + } + if (isset($map['X'])) { + $model->x = $map['X']; + } + if (isset($map['Y'])) { + $model->y = $map['Y']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeTaxiInvoiceResponseBody/data/invoices/items.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeTaxiInvoiceResponseBody/data/invoices/items.php new file mode 100644 index 00000000..26e9f5f2 --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeTaxiInvoiceResponseBody/data/invoices/items.php @@ -0,0 +1,62 @@ + 'ItemRoi', + 'text' => 'Text', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->itemRoi) { + $res['ItemRoi'] = null !== $this->itemRoi ? $this->itemRoi->toMap() : null; + } + if (null !== $this->text) { + $res['Text'] = $this->text; + } + + return $res; + } + + /** + * @param array $map + * + * @return items + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['ItemRoi'])) { + $model->itemRoi = itemRoi::fromMap($map['ItemRoi']); + } + if (isset($map['Text'])) { + $model->text = $map['Text']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeTaxiInvoiceResponseBody/data/invoices/items/itemRoi.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeTaxiInvoiceResponseBody/data/invoices/items/itemRoi.php new file mode 100644 index 00000000..520c2900 --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeTaxiInvoiceResponseBody/data/invoices/items/itemRoi.php @@ -0,0 +1,75 @@ + 'Angle', + 'center' => 'Center', + 'size' => 'Size', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->angle) { + $res['Angle'] = $this->angle; + } + if (null !== $this->center) { + $res['Center'] = null !== $this->center ? $this->center->toMap() : null; + } + if (null !== $this->size) { + $res['Size'] = null !== $this->size ? $this->size->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return itemRoi + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Angle'])) { + $model->angle = $map['Angle']; + } + if (isset($map['Center'])) { + $model->center = center::fromMap($map['Center']); + } + if (isset($map['Size'])) { + $model->size = size::fromMap($map['Size']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeTaxiInvoiceResponseBody/data/invoices/items/itemRoi/center.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeTaxiInvoiceResponseBody/data/invoices/items/itemRoi/center.php new file mode 100644 index 00000000..2ebc7af7 --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeTaxiInvoiceResponseBody/data/invoices/items/itemRoi/center.php @@ -0,0 +1,63 @@ + 'X', + 'y' => 'Y', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->x) { + $res['X'] = $this->x; + } + if (null !== $this->y) { + $res['Y'] = $this->y; + } + + return $res; + } + + /** + * @param array $map + * + * @return center + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['X'])) { + $model->x = $map['X']; + } + if (isset($map['Y'])) { + $model->y = $map['Y']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeTaxiInvoiceResponseBody/data/invoices/items/itemRoi/size.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeTaxiInvoiceResponseBody/data/invoices/items/itemRoi/size.php new file mode 100644 index 00000000..5acdbc5a --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeTaxiInvoiceResponseBody/data/invoices/items/itemRoi/size.php @@ -0,0 +1,63 @@ + 'H', + 'w' => 'W', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->h) { + $res['H'] = $this->h; + } + if (null !== $this->w) { + $res['W'] = $this->w; + } + + return $res; + } + + /** + * @param array $map + * + * @return size + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['H'])) { + $model->h = $map['H']; + } + if (isset($map['W'])) { + $model->w = $map['W']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeTicketInvoiceAdvanceRequest.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeTicketInvoiceAdvanceRequest.php new file mode 100644 index 00000000..64e621b3 --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeTicketInvoiceAdvanceRequest.php @@ -0,0 +1,50 @@ + 'ImageURL', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->imageURLObject) { + $res['ImageURL'] = $this->imageURLObject; + } + + return $res; + } + + /** + * @param array $map + * + * @return RecognizeTicketInvoiceAdvanceRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['ImageURL'])) { + $model->imageURLObject = $map['ImageURL']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeTicketInvoiceRequest.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeTicketInvoiceRequest.php new file mode 100644 index 00000000..60705c6e --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeTicketInvoiceRequest.php @@ -0,0 +1,49 @@ + 'ImageURL', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->imageURL) { + $res['ImageURL'] = $this->imageURL; + } + + return $res; + } + + /** + * @param array $map + * + * @return RecognizeTicketInvoiceRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['ImageURL'])) { + $model->imageURL = $map['ImageURL']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeTicketInvoiceResponse.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeTicketInvoiceResponse.php new file mode 100644 index 00000000..caac774b --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeTicketInvoiceResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return RecognizeTicketInvoiceResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = RecognizeTicketInvoiceResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeTicketInvoiceResponseBody.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeTicketInvoiceResponseBody.php new file mode 100644 index 00000000..b57a31ca --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeTicketInvoiceResponseBody.php @@ -0,0 +1,62 @@ + 'Data', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->data) { + $res['Data'] = null !== $this->data ? $this->data->toMap() : null; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return RecognizeTicketInvoiceResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Data'])) { + $model->data = data::fromMap($map['Data']); + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeTicketInvoiceResponseBody/data.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeTicketInvoiceResponseBody/data.php new file mode 100644 index 00000000..dab9a8ec --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeTicketInvoiceResponseBody/data.php @@ -0,0 +1,130 @@ + 'Count', + 'height' => 'Height', + 'orgHeight' => 'OrgHeight', + 'orgWidth' => 'OrgWidth', + 'results' => 'Results', + 'width' => 'Width', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->count) { + $res['Count'] = $this->count; + } + if (null !== $this->height) { + $res['Height'] = $this->height; + } + if (null !== $this->orgHeight) { + $res['OrgHeight'] = $this->orgHeight; + } + if (null !== $this->orgWidth) { + $res['OrgWidth'] = $this->orgWidth; + } + if (null !== $this->results) { + $res['Results'] = []; + if (null !== $this->results && \is_array($this->results)) { + $n = 0; + foreach ($this->results as $item) { + $res['Results'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + if (null !== $this->width) { + $res['Width'] = $this->width; + } + + return $res; + } + + /** + * @param array $map + * + * @return data + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Count'])) { + $model->count = $map['Count']; + } + if (isset($map['Height'])) { + $model->height = $map['Height']; + } + if (isset($map['OrgHeight'])) { + $model->orgHeight = $map['OrgHeight']; + } + if (isset($map['OrgWidth'])) { + $model->orgWidth = $map['OrgWidth']; + } + if (isset($map['Results'])) { + if (!empty($map['Results'])) { + $model->results = []; + $n = 0; + foreach ($map['Results'] as $item) { + $model->results[$n++] = null !== $item ? results::fromMap($item) : $item; + } + } + } + if (isset($map['Width'])) { + $model->width = $map['Width']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeTicketInvoiceResponseBody/data/results.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeTicketInvoiceResponseBody/data/results.php new file mode 100644 index 00000000..ab33fd07 --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeTicketInvoiceResponseBody/data/results.php @@ -0,0 +1,124 @@ + 'Content', + 'index' => 'Index', + 'keyValueInfos' => 'KeyValueInfos', + 'sliceRectangle' => 'SliceRectangle', + 'type' => 'Type', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->content) { + $res['Content'] = null !== $this->content ? $this->content->toMap() : null; + } + if (null !== $this->index) { + $res['Index'] = $this->index; + } + if (null !== $this->keyValueInfos) { + $res['KeyValueInfos'] = []; + if (null !== $this->keyValueInfos && \is_array($this->keyValueInfos)) { + $n = 0; + foreach ($this->keyValueInfos as $item) { + $res['KeyValueInfos'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + if (null !== $this->sliceRectangle) { + $res['SliceRectangle'] = []; + if (null !== $this->sliceRectangle && \is_array($this->sliceRectangle)) { + $n = 0; + foreach ($this->sliceRectangle as $item) { + $res['SliceRectangle'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + if (null !== $this->type) { + $res['Type'] = $this->type; + } + + return $res; + } + + /** + * @param array $map + * + * @return results + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Content'])) { + $model->content = content::fromMap($map['Content']); + } + if (isset($map['Index'])) { + $model->index = $map['Index']; + } + if (isset($map['KeyValueInfos'])) { + if (!empty($map['KeyValueInfos'])) { + $model->keyValueInfos = []; + $n = 0; + foreach ($map['KeyValueInfos'] as $item) { + $model->keyValueInfos[$n++] = null !== $item ? keyValueInfos::fromMap($item) : $item; + } + } + } + if (isset($map['SliceRectangle'])) { + if (!empty($map['SliceRectangle'])) { + $model->sliceRectangle = []; + $n = 0; + foreach ($map['SliceRectangle'] as $item) { + $model->sliceRectangle[$n++] = null !== $item ? sliceRectangle::fromMap($item) : $item; + } + } + } + if (isset($map['Type'])) { + $model->type = $map['Type']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeTicketInvoiceResponseBody/data/results/content.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeTicketInvoiceResponseBody/data/results/content.php new file mode 100644 index 00000000..4f8df5da --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeTicketInvoiceResponseBody/data/results/content.php @@ -0,0 +1,157 @@ + 'AntiFakeCode', + 'invoiceCode' => 'InvoiceCode', + 'invoiceDate' => 'InvoiceDate', + 'invoiceNumber' => 'InvoiceNumber', + 'payeeName' => 'PayeeName', + 'payeeRegisterNo' => 'PayeeRegisterNo', + 'payerName' => 'PayerName', + 'payerRegisterNo' => 'PayerRegisterNo', + 'sumAmount' => 'SumAmount', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->antiFakeCode) { + $res['AntiFakeCode'] = $this->antiFakeCode; + } + if (null !== $this->invoiceCode) { + $res['InvoiceCode'] = $this->invoiceCode; + } + if (null !== $this->invoiceDate) { + $res['InvoiceDate'] = $this->invoiceDate; + } + if (null !== $this->invoiceNumber) { + $res['InvoiceNumber'] = $this->invoiceNumber; + } + if (null !== $this->payeeName) { + $res['PayeeName'] = $this->payeeName; + } + if (null !== $this->payeeRegisterNo) { + $res['PayeeRegisterNo'] = $this->payeeRegisterNo; + } + if (null !== $this->payerName) { + $res['PayerName'] = $this->payerName; + } + if (null !== $this->payerRegisterNo) { + $res['PayerRegisterNo'] = $this->payerRegisterNo; + } + if (null !== $this->sumAmount) { + $res['SumAmount'] = $this->sumAmount; + } + + return $res; + } + + /** + * @param array $map + * + * @return content + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AntiFakeCode'])) { + $model->antiFakeCode = $map['AntiFakeCode']; + } + if (isset($map['InvoiceCode'])) { + $model->invoiceCode = $map['InvoiceCode']; + } + if (isset($map['InvoiceDate'])) { + $model->invoiceDate = $map['InvoiceDate']; + } + if (isset($map['InvoiceNumber'])) { + $model->invoiceNumber = $map['InvoiceNumber']; + } + if (isset($map['PayeeName'])) { + $model->payeeName = $map['PayeeName']; + } + if (isset($map['PayeeRegisterNo'])) { + $model->payeeRegisterNo = $map['PayeeRegisterNo']; + } + if (isset($map['PayerName'])) { + $model->payerName = $map['PayerName']; + } + if (isset($map['PayerRegisterNo'])) { + $model->payerRegisterNo = $map['PayerRegisterNo']; + } + if (isset($map['SumAmount'])) { + $model->sumAmount = $map['SumAmount']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeTicketInvoiceResponseBody/data/results/keyValueInfos.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeTicketInvoiceResponseBody/data/results/keyValueInfos.php new file mode 100644 index 00000000..fc610c11 --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeTicketInvoiceResponseBody/data/results/keyValueInfos.php @@ -0,0 +1,100 @@ + 'Key', + 'value' => 'Value', + 'valuePositions' => 'ValuePositions', + 'valueScore' => 'ValueScore', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->key) { + $res['Key'] = $this->key; + } + if (null !== $this->value) { + $res['Value'] = $this->value; + } + if (null !== $this->valuePositions) { + $res['ValuePositions'] = []; + if (null !== $this->valuePositions && \is_array($this->valuePositions)) { + $n = 0; + foreach ($this->valuePositions as $item) { + $res['ValuePositions'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + if (null !== $this->valueScore) { + $res['ValueScore'] = $this->valueScore; + } + + return $res; + } + + /** + * @param array $map + * + * @return keyValueInfos + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Key'])) { + $model->key = $map['Key']; + } + if (isset($map['Value'])) { + $model->value = $map['Value']; + } + if (isset($map['ValuePositions'])) { + if (!empty($map['ValuePositions'])) { + $model->valuePositions = []; + $n = 0; + foreach ($map['ValuePositions'] as $item) { + $model->valuePositions[$n++] = null !== $item ? valuePositions::fromMap($item) : $item; + } + } + } + if (isset($map['ValueScore'])) { + $model->valueScore = $map['ValueScore']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeTicketInvoiceResponseBody/data/results/keyValueInfos/valuePositions.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeTicketInvoiceResponseBody/data/results/keyValueInfos/valuePositions.php new file mode 100644 index 00000000..049567c4 --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeTicketInvoiceResponseBody/data/results/keyValueInfos/valuePositions.php @@ -0,0 +1,63 @@ + 'X', + 'y' => 'Y', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->x) { + $res['X'] = $this->x; + } + if (null !== $this->y) { + $res['Y'] = $this->y; + } + + return $res; + } + + /** + * @param array $map + * + * @return valuePositions + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['X'])) { + $model->x = $map['X']; + } + if (isset($map['Y'])) { + $model->y = $map['Y']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeTicketInvoiceResponseBody/data/results/sliceRectangle.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeTicketInvoiceResponseBody/data/results/sliceRectangle.php new file mode 100644 index 00000000..cbae93fb --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeTicketInvoiceResponseBody/data/results/sliceRectangle.php @@ -0,0 +1,63 @@ + 'X', + 'y' => 'Y', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->x) { + $res['X'] = $this->x; + } + if (null !== $this->y) { + $res['Y'] = $this->y; + } + + return $res; + } + + /** + * @param array $map + * + * @return sliceRectangle + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['X'])) { + $model->x = $map['X']; + } + if (isset($map['Y'])) { + $model->y = $map['Y']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeTrainTicketAdvanceRequest.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeTrainTicketAdvanceRequest.php new file mode 100644 index 00000000..cdf0e552 --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeTrainTicketAdvanceRequest.php @@ -0,0 +1,50 @@ + 'ImageURL', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->imageURLObject) { + $res['ImageURL'] = $this->imageURLObject; + } + + return $res; + } + + /** + * @param array $map + * + * @return RecognizeTrainTicketAdvanceRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['ImageURL'])) { + $model->imageURLObject = $map['ImageURL']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeTrainTicketRequest.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeTrainTicketRequest.php new file mode 100644 index 00000000..b1dc1d11 --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeTrainTicketRequest.php @@ -0,0 +1,49 @@ + 'ImageURL', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->imageURL) { + $res['ImageURL'] = $this->imageURL; + } + + return $res; + } + + /** + * @param array $map + * + * @return RecognizeTrainTicketRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['ImageURL'])) { + $model->imageURL = $map['ImageURL']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeTrainTicketResponse.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeTrainTicketResponse.php new file mode 100644 index 00000000..220bcda5 --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeTrainTicketResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return RecognizeTrainTicketResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = RecognizeTrainTicketResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeTrainTicketResponseBody.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeTrainTicketResponseBody.php new file mode 100644 index 00000000..66599257 --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeTrainTicketResponseBody.php @@ -0,0 +1,62 @@ + 'Data', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->data) { + $res['Data'] = null !== $this->data ? $this->data->toMap() : null; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return RecognizeTrainTicketResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Data'])) { + $model->data = data::fromMap($map['Data']); + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeTrainTicketResponseBody/data.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeTrainTicketResponseBody/data.php new file mode 100644 index 00000000..dd1233ed --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeTrainTicketResponseBody/data.php @@ -0,0 +1,135 @@ + 'Date', + 'departureStation' => 'DepartureStation', + 'destination' => 'Destination', + 'level' => 'Level', + 'name' => 'Name', + 'number' => 'Number', + 'price' => 'Price', + 'seat' => 'Seat', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->date) { + $res['Date'] = $this->date; + } + if (null !== $this->departureStation) { + $res['DepartureStation'] = $this->departureStation; + } + if (null !== $this->destination) { + $res['Destination'] = $this->destination; + } + if (null !== $this->level) { + $res['Level'] = $this->level; + } + if (null !== $this->name) { + $res['Name'] = $this->name; + } + if (null !== $this->number) { + $res['Number'] = $this->number; + } + if (null !== $this->price) { + $res['Price'] = $this->price; + } + if (null !== $this->seat) { + $res['Seat'] = $this->seat; + } + + return $res; + } + + /** + * @param array $map + * + * @return data + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Date'])) { + $model->date = $map['Date']; + } + if (isset($map['DepartureStation'])) { + $model->departureStation = $map['DepartureStation']; + } + if (isset($map['Destination'])) { + $model->destination = $map['Destination']; + } + if (isset($map['Level'])) { + $model->level = $map['Level']; + } + if (isset($map['Name'])) { + $model->name = $map['Name']; + } + if (isset($map['Number'])) { + $model->number = $map['Number']; + } + if (isset($map['Price'])) { + $model->price = $map['Price']; + } + if (isset($map['Seat'])) { + $model->seat = $map['Seat']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeVATInvoiceAdvanceRequest.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeVATInvoiceAdvanceRequest.php new file mode 100644 index 00000000..46e889c7 --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeVATInvoiceAdvanceRequest.php @@ -0,0 +1,64 @@ + 'FileType', + 'fileURLObject' => 'FileURL', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->fileType) { + $res['FileType'] = $this->fileType; + } + if (null !== $this->fileURLObject) { + $res['FileURL'] = $this->fileURLObject; + } + + return $res; + } + + /** + * @param array $map + * + * @return RecognizeVATInvoiceAdvanceRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['FileType'])) { + $model->fileType = $map['FileType']; + } + if (isset($map['FileURL'])) { + $model->fileURLObject = $map['FileURL']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeVATInvoiceRequest.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeVATInvoiceRequest.php new file mode 100644 index 00000000..2138023a --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeVATInvoiceRequest.php @@ -0,0 +1,63 @@ + 'FileType', + 'fileURL' => 'FileURL', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->fileType) { + $res['FileType'] = $this->fileType; + } + if (null !== $this->fileURL) { + $res['FileURL'] = $this->fileURL; + } + + return $res; + } + + /** + * @param array $map + * + * @return RecognizeVATInvoiceRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['FileType'])) { + $model->fileType = $map['FileType']; + } + if (isset($map['FileURL'])) { + $model->fileURL = $map['FileURL']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeVATInvoiceResponse.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeVATInvoiceResponse.php new file mode 100644 index 00000000..2f1f042d --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeVATInvoiceResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return RecognizeVATInvoiceResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = RecognizeVATInvoiceResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeVATInvoiceResponseBody.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeVATInvoiceResponseBody.php new file mode 100644 index 00000000..743d1f76 --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeVATInvoiceResponseBody.php @@ -0,0 +1,62 @@ + 'Data', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->data) { + $res['Data'] = null !== $this->data ? $this->data->toMap() : null; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return RecognizeVATInvoiceResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Data'])) { + $model->data = data::fromMap($map['Data']); + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeVATInvoiceResponseBody/data.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeVATInvoiceResponseBody/data.php new file mode 100644 index 00000000..86b955e4 --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeVATInvoiceResponseBody/data.php @@ -0,0 +1,61 @@ + 'Box', + 'content' => 'Content', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->box) { + $res['Box'] = null !== $this->box ? $this->box->toMap() : null; + } + if (null !== $this->content) { + $res['Content'] = null !== $this->content ? $this->content->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return data + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Box'])) { + $model->box = box::fromMap($map['Box']); + } + if (isset($map['Content'])) { + $model->content = content::fromMap($map['Content']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeVATInvoiceResponseBody/data/box.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeVATInvoiceResponseBody/data/box.php new file mode 100644 index 00000000..ef090230 --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeVATInvoiceResponseBody/data/box.php @@ -0,0 +1,355 @@ + 'Checkers', + 'clerks' => 'Clerks', + 'invoiceAmounts' => 'InvoiceAmounts', + 'invoiceCodes' => 'InvoiceCodes', + 'invoiceDates' => 'InvoiceDates', + 'invoiceFakeCodes' => 'InvoiceFakeCodes', + 'invoiceNoes' => 'InvoiceNoes', + 'itemNames' => 'ItemNames', + 'payeeAddresses' => 'PayeeAddresses', + 'payeeBankNames' => 'PayeeBankNames', + 'payeeNames' => 'PayeeNames', + 'payeeRegisterNoes' => 'PayeeRegisterNoes', + 'payees' => 'Payees', + 'payerAddresses' => 'PayerAddresses', + 'payerBankNames' => 'PayerBankNames', + 'payerNames' => 'PayerNames', + 'payerRegisterNoes' => 'PayerRegisterNoes', + 'sumAmounts' => 'SumAmounts', + 'taxAmounts' => 'TaxAmounts', + 'withoutTaxAmounts' => 'WithoutTaxAmounts', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->checkers) { + $res['Checkers'] = $this->checkers; + } + if (null !== $this->clerks) { + $res['Clerks'] = $this->clerks; + } + if (null !== $this->invoiceAmounts) { + $res['InvoiceAmounts'] = $this->invoiceAmounts; + } + if (null !== $this->invoiceCodes) { + $res['InvoiceCodes'] = $this->invoiceCodes; + } + if (null !== $this->invoiceDates) { + $res['InvoiceDates'] = $this->invoiceDates; + } + if (null !== $this->invoiceFakeCodes) { + $res['InvoiceFakeCodes'] = $this->invoiceFakeCodes; + } + if (null !== $this->invoiceNoes) { + $res['InvoiceNoes'] = $this->invoiceNoes; + } + if (null !== $this->itemNames) { + $res['ItemNames'] = $this->itemNames; + } + if (null !== $this->payeeAddresses) { + $res['PayeeAddresses'] = $this->payeeAddresses; + } + if (null !== $this->payeeBankNames) { + $res['PayeeBankNames'] = $this->payeeBankNames; + } + if (null !== $this->payeeNames) { + $res['PayeeNames'] = $this->payeeNames; + } + if (null !== $this->payeeRegisterNoes) { + $res['PayeeRegisterNoes'] = $this->payeeRegisterNoes; + } + if (null !== $this->payees) { + $res['Payees'] = $this->payees; + } + if (null !== $this->payerAddresses) { + $res['PayerAddresses'] = $this->payerAddresses; + } + if (null !== $this->payerBankNames) { + $res['PayerBankNames'] = $this->payerBankNames; + } + if (null !== $this->payerNames) { + $res['PayerNames'] = $this->payerNames; + } + if (null !== $this->payerRegisterNoes) { + $res['PayerRegisterNoes'] = $this->payerRegisterNoes; + } + if (null !== $this->sumAmounts) { + $res['SumAmounts'] = $this->sumAmounts; + } + if (null !== $this->taxAmounts) { + $res['TaxAmounts'] = $this->taxAmounts; + } + if (null !== $this->withoutTaxAmounts) { + $res['WithoutTaxAmounts'] = $this->withoutTaxAmounts; + } + + return $res; + } + + /** + * @param array $map + * + * @return box + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Checkers'])) { + if (!empty($map['Checkers'])) { + $model->checkers = $map['Checkers']; + } + } + if (isset($map['Clerks'])) { + if (!empty($map['Clerks'])) { + $model->clerks = $map['Clerks']; + } + } + if (isset($map['InvoiceAmounts'])) { + if (!empty($map['InvoiceAmounts'])) { + $model->invoiceAmounts = $map['InvoiceAmounts']; + } + } + if (isset($map['InvoiceCodes'])) { + if (!empty($map['InvoiceCodes'])) { + $model->invoiceCodes = $map['InvoiceCodes']; + } + } + if (isset($map['InvoiceDates'])) { + if (!empty($map['InvoiceDates'])) { + $model->invoiceDates = $map['InvoiceDates']; + } + } + if (isset($map['InvoiceFakeCodes'])) { + if (!empty($map['InvoiceFakeCodes'])) { + $model->invoiceFakeCodes = $map['InvoiceFakeCodes']; + } + } + if (isset($map['InvoiceNoes'])) { + if (!empty($map['InvoiceNoes'])) { + $model->invoiceNoes = $map['InvoiceNoes']; + } + } + if (isset($map['ItemNames'])) { + if (!empty($map['ItemNames'])) { + $model->itemNames = $map['ItemNames']; + } + } + if (isset($map['PayeeAddresses'])) { + if (!empty($map['PayeeAddresses'])) { + $model->payeeAddresses = $map['PayeeAddresses']; + } + } + if (isset($map['PayeeBankNames'])) { + if (!empty($map['PayeeBankNames'])) { + $model->payeeBankNames = $map['PayeeBankNames']; + } + } + if (isset($map['PayeeNames'])) { + if (!empty($map['PayeeNames'])) { + $model->payeeNames = $map['PayeeNames']; + } + } + if (isset($map['PayeeRegisterNoes'])) { + if (!empty($map['PayeeRegisterNoes'])) { + $model->payeeRegisterNoes = $map['PayeeRegisterNoes']; + } + } + if (isset($map['Payees'])) { + if (!empty($map['Payees'])) { + $model->payees = $map['Payees']; + } + } + if (isset($map['PayerAddresses'])) { + if (!empty($map['PayerAddresses'])) { + $model->payerAddresses = $map['PayerAddresses']; + } + } + if (isset($map['PayerBankNames'])) { + if (!empty($map['PayerBankNames'])) { + $model->payerBankNames = $map['PayerBankNames']; + } + } + if (isset($map['PayerNames'])) { + if (!empty($map['PayerNames'])) { + $model->payerNames = $map['PayerNames']; + } + } + if (isset($map['PayerRegisterNoes'])) { + if (!empty($map['PayerRegisterNoes'])) { + $model->payerRegisterNoes = $map['PayerRegisterNoes']; + } + } + if (isset($map['SumAmounts'])) { + if (!empty($map['SumAmounts'])) { + $model->sumAmounts = $map['SumAmounts']; + } + } + if (isset($map['TaxAmounts'])) { + if (!empty($map['TaxAmounts'])) { + $model->taxAmounts = $map['TaxAmounts']; + } + } + if (isset($map['WithoutTaxAmounts'])) { + if (!empty($map['WithoutTaxAmounts'])) { + $model->withoutTaxAmounts = $map['WithoutTaxAmounts']; + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeVATInvoiceResponseBody/data/content.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeVATInvoiceResponseBody/data/content.php new file mode 100644 index 00000000..2c5c035c --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeVATInvoiceResponseBody/data/content.php @@ -0,0 +1,301 @@ + 'AntiFakeCode', + 'checker' => 'Checker', + 'clerk' => 'Clerk', + 'invoiceAmount' => 'InvoiceAmount', + 'invoiceCode' => 'InvoiceCode', + 'invoiceDate' => 'InvoiceDate', + 'invoiceNo' => 'InvoiceNo', + 'itemName' => 'ItemName', + 'payee' => 'Payee', + 'payeeAddress' => 'PayeeAddress', + 'payeeBankName' => 'PayeeBankName', + 'payeeName' => 'PayeeName', + 'payeeRegisterNo' => 'PayeeRegisterNo', + 'payerAddress' => 'PayerAddress', + 'payerBankName' => 'PayerBankName', + 'payerName' => 'PayerName', + 'payerRegisterNo' => 'PayerRegisterNo', + 'sumAmount' => 'SumAmount', + 'taxAmount' => 'TaxAmount', + 'withoutTaxAmount' => 'WithoutTaxAmount', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->antiFakeCode) { + $res['AntiFakeCode'] = $this->antiFakeCode; + } + if (null !== $this->checker) { + $res['Checker'] = $this->checker; + } + if (null !== $this->clerk) { + $res['Clerk'] = $this->clerk; + } + if (null !== $this->invoiceAmount) { + $res['InvoiceAmount'] = $this->invoiceAmount; + } + if (null !== $this->invoiceCode) { + $res['InvoiceCode'] = $this->invoiceCode; + } + if (null !== $this->invoiceDate) { + $res['InvoiceDate'] = $this->invoiceDate; + } + if (null !== $this->invoiceNo) { + $res['InvoiceNo'] = $this->invoiceNo; + } + if (null !== $this->itemName) { + $res['ItemName'] = $this->itemName; + } + if (null !== $this->payee) { + $res['Payee'] = $this->payee; + } + if (null !== $this->payeeAddress) { + $res['PayeeAddress'] = $this->payeeAddress; + } + if (null !== $this->payeeBankName) { + $res['PayeeBankName'] = $this->payeeBankName; + } + if (null !== $this->payeeName) { + $res['PayeeName'] = $this->payeeName; + } + if (null !== $this->payeeRegisterNo) { + $res['PayeeRegisterNo'] = $this->payeeRegisterNo; + } + if (null !== $this->payerAddress) { + $res['PayerAddress'] = $this->payerAddress; + } + if (null !== $this->payerBankName) { + $res['PayerBankName'] = $this->payerBankName; + } + if (null !== $this->payerName) { + $res['PayerName'] = $this->payerName; + } + if (null !== $this->payerRegisterNo) { + $res['PayerRegisterNo'] = $this->payerRegisterNo; + } + if (null !== $this->sumAmount) { + $res['SumAmount'] = $this->sumAmount; + } + if (null !== $this->taxAmount) { + $res['TaxAmount'] = $this->taxAmount; + } + if (null !== $this->withoutTaxAmount) { + $res['WithoutTaxAmount'] = $this->withoutTaxAmount; + } + + return $res; + } + + /** + * @param array $map + * + * @return content + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AntiFakeCode'])) { + $model->antiFakeCode = $map['AntiFakeCode']; + } + if (isset($map['Checker'])) { + $model->checker = $map['Checker']; + } + if (isset($map['Clerk'])) { + $model->clerk = $map['Clerk']; + } + if (isset($map['InvoiceAmount'])) { + $model->invoiceAmount = $map['InvoiceAmount']; + } + if (isset($map['InvoiceCode'])) { + $model->invoiceCode = $map['InvoiceCode']; + } + if (isset($map['InvoiceDate'])) { + $model->invoiceDate = $map['InvoiceDate']; + } + if (isset($map['InvoiceNo'])) { + $model->invoiceNo = $map['InvoiceNo']; + } + if (isset($map['ItemName'])) { + if (!empty($map['ItemName'])) { + $model->itemName = $map['ItemName']; + } + } + if (isset($map['Payee'])) { + $model->payee = $map['Payee']; + } + if (isset($map['PayeeAddress'])) { + $model->payeeAddress = $map['PayeeAddress']; + } + if (isset($map['PayeeBankName'])) { + $model->payeeBankName = $map['PayeeBankName']; + } + if (isset($map['PayeeName'])) { + $model->payeeName = $map['PayeeName']; + } + if (isset($map['PayeeRegisterNo'])) { + $model->payeeRegisterNo = $map['PayeeRegisterNo']; + } + if (isset($map['PayerAddress'])) { + $model->payerAddress = $map['PayerAddress']; + } + if (isset($map['PayerBankName'])) { + $model->payerBankName = $map['PayerBankName']; + } + if (isset($map['PayerName'])) { + $model->payerName = $map['PayerName']; + } + if (isset($map['PayerRegisterNo'])) { + $model->payerRegisterNo = $map['PayerRegisterNo']; + } + if (isset($map['SumAmount'])) { + $model->sumAmount = $map['SumAmount']; + } + if (isset($map['TaxAmount'])) { + $model->taxAmount = $map['TaxAmount']; + } + if (isset($map['WithoutTaxAmount'])) { + $model->withoutTaxAmount = $map['WithoutTaxAmount']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeVINCodeAdvanceRequest.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeVINCodeAdvanceRequest.php new file mode 100644 index 00000000..c7d58a2d --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeVINCodeAdvanceRequest.php @@ -0,0 +1,50 @@ + 'ImageURL', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->imageURLObject) { + $res['ImageURL'] = $this->imageURLObject; + } + + return $res; + } + + /** + * @param array $map + * + * @return RecognizeVINCodeAdvanceRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['ImageURL'])) { + $model->imageURLObject = $map['ImageURL']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeVINCodeRequest.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeVINCodeRequest.php new file mode 100644 index 00000000..c1128f90 --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeVINCodeRequest.php @@ -0,0 +1,49 @@ + 'ImageURL', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->imageURL) { + $res['ImageURL'] = $this->imageURL; + } + + return $res; + } + + /** + * @param array $map + * + * @return RecognizeVINCodeRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['ImageURL'])) { + $model->imageURL = $map['ImageURL']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeVINCodeResponse.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeVINCodeResponse.php new file mode 100644 index 00000000..7f3b32d5 --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeVINCodeResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return RecognizeVINCodeResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = RecognizeVINCodeResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeVINCodeResponseBody.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeVINCodeResponseBody.php new file mode 100644 index 00000000..0e0d11d4 --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeVINCodeResponseBody.php @@ -0,0 +1,62 @@ + 'Data', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->data) { + $res['Data'] = null !== $this->data ? $this->data->toMap() : null; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return RecognizeVINCodeResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Data'])) { + $model->data = data::fromMap($map['Data']); + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeVINCodeResponseBody/data.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeVINCodeResponseBody/data.php new file mode 100644 index 00000000..f16e4670 --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeVINCodeResponseBody/data.php @@ -0,0 +1,49 @@ + 'VinCode', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->vinCode) { + $res['VinCode'] = $this->vinCode; + } + + return $res; + } + + /** + * @param array $map + * + * @return data + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['VinCode'])) { + $model->vinCode = $map['VinCode']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeVideoCharacterAdvanceRequest.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeVideoCharacterAdvanceRequest.php new file mode 100644 index 00000000..2d21bc05 --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeVideoCharacterAdvanceRequest.php @@ -0,0 +1,50 @@ + 'VideoURL', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->videoURLObject) { + $res['VideoURL'] = $this->videoURLObject; + } + + return $res; + } + + /** + * @param array $map + * + * @return RecognizeVideoCharacterAdvanceRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['VideoURL'])) { + $model->videoURLObject = $map['VideoURL']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeVideoCharacterRequest.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeVideoCharacterRequest.php new file mode 100644 index 00000000..0e3ba905 --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeVideoCharacterRequest.php @@ -0,0 +1,49 @@ + 'VideoURL', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->videoURL) { + $res['VideoURL'] = $this->videoURL; + } + + return $res; + } + + /** + * @param array $map + * + * @return RecognizeVideoCharacterRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['VideoURL'])) { + $model->videoURL = $map['VideoURL']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeVideoCharacterResponse.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeVideoCharacterResponse.php new file mode 100644 index 00000000..4ac795a8 --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeVideoCharacterResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return RecognizeVideoCharacterResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = RecognizeVideoCharacterResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeVideoCharacterResponseBody.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeVideoCharacterResponseBody.php new file mode 100644 index 00000000..a2d392f4 --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeVideoCharacterResponseBody.php @@ -0,0 +1,74 @@ + 'Data', + 'message' => 'Message', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->data) { + $res['Data'] = null !== $this->data ? $this->data->toMap() : null; + } + if (null !== $this->message) { + $res['Message'] = $this->message; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return RecognizeVideoCharacterResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Data'])) { + $model->data = data::fromMap($map['Data']); + } + if (isset($map['Message'])) { + $model->message = $map['Message']; + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeVideoCharacterResponseBody/data.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeVideoCharacterResponseBody/data.php new file mode 100644 index 00000000..748d0cb3 --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeVideoCharacterResponseBody/data.php @@ -0,0 +1,102 @@ + 'Frames', + 'height' => 'Height', + 'inputFile' => 'InputFile', + 'width' => 'Width', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->frames) { + $res['Frames'] = []; + if (null !== $this->frames && \is_array($this->frames)) { + $n = 0; + foreach ($this->frames as $item) { + $res['Frames'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + if (null !== $this->height) { + $res['Height'] = $this->height; + } + if (null !== $this->inputFile) { + $res['InputFile'] = $this->inputFile; + } + if (null !== $this->width) { + $res['Width'] = $this->width; + } + + return $res; + } + + /** + * @param array $map + * + * @return data + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Frames'])) { + if (!empty($map['Frames'])) { + $model->frames = []; + $n = 0; + foreach ($map['Frames'] as $item) { + $model->frames[$n++] = null !== $item ? frames::fromMap($item) : $item; + } + } + } + if (isset($map['Height'])) { + $model->height = $map['Height']; + } + if (isset($map['InputFile'])) { + $model->inputFile = $map['InputFile']; + } + if (isset($map['Width'])) { + $model->width = $map['Width']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeVideoCharacterResponseBody/data/frames.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeVideoCharacterResponseBody/data/frames.php new file mode 100644 index 00000000..e42f6c84 --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeVideoCharacterResponseBody/data/frames.php @@ -0,0 +1,74 @@ + 'Elements', + 'timestamp' => 'Timestamp', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->elements) { + $res['Elements'] = []; + if (null !== $this->elements && \is_array($this->elements)) { + $n = 0; + foreach ($this->elements as $item) { + $res['Elements'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + if (null !== $this->timestamp) { + $res['Timestamp'] = $this->timestamp; + } + + return $res; + } + + /** + * @param array $map + * + * @return frames + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Elements'])) { + if (!empty($map['Elements'])) { + $model->elements = []; + $n = 0; + foreach ($map['Elements'] as $item) { + $model->elements[$n++] = null !== $item ? elements::fromMap($item) : $item; + } + } + } + if (isset($map['Timestamp'])) { + $model->timestamp = $map['Timestamp']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeVideoCharacterResponseBody/data/frames/elements.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeVideoCharacterResponseBody/data/frames/elements.php new file mode 100644 index 00000000..7194785a --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeVideoCharacterResponseBody/data/frames/elements.php @@ -0,0 +1,86 @@ + 'Score', + 'text' => 'Text', + 'textRectangles' => 'TextRectangles', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->score) { + $res['Score'] = $this->score; + } + if (null !== $this->text) { + $res['Text'] = $this->text; + } + if (null !== $this->textRectangles) { + $res['TextRectangles'] = []; + if (null !== $this->textRectangles && \is_array($this->textRectangles)) { + $n = 0; + foreach ($this->textRectangles as $item) { + $res['TextRectangles'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return elements + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Score'])) { + $model->score = $map['Score']; + } + if (isset($map['Text'])) { + $model->text = $map['Text']; + } + if (isset($map['TextRectangles'])) { + if (!empty($map['TextRectangles'])) { + $model->textRectangles = []; + $n = 0; + foreach ($map['TextRectangles'] as $item) { + $model->textRectangles[$n++] = null !== $item ? textRectangles::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeVideoCharacterResponseBody/data/frames/elements/textRectangles.php b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeVideoCharacterResponseBody/data/frames/elements/textRectangles.php new file mode 100644 index 00000000..19e038c1 --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Models/RecognizeVideoCharacterResponseBody/data/frames/elements/textRectangles.php @@ -0,0 +1,105 @@ + 'Angle', + 'height' => 'Height', + 'left' => 'Left', + 'top' => 'Top', + 'width' => 'Width', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->angle) { + $res['Angle'] = $this->angle; + } + if (null !== $this->height) { + $res['Height'] = $this->height; + } + if (null !== $this->left) { + $res['Left'] = $this->left; + } + if (null !== $this->top) { + $res['Top'] = $this->top; + } + if (null !== $this->width) { + $res['Width'] = $this->width; + } + + return $res; + } + + /** + * @param array $map + * + * @return textRectangles + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Angle'])) { + $model->angle = $map['Angle']; + } + if (isset($map['Height'])) { + $model->height = $map['Height']; + } + if (isset($map['Left'])) { + $model->left = $map['Left']; + } + if (isset($map['Top'])) { + $model->top = $map['Top']; + } + if (isset($map['Width'])) { + $model->width = $map['Width']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/ocr-20191230/src/Ocr.php b/vendor/alibabacloud/ocr-20191230/src/Ocr.php new file mode 100644 index 00000000..3a84a3d6 --- /dev/null +++ b/vendor/alibabacloud/ocr-20191230/src/Ocr.php @@ -0,0 +1,2496 @@ +_endpointRule = 'regional'; + $this->checkConfig($config); + $this->_endpoint = $this->getEndpoint('ocr', $this->_regionId, $this->_endpointRule, $this->_network, $this->_suffix, $this->_endpointMap, $this->_endpoint); + } + + /** + * @param string $productId + * @param string $regionId + * @param string $endpointRule + * @param string $network + * @param string $suffix + * @param string[] $endpointMap + * @param string $endpoint + * + * @return string + */ + public function getEndpoint($productId, $regionId, $endpointRule, $network, $suffix, $endpointMap, $endpoint) + { + if (!Utils::empty_($endpoint)) { + return $endpoint; + } + if (!Utils::isUnset($endpointMap) && !Utils::empty_(@$endpointMap[$regionId])) { + return @$endpointMap[$regionId]; + } + + return Endpoint::getEndpointRules($productId, $regionId, $endpointRule, $network, $suffix); + } + + /** + * @param GetAsyncJobResultRequest $request + * @param RuntimeOptions $runtime + * + * @return GetAsyncJobResultResponse + */ + public function getAsyncJobResultWithOptions($request, $runtime) + { + Utils::validateModel($request); + $body = []; + if (!Utils::isUnset($request->jobId)) { + $body['JobId'] = $request->jobId; + } + $req = new OpenApiRequest([ + 'body' => OpenApiUtilClient::parseToMap($body), + ]); + $params = new Params([ + 'action' => 'GetAsyncJobResult', + 'version' => '2019-12-30', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return GetAsyncJobResultResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param GetAsyncJobResultRequest $request + * + * @return GetAsyncJobResultResponse + */ + public function getAsyncJobResult($request) + { + $runtime = new RuntimeOptions([]); + + return $this->getAsyncJobResultWithOptions($request, $runtime); + } + + /** + * @param RecognizeBankCardRequest $request + * @param RuntimeOptions $runtime + * + * @return RecognizeBankCardResponse + */ + public function recognizeBankCardWithOptions($request, $runtime) + { + Utils::validateModel($request); + $body = []; + if (!Utils::isUnset($request->imageURL)) { + $body['ImageURL'] = $request->imageURL; + } + $req = new OpenApiRequest([ + 'body' => OpenApiUtilClient::parseToMap($body), + ]); + $params = new Params([ + 'action' => 'RecognizeBankCard', + 'version' => '2019-12-30', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return RecognizeBankCardResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param RecognizeBankCardRequest $request + * + * @return RecognizeBankCardResponse + */ + public function recognizeBankCard($request) + { + $runtime = new RuntimeOptions([]); + + return $this->recognizeBankCardWithOptions($request, $runtime); + } + + /** + * @param RecognizeBankCardAdvanceRequest $request + * @param RuntimeOptions $runtime + * + * @return RecognizeBankCardResponse + */ + public function recognizeBankCardAdvance($request, $runtime) + { + // Step 0: init client + $accessKeyId = $this->_credential->getAccessKeyId(); + $accessKeySecret = $this->_credential->getAccessKeySecret(); + $securityToken = $this->_credential->getSecurityToken(); + $credentialType = $this->_credential->getType(); + $openPlatformEndpoint = $this->_openPlatformEndpoint; + if (Utils::isUnset($openPlatformEndpoint)) { + $openPlatformEndpoint = 'openplatform.aliyuncs.com'; + } + if (Utils::isUnset($credentialType)) { + $credentialType = 'access_key'; + } + $authConfig = new Config([ + 'accessKeyId' => $accessKeyId, + 'accessKeySecret' => $accessKeySecret, + 'securityToken' => $securityToken, + 'type' => $credentialType, + 'endpoint' => $openPlatformEndpoint, + 'protocol' => $this->_protocol, + 'regionId' => $this->_regionId, + ]); + $authClient = new OpenPlatform($authConfig); + $authRequest = new AuthorizeFileUploadRequest([ + 'product' => 'ocr', + 'regionId' => $this->_regionId, + ]); + $authResponse = new AuthorizeFileUploadResponse([]); + $ossConfig = new \AlibabaCloud\SDK\OSS\OSS\Config([ + 'accessKeySecret' => $accessKeySecret, + 'type' => 'access_key', + 'protocol' => $this->_protocol, + 'regionId' => $this->_regionId, + ]); + $ossClient = null; + $fileObj = new FileField([]); + $ossHeader = new header([]); + $uploadRequest = new PostObjectRequest([]); + $ossRuntime = new \AlibabaCloud\Tea\OSSUtils\OSSUtils\RuntimeOptions([]); + OpenApiUtilClient::convert($runtime, $ossRuntime); + $recognizeBankCardReq = new RecognizeBankCardRequest([]); + OpenApiUtilClient::convert($request, $recognizeBankCardReq); + if (!Utils::isUnset($request->imageURLObject)) { + $authResponse = $authClient->authorizeFileUploadWithOptions($authRequest, $runtime); + $ossConfig->accessKeyId = $authResponse->body->accessKeyId; + $ossConfig->endpoint = OpenApiUtilClient::getEndpoint($authResponse->body->endpoint, $authResponse->body->useAccelerate, $this->_endpointType); + $ossClient = new OSS($ossConfig); + $fileObj = new FileField([ + 'filename' => $authResponse->body->objectKey, + 'content' => $request->imageURLObject, + 'contentType' => '', + ]); + $ossHeader = new header([ + 'accessKeyId' => $authResponse->body->accessKeyId, + 'policy' => $authResponse->body->encodedPolicy, + 'signature' => $authResponse->body->signature, + 'key' => $authResponse->body->objectKey, + 'file' => $fileObj, + 'successActionStatus' => '201', + ]); + $uploadRequest = new PostObjectRequest([ + 'bucketName' => $authResponse->body->bucket, + 'header' => $ossHeader, + ]); + $ossClient->postObject($uploadRequest, $ossRuntime); + $recognizeBankCardReq->imageURL = 'http://' . $authResponse->body->bucket . '.' . $authResponse->body->endpoint . '/' . $authResponse->body->objectKey . ''; + } + + return $this->recognizeBankCardWithOptions($recognizeBankCardReq, $runtime); + } + + /** + * @param RecognizeBusinessCardRequest $request + * @param RuntimeOptions $runtime + * + * @return RecognizeBusinessCardResponse + */ + public function recognizeBusinessCardWithOptions($request, $runtime) + { + Utils::validateModel($request); + $body = []; + if (!Utils::isUnset($request->imageURL)) { + $body['ImageURL'] = $request->imageURL; + } + $req = new OpenApiRequest([ + 'body' => OpenApiUtilClient::parseToMap($body), + ]); + $params = new Params([ + 'action' => 'RecognizeBusinessCard', + 'version' => '2019-12-30', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return RecognizeBusinessCardResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param RecognizeBusinessCardRequest $request + * + * @return RecognizeBusinessCardResponse + */ + public function recognizeBusinessCard($request) + { + $runtime = new RuntimeOptions([]); + + return $this->recognizeBusinessCardWithOptions($request, $runtime); + } + + /** + * @param RecognizeBusinessCardAdvanceRequest $request + * @param RuntimeOptions $runtime + * + * @return RecognizeBusinessCardResponse + */ + public function recognizeBusinessCardAdvance($request, $runtime) + { + // Step 0: init client + $accessKeyId = $this->_credential->getAccessKeyId(); + $accessKeySecret = $this->_credential->getAccessKeySecret(); + $securityToken = $this->_credential->getSecurityToken(); + $credentialType = $this->_credential->getType(); + $openPlatformEndpoint = $this->_openPlatformEndpoint; + if (Utils::isUnset($openPlatformEndpoint)) { + $openPlatformEndpoint = 'openplatform.aliyuncs.com'; + } + if (Utils::isUnset($credentialType)) { + $credentialType = 'access_key'; + } + $authConfig = new Config([ + 'accessKeyId' => $accessKeyId, + 'accessKeySecret' => $accessKeySecret, + 'securityToken' => $securityToken, + 'type' => $credentialType, + 'endpoint' => $openPlatformEndpoint, + 'protocol' => $this->_protocol, + 'regionId' => $this->_regionId, + ]); + $authClient = new OpenPlatform($authConfig); + $authRequest = new AuthorizeFileUploadRequest([ + 'product' => 'ocr', + 'regionId' => $this->_regionId, + ]); + $authResponse = new AuthorizeFileUploadResponse([]); + $ossConfig = new \AlibabaCloud\SDK\OSS\OSS\Config([ + 'accessKeySecret' => $accessKeySecret, + 'type' => 'access_key', + 'protocol' => $this->_protocol, + 'regionId' => $this->_regionId, + ]); + $ossClient = null; + $fileObj = new FileField([]); + $ossHeader = new header([]); + $uploadRequest = new PostObjectRequest([]); + $ossRuntime = new \AlibabaCloud\Tea\OSSUtils\OSSUtils\RuntimeOptions([]); + OpenApiUtilClient::convert($runtime, $ossRuntime); + $recognizeBusinessCardReq = new RecognizeBusinessCardRequest([]); + OpenApiUtilClient::convert($request, $recognizeBusinessCardReq); + if (!Utils::isUnset($request->imageURLObject)) { + $authResponse = $authClient->authorizeFileUploadWithOptions($authRequest, $runtime); + $ossConfig->accessKeyId = $authResponse->body->accessKeyId; + $ossConfig->endpoint = OpenApiUtilClient::getEndpoint($authResponse->body->endpoint, $authResponse->body->useAccelerate, $this->_endpointType); + $ossClient = new OSS($ossConfig); + $fileObj = new FileField([ + 'filename' => $authResponse->body->objectKey, + 'content' => $request->imageURLObject, + 'contentType' => '', + ]); + $ossHeader = new header([ + 'accessKeyId' => $authResponse->body->accessKeyId, + 'policy' => $authResponse->body->encodedPolicy, + 'signature' => $authResponse->body->signature, + 'key' => $authResponse->body->objectKey, + 'file' => $fileObj, + 'successActionStatus' => '201', + ]); + $uploadRequest = new PostObjectRequest([ + 'bucketName' => $authResponse->body->bucket, + 'header' => $ossHeader, + ]); + $ossClient->postObject($uploadRequest, $ossRuntime); + $recognizeBusinessCardReq->imageURL = 'http://' . $authResponse->body->bucket . '.' . $authResponse->body->endpoint . '/' . $authResponse->body->objectKey . ''; + } + + return $this->recognizeBusinessCardWithOptions($recognizeBusinessCardReq, $runtime); + } + + /** + * @param RecognizeBusinessLicenseRequest $request + * @param RuntimeOptions $runtime + * + * @return RecognizeBusinessLicenseResponse + */ + public function recognizeBusinessLicenseWithOptions($request, $runtime) + { + Utils::validateModel($request); + $body = []; + if (!Utils::isUnset($request->imageURL)) { + $body['ImageURL'] = $request->imageURL; + } + $req = new OpenApiRequest([ + 'body' => OpenApiUtilClient::parseToMap($body), + ]); + $params = new Params([ + 'action' => 'RecognizeBusinessLicense', + 'version' => '2019-12-30', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return RecognizeBusinessLicenseResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param RecognizeBusinessLicenseRequest $request + * + * @return RecognizeBusinessLicenseResponse + */ + public function recognizeBusinessLicense($request) + { + $runtime = new RuntimeOptions([]); + + return $this->recognizeBusinessLicenseWithOptions($request, $runtime); + } + + /** + * @param RecognizeBusinessLicenseAdvanceRequest $request + * @param RuntimeOptions $runtime + * + * @return RecognizeBusinessLicenseResponse + */ + public function recognizeBusinessLicenseAdvance($request, $runtime) + { + // Step 0: init client + $accessKeyId = $this->_credential->getAccessKeyId(); + $accessKeySecret = $this->_credential->getAccessKeySecret(); + $securityToken = $this->_credential->getSecurityToken(); + $credentialType = $this->_credential->getType(); + $openPlatformEndpoint = $this->_openPlatformEndpoint; + if (Utils::isUnset($openPlatformEndpoint)) { + $openPlatformEndpoint = 'openplatform.aliyuncs.com'; + } + if (Utils::isUnset($credentialType)) { + $credentialType = 'access_key'; + } + $authConfig = new Config([ + 'accessKeyId' => $accessKeyId, + 'accessKeySecret' => $accessKeySecret, + 'securityToken' => $securityToken, + 'type' => $credentialType, + 'endpoint' => $openPlatformEndpoint, + 'protocol' => $this->_protocol, + 'regionId' => $this->_regionId, + ]); + $authClient = new OpenPlatform($authConfig); + $authRequest = new AuthorizeFileUploadRequest([ + 'product' => 'ocr', + 'regionId' => $this->_regionId, + ]); + $authResponse = new AuthorizeFileUploadResponse([]); + $ossConfig = new \AlibabaCloud\SDK\OSS\OSS\Config([ + 'accessKeySecret' => $accessKeySecret, + 'type' => 'access_key', + 'protocol' => $this->_protocol, + 'regionId' => $this->_regionId, + ]); + $ossClient = null; + $fileObj = new FileField([]); + $ossHeader = new header([]); + $uploadRequest = new PostObjectRequest([]); + $ossRuntime = new \AlibabaCloud\Tea\OSSUtils\OSSUtils\RuntimeOptions([]); + OpenApiUtilClient::convert($runtime, $ossRuntime); + $recognizeBusinessLicenseReq = new RecognizeBusinessLicenseRequest([]); + OpenApiUtilClient::convert($request, $recognizeBusinessLicenseReq); + if (!Utils::isUnset($request->imageURLObject)) { + $authResponse = $authClient->authorizeFileUploadWithOptions($authRequest, $runtime); + $ossConfig->accessKeyId = $authResponse->body->accessKeyId; + $ossConfig->endpoint = OpenApiUtilClient::getEndpoint($authResponse->body->endpoint, $authResponse->body->useAccelerate, $this->_endpointType); + $ossClient = new OSS($ossConfig); + $fileObj = new FileField([ + 'filename' => $authResponse->body->objectKey, + 'content' => $request->imageURLObject, + 'contentType' => '', + ]); + $ossHeader = new header([ + 'accessKeyId' => $authResponse->body->accessKeyId, + 'policy' => $authResponse->body->encodedPolicy, + 'signature' => $authResponse->body->signature, + 'key' => $authResponse->body->objectKey, + 'file' => $fileObj, + 'successActionStatus' => '201', + ]); + $uploadRequest = new PostObjectRequest([ + 'bucketName' => $authResponse->body->bucket, + 'header' => $ossHeader, + ]); + $ossClient->postObject($uploadRequest, $ossRuntime); + $recognizeBusinessLicenseReq->imageURL = 'http://' . $authResponse->body->bucket . '.' . $authResponse->body->endpoint . '/' . $authResponse->body->objectKey . ''; + } + + return $this->recognizeBusinessLicenseWithOptions($recognizeBusinessLicenseReq, $runtime); + } + + /** + * @param RecognizeCharacterRequest $request + * @param RuntimeOptions $runtime + * + * @return RecognizeCharacterResponse + */ + public function recognizeCharacterWithOptions($request, $runtime) + { + Utils::validateModel($request); + $body = []; + if (!Utils::isUnset($request->imageURL)) { + $body['ImageURL'] = $request->imageURL; + } + if (!Utils::isUnset($request->minHeight)) { + $body['MinHeight'] = $request->minHeight; + } + if (!Utils::isUnset($request->outputProbability)) { + $body['OutputProbability'] = $request->outputProbability; + } + $req = new OpenApiRequest([ + 'body' => OpenApiUtilClient::parseToMap($body), + ]); + $params = new Params([ + 'action' => 'RecognizeCharacter', + 'version' => '2019-12-30', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return RecognizeCharacterResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param RecognizeCharacterRequest $request + * + * @return RecognizeCharacterResponse + */ + public function recognizeCharacter($request) + { + $runtime = new RuntimeOptions([]); + + return $this->recognizeCharacterWithOptions($request, $runtime); + } + + /** + * @param RecognizeCharacterAdvanceRequest $request + * @param RuntimeOptions $runtime + * + * @return RecognizeCharacterResponse + */ + public function recognizeCharacterAdvance($request, $runtime) + { + // Step 0: init client + $accessKeyId = $this->_credential->getAccessKeyId(); + $accessKeySecret = $this->_credential->getAccessKeySecret(); + $securityToken = $this->_credential->getSecurityToken(); + $credentialType = $this->_credential->getType(); + $openPlatformEndpoint = $this->_openPlatformEndpoint; + if (Utils::isUnset($openPlatformEndpoint)) { + $openPlatformEndpoint = 'openplatform.aliyuncs.com'; + } + if (Utils::isUnset($credentialType)) { + $credentialType = 'access_key'; + } + $authConfig = new Config([ + 'accessKeyId' => $accessKeyId, + 'accessKeySecret' => $accessKeySecret, + 'securityToken' => $securityToken, + 'type' => $credentialType, + 'endpoint' => $openPlatformEndpoint, + 'protocol' => $this->_protocol, + 'regionId' => $this->_regionId, + ]); + $authClient = new OpenPlatform($authConfig); + $authRequest = new AuthorizeFileUploadRequest([ + 'product' => 'ocr', + 'regionId' => $this->_regionId, + ]); + $authResponse = new AuthorizeFileUploadResponse([]); + $ossConfig = new \AlibabaCloud\SDK\OSS\OSS\Config([ + 'accessKeySecret' => $accessKeySecret, + 'type' => 'access_key', + 'protocol' => $this->_protocol, + 'regionId' => $this->_regionId, + ]); + $ossClient = null; + $fileObj = new FileField([]); + $ossHeader = new header([]); + $uploadRequest = new PostObjectRequest([]); + $ossRuntime = new \AlibabaCloud\Tea\OSSUtils\OSSUtils\RuntimeOptions([]); + OpenApiUtilClient::convert($runtime, $ossRuntime); + $recognizeCharacterReq = new RecognizeCharacterRequest([]); + OpenApiUtilClient::convert($request, $recognizeCharacterReq); + if (!Utils::isUnset($request->imageURLObject)) { + $authResponse = $authClient->authorizeFileUploadWithOptions($authRequest, $runtime); + $ossConfig->accessKeyId = $authResponse->body->accessKeyId; + $ossConfig->endpoint = OpenApiUtilClient::getEndpoint($authResponse->body->endpoint, $authResponse->body->useAccelerate, $this->_endpointType); + $ossClient = new OSS($ossConfig); + $fileObj = new FileField([ + 'filename' => $authResponse->body->objectKey, + 'content' => $request->imageURLObject, + 'contentType' => '', + ]); + $ossHeader = new header([ + 'accessKeyId' => $authResponse->body->accessKeyId, + 'policy' => $authResponse->body->encodedPolicy, + 'signature' => $authResponse->body->signature, + 'key' => $authResponse->body->objectKey, + 'file' => $fileObj, + 'successActionStatus' => '201', + ]); + $uploadRequest = new PostObjectRequest([ + 'bucketName' => $authResponse->body->bucket, + 'header' => $ossHeader, + ]); + $ossClient->postObject($uploadRequest, $ossRuntime); + $recognizeCharacterReq->imageURL = 'http://' . $authResponse->body->bucket . '.' . $authResponse->body->endpoint . '/' . $authResponse->body->objectKey . ''; + } + + return $this->recognizeCharacterWithOptions($recognizeCharacterReq, $runtime); + } + + /** + * @param RecognizeDriverLicenseRequest $request + * @param RuntimeOptions $runtime + * + * @return RecognizeDriverLicenseResponse + */ + public function recognizeDriverLicenseWithOptions($request, $runtime) + { + Utils::validateModel($request); + $body = []; + if (!Utils::isUnset($request->imageURL)) { + $body['ImageURL'] = $request->imageURL; + } + if (!Utils::isUnset($request->side)) { + $body['Side'] = $request->side; + } + $req = new OpenApiRequest([ + 'body' => OpenApiUtilClient::parseToMap($body), + ]); + $params = new Params([ + 'action' => 'RecognizeDriverLicense', + 'version' => '2019-12-30', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return RecognizeDriverLicenseResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param RecognizeDriverLicenseRequest $request + * + * @return RecognizeDriverLicenseResponse + */ + public function recognizeDriverLicense($request) + { + $runtime = new RuntimeOptions([]); + + return $this->recognizeDriverLicenseWithOptions($request, $runtime); + } + + /** + * @param RecognizeDriverLicenseAdvanceRequest $request + * @param RuntimeOptions $runtime + * + * @return RecognizeDriverLicenseResponse + */ + public function recognizeDriverLicenseAdvance($request, $runtime) + { + // Step 0: init client + $accessKeyId = $this->_credential->getAccessKeyId(); + $accessKeySecret = $this->_credential->getAccessKeySecret(); + $securityToken = $this->_credential->getSecurityToken(); + $credentialType = $this->_credential->getType(); + $openPlatformEndpoint = $this->_openPlatformEndpoint; + if (Utils::isUnset($openPlatformEndpoint)) { + $openPlatformEndpoint = 'openplatform.aliyuncs.com'; + } + if (Utils::isUnset($credentialType)) { + $credentialType = 'access_key'; + } + $authConfig = new Config([ + 'accessKeyId' => $accessKeyId, + 'accessKeySecret' => $accessKeySecret, + 'securityToken' => $securityToken, + 'type' => $credentialType, + 'endpoint' => $openPlatformEndpoint, + 'protocol' => $this->_protocol, + 'regionId' => $this->_regionId, + ]); + $authClient = new OpenPlatform($authConfig); + $authRequest = new AuthorizeFileUploadRequest([ + 'product' => 'ocr', + 'regionId' => $this->_regionId, + ]); + $authResponse = new AuthorizeFileUploadResponse([]); + $ossConfig = new \AlibabaCloud\SDK\OSS\OSS\Config([ + 'accessKeySecret' => $accessKeySecret, + 'type' => 'access_key', + 'protocol' => $this->_protocol, + 'regionId' => $this->_regionId, + ]); + $ossClient = null; + $fileObj = new FileField([]); + $ossHeader = new header([]); + $uploadRequest = new PostObjectRequest([]); + $ossRuntime = new \AlibabaCloud\Tea\OSSUtils\OSSUtils\RuntimeOptions([]); + OpenApiUtilClient::convert($runtime, $ossRuntime); + $recognizeDriverLicenseReq = new RecognizeDriverLicenseRequest([]); + OpenApiUtilClient::convert($request, $recognizeDriverLicenseReq); + if (!Utils::isUnset($request->imageURLObject)) { + $authResponse = $authClient->authorizeFileUploadWithOptions($authRequest, $runtime); + $ossConfig->accessKeyId = $authResponse->body->accessKeyId; + $ossConfig->endpoint = OpenApiUtilClient::getEndpoint($authResponse->body->endpoint, $authResponse->body->useAccelerate, $this->_endpointType); + $ossClient = new OSS($ossConfig); + $fileObj = new FileField([ + 'filename' => $authResponse->body->objectKey, + 'content' => $request->imageURLObject, + 'contentType' => '', + ]); + $ossHeader = new header([ + 'accessKeyId' => $authResponse->body->accessKeyId, + 'policy' => $authResponse->body->encodedPolicy, + 'signature' => $authResponse->body->signature, + 'key' => $authResponse->body->objectKey, + 'file' => $fileObj, + 'successActionStatus' => '201', + ]); + $uploadRequest = new PostObjectRequest([ + 'bucketName' => $authResponse->body->bucket, + 'header' => $ossHeader, + ]); + $ossClient->postObject($uploadRequest, $ossRuntime); + $recognizeDriverLicenseReq->imageURL = 'http://' . $authResponse->body->bucket . '.' . $authResponse->body->endpoint . '/' . $authResponse->body->objectKey . ''; + } + + return $this->recognizeDriverLicenseWithOptions($recognizeDriverLicenseReq, $runtime); + } + + /** + * @param RecognizeDrivingLicenseRequest $request + * @param RuntimeOptions $runtime + * + * @return RecognizeDrivingLicenseResponse + */ + public function recognizeDrivingLicenseWithOptions($request, $runtime) + { + Utils::validateModel($request); + $body = []; + if (!Utils::isUnset($request->imageURL)) { + $body['ImageURL'] = $request->imageURL; + } + if (!Utils::isUnset($request->side)) { + $body['Side'] = $request->side; + } + $req = new OpenApiRequest([ + 'body' => OpenApiUtilClient::parseToMap($body), + ]); + $params = new Params([ + 'action' => 'RecognizeDrivingLicense', + 'version' => '2019-12-30', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return RecognizeDrivingLicenseResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param RecognizeDrivingLicenseRequest $request + * + * @return RecognizeDrivingLicenseResponse + */ + public function recognizeDrivingLicense($request) + { + $runtime = new RuntimeOptions([]); + + return $this->recognizeDrivingLicenseWithOptions($request, $runtime); + } + + /** + * @param RecognizeDrivingLicenseAdvanceRequest $request + * @param RuntimeOptions $runtime + * + * @return RecognizeDrivingLicenseResponse + */ + public function recognizeDrivingLicenseAdvance($request, $runtime) + { + // Step 0: init client + $accessKeyId = $this->_credential->getAccessKeyId(); + $accessKeySecret = $this->_credential->getAccessKeySecret(); + $securityToken = $this->_credential->getSecurityToken(); + $credentialType = $this->_credential->getType(); + $openPlatformEndpoint = $this->_openPlatformEndpoint; + if (Utils::isUnset($openPlatformEndpoint)) { + $openPlatformEndpoint = 'openplatform.aliyuncs.com'; + } + if (Utils::isUnset($credentialType)) { + $credentialType = 'access_key'; + } + $authConfig = new Config([ + 'accessKeyId' => $accessKeyId, + 'accessKeySecret' => $accessKeySecret, + 'securityToken' => $securityToken, + 'type' => $credentialType, + 'endpoint' => $openPlatformEndpoint, + 'protocol' => $this->_protocol, + 'regionId' => $this->_regionId, + ]); + $authClient = new OpenPlatform($authConfig); + $authRequest = new AuthorizeFileUploadRequest([ + 'product' => 'ocr', + 'regionId' => $this->_regionId, + ]); + $authResponse = new AuthorizeFileUploadResponse([]); + $ossConfig = new \AlibabaCloud\SDK\OSS\OSS\Config([ + 'accessKeySecret' => $accessKeySecret, + 'type' => 'access_key', + 'protocol' => $this->_protocol, + 'regionId' => $this->_regionId, + ]); + $ossClient = null; + $fileObj = new FileField([]); + $ossHeader = new header([]); + $uploadRequest = new PostObjectRequest([]); + $ossRuntime = new \AlibabaCloud\Tea\OSSUtils\OSSUtils\RuntimeOptions([]); + OpenApiUtilClient::convert($runtime, $ossRuntime); + $recognizeDrivingLicenseReq = new RecognizeDrivingLicenseRequest([]); + OpenApiUtilClient::convert($request, $recognizeDrivingLicenseReq); + if (!Utils::isUnset($request->imageURLObject)) { + $authResponse = $authClient->authorizeFileUploadWithOptions($authRequest, $runtime); + $ossConfig->accessKeyId = $authResponse->body->accessKeyId; + $ossConfig->endpoint = OpenApiUtilClient::getEndpoint($authResponse->body->endpoint, $authResponse->body->useAccelerate, $this->_endpointType); + $ossClient = new OSS($ossConfig); + $fileObj = new FileField([ + 'filename' => $authResponse->body->objectKey, + 'content' => $request->imageURLObject, + 'contentType' => '', + ]); + $ossHeader = new header([ + 'accessKeyId' => $authResponse->body->accessKeyId, + 'policy' => $authResponse->body->encodedPolicy, + 'signature' => $authResponse->body->signature, + 'key' => $authResponse->body->objectKey, + 'file' => $fileObj, + 'successActionStatus' => '201', + ]); + $uploadRequest = new PostObjectRequest([ + 'bucketName' => $authResponse->body->bucket, + 'header' => $ossHeader, + ]); + $ossClient->postObject($uploadRequest, $ossRuntime); + $recognizeDrivingLicenseReq->imageURL = 'http://' . $authResponse->body->bucket . '.' . $authResponse->body->endpoint . '/' . $authResponse->body->objectKey . ''; + } + + return $this->recognizeDrivingLicenseWithOptions($recognizeDrivingLicenseReq, $runtime); + } + + /** + * @param RecognizeIdentityCardRequest $request + * @param RuntimeOptions $runtime + * + * @return RecognizeIdentityCardResponse + */ + public function recognizeIdentityCardWithOptions($request, $runtime) + { + Utils::validateModel($request); + $body = []; + if (!Utils::isUnset($request->imageURL)) { + $body['ImageURL'] = $request->imageURL; + } + if (!Utils::isUnset($request->side)) { + $body['Side'] = $request->side; + } + $req = new OpenApiRequest([ + 'body' => OpenApiUtilClient::parseToMap($body), + ]); + $params = new Params([ + 'action' => 'RecognizeIdentityCard', + 'version' => '2019-12-30', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return RecognizeIdentityCardResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param RecognizeIdentityCardRequest $request + * + * @return RecognizeIdentityCardResponse + */ + public function recognizeIdentityCard($request) + { + $runtime = new RuntimeOptions([]); + + return $this->recognizeIdentityCardWithOptions($request, $runtime); + } + + /** + * @param RecognizeIdentityCardAdvanceRequest $request + * @param RuntimeOptions $runtime + * + * @return RecognizeIdentityCardResponse + */ + public function recognizeIdentityCardAdvance($request, $runtime) + { + // Step 0: init client + $accessKeyId = $this->_credential->getAccessKeyId(); + $accessKeySecret = $this->_credential->getAccessKeySecret(); + $securityToken = $this->_credential->getSecurityToken(); + $credentialType = $this->_credential->getType(); + $openPlatformEndpoint = $this->_openPlatformEndpoint; + if (Utils::isUnset($openPlatformEndpoint)) { + $openPlatformEndpoint = 'openplatform.aliyuncs.com'; + } + if (Utils::isUnset($credentialType)) { + $credentialType = 'access_key'; + } + $authConfig = new Config([ + 'accessKeyId' => $accessKeyId, + 'accessKeySecret' => $accessKeySecret, + 'securityToken' => $securityToken, + 'type' => $credentialType, + 'endpoint' => $openPlatformEndpoint, + 'protocol' => $this->_protocol, + 'regionId' => $this->_regionId, + ]); + $authClient = new OpenPlatform($authConfig); + $authRequest = new AuthorizeFileUploadRequest([ + 'product' => 'ocr', + 'regionId' => $this->_regionId, + ]); + $authResponse = new AuthorizeFileUploadResponse([]); + $ossConfig = new \AlibabaCloud\SDK\OSS\OSS\Config([ + 'accessKeySecret' => $accessKeySecret, + 'type' => 'access_key', + 'protocol' => $this->_protocol, + 'regionId' => $this->_regionId, + ]); + $ossClient = null; + $fileObj = new FileField([]); + $ossHeader = new header([]); + $uploadRequest = new PostObjectRequest([]); + $ossRuntime = new \AlibabaCloud\Tea\OSSUtils\OSSUtils\RuntimeOptions([]); + OpenApiUtilClient::convert($runtime, $ossRuntime); + $recognizeIdentityCardReq = new RecognizeIdentityCardRequest([]); + OpenApiUtilClient::convert($request, $recognizeIdentityCardReq); + if (!Utils::isUnset($request->imageURLObject)) { + $authResponse = $authClient->authorizeFileUploadWithOptions($authRequest, $runtime); + $ossConfig->accessKeyId = $authResponse->body->accessKeyId; + $ossConfig->endpoint = OpenApiUtilClient::getEndpoint($authResponse->body->endpoint, $authResponse->body->useAccelerate, $this->_endpointType); + $ossClient = new OSS($ossConfig); + $fileObj = new FileField([ + 'filename' => $authResponse->body->objectKey, + 'content' => $request->imageURLObject, + 'contentType' => '', + ]); + $ossHeader = new header([ + 'accessKeyId' => $authResponse->body->accessKeyId, + 'policy' => $authResponse->body->encodedPolicy, + 'signature' => $authResponse->body->signature, + 'key' => $authResponse->body->objectKey, + 'file' => $fileObj, + 'successActionStatus' => '201', + ]); + $uploadRequest = new PostObjectRequest([ + 'bucketName' => $authResponse->body->bucket, + 'header' => $ossHeader, + ]); + $ossClient->postObject($uploadRequest, $ossRuntime); + $recognizeIdentityCardReq->imageURL = 'http://' . $authResponse->body->bucket . '.' . $authResponse->body->endpoint . '/' . $authResponse->body->objectKey . ''; + } + + return $this->recognizeIdentityCardWithOptions($recognizeIdentityCardReq, $runtime); + } + + /** + * @param RecognizeLicensePlateRequest $request + * @param RuntimeOptions $runtime + * + * @return RecognizeLicensePlateResponse + */ + public function recognizeLicensePlateWithOptions($request, $runtime) + { + Utils::validateModel($request); + $body = []; + if (!Utils::isUnset($request->imageURL)) { + $body['ImageURL'] = $request->imageURL; + } + $req = new OpenApiRequest([ + 'body' => OpenApiUtilClient::parseToMap($body), + ]); + $params = new Params([ + 'action' => 'RecognizeLicensePlate', + 'version' => '2019-12-30', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return RecognizeLicensePlateResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param RecognizeLicensePlateRequest $request + * + * @return RecognizeLicensePlateResponse + */ + public function recognizeLicensePlate($request) + { + $runtime = new RuntimeOptions([]); + + return $this->recognizeLicensePlateWithOptions($request, $runtime); + } + + /** + * @param RecognizeLicensePlateAdvanceRequest $request + * @param RuntimeOptions $runtime + * + * @return RecognizeLicensePlateResponse + */ + public function recognizeLicensePlateAdvance($request, $runtime) + { + // Step 0: init client + $accessKeyId = $this->_credential->getAccessKeyId(); + $accessKeySecret = $this->_credential->getAccessKeySecret(); + $securityToken = $this->_credential->getSecurityToken(); + $credentialType = $this->_credential->getType(); + $openPlatformEndpoint = $this->_openPlatformEndpoint; + if (Utils::isUnset($openPlatformEndpoint)) { + $openPlatformEndpoint = 'openplatform.aliyuncs.com'; + } + if (Utils::isUnset($credentialType)) { + $credentialType = 'access_key'; + } + $authConfig = new Config([ + 'accessKeyId' => $accessKeyId, + 'accessKeySecret' => $accessKeySecret, + 'securityToken' => $securityToken, + 'type' => $credentialType, + 'endpoint' => $openPlatformEndpoint, + 'protocol' => $this->_protocol, + 'regionId' => $this->_regionId, + ]); + $authClient = new OpenPlatform($authConfig); + $authRequest = new AuthorizeFileUploadRequest([ + 'product' => 'ocr', + 'regionId' => $this->_regionId, + ]); + $authResponse = new AuthorizeFileUploadResponse([]); + $ossConfig = new \AlibabaCloud\SDK\OSS\OSS\Config([ + 'accessKeySecret' => $accessKeySecret, + 'type' => 'access_key', + 'protocol' => $this->_protocol, + 'regionId' => $this->_regionId, + ]); + $ossClient = null; + $fileObj = new FileField([]); + $ossHeader = new header([]); + $uploadRequest = new PostObjectRequest([]); + $ossRuntime = new \AlibabaCloud\Tea\OSSUtils\OSSUtils\RuntimeOptions([]); + OpenApiUtilClient::convert($runtime, $ossRuntime); + $recognizeLicensePlateReq = new RecognizeLicensePlateRequest([]); + OpenApiUtilClient::convert($request, $recognizeLicensePlateReq); + if (!Utils::isUnset($request->imageURLObject)) { + $authResponse = $authClient->authorizeFileUploadWithOptions($authRequest, $runtime); + $ossConfig->accessKeyId = $authResponse->body->accessKeyId; + $ossConfig->endpoint = OpenApiUtilClient::getEndpoint($authResponse->body->endpoint, $authResponse->body->useAccelerate, $this->_endpointType); + $ossClient = new OSS($ossConfig); + $fileObj = new FileField([ + 'filename' => $authResponse->body->objectKey, + 'content' => $request->imageURLObject, + 'contentType' => '', + ]); + $ossHeader = new header([ + 'accessKeyId' => $authResponse->body->accessKeyId, + 'policy' => $authResponse->body->encodedPolicy, + 'signature' => $authResponse->body->signature, + 'key' => $authResponse->body->objectKey, + 'file' => $fileObj, + 'successActionStatus' => '201', + ]); + $uploadRequest = new PostObjectRequest([ + 'bucketName' => $authResponse->body->bucket, + 'header' => $ossHeader, + ]); + $ossClient->postObject($uploadRequest, $ossRuntime); + $recognizeLicensePlateReq->imageURL = 'http://' . $authResponse->body->bucket . '.' . $authResponse->body->endpoint . '/' . $authResponse->body->objectKey . ''; + } + + return $this->recognizeLicensePlateWithOptions($recognizeLicensePlateReq, $runtime); + } + + /** + * @param RecognizePdfRequest $request + * @param RuntimeOptions $runtime + * + * @return RecognizePdfResponse + */ + public function recognizePdfWithOptions($request, $runtime) + { + Utils::validateModel($request); + $body = []; + if (!Utils::isUnset($request->fileURL)) { + $body['FileURL'] = $request->fileURL; + } + $req = new OpenApiRequest([ + 'body' => OpenApiUtilClient::parseToMap($body), + ]); + $params = new Params([ + 'action' => 'RecognizePdf', + 'version' => '2019-12-30', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return RecognizePdfResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param RecognizePdfRequest $request + * + * @return RecognizePdfResponse + */ + public function recognizePdf($request) + { + $runtime = new RuntimeOptions([]); + + return $this->recognizePdfWithOptions($request, $runtime); + } + + /** + * @param RecognizePdfAdvanceRequest $request + * @param RuntimeOptions $runtime + * + * @return RecognizePdfResponse + */ + public function recognizePdfAdvance($request, $runtime) + { + // Step 0: init client + $accessKeyId = $this->_credential->getAccessKeyId(); + $accessKeySecret = $this->_credential->getAccessKeySecret(); + $securityToken = $this->_credential->getSecurityToken(); + $credentialType = $this->_credential->getType(); + $openPlatformEndpoint = $this->_openPlatformEndpoint; + if (Utils::isUnset($openPlatformEndpoint)) { + $openPlatformEndpoint = 'openplatform.aliyuncs.com'; + } + if (Utils::isUnset($credentialType)) { + $credentialType = 'access_key'; + } + $authConfig = new Config([ + 'accessKeyId' => $accessKeyId, + 'accessKeySecret' => $accessKeySecret, + 'securityToken' => $securityToken, + 'type' => $credentialType, + 'endpoint' => $openPlatformEndpoint, + 'protocol' => $this->_protocol, + 'regionId' => $this->_regionId, + ]); + $authClient = new OpenPlatform($authConfig); + $authRequest = new AuthorizeFileUploadRequest([ + 'product' => 'ocr', + 'regionId' => $this->_regionId, + ]); + $authResponse = new AuthorizeFileUploadResponse([]); + $ossConfig = new \AlibabaCloud\SDK\OSS\OSS\Config([ + 'accessKeySecret' => $accessKeySecret, + 'type' => 'access_key', + 'protocol' => $this->_protocol, + 'regionId' => $this->_regionId, + ]); + $ossClient = null; + $fileObj = new FileField([]); + $ossHeader = new header([]); + $uploadRequest = new PostObjectRequest([]); + $ossRuntime = new \AlibabaCloud\Tea\OSSUtils\OSSUtils\RuntimeOptions([]); + OpenApiUtilClient::convert($runtime, $ossRuntime); + $recognizePdfReq = new RecognizePdfRequest([]); + OpenApiUtilClient::convert($request, $recognizePdfReq); + if (!Utils::isUnset($request->fileURLObject)) { + $authResponse = $authClient->authorizeFileUploadWithOptions($authRequest, $runtime); + $ossConfig->accessKeyId = $authResponse->body->accessKeyId; + $ossConfig->endpoint = OpenApiUtilClient::getEndpoint($authResponse->body->endpoint, $authResponse->body->useAccelerate, $this->_endpointType); + $ossClient = new OSS($ossConfig); + $fileObj = new FileField([ + 'filename' => $authResponse->body->objectKey, + 'content' => $request->fileURLObject, + 'contentType' => '', + ]); + $ossHeader = new header([ + 'accessKeyId' => $authResponse->body->accessKeyId, + 'policy' => $authResponse->body->encodedPolicy, + 'signature' => $authResponse->body->signature, + 'key' => $authResponse->body->objectKey, + 'file' => $fileObj, + 'successActionStatus' => '201', + ]); + $uploadRequest = new PostObjectRequest([ + 'bucketName' => $authResponse->body->bucket, + 'header' => $ossHeader, + ]); + $ossClient->postObject($uploadRequest, $ossRuntime); + $recognizePdfReq->fileURL = 'http://' . $authResponse->body->bucket . '.' . $authResponse->body->endpoint . '/' . $authResponse->body->objectKey . ''; + } + + return $this->recognizePdfWithOptions($recognizePdfReq, $runtime); + } + + /** + * @param RecognizeQrCodeRequest $request + * @param RuntimeOptions $runtime + * + * @return RecognizeQrCodeResponse + */ + public function recognizeQrCodeWithOptions($request, $runtime) + { + Utils::validateModel($request); + $body = []; + if (!Utils::isUnset($request->tasks)) { + $body['Tasks'] = $request->tasks; + } + $req = new OpenApiRequest([ + 'body' => OpenApiUtilClient::parseToMap($body), + ]); + $params = new Params([ + 'action' => 'RecognizeQrCode', + 'version' => '2019-12-30', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return RecognizeQrCodeResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param RecognizeQrCodeRequest $request + * + * @return RecognizeQrCodeResponse + */ + public function recognizeQrCode($request) + { + $runtime = new RuntimeOptions([]); + + return $this->recognizeQrCodeWithOptions($request, $runtime); + } + + /** + * @param RecognizeQrCodeAdvanceRequest $request + * @param RuntimeOptions $runtime + * + * @return RecognizeQrCodeResponse + */ + public function recognizeQrCodeAdvance($request, $runtime) + { + // Step 0: init client + $accessKeyId = $this->_credential->getAccessKeyId(); + $accessKeySecret = $this->_credential->getAccessKeySecret(); + $securityToken = $this->_credential->getSecurityToken(); + $credentialType = $this->_credential->getType(); + $openPlatformEndpoint = $this->_openPlatformEndpoint; + if (Utils::isUnset($openPlatformEndpoint)) { + $openPlatformEndpoint = 'openplatform.aliyuncs.com'; + } + if (Utils::isUnset($credentialType)) { + $credentialType = 'access_key'; + } + $authConfig = new Config([ + 'accessKeyId' => $accessKeyId, + 'accessKeySecret' => $accessKeySecret, + 'securityToken' => $securityToken, + 'type' => $credentialType, + 'endpoint' => $openPlatformEndpoint, + 'protocol' => $this->_protocol, + 'regionId' => $this->_regionId, + ]); + $authClient = new OpenPlatform($authConfig); + $authRequest = new AuthorizeFileUploadRequest([ + 'product' => 'ocr', + 'regionId' => $this->_regionId, + ]); + $authResponse = new AuthorizeFileUploadResponse([]); + $ossConfig = new \AlibabaCloud\SDK\OSS\OSS\Config([ + 'accessKeySecret' => $accessKeySecret, + 'type' => 'access_key', + 'protocol' => $this->_protocol, + 'regionId' => $this->_regionId, + ]); + $ossClient = null; + $fileObj = new FileField([]); + $ossHeader = new header([]); + $uploadRequest = new PostObjectRequest([]); + $ossRuntime = new \AlibabaCloud\Tea\OSSUtils\OSSUtils\RuntimeOptions([]); + OpenApiUtilClient::convert($runtime, $ossRuntime); + $recognizeQrCodeReq = new RecognizeQrCodeRequest([]); + OpenApiUtilClient::convert($request, $recognizeQrCodeReq); + if (!Utils::isUnset($request->tasks)) { + $i0 = 0; + foreach ($request->tasks as $item0) { + if (!Utils::isUnset($item0->imageURLObject)) { + $authResponse = $authClient->authorizeFileUploadWithOptions($authRequest, $runtime); + $ossConfig->accessKeyId = $authResponse->body->accessKeyId; + $ossConfig->endpoint = OpenApiUtilClient::getEndpoint($authResponse->body->endpoint, $authResponse->body->useAccelerate, $this->_endpointType); + $ossClient = new OSS($ossConfig); + $fileObj = new FileField([ + 'filename' => $authResponse->body->objectKey, + 'content' => $item0->imageURLObject, + 'contentType' => '', + ]); + $ossHeader = new header([ + 'accessKeyId' => $authResponse->body->accessKeyId, + 'policy' => $authResponse->body->encodedPolicy, + 'signature' => $authResponse->body->signature, + 'key' => $authResponse->body->objectKey, + 'file' => $fileObj, + 'successActionStatus' => '201', + ]); + $uploadRequest = new PostObjectRequest([ + 'bucketName' => $authResponse->body->bucket, + 'header' => $ossHeader, + ]); + $ossClient->postObject($uploadRequest, $ossRuntime); + $tmp = @$recognizeQrCodeReq->tasks[$i0]; + $tmp->imageURL = 'http://' . $authResponse->body->bucket . '.' . $authResponse->body->endpoint . '/' . $authResponse->body->objectKey . ''; + $i0 = $i0 + 1; + } + } + } + + return $this->recognizeQrCodeWithOptions($recognizeQrCodeReq, $runtime); + } + + /** + * @param RecognizeQuotaInvoiceRequest $request + * @param RuntimeOptions $runtime + * + * @return RecognizeQuotaInvoiceResponse + */ + public function recognizeQuotaInvoiceWithOptions($request, $runtime) + { + Utils::validateModel($request); + $body = []; + if (!Utils::isUnset($request->imageURL)) { + $body['ImageURL'] = $request->imageURL; + } + $req = new OpenApiRequest([ + 'body' => OpenApiUtilClient::parseToMap($body), + ]); + $params = new Params([ + 'action' => 'RecognizeQuotaInvoice', + 'version' => '2019-12-30', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return RecognizeQuotaInvoiceResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param RecognizeQuotaInvoiceRequest $request + * + * @return RecognizeQuotaInvoiceResponse + */ + public function recognizeQuotaInvoice($request) + { + $runtime = new RuntimeOptions([]); + + return $this->recognizeQuotaInvoiceWithOptions($request, $runtime); + } + + /** + * @param RecognizeQuotaInvoiceAdvanceRequest $request + * @param RuntimeOptions $runtime + * + * @return RecognizeQuotaInvoiceResponse + */ + public function recognizeQuotaInvoiceAdvance($request, $runtime) + { + // Step 0: init client + $accessKeyId = $this->_credential->getAccessKeyId(); + $accessKeySecret = $this->_credential->getAccessKeySecret(); + $securityToken = $this->_credential->getSecurityToken(); + $credentialType = $this->_credential->getType(); + $openPlatformEndpoint = $this->_openPlatformEndpoint; + if (Utils::isUnset($openPlatformEndpoint)) { + $openPlatformEndpoint = 'openplatform.aliyuncs.com'; + } + if (Utils::isUnset($credentialType)) { + $credentialType = 'access_key'; + } + $authConfig = new Config([ + 'accessKeyId' => $accessKeyId, + 'accessKeySecret' => $accessKeySecret, + 'securityToken' => $securityToken, + 'type' => $credentialType, + 'endpoint' => $openPlatformEndpoint, + 'protocol' => $this->_protocol, + 'regionId' => $this->_regionId, + ]); + $authClient = new OpenPlatform($authConfig); + $authRequest = new AuthorizeFileUploadRequest([ + 'product' => 'ocr', + 'regionId' => $this->_regionId, + ]); + $authResponse = new AuthorizeFileUploadResponse([]); + $ossConfig = new \AlibabaCloud\SDK\OSS\OSS\Config([ + 'accessKeySecret' => $accessKeySecret, + 'type' => 'access_key', + 'protocol' => $this->_protocol, + 'regionId' => $this->_regionId, + ]); + $ossClient = null; + $fileObj = new FileField([]); + $ossHeader = new header([]); + $uploadRequest = new PostObjectRequest([]); + $ossRuntime = new \AlibabaCloud\Tea\OSSUtils\OSSUtils\RuntimeOptions([]); + OpenApiUtilClient::convert($runtime, $ossRuntime); + $recognizeQuotaInvoiceReq = new RecognizeQuotaInvoiceRequest([]); + OpenApiUtilClient::convert($request, $recognizeQuotaInvoiceReq); + if (!Utils::isUnset($request->imageURLObject)) { + $authResponse = $authClient->authorizeFileUploadWithOptions($authRequest, $runtime); + $ossConfig->accessKeyId = $authResponse->body->accessKeyId; + $ossConfig->endpoint = OpenApiUtilClient::getEndpoint($authResponse->body->endpoint, $authResponse->body->useAccelerate, $this->_endpointType); + $ossClient = new OSS($ossConfig); + $fileObj = new FileField([ + 'filename' => $authResponse->body->objectKey, + 'content' => $request->imageURLObject, + 'contentType' => '', + ]); + $ossHeader = new header([ + 'accessKeyId' => $authResponse->body->accessKeyId, + 'policy' => $authResponse->body->encodedPolicy, + 'signature' => $authResponse->body->signature, + 'key' => $authResponse->body->objectKey, + 'file' => $fileObj, + 'successActionStatus' => '201', + ]); + $uploadRequest = new PostObjectRequest([ + 'bucketName' => $authResponse->body->bucket, + 'header' => $ossHeader, + ]); + $ossClient->postObject($uploadRequest, $ossRuntime); + $recognizeQuotaInvoiceReq->imageURL = 'http://' . $authResponse->body->bucket . '.' . $authResponse->body->endpoint . '/' . $authResponse->body->objectKey . ''; + } + + return $this->recognizeQuotaInvoiceWithOptions($recognizeQuotaInvoiceReq, $runtime); + } + + /** + * @param RecognizeStampRequest $request + * @param RuntimeOptions $runtime + * + * @return RecognizeStampResponse + */ + public function recognizeStampWithOptions($request, $runtime) + { + Utils::validateModel($request); + $body = []; + if (!Utils::isUnset($request->imageURL)) { + $body['ImageURL'] = $request->imageURL; + } + $req = new OpenApiRequest([ + 'body' => OpenApiUtilClient::parseToMap($body), + ]); + $params = new Params([ + 'action' => 'RecognizeStamp', + 'version' => '2019-12-30', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return RecognizeStampResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param RecognizeStampRequest $request + * + * @return RecognizeStampResponse + */ + public function recognizeStamp($request) + { + $runtime = new RuntimeOptions([]); + + return $this->recognizeStampWithOptions($request, $runtime); + } + + /** + * @param RecognizeStampAdvanceRequest $request + * @param RuntimeOptions $runtime + * + * @return RecognizeStampResponse + */ + public function recognizeStampAdvance($request, $runtime) + { + // Step 0: init client + $accessKeyId = $this->_credential->getAccessKeyId(); + $accessKeySecret = $this->_credential->getAccessKeySecret(); + $securityToken = $this->_credential->getSecurityToken(); + $credentialType = $this->_credential->getType(); + $openPlatformEndpoint = $this->_openPlatformEndpoint; + if (Utils::isUnset($openPlatformEndpoint)) { + $openPlatformEndpoint = 'openplatform.aliyuncs.com'; + } + if (Utils::isUnset($credentialType)) { + $credentialType = 'access_key'; + } + $authConfig = new Config([ + 'accessKeyId' => $accessKeyId, + 'accessKeySecret' => $accessKeySecret, + 'securityToken' => $securityToken, + 'type' => $credentialType, + 'endpoint' => $openPlatformEndpoint, + 'protocol' => $this->_protocol, + 'regionId' => $this->_regionId, + ]); + $authClient = new OpenPlatform($authConfig); + $authRequest = new AuthorizeFileUploadRequest([ + 'product' => 'ocr', + 'regionId' => $this->_regionId, + ]); + $authResponse = new AuthorizeFileUploadResponse([]); + $ossConfig = new \AlibabaCloud\SDK\OSS\OSS\Config([ + 'accessKeySecret' => $accessKeySecret, + 'type' => 'access_key', + 'protocol' => $this->_protocol, + 'regionId' => $this->_regionId, + ]); + $ossClient = null; + $fileObj = new FileField([]); + $ossHeader = new header([]); + $uploadRequest = new PostObjectRequest([]); + $ossRuntime = new \AlibabaCloud\Tea\OSSUtils\OSSUtils\RuntimeOptions([]); + OpenApiUtilClient::convert($runtime, $ossRuntime); + $recognizeStampReq = new RecognizeStampRequest([]); + OpenApiUtilClient::convert($request, $recognizeStampReq); + if (!Utils::isUnset($request->imageURLObject)) { + $authResponse = $authClient->authorizeFileUploadWithOptions($authRequest, $runtime); + $ossConfig->accessKeyId = $authResponse->body->accessKeyId; + $ossConfig->endpoint = OpenApiUtilClient::getEndpoint($authResponse->body->endpoint, $authResponse->body->useAccelerate, $this->_endpointType); + $ossClient = new OSS($ossConfig); + $fileObj = new FileField([ + 'filename' => $authResponse->body->objectKey, + 'content' => $request->imageURLObject, + 'contentType' => '', + ]); + $ossHeader = new header([ + 'accessKeyId' => $authResponse->body->accessKeyId, + 'policy' => $authResponse->body->encodedPolicy, + 'signature' => $authResponse->body->signature, + 'key' => $authResponse->body->objectKey, + 'file' => $fileObj, + 'successActionStatus' => '201', + ]); + $uploadRequest = new PostObjectRequest([ + 'bucketName' => $authResponse->body->bucket, + 'header' => $ossHeader, + ]); + $ossClient->postObject($uploadRequest, $ossRuntime); + $recognizeStampReq->imageURL = 'http://' . $authResponse->body->bucket . '.' . $authResponse->body->endpoint . '/' . $authResponse->body->objectKey . ''; + } + + return $this->recognizeStampWithOptions($recognizeStampReq, $runtime); + } + + /** + * @param RecognizeTableRequest $request + * @param RuntimeOptions $runtime + * + * @return RecognizeTableResponse + */ + public function recognizeTableWithOptions($request, $runtime) + { + Utils::validateModel($request); + $body = []; + if (!Utils::isUnset($request->assureDirection)) { + $body['AssureDirection'] = $request->assureDirection; + } + if (!Utils::isUnset($request->hasLine)) { + $body['HasLine'] = $request->hasLine; + } + if (!Utils::isUnset($request->imageURL)) { + $body['ImageURL'] = $request->imageURL; + } + if (!Utils::isUnset($request->outputFormat)) { + $body['OutputFormat'] = $request->outputFormat; + } + if (!Utils::isUnset($request->skipDetection)) { + $body['SkipDetection'] = $request->skipDetection; + } + if (!Utils::isUnset($request->useFinanceModel)) { + $body['UseFinanceModel'] = $request->useFinanceModel; + } + $req = new OpenApiRequest([ + 'body' => OpenApiUtilClient::parseToMap($body), + ]); + $params = new Params([ + 'action' => 'RecognizeTable', + 'version' => '2019-12-30', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return RecognizeTableResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param RecognizeTableRequest $request + * + * @return RecognizeTableResponse + */ + public function recognizeTable($request) + { + $runtime = new RuntimeOptions([]); + + return $this->recognizeTableWithOptions($request, $runtime); + } + + /** + * @param RecognizeTableAdvanceRequest $request + * @param RuntimeOptions $runtime + * + * @return RecognizeTableResponse + */ + public function recognizeTableAdvance($request, $runtime) + { + // Step 0: init client + $accessKeyId = $this->_credential->getAccessKeyId(); + $accessKeySecret = $this->_credential->getAccessKeySecret(); + $securityToken = $this->_credential->getSecurityToken(); + $credentialType = $this->_credential->getType(); + $openPlatformEndpoint = $this->_openPlatformEndpoint; + if (Utils::isUnset($openPlatformEndpoint)) { + $openPlatformEndpoint = 'openplatform.aliyuncs.com'; + } + if (Utils::isUnset($credentialType)) { + $credentialType = 'access_key'; + } + $authConfig = new Config([ + 'accessKeyId' => $accessKeyId, + 'accessKeySecret' => $accessKeySecret, + 'securityToken' => $securityToken, + 'type' => $credentialType, + 'endpoint' => $openPlatformEndpoint, + 'protocol' => $this->_protocol, + 'regionId' => $this->_regionId, + ]); + $authClient = new OpenPlatform($authConfig); + $authRequest = new AuthorizeFileUploadRequest([ + 'product' => 'ocr', + 'regionId' => $this->_regionId, + ]); + $authResponse = new AuthorizeFileUploadResponse([]); + $ossConfig = new \AlibabaCloud\SDK\OSS\OSS\Config([ + 'accessKeySecret' => $accessKeySecret, + 'type' => 'access_key', + 'protocol' => $this->_protocol, + 'regionId' => $this->_regionId, + ]); + $ossClient = null; + $fileObj = new FileField([]); + $ossHeader = new header([]); + $uploadRequest = new PostObjectRequest([]); + $ossRuntime = new \AlibabaCloud\Tea\OSSUtils\OSSUtils\RuntimeOptions([]); + OpenApiUtilClient::convert($runtime, $ossRuntime); + $recognizeTableReq = new RecognizeTableRequest([]); + OpenApiUtilClient::convert($request, $recognizeTableReq); + if (!Utils::isUnset($request->imageURLObject)) { + $authResponse = $authClient->authorizeFileUploadWithOptions($authRequest, $runtime); + $ossConfig->accessKeyId = $authResponse->body->accessKeyId; + $ossConfig->endpoint = OpenApiUtilClient::getEndpoint($authResponse->body->endpoint, $authResponse->body->useAccelerate, $this->_endpointType); + $ossClient = new OSS($ossConfig); + $fileObj = new FileField([ + 'filename' => $authResponse->body->objectKey, + 'content' => $request->imageURLObject, + 'contentType' => '', + ]); + $ossHeader = new header([ + 'accessKeyId' => $authResponse->body->accessKeyId, + 'policy' => $authResponse->body->encodedPolicy, + 'signature' => $authResponse->body->signature, + 'key' => $authResponse->body->objectKey, + 'file' => $fileObj, + 'successActionStatus' => '201', + ]); + $uploadRequest = new PostObjectRequest([ + 'bucketName' => $authResponse->body->bucket, + 'header' => $ossHeader, + ]); + $ossClient->postObject($uploadRequest, $ossRuntime); + $recognizeTableReq->imageURL = 'http://' . $authResponse->body->bucket . '.' . $authResponse->body->endpoint . '/' . $authResponse->body->objectKey . ''; + } + + return $this->recognizeTableWithOptions($recognizeTableReq, $runtime); + } + + /** + * @param RecognizeTaxiInvoiceRequest $request + * @param RuntimeOptions $runtime + * + * @return RecognizeTaxiInvoiceResponse + */ + public function recognizeTaxiInvoiceWithOptions($request, $runtime) + { + Utils::validateModel($request); + $body = []; + if (!Utils::isUnset($request->imageURL)) { + $body['ImageURL'] = $request->imageURL; + } + $req = new OpenApiRequest([ + 'body' => OpenApiUtilClient::parseToMap($body), + ]); + $params = new Params([ + 'action' => 'RecognizeTaxiInvoice', + 'version' => '2019-12-30', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return RecognizeTaxiInvoiceResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param RecognizeTaxiInvoiceRequest $request + * + * @return RecognizeTaxiInvoiceResponse + */ + public function recognizeTaxiInvoice($request) + { + $runtime = new RuntimeOptions([]); + + return $this->recognizeTaxiInvoiceWithOptions($request, $runtime); + } + + /** + * @param RecognizeTaxiInvoiceAdvanceRequest $request + * @param RuntimeOptions $runtime + * + * @return RecognizeTaxiInvoiceResponse + */ + public function recognizeTaxiInvoiceAdvance($request, $runtime) + { + // Step 0: init client + $accessKeyId = $this->_credential->getAccessKeyId(); + $accessKeySecret = $this->_credential->getAccessKeySecret(); + $securityToken = $this->_credential->getSecurityToken(); + $credentialType = $this->_credential->getType(); + $openPlatformEndpoint = $this->_openPlatformEndpoint; + if (Utils::isUnset($openPlatformEndpoint)) { + $openPlatformEndpoint = 'openplatform.aliyuncs.com'; + } + if (Utils::isUnset($credentialType)) { + $credentialType = 'access_key'; + } + $authConfig = new Config([ + 'accessKeyId' => $accessKeyId, + 'accessKeySecret' => $accessKeySecret, + 'securityToken' => $securityToken, + 'type' => $credentialType, + 'endpoint' => $openPlatformEndpoint, + 'protocol' => $this->_protocol, + 'regionId' => $this->_regionId, + ]); + $authClient = new OpenPlatform($authConfig); + $authRequest = new AuthorizeFileUploadRequest([ + 'product' => 'ocr', + 'regionId' => $this->_regionId, + ]); + $authResponse = new AuthorizeFileUploadResponse([]); + $ossConfig = new \AlibabaCloud\SDK\OSS\OSS\Config([ + 'accessKeySecret' => $accessKeySecret, + 'type' => 'access_key', + 'protocol' => $this->_protocol, + 'regionId' => $this->_regionId, + ]); + $ossClient = null; + $fileObj = new FileField([]); + $ossHeader = new header([]); + $uploadRequest = new PostObjectRequest([]); + $ossRuntime = new \AlibabaCloud\Tea\OSSUtils\OSSUtils\RuntimeOptions([]); + OpenApiUtilClient::convert($runtime, $ossRuntime); + $recognizeTaxiInvoiceReq = new RecognizeTaxiInvoiceRequest([]); + OpenApiUtilClient::convert($request, $recognizeTaxiInvoiceReq); + if (!Utils::isUnset($request->imageURLObject)) { + $authResponse = $authClient->authorizeFileUploadWithOptions($authRequest, $runtime); + $ossConfig->accessKeyId = $authResponse->body->accessKeyId; + $ossConfig->endpoint = OpenApiUtilClient::getEndpoint($authResponse->body->endpoint, $authResponse->body->useAccelerate, $this->_endpointType); + $ossClient = new OSS($ossConfig); + $fileObj = new FileField([ + 'filename' => $authResponse->body->objectKey, + 'content' => $request->imageURLObject, + 'contentType' => '', + ]); + $ossHeader = new header([ + 'accessKeyId' => $authResponse->body->accessKeyId, + 'policy' => $authResponse->body->encodedPolicy, + 'signature' => $authResponse->body->signature, + 'key' => $authResponse->body->objectKey, + 'file' => $fileObj, + 'successActionStatus' => '201', + ]); + $uploadRequest = new PostObjectRequest([ + 'bucketName' => $authResponse->body->bucket, + 'header' => $ossHeader, + ]); + $ossClient->postObject($uploadRequest, $ossRuntime); + $recognizeTaxiInvoiceReq->imageURL = 'http://' . $authResponse->body->bucket . '.' . $authResponse->body->endpoint . '/' . $authResponse->body->objectKey . ''; + } + + return $this->recognizeTaxiInvoiceWithOptions($recognizeTaxiInvoiceReq, $runtime); + } + + /** + * @param RecognizeTicketInvoiceRequest $request + * @param RuntimeOptions $runtime + * + * @return RecognizeTicketInvoiceResponse + */ + public function recognizeTicketInvoiceWithOptions($request, $runtime) + { + Utils::validateModel($request); + $body = []; + if (!Utils::isUnset($request->imageURL)) { + $body['ImageURL'] = $request->imageURL; + } + $req = new OpenApiRequest([ + 'body' => OpenApiUtilClient::parseToMap($body), + ]); + $params = new Params([ + 'action' => 'RecognizeTicketInvoice', + 'version' => '2019-12-30', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return RecognizeTicketInvoiceResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param RecognizeTicketInvoiceRequest $request + * + * @return RecognizeTicketInvoiceResponse + */ + public function recognizeTicketInvoice($request) + { + $runtime = new RuntimeOptions([]); + + return $this->recognizeTicketInvoiceWithOptions($request, $runtime); + } + + /** + * @param RecognizeTicketInvoiceAdvanceRequest $request + * @param RuntimeOptions $runtime + * + * @return RecognizeTicketInvoiceResponse + */ + public function recognizeTicketInvoiceAdvance($request, $runtime) + { + // Step 0: init client + $accessKeyId = $this->_credential->getAccessKeyId(); + $accessKeySecret = $this->_credential->getAccessKeySecret(); + $securityToken = $this->_credential->getSecurityToken(); + $credentialType = $this->_credential->getType(); + $openPlatformEndpoint = $this->_openPlatformEndpoint; + if (Utils::isUnset($openPlatformEndpoint)) { + $openPlatformEndpoint = 'openplatform.aliyuncs.com'; + } + if (Utils::isUnset($credentialType)) { + $credentialType = 'access_key'; + } + $authConfig = new Config([ + 'accessKeyId' => $accessKeyId, + 'accessKeySecret' => $accessKeySecret, + 'securityToken' => $securityToken, + 'type' => $credentialType, + 'endpoint' => $openPlatformEndpoint, + 'protocol' => $this->_protocol, + 'regionId' => $this->_regionId, + ]); + $authClient = new OpenPlatform($authConfig); + $authRequest = new AuthorizeFileUploadRequest([ + 'product' => 'ocr', + 'regionId' => $this->_regionId, + ]); + $authResponse = new AuthorizeFileUploadResponse([]); + $ossConfig = new \AlibabaCloud\SDK\OSS\OSS\Config([ + 'accessKeySecret' => $accessKeySecret, + 'type' => 'access_key', + 'protocol' => $this->_protocol, + 'regionId' => $this->_regionId, + ]); + $ossClient = null; + $fileObj = new FileField([]); + $ossHeader = new header([]); + $uploadRequest = new PostObjectRequest([]); + $ossRuntime = new \AlibabaCloud\Tea\OSSUtils\OSSUtils\RuntimeOptions([]); + OpenApiUtilClient::convert($runtime, $ossRuntime); + $recognizeTicketInvoiceReq = new RecognizeTicketInvoiceRequest([]); + OpenApiUtilClient::convert($request, $recognizeTicketInvoiceReq); + if (!Utils::isUnset($request->imageURLObject)) { + $authResponse = $authClient->authorizeFileUploadWithOptions($authRequest, $runtime); + $ossConfig->accessKeyId = $authResponse->body->accessKeyId; + $ossConfig->endpoint = OpenApiUtilClient::getEndpoint($authResponse->body->endpoint, $authResponse->body->useAccelerate, $this->_endpointType); + $ossClient = new OSS($ossConfig); + $fileObj = new FileField([ + 'filename' => $authResponse->body->objectKey, + 'content' => $request->imageURLObject, + 'contentType' => '', + ]); + $ossHeader = new header([ + 'accessKeyId' => $authResponse->body->accessKeyId, + 'policy' => $authResponse->body->encodedPolicy, + 'signature' => $authResponse->body->signature, + 'key' => $authResponse->body->objectKey, + 'file' => $fileObj, + 'successActionStatus' => '201', + ]); + $uploadRequest = new PostObjectRequest([ + 'bucketName' => $authResponse->body->bucket, + 'header' => $ossHeader, + ]); + $ossClient->postObject($uploadRequest, $ossRuntime); + $recognizeTicketInvoiceReq->imageURL = 'http://' . $authResponse->body->bucket . '.' . $authResponse->body->endpoint . '/' . $authResponse->body->objectKey . ''; + } + + return $this->recognizeTicketInvoiceWithOptions($recognizeTicketInvoiceReq, $runtime); + } + + /** + * @param RecognizeTrainTicketRequest $request + * @param RuntimeOptions $runtime + * + * @return RecognizeTrainTicketResponse + */ + public function recognizeTrainTicketWithOptions($request, $runtime) + { + Utils::validateModel($request); + $body = []; + if (!Utils::isUnset($request->imageURL)) { + $body['ImageURL'] = $request->imageURL; + } + $req = new OpenApiRequest([ + 'body' => OpenApiUtilClient::parseToMap($body), + ]); + $params = new Params([ + 'action' => 'RecognizeTrainTicket', + 'version' => '2019-12-30', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return RecognizeTrainTicketResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param RecognizeTrainTicketRequest $request + * + * @return RecognizeTrainTicketResponse + */ + public function recognizeTrainTicket($request) + { + $runtime = new RuntimeOptions([]); + + return $this->recognizeTrainTicketWithOptions($request, $runtime); + } + + /** + * @param RecognizeTrainTicketAdvanceRequest $request + * @param RuntimeOptions $runtime + * + * @return RecognizeTrainTicketResponse + */ + public function recognizeTrainTicketAdvance($request, $runtime) + { + // Step 0: init client + $accessKeyId = $this->_credential->getAccessKeyId(); + $accessKeySecret = $this->_credential->getAccessKeySecret(); + $securityToken = $this->_credential->getSecurityToken(); + $credentialType = $this->_credential->getType(); + $openPlatformEndpoint = $this->_openPlatformEndpoint; + if (Utils::isUnset($openPlatformEndpoint)) { + $openPlatformEndpoint = 'openplatform.aliyuncs.com'; + } + if (Utils::isUnset($credentialType)) { + $credentialType = 'access_key'; + } + $authConfig = new Config([ + 'accessKeyId' => $accessKeyId, + 'accessKeySecret' => $accessKeySecret, + 'securityToken' => $securityToken, + 'type' => $credentialType, + 'endpoint' => $openPlatformEndpoint, + 'protocol' => $this->_protocol, + 'regionId' => $this->_regionId, + ]); + $authClient = new OpenPlatform($authConfig); + $authRequest = new AuthorizeFileUploadRequest([ + 'product' => 'ocr', + 'regionId' => $this->_regionId, + ]); + $authResponse = new AuthorizeFileUploadResponse([]); + $ossConfig = new \AlibabaCloud\SDK\OSS\OSS\Config([ + 'accessKeySecret' => $accessKeySecret, + 'type' => 'access_key', + 'protocol' => $this->_protocol, + 'regionId' => $this->_regionId, + ]); + $ossClient = null; + $fileObj = new FileField([]); + $ossHeader = new header([]); + $uploadRequest = new PostObjectRequest([]); + $ossRuntime = new \AlibabaCloud\Tea\OSSUtils\OSSUtils\RuntimeOptions([]); + OpenApiUtilClient::convert($runtime, $ossRuntime); + $recognizeTrainTicketReq = new RecognizeTrainTicketRequest([]); + OpenApiUtilClient::convert($request, $recognizeTrainTicketReq); + if (!Utils::isUnset($request->imageURLObject)) { + $authResponse = $authClient->authorizeFileUploadWithOptions($authRequest, $runtime); + $ossConfig->accessKeyId = $authResponse->body->accessKeyId; + $ossConfig->endpoint = OpenApiUtilClient::getEndpoint($authResponse->body->endpoint, $authResponse->body->useAccelerate, $this->_endpointType); + $ossClient = new OSS($ossConfig); + $fileObj = new FileField([ + 'filename' => $authResponse->body->objectKey, + 'content' => $request->imageURLObject, + 'contentType' => '', + ]); + $ossHeader = new header([ + 'accessKeyId' => $authResponse->body->accessKeyId, + 'policy' => $authResponse->body->encodedPolicy, + 'signature' => $authResponse->body->signature, + 'key' => $authResponse->body->objectKey, + 'file' => $fileObj, + 'successActionStatus' => '201', + ]); + $uploadRequest = new PostObjectRequest([ + 'bucketName' => $authResponse->body->bucket, + 'header' => $ossHeader, + ]); + $ossClient->postObject($uploadRequest, $ossRuntime); + $recognizeTrainTicketReq->imageURL = 'http://' . $authResponse->body->bucket . '.' . $authResponse->body->endpoint . '/' . $authResponse->body->objectKey . ''; + } + + return $this->recognizeTrainTicketWithOptions($recognizeTrainTicketReq, $runtime); + } + + /** + * @param RecognizeVATInvoiceRequest $request + * @param RuntimeOptions $runtime + * + * @return RecognizeVATInvoiceResponse + */ + public function recognizeVATInvoiceWithOptions($request, $runtime) + { + Utils::validateModel($request); + $body = []; + if (!Utils::isUnset($request->fileType)) { + $body['FileType'] = $request->fileType; + } + if (!Utils::isUnset($request->fileURL)) { + $body['FileURL'] = $request->fileURL; + } + $req = new OpenApiRequest([ + 'body' => OpenApiUtilClient::parseToMap($body), + ]); + $params = new Params([ + 'action' => 'RecognizeVATInvoice', + 'version' => '2019-12-30', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return RecognizeVATInvoiceResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param RecognizeVATInvoiceRequest $request + * + * @return RecognizeVATInvoiceResponse + */ + public function recognizeVATInvoice($request) + { + $runtime = new RuntimeOptions([]); + + return $this->recognizeVATInvoiceWithOptions($request, $runtime); + } + + /** + * @param RecognizeVATInvoiceAdvanceRequest $request + * @param RuntimeOptions $runtime + * + * @return RecognizeVATInvoiceResponse + */ + public function recognizeVATInvoiceAdvance($request, $runtime) + { + // Step 0: init client + $accessKeyId = $this->_credential->getAccessKeyId(); + $accessKeySecret = $this->_credential->getAccessKeySecret(); + $securityToken = $this->_credential->getSecurityToken(); + $credentialType = $this->_credential->getType(); + $openPlatformEndpoint = $this->_openPlatformEndpoint; + if (Utils::isUnset($openPlatformEndpoint)) { + $openPlatformEndpoint = 'openplatform.aliyuncs.com'; + } + if (Utils::isUnset($credentialType)) { + $credentialType = 'access_key'; + } + $authConfig = new Config([ + 'accessKeyId' => $accessKeyId, + 'accessKeySecret' => $accessKeySecret, + 'securityToken' => $securityToken, + 'type' => $credentialType, + 'endpoint' => $openPlatformEndpoint, + 'protocol' => $this->_protocol, + 'regionId' => $this->_regionId, + ]); + $authClient = new OpenPlatform($authConfig); + $authRequest = new AuthorizeFileUploadRequest([ + 'product' => 'ocr', + 'regionId' => $this->_regionId, + ]); + $authResponse = new AuthorizeFileUploadResponse([]); + $ossConfig = new \AlibabaCloud\SDK\OSS\OSS\Config([ + 'accessKeySecret' => $accessKeySecret, + 'type' => 'access_key', + 'protocol' => $this->_protocol, + 'regionId' => $this->_regionId, + ]); + $ossClient = null; + $fileObj = new FileField([]); + $ossHeader = new header([]); + $uploadRequest = new PostObjectRequest([]); + $ossRuntime = new \AlibabaCloud\Tea\OSSUtils\OSSUtils\RuntimeOptions([]); + OpenApiUtilClient::convert($runtime, $ossRuntime); + $recognizeVATInvoiceReq = new RecognizeVATInvoiceRequest([]); + OpenApiUtilClient::convert($request, $recognizeVATInvoiceReq); + if (!Utils::isUnset($request->fileURLObject)) { + $authResponse = $authClient->authorizeFileUploadWithOptions($authRequest, $runtime); + $ossConfig->accessKeyId = $authResponse->body->accessKeyId; + $ossConfig->endpoint = OpenApiUtilClient::getEndpoint($authResponse->body->endpoint, $authResponse->body->useAccelerate, $this->_endpointType); + $ossClient = new OSS($ossConfig); + $fileObj = new FileField([ + 'filename' => $authResponse->body->objectKey, + 'content' => $request->fileURLObject, + 'contentType' => '', + ]); + $ossHeader = new header([ + 'accessKeyId' => $authResponse->body->accessKeyId, + 'policy' => $authResponse->body->encodedPolicy, + 'signature' => $authResponse->body->signature, + 'key' => $authResponse->body->objectKey, + 'file' => $fileObj, + 'successActionStatus' => '201', + ]); + $uploadRequest = new PostObjectRequest([ + 'bucketName' => $authResponse->body->bucket, + 'header' => $ossHeader, + ]); + $ossClient->postObject($uploadRequest, $ossRuntime); + $recognizeVATInvoiceReq->fileURL = 'http://' . $authResponse->body->bucket . '.' . $authResponse->body->endpoint . '/' . $authResponse->body->objectKey . ''; + } + + return $this->recognizeVATInvoiceWithOptions($recognizeVATInvoiceReq, $runtime); + } + + /** + * @param RecognizeVINCodeRequest $request + * @param RuntimeOptions $runtime + * + * @return RecognizeVINCodeResponse + */ + public function recognizeVINCodeWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->imageURL)) { + $query['ImageURL'] = $request->imageURL; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'RecognizeVINCode', + 'version' => '2019-12-30', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return RecognizeVINCodeResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param RecognizeVINCodeRequest $request + * + * @return RecognizeVINCodeResponse + */ + public function recognizeVINCode($request) + { + $runtime = new RuntimeOptions([]); + + return $this->recognizeVINCodeWithOptions($request, $runtime); + } + + /** + * @param RecognizeVINCodeAdvanceRequest $request + * @param RuntimeOptions $runtime + * + * @return RecognizeVINCodeResponse + */ + public function recognizeVINCodeAdvance($request, $runtime) + { + // Step 0: init client + $accessKeyId = $this->_credential->getAccessKeyId(); + $accessKeySecret = $this->_credential->getAccessKeySecret(); + $securityToken = $this->_credential->getSecurityToken(); + $credentialType = $this->_credential->getType(); + $openPlatformEndpoint = $this->_openPlatformEndpoint; + if (Utils::isUnset($openPlatformEndpoint)) { + $openPlatformEndpoint = 'openplatform.aliyuncs.com'; + } + if (Utils::isUnset($credentialType)) { + $credentialType = 'access_key'; + } + $authConfig = new Config([ + 'accessKeyId' => $accessKeyId, + 'accessKeySecret' => $accessKeySecret, + 'securityToken' => $securityToken, + 'type' => $credentialType, + 'endpoint' => $openPlatformEndpoint, + 'protocol' => $this->_protocol, + 'regionId' => $this->_regionId, + ]); + $authClient = new OpenPlatform($authConfig); + $authRequest = new AuthorizeFileUploadRequest([ + 'product' => 'ocr', + 'regionId' => $this->_regionId, + ]); + $authResponse = new AuthorizeFileUploadResponse([]); + $ossConfig = new \AlibabaCloud\SDK\OSS\OSS\Config([ + 'accessKeySecret' => $accessKeySecret, + 'type' => 'access_key', + 'protocol' => $this->_protocol, + 'regionId' => $this->_regionId, + ]); + $ossClient = null; + $fileObj = new FileField([]); + $ossHeader = new header([]); + $uploadRequest = new PostObjectRequest([]); + $ossRuntime = new \AlibabaCloud\Tea\OSSUtils\OSSUtils\RuntimeOptions([]); + OpenApiUtilClient::convert($runtime, $ossRuntime); + $recognizeVINCodeReq = new RecognizeVINCodeRequest([]); + OpenApiUtilClient::convert($request, $recognizeVINCodeReq); + if (!Utils::isUnset($request->imageURLObject)) { + $authResponse = $authClient->authorizeFileUploadWithOptions($authRequest, $runtime); + $ossConfig->accessKeyId = $authResponse->body->accessKeyId; + $ossConfig->endpoint = OpenApiUtilClient::getEndpoint($authResponse->body->endpoint, $authResponse->body->useAccelerate, $this->_endpointType); + $ossClient = new OSS($ossConfig); + $fileObj = new FileField([ + 'filename' => $authResponse->body->objectKey, + 'content' => $request->imageURLObject, + 'contentType' => '', + ]); + $ossHeader = new header([ + 'accessKeyId' => $authResponse->body->accessKeyId, + 'policy' => $authResponse->body->encodedPolicy, + 'signature' => $authResponse->body->signature, + 'key' => $authResponse->body->objectKey, + 'file' => $fileObj, + 'successActionStatus' => '201', + ]); + $uploadRequest = new PostObjectRequest([ + 'bucketName' => $authResponse->body->bucket, + 'header' => $ossHeader, + ]); + $ossClient->postObject($uploadRequest, $ossRuntime); + $recognizeVINCodeReq->imageURL = 'http://' . $authResponse->body->bucket . '.' . $authResponse->body->endpoint . '/' . $authResponse->body->objectKey . ''; + } + + return $this->recognizeVINCodeWithOptions($recognizeVINCodeReq, $runtime); + } + + /** + * @param RecognizeVideoCharacterRequest $request + * @param RuntimeOptions $runtime + * + * @return RecognizeVideoCharacterResponse + */ + public function recognizeVideoCharacterWithOptions($request, $runtime) + { + Utils::validateModel($request); + $body = []; + if (!Utils::isUnset($request->videoURL)) { + $body['VideoURL'] = $request->videoURL; + } + $req = new OpenApiRequest([ + 'body' => OpenApiUtilClient::parseToMap($body), + ]); + $params = new Params([ + 'action' => 'RecognizeVideoCharacter', + 'version' => '2019-12-30', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return RecognizeVideoCharacterResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param RecognizeVideoCharacterRequest $request + * + * @return RecognizeVideoCharacterResponse + */ + public function recognizeVideoCharacter($request) + { + $runtime = new RuntimeOptions([]); + + return $this->recognizeVideoCharacterWithOptions($request, $runtime); + } + + /** + * @param RecognizeVideoCharacterAdvanceRequest $request + * @param RuntimeOptions $runtime + * + * @return RecognizeVideoCharacterResponse + */ + public function recognizeVideoCharacterAdvance($request, $runtime) + { + // Step 0: init client + $accessKeyId = $this->_credential->getAccessKeyId(); + $accessKeySecret = $this->_credential->getAccessKeySecret(); + $securityToken = $this->_credential->getSecurityToken(); + $credentialType = $this->_credential->getType(); + $openPlatformEndpoint = $this->_openPlatformEndpoint; + if (Utils::isUnset($openPlatformEndpoint)) { + $openPlatformEndpoint = 'openplatform.aliyuncs.com'; + } + if (Utils::isUnset($credentialType)) { + $credentialType = 'access_key'; + } + $authConfig = new Config([ + 'accessKeyId' => $accessKeyId, + 'accessKeySecret' => $accessKeySecret, + 'securityToken' => $securityToken, + 'type' => $credentialType, + 'endpoint' => $openPlatformEndpoint, + 'protocol' => $this->_protocol, + 'regionId' => $this->_regionId, + ]); + $authClient = new OpenPlatform($authConfig); + $authRequest = new AuthorizeFileUploadRequest([ + 'product' => 'ocr', + 'regionId' => $this->_regionId, + ]); + $authResponse = new AuthorizeFileUploadResponse([]); + $ossConfig = new \AlibabaCloud\SDK\OSS\OSS\Config([ + 'accessKeySecret' => $accessKeySecret, + 'type' => 'access_key', + 'protocol' => $this->_protocol, + 'regionId' => $this->_regionId, + ]); + $ossClient = null; + $fileObj = new FileField([]); + $ossHeader = new header([]); + $uploadRequest = new PostObjectRequest([]); + $ossRuntime = new \AlibabaCloud\Tea\OSSUtils\OSSUtils\RuntimeOptions([]); + OpenApiUtilClient::convert($runtime, $ossRuntime); + $recognizeVideoCharacterReq = new RecognizeVideoCharacterRequest([]); + OpenApiUtilClient::convert($request, $recognizeVideoCharacterReq); + if (!Utils::isUnset($request->videoURLObject)) { + $authResponse = $authClient->authorizeFileUploadWithOptions($authRequest, $runtime); + $ossConfig->accessKeyId = $authResponse->body->accessKeyId; + $ossConfig->endpoint = OpenApiUtilClient::getEndpoint($authResponse->body->endpoint, $authResponse->body->useAccelerate, $this->_endpointType); + $ossClient = new OSS($ossConfig); + $fileObj = new FileField([ + 'filename' => $authResponse->body->objectKey, + 'content' => $request->videoURLObject, + 'contentType' => '', + ]); + $ossHeader = new header([ + 'accessKeyId' => $authResponse->body->accessKeyId, + 'policy' => $authResponse->body->encodedPolicy, + 'signature' => $authResponse->body->signature, + 'key' => $authResponse->body->objectKey, + 'file' => $fileObj, + 'successActionStatus' => '201', + ]); + $uploadRequest = new PostObjectRequest([ + 'bucketName' => $authResponse->body->bucket, + 'header' => $ossHeader, + ]); + $ossClient->postObject($uploadRequest, $ossRuntime); + $recognizeVideoCharacterReq->videoURL = 'http://' . $authResponse->body->bucket . '.' . $authResponse->body->endpoint . '/' . $authResponse->body->objectKey . ''; + } + + return $this->recognizeVideoCharacterWithOptions($recognizeVideoCharacterReq, $runtime); + } +} diff --git a/vendor/alibabacloud/openplatform-20191219/.gitignore b/vendor/alibabacloud/openplatform-20191219/.gitignore new file mode 100644 index 00000000..89c7aa58 --- /dev/null +++ b/vendor/alibabacloud/openplatform-20191219/.gitignore @@ -0,0 +1,15 @@ +composer.phar +/vendor/ + +# Commit your application's lock file https://getcomposer.org/doc/01-basic-usage.md#commit-your-composer-lock-file-to-version-control +# You may choose to ignore a library lock file http://getcomposer.org/doc/02-libraries.md#lock-file +composer.lock + +.vscode/ +.idea +.DS_Store + +cache/ +*.cache +runtime/ +.php_cs.cache diff --git a/vendor/alibabacloud/openplatform-20191219/.php_cs.dist b/vendor/alibabacloud/openplatform-20191219/.php_cs.dist new file mode 100644 index 00000000..8617ec2f --- /dev/null +++ b/vendor/alibabacloud/openplatform-20191219/.php_cs.dist @@ -0,0 +1,65 @@ +setRiskyAllowed(true) + ->setIndent(' ') + ->setRules([ + '@PSR2' => true, + '@PhpCsFixer' => true, + '@Symfony:risky' => true, + 'concat_space' => ['spacing' => 'one'], + 'array_syntax' => ['syntax' => 'short'], + 'array_indentation' => true, + 'combine_consecutive_unsets' => true, + 'method_separation' => true, + 'single_quote' => true, + 'declare_equal_normalize' => true, + 'function_typehint_space' => true, + 'hash_to_slash_comment' => true, + 'include' => true, + 'lowercase_cast' => true, + 'no_multiline_whitespace_before_semicolons' => true, + 'no_leading_import_slash' => true, + 'no_multiline_whitespace_around_double_arrow' => true, + 'no_spaces_around_offset' => true, + 'no_unneeded_control_parentheses' => true, + 'no_unused_imports' => true, + 'no_whitespace_before_comma_in_array' => true, + 'no_whitespace_in_blank_line' => true, + 'object_operator_without_whitespace' => true, + 'single_blank_line_before_namespace' => true, + 'single_class_element_per_statement' => true, + 'space_after_semicolon' => true, + 'standardize_not_equals' => true, + 'ternary_operator_spaces' => true, + 'trailing_comma_in_multiline_array' => true, + 'trim_array_spaces' => true, + 'unary_operator_spaces' => true, + 'whitespace_after_comma_in_array' => true, + 'no_extra_consecutive_blank_lines' => [ + 'curly_brace_block', + 'extra', + 'parenthesis_brace_block', + 'square_brace_block', + 'throw', + 'use', + ], + 'binary_operator_spaces' => [ + 'align_double_arrow' => true, + 'align_equals' => true, + ], + 'braces' => [ + 'allow_single_line_closure' => true, + ], + ]) + ->setFinder( + PhpCsFixer\Finder::create() + ->exclude('vendor') + ->exclude('tests') + ->in(__DIR__) + ); diff --git a/vendor/alibabacloud/openplatform-20191219/ChangeLog.md b/vendor/alibabacloud/openplatform-20191219/ChangeLog.md new file mode 100644 index 00000000..7a549452 --- /dev/null +++ b/vendor/alibabacloud/openplatform-20191219/ChangeLog.md @@ -0,0 +1,15 @@ +2023-02-07 Version: 2.0.1 +- Generated php 2019-12-19 for OpenPlatform. + +2022-09-21 Version: 2.0.0 +- Generated php 2019-12-19 for OpenPlatform. + +2021-07-27 Version: 1.0.3 +- Generated php 2019-12-19 for OpenPlatform. + +2020-12-20 Version: 1.0.2 +- Generated php 2019-12-19 for OpenPlatform. + +2020-12-02 Version: 1.0.1 +- Generated php 2019-12-19 for OpenPlatform. + diff --git a/vendor/alibabacloud/openplatform-20191219/LICENSE b/vendor/alibabacloud/openplatform-20191219/LICENSE new file mode 100644 index 00000000..0c44dcef --- /dev/null +++ b/vendor/alibabacloud/openplatform-20191219/LICENSE @@ -0,0 +1,201 @@ + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright (c) 2009-present, Alibaba Cloud All rights reserved. + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. diff --git a/vendor/alibabacloud/openplatform-20191219/README-CN.md b/vendor/alibabacloud/openplatform-20191219/README-CN.md new file mode 100644 index 00000000..c4c520e2 --- /dev/null +++ b/vendor/alibabacloud/openplatform-20191219/README-CN.md @@ -0,0 +1,35 @@ +[English](README.md) | 简体中文 + +![](https://aliyunsdk-pages.alicdn.com/icons/AlibabaCloud.svg) + +# Alibaba Cloud OpenPlatform SDK for PHP + +## 安装 + +### Composer + +```bash +composer require alibabacloud/openplatform-20191219 +``` + +## 问题 + +[提交 Issue](https://github.com/aliyun/alibabacloud-php-sdk/issues/new),不符合指南的问题可能会立即关闭。 + +## 使用说明 + +[快速使用](https://github.com/aliyun/alibabacloud-php-sdk/blob/master/docs/0-Examples-CN.md#%E5%BF%AB%E9%80%9F%E4%BD%BF%E7%94%A8) + +## 发行说明 + +每个版本的详细更改记录在[发行说明](./ChangeLog.txt)中。 + +## 相关 + +* [最新源码](https://github.com/aliyun/alibabacloud-php-sdk/) + +## 许可证 + +[Apache-2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Copyright (c) 2009-present, Alibaba Cloud All rights reserved. diff --git a/vendor/alibabacloud/openplatform-20191219/README.md b/vendor/alibabacloud/openplatform-20191219/README.md new file mode 100644 index 00000000..48e5e3ef --- /dev/null +++ b/vendor/alibabacloud/openplatform-20191219/README.md @@ -0,0 +1,35 @@ +English | [简体中文](README-CN.md) + +![](https://aliyunsdk-pages.alicdn.com/icons/AlibabaCloud.svg) + +# Alibaba Cloud OpenPlatform SDK for PHP + +## Installation + +### Composer + +```bash +composer require alibabacloud/openplatform-20191219 +``` + +## Issues + +[Opening an Issue](https://github.com/aliyun/alibabacloud-php-sdk/issues/new), Issues not conforming to the guidelines may be closed immediately. + +## Usage + +[Quick Examples](https://github.com/aliyun/alibabacloud-php-sdk/blob/master/docs/0-Examples-EN.md#quick-examples) + +## Changelog + +Detailed changes for each release are documented in the [release notes](./ChangeLog.txt). + +## References + +* [Latest Release](https://github.com/aliyun/alibabacloud-php-sdk/) + +## License + +[Apache-2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Copyright (c) 2009-present, Alibaba Cloud All rights reserved. diff --git a/vendor/alibabacloud/openplatform-20191219/autoload.php b/vendor/alibabacloud/openplatform-20191219/autoload.php new file mode 100644 index 00000000..386715ba --- /dev/null +++ b/vendor/alibabacloud/openplatform-20191219/autoload.php @@ -0,0 +1,17 @@ +5.5", + "alibabacloud/tea-utils": "^0.2.17", + "alibabacloud/darabonba-openapi": "^0.2.8", + "alibabacloud/openapi-util": "^0.1.10|^0.2.1", + "alibabacloud/endpoint-util": "^0.1.0" + }, + "autoload": { + "psr-4": { + "AlibabaCloud\\SDK\\OpenPlatform\\V20191219\\": "src" + } + }, + "scripts": { + "fixer": "php-cs-fixer fix ./" + }, + "config": { + "sort-packages": true, + "preferred-install": "dist", + "optimize-autoloader": true + }, + "prefer-stable": true +} \ No newline at end of file diff --git a/vendor/alibabacloud/openplatform-20191219/src/Models/AuthorizeFileUploadRequest.php b/vendor/alibabacloud/openplatform-20191219/src/Models/AuthorizeFileUploadRequest.php new file mode 100644 index 00000000..3e61489a --- /dev/null +++ b/vendor/alibabacloud/openplatform-20191219/src/Models/AuthorizeFileUploadRequest.php @@ -0,0 +1,59 @@ + 'Product', + 'regionId' => 'RegionId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->product) { + $res['Product'] = $this->product; + } + if (null !== $this->regionId) { + $res['RegionId'] = $this->regionId; + } + + return $res; + } + + /** + * @param array $map + * + * @return AuthorizeFileUploadRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Product'])) { + $model->product = $map['Product']; + } + if (isset($map['RegionId'])) { + $model->regionId = $map['RegionId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/openplatform-20191219/src/Models/AuthorizeFileUploadResponse.php b/vendor/alibabacloud/openplatform-20191219/src/Models/AuthorizeFileUploadResponse.php new file mode 100644 index 00000000..a4602c46 --- /dev/null +++ b/vendor/alibabacloud/openplatform-20191219/src/Models/AuthorizeFileUploadResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return AuthorizeFileUploadResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = AuthorizeFileUploadResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/openplatform-20191219/src/Models/AuthorizeFileUploadResponseBody.php b/vendor/alibabacloud/openplatform-20191219/src/Models/AuthorizeFileUploadResponseBody.php new file mode 100644 index 00000000..f2fe84f1 --- /dev/null +++ b/vendor/alibabacloud/openplatform-20191219/src/Models/AuthorizeFileUploadResponseBody.php @@ -0,0 +1,131 @@ + 'AccessKeyId', + 'bucket' => 'Bucket', + 'encodedPolicy' => 'EncodedPolicy', + 'endpoint' => 'Endpoint', + 'objectKey' => 'ObjectKey', + 'requestId' => 'RequestId', + 'signature' => 'Signature', + 'useAccelerate' => 'UseAccelerate', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->accessKeyId) { + $res['AccessKeyId'] = $this->accessKeyId; + } + if (null !== $this->bucket) { + $res['Bucket'] = $this->bucket; + } + if (null !== $this->encodedPolicy) { + $res['EncodedPolicy'] = $this->encodedPolicy; + } + if (null !== $this->endpoint) { + $res['Endpoint'] = $this->endpoint; + } + if (null !== $this->objectKey) { + $res['ObjectKey'] = $this->objectKey; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + if (null !== $this->signature) { + $res['Signature'] = $this->signature; + } + if (null !== $this->useAccelerate) { + $res['UseAccelerate'] = $this->useAccelerate; + } + + return $res; + } + + /** + * @param array $map + * + * @return AuthorizeFileUploadResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AccessKeyId'])) { + $model->accessKeyId = $map['AccessKeyId']; + } + if (isset($map['Bucket'])) { + $model->bucket = $map['Bucket']; + } + if (isset($map['EncodedPolicy'])) { + $model->encodedPolicy = $map['EncodedPolicy']; + } + if (isset($map['Endpoint'])) { + $model->endpoint = $map['Endpoint']; + } + if (isset($map['ObjectKey'])) { + $model->objectKey = $map['ObjectKey']; + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + if (isset($map['Signature'])) { + $model->signature = $map['Signature']; + } + if (isset($map['UseAccelerate'])) { + $model->useAccelerate = $map['UseAccelerate']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/openplatform-20191219/src/OpenPlatform.php b/vendor/alibabacloud/openplatform-20191219/src/OpenPlatform.php new file mode 100644 index 00000000..7bcc90d9 --- /dev/null +++ b/vendor/alibabacloud/openplatform-20191219/src/OpenPlatform.php @@ -0,0 +1,89 @@ +_endpointRule = ''; + $this->checkConfig($config); + $this->_endpoint = $this->getEndpoint('openplatform', $this->_regionId, $this->_endpointRule, $this->_network, $this->_suffix, $this->_endpointMap, $this->_endpoint); + } + + /** + * @param string $productId + * @param string $regionId + * @param string $endpointRule + * @param string $network + * @param string $suffix + * @param string[] $endpointMap + * @param string $endpoint + * + * @return string + */ + public function getEndpoint($productId, $regionId, $endpointRule, $network, $suffix, $endpointMap, $endpoint) + { + if (!Utils::empty_($endpoint)) { + return $endpoint; + } + if (!Utils::isUnset($endpointMap) && !Utils::empty_(@$endpointMap[$regionId])) { + return @$endpointMap[$regionId]; + } + + return Endpoint::getEndpointRules($productId, $regionId, $endpointRule, $network, $suffix); + } + + /** + * @param AuthorizeFileUploadRequest $request + * @param RuntimeOptions $runtime + * + * @return AuthorizeFileUploadResponse + */ + public function authorizeFileUploadWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = OpenApiUtilClient::query(Utils::toMap($request)); + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'AuthorizeFileUpload', + 'version' => '2019-12-19', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'GET', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return AuthorizeFileUploadResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param AuthorizeFileUploadRequest $request + * + * @return AuthorizeFileUploadResponse + */ + public function authorizeFileUpload($request) + { + $runtime = new RuntimeOptions([]); + + return $this->authorizeFileUploadWithOptions($request, $runtime); + } +} diff --git a/vendor/alibabacloud/tea-fileform/.gitignore b/vendor/alibabacloud/tea-fileform/.gitignore new file mode 100644 index 00000000..84837df3 --- /dev/null +++ b/vendor/alibabacloud/tea-fileform/.gitignore @@ -0,0 +1,12 @@ +composer.phar +/vendor/ + +# Commit your application's lock file https://getcomposer.org/doc/01-basic-usage.md#commit-your-composer-lock-file-to-version-control +# You may choose to ignore a library lock file http://getcomposer.org/doc/02-libraries.md#lock-file +composer.lock + +.idea +.DS_Store + +cache/ +*.cache diff --git a/vendor/alibabacloud/tea-fileform/.php_cs.dist b/vendor/alibabacloud/tea-fileform/.php_cs.dist new file mode 100644 index 00000000..8617ec2f --- /dev/null +++ b/vendor/alibabacloud/tea-fileform/.php_cs.dist @@ -0,0 +1,65 @@ +setRiskyAllowed(true) + ->setIndent(' ') + ->setRules([ + '@PSR2' => true, + '@PhpCsFixer' => true, + '@Symfony:risky' => true, + 'concat_space' => ['spacing' => 'one'], + 'array_syntax' => ['syntax' => 'short'], + 'array_indentation' => true, + 'combine_consecutive_unsets' => true, + 'method_separation' => true, + 'single_quote' => true, + 'declare_equal_normalize' => true, + 'function_typehint_space' => true, + 'hash_to_slash_comment' => true, + 'include' => true, + 'lowercase_cast' => true, + 'no_multiline_whitespace_before_semicolons' => true, + 'no_leading_import_slash' => true, + 'no_multiline_whitespace_around_double_arrow' => true, + 'no_spaces_around_offset' => true, + 'no_unneeded_control_parentheses' => true, + 'no_unused_imports' => true, + 'no_whitespace_before_comma_in_array' => true, + 'no_whitespace_in_blank_line' => true, + 'object_operator_without_whitespace' => true, + 'single_blank_line_before_namespace' => true, + 'single_class_element_per_statement' => true, + 'space_after_semicolon' => true, + 'standardize_not_equals' => true, + 'ternary_operator_spaces' => true, + 'trailing_comma_in_multiline_array' => true, + 'trim_array_spaces' => true, + 'unary_operator_spaces' => true, + 'whitespace_after_comma_in_array' => true, + 'no_extra_consecutive_blank_lines' => [ + 'curly_brace_block', + 'extra', + 'parenthesis_brace_block', + 'square_brace_block', + 'throw', + 'use', + ], + 'binary_operator_spaces' => [ + 'align_double_arrow' => true, + 'align_equals' => true, + ], + 'braces' => [ + 'allow_single_line_closure' => true, + ], + ]) + ->setFinder( + PhpCsFixer\Finder::create() + ->exclude('vendor') + ->exclude('tests') + ->in(__DIR__) + ); diff --git a/vendor/alibabacloud/tea-fileform/README-CN.md b/vendor/alibabacloud/tea-fileform/README-CN.md new file mode 100644 index 00000000..8d252382 --- /dev/null +++ b/vendor/alibabacloud/tea-fileform/README-CN.md @@ -0,0 +1,31 @@ +English | [简体中文](README-CN.md) + +![](https://aliyunsdk-pages.alicdn.com/icons/AlibabaCloud.svg) + +## Alibaba Cloud Tea File Library for PHP + +## Installation + +### Composer + +```bash +composer require alibabacloud/tea-fileform +``` + +## Issues + +[Opening an Issue](https://github.com/aliyun/tea-fileform/issues/new), Issues not conforming to the guidelines may be closed immediately. + +## Changelog + +Detailed changes for each release are documented in the [release notes](./ChangeLog.txt). + +## References + +* [Latest Release](https://github.com/aliyun/tea-fileform) + +## License + +[Apache-2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Copyright (c) 2009-present, Alibaba Cloud All rights reserved. diff --git a/vendor/alibabacloud/tea-fileform/README.md b/vendor/alibabacloud/tea-fileform/README.md new file mode 100644 index 00000000..9917f3c0 --- /dev/null +++ b/vendor/alibabacloud/tea-fileform/README.md @@ -0,0 +1,31 @@ +[English](README.md) | 简体中文 + +![](https://aliyunsdk-pages.alicdn.com/icons/AlibabaCloud.svg) + +## Alibaba Cloud Tea File Library for PHP + +## 安装 + +### Composer + +```bash +composer require alibabacloud/tea-fileform +``` + +## 问题 + +[提交 Issue](https://github.com/aliyun/tea-fileform/issues/new),不符合指南的问题可能会立即关闭。 + +## 发行说明 + +每个版本的详细更改记录在[发行说明](./ChangeLog.txt)中。 + +## 相关 + +* [最新源码](https://github.com/aliyun/tea-fileform) + +## 许可证 + +[Apache-2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Copyright (c) 2009-present, Alibaba Cloud All rights reserved. diff --git a/vendor/alibabacloud/tea-fileform/composer.json b/vendor/alibabacloud/tea-fileform/composer.json new file mode 100644 index 00000000..151fe7b7 --- /dev/null +++ b/vendor/alibabacloud/tea-fileform/composer.json @@ -0,0 +1,44 @@ +{ + "name": "alibabacloud/tea-fileform", + "description": "Alibaba Cloud Tea File Library for PHP", + "type": "library", + "license": "Apache-2.0", + "authors": [ + { + "name": "Alibaba Cloud SDK", + "email": "sdk-team@alibabacloud.com" + } + ], + "require": { + "php": ">5.5", + "alibabacloud/tea": "^3.0" + }, + "require-dev": { + "phpunit/phpunit": "^4.8.35|^5.4.3" + }, + "autoload": { + "psr-4": { + "AlibabaCloud\\Tea\\FileForm\\": "src" + } + }, + "autoload-dev": { + "psr-4": { + "AlibabaCloud\\Tea\\FileForm\\Tests\\": "tests" + } + }, + "scripts": { + "fixer": "php-cs-fixer fix ./", + "test": [ + "@clearCache", + "phpunit --colors=always" + ], + "clearCache": "rm -rf cache/*" + }, + "config": { + "sort-packages": true, + "preferred-install": "dist", + "optimize-autoloader": true + }, + "prefer-stable": true, + "minimum-stability": "dev" +} diff --git a/vendor/alibabacloud/tea-fileform/phpunit.xml b/vendor/alibabacloud/tea-fileform/phpunit.xml new file mode 100644 index 00000000..8306a799 --- /dev/null +++ b/vendor/alibabacloud/tea-fileform/phpunit.xml @@ -0,0 +1,32 @@ + + + + + + tests + + + ./tests/Unit + + + + + + integration + + + + + + + + + + + + ./src + + + diff --git a/vendor/alibabacloud/tea-fileform/src/FileForm.php b/vendor/alibabacloud/tea-fileform/src/FileForm.php new file mode 100644 index 00000000..ee44cbb5 --- /dev/null +++ b/vendor/alibabacloud/tea-fileform/src/FileForm.php @@ -0,0 +1,16 @@ +_required = [ + 'filename' => true, + 'contentType' => true, + 'content' => true, + ]; + parent::__construct($config); + } +} diff --git a/vendor/alibabacloud/tea-fileform/src/FileFormStream.php b/vendor/alibabacloud/tea-fileform/src/FileFormStream.php new file mode 100644 index 00000000..a2cc2462 --- /dev/null +++ b/vendor/alibabacloud/tea-fileform/src/FileFormStream.php @@ -0,0 +1,321 @@ +stream = fopen('php://memory', 'a+'); + $this->form = $map; + $this->boundary = $boundary; + $this->keys = array_keys($map); + do { + $read = $this->readForm(1024); + } while (null !== $read); + $meta = stream_get_meta_data($this->stream); + $this->seekable = $meta['seekable']; + $this->uri = $this->getMetadata('uri'); + $this->seek(0); + $this->seek(0); + } + + /** + * Closes the stream when the destructed. + */ + public function __destruct() + { + $this->close(); + } + + public function __toString() + { + try { + $this->seek(0); + + return (string) stream_get_contents($this->stream); + } catch (\Exception $e) { + return ''; + } + } + + /** + * @param int $length + * + * @return false|int|string + */ + public function readForm($length) + { + if ($this->streaming) { + if (null !== $this->currStream) { + // @var string $content + $content = $this->currStream->read($length); + if (false !== $content && '' !== $content) { + fwrite($this->stream, $content); + + return $content; + } + + return $this->next("\r\n"); + } + + return $this->next(); + } + $keysCount = \count($this->keys); + if ($this->index > $keysCount) { + return null; + } + if ($keysCount > 0) { + if ($this->index < $keysCount) { + $this->streaming = true; + + $name = $this->keys[$this->index]; + $field = $this->form[$name]; + if (!empty($field) && $field instanceof FileField) { + if (!empty($field->content)) { + $this->currStream = $field->content; + + $str = '--' . $this->boundary . "\r\n" . + 'Content-Disposition: form-data; name="' . $name . '"; filename="' . $field->filename . "\"\r\n" . + 'Content-Type: ' . $field->contentType . "\r\n\r\n"; + $this->write($str); + + return $str; + } + + return $this->next(); + } + $val = $field; + $str = '--' . $this->boundary . "\r\n" . + 'Content-Disposition: form-data; name="' . $name . "\"\r\n\r\n" . + $val . "\r\n"; + fwrite($this->stream, $str); + + return $str; + } + if ($this->index == $keysCount) { + return $this->next('--' . $this->boundary . "--\r\n"); + } + + return null; + } + + return null; + } + + public function getContents() + { + if (!isset($this->stream)) { + throw new \RuntimeException('Stream is detached'); + } + + $contents = stream_get_contents($this->stream); + + if (false === $contents) { + throw new \RuntimeException('Unable to read stream contents'); + } + + return $contents; + } + + public function close() + { + if (isset($this->stream)) { + if (\is_resource($this->stream)) { + fclose($this->stream); + } + $this->detach(); + } + } + + public function detach() + { + if (!isset($this->stream)) { + return null; + } + + $result = $this->stream; + unset($this->stream); + $this->size = $this->uri = null; + + return $result; + } + + public function getSize() + { + if (null !== $this->size) { + return $this->size; + } + + if (!isset($this->stream)) { + return null; + } + + // Clear the stat cache if the stream has a URI + if ($this->uri) { + clearstatcache(true, $this->uri); + } + + $stats = fstat($this->stream); + if (isset($stats['size'])) { + $this->size = $stats['size']; + + return $this->size; + } + + return null; + } + + public function isReadable() + { + return $this->readable; + } + + public function isWritable() + { + return $this->writable; + } + + public function isSeekable() + { + return $this->seekable; + } + + public function eof() + { + if (!isset($this->stream)) { + throw new \RuntimeException('Stream is detached'); + } + + return feof($this->stream); + } + + public function tell() + { + if (!isset($this->stream)) { + throw new \RuntimeException('Stream is detached'); + } + + $result = ftell($this->stream); + + if (false === $result) { + throw new \RuntimeException('Unable to determine stream position'); + } + + return $result; + } + + public function rewind() + { + $this->seek(0); + } + + public function seek($offset, $whence = SEEK_SET) + { + $whence = (int) $whence; + + if (!isset($this->stream)) { + throw new \RuntimeException('Stream is detached'); + } + if (!$this->seekable) { + throw new \RuntimeException('Stream is not seekable'); + } + if (-1 === fseek($this->stream, $offset, $whence)) { + throw new \RuntimeException('Unable to seek to stream position ' . $offset . ' with whence ' . var_export($whence, true)); + } + } + + public function read($length) + { + if (!isset($this->stream)) { + throw new \RuntimeException('Stream is detached'); + } + if (!$this->readable) { + throw new \RuntimeException('Cannot read from non-readable stream'); + } + if ($length < 0) { + throw new \RuntimeException('Length parameter cannot be negative'); + } + + if (0 === $length) { + return ''; + } + + $string = fread($this->stream, $length); + if (false === $string) { + throw new \RuntimeException('Unable to read from stream'); + } + + return $string; + } + + public function write($string) + { + if (!isset($this->stream)) { + throw new \RuntimeException('Stream is detached'); + } + if (!$this->writable) { + throw new \RuntimeException('Cannot write to a non-writable stream'); + } + + // We can't know the size after writing anything + $this->size = null; + $result = fwrite($this->stream, $string); + + if (false === $result) { + throw new \RuntimeException('Unable to write to stream'); + } + + return $result; + } + + public function getMetadata($key = null) + { + if (!isset($this->stream)) { + return $key ? null : []; + } + + $meta = stream_get_meta_data($this->stream); + + return isset($meta[$key]) ? $meta[$key] : null; + } + + private function next($endStr = '') + { + $this->streaming = false; + ++$this->index; + $this->write($endStr); + $this->currStream = null; + + return $endStr; + } +} diff --git a/vendor/alibabacloud/tea-fileform/tests/FileFormTest.php b/vendor/alibabacloud/tea-fileform/tests/FileFormTest.php new file mode 100644 index 00000000..67d24e8c --- /dev/null +++ b/vendor/alibabacloud/tea-fileform/tests/FileFormTest.php @@ -0,0 +1,81 @@ +assertTrue($stream instanceof FileFormStream); + $stream->write($boundary); + $this->assertTrue(\strlen($boundary) === $stream->getSize()); + } + + public function testSet() + { + $fileField = new FileField([ + 'filename' => 'fake filename', + 'contentType' => 'content type', + 'content' => null, + ]); + + $this->assertEquals('fake filename', $fileField->filename); + $this->assertEquals('content type', $fileField->contentType); + } + + public function testRead() + { + $fileField = new FileField(); + $fileField->filename = 'haveContent'; + $fileField->contentType = 'contentType'; + $fileField->content = new Stream(fopen('data://text/plain;base64,' . base64_encode('This is file test. This sentence must be long'), 'r')); + + $fileFieldNoContent = new FileField(); + $fileFieldNoContent->filename = 'noContent'; + $fileFieldNoContent->contentType = 'contentType'; + $fileFieldNoContent->content = null; + + $map = [ + 'key' => 'value', + 'testKey' => 'testValue', + 'haveFile' => $fileField, + 'noFile' => $fileFieldNoContent, + ]; + + $stream = FileForm::toFileForm($map, 'testBoundary'); + + $result = $stream->getContents(); + $target = "--testBoundary\r\nContent-Disposition: form-data; name=\"key\"\r\n\r\nvalue\r\n--testBoundary\r\nContent-Disposition: form-data; name=\"testKey\"\r\n\r\ntestValue\r\n--testBoundary\r\nContent-Disposition: form-data; name=\"haveFile\"; filename=\"haveContent\"\r\nContent-Type: contentType\r\n\r\nThis is file test. This sentence must be long\r\n--testBoundary--\r\n"; + + $this->assertEquals($target, $result); + } + + public function testReadFile() + { + $fileField = new FileField(); + $fileField->filename = 'composer.json'; + $fileField->contentType = 'application/json'; + $fileField->content = new Stream(fopen(__DIR__ . '/../composer.json', 'r')); + $map = [ + 'name' => 'json_file', + 'type' => 'application/json', + 'json_file' => $fileField, + ]; + + $boundary = FileForm::getBoundary(); + $fileStream = FileForm::toFileForm($map, $boundary); + $this->assertTrue(false !== strpos($fileStream->getContents(), 'json_file')); + } +} diff --git a/vendor/alibabacloud/tea-fileform/tests/bootstrap.php b/vendor/alibabacloud/tea-fileform/tests/bootstrap.php new file mode 100644 index 00000000..c62c4e81 --- /dev/null +++ b/vendor/alibabacloud/tea-fileform/tests/bootstrap.php @@ -0,0 +1,3 @@ +setRiskyAllowed(true) + ->setIndent(' ') + ->setRules([ + '@PSR2' => true, + '@PhpCsFixer' => true, + '@Symfony:risky' => true, + 'concat_space' => ['spacing' => 'one'], + 'array_syntax' => ['syntax' => 'short'], + 'array_indentation' => true, + 'combine_consecutive_unsets' => true, + 'method_separation' => true, + 'single_quote' => true, + 'declare_equal_normalize' => true, + 'function_typehint_space' => true, + 'hash_to_slash_comment' => true, + 'include' => true, + 'lowercase_cast' => true, + 'no_multiline_whitespace_before_semicolons' => true, + 'no_leading_import_slash' => true, + 'no_multiline_whitespace_around_double_arrow' => true, + 'no_spaces_around_offset' => true, + 'no_unneeded_control_parentheses' => true, + 'no_unused_imports' => true, + 'no_whitespace_before_comma_in_array' => true, + 'no_whitespace_in_blank_line' => true, + 'object_operator_without_whitespace' => true, + 'single_blank_line_before_namespace' => true, + 'single_class_element_per_statement' => true, + 'space_after_semicolon' => true, + 'standardize_not_equals' => true, + 'ternary_operator_spaces' => true, + 'trailing_comma_in_multiline_array' => true, + 'trim_array_spaces' => true, + 'unary_operator_spaces' => true, + 'whitespace_after_comma_in_array' => true, + 'no_extra_consecutive_blank_lines' => [ + 'curly_brace_block', + 'extra', + 'parenthesis_brace_block', + 'square_brace_block', + 'throw', + 'use', + ], + 'binary_operator_spaces' => [ + 'align_double_arrow' => true, + 'align_equals' => true, + ], + 'braces' => [ + 'allow_single_line_closure' => true, + ], + ]) + ->setFinder( + PhpCsFixer\Finder::create() + ->exclude('vendor') + ->exclude('tests') + ->in(__DIR__) + ); diff --git a/vendor/alibabacloud/tea-oss-sdk/LICENSE b/vendor/alibabacloud/tea-oss-sdk/LICENSE new file mode 100644 index 00000000..ec13fccd --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/LICENSE @@ -0,0 +1,13 @@ +Copyright (c) 2009-present, Alibaba Cloud All rights reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. diff --git a/vendor/alibabacloud/tea-oss-sdk/README-CN.md b/vendor/alibabacloud/tea-oss-sdk/README-CN.md new file mode 100644 index 00000000..435fc9db --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/README-CN.md @@ -0,0 +1,31 @@ +[English](README.md) | 简体中文 + +![](https://aliyunsdk-pages.alicdn.com/icons/AlibabaCloud.svg) + +## Aliyun Tea OSS SDK Library for PHP + +## 安装 + +### Composer + +```bash +composer require alibabacloud/tea-oss-sdk +``` + +## 问题 + +[提交 Issue](https://github.com/aliyun/alibabacloud-oss-sdk/issues/new),不符合指南的问题可能会立即关闭。 + +## 发行说明 + +每个版本的详细更改记录在[发行说明](./ChangeLog.txt)中。 + +## 相关 + +* [最新源码](https://github.com/aliyun/alibabacloud-oss-sdk) + +## 许可证 + +[Apache-2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Copyright (c) 2009-present, Alibaba Cloud All rights reserved. diff --git a/vendor/alibabacloud/tea-oss-sdk/README.md b/vendor/alibabacloud/tea-oss-sdk/README.md new file mode 100644 index 00000000..69d114be --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/README.md @@ -0,0 +1,31 @@ +English | [简体中文](README-CN.md) + +![](https://aliyunsdk-pages.alicdn.com/icons/AlibabaCloud.svg) + +## Aliyun Tea OSS SDK Library for PHP + +## Installation + +### Composer + +```bash +composer require alibabacloud/tea-oss-sdk +``` + +## Issues + +[Opening an Issue](https://github.com/aliyun/alibabacloud-oss-sdk/issues/new), Issues not conforming to the guidelines may be closed immediately. + +## Changelog + +Detailed changes for each release are documented in the [release notes](./ChangeLog.txt). + +## References + +* [Latest Release](https://github.com/aliyun/alibabacloud-oss-sdk) + +## License + +[Apache-2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Copyright (c) 2009-present, Alibaba Cloud All rights reserved. diff --git a/vendor/alibabacloud/tea-oss-sdk/autoload.php b/vendor/alibabacloud/tea-oss-sdk/autoload.php new file mode 100644 index 00000000..e9f21de7 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/autoload.php @@ -0,0 +1,17 @@ +5.5", + "alibabacloud/tea-utils": "^0.2.0", + "alibabacloud/tea-oss-utils": "^0.3.0", + "alibabacloud/tea-xml": "^0.2", + "alibabacloud/tea-fileform": "^0.3.0", + "alibabacloud/credentials": "^1.1" + }, + "autoload": { + "psr-4": { + "AlibabaCloud\\SDK\\OSS\\": "src" + } + }, + "scripts": { + "fixer": "php-cs-fixer fix ./" + }, + "config": { + "sort-packages": true, + "preferred-install": "dist", + "optimize-autoloader": true + }, + "prefer-stable": true +} \ No newline at end of file diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS.php new file mode 100644 index 00000000..0aee78c0 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS.php @@ -0,0 +1,7255 @@ + 'ParameterMissing', + 'message' => "'config' can not be unset", + ]); + } + if (Utils::empty_($config->type)) { + $config->type = 'access_key'; + } + $credentialConfig = new Config([ + 'accessKeyId' => $config->accessKeyId, + 'type' => $config->type, + 'accessKeySecret' => $config->accessKeySecret, + 'securityToken' => $config->securityToken, + ]); + $this->_credential = new Credential($credentialConfig); + if (Utils::isUnset($config->isEnableMD5)) { + $config->isEnableMD5 = false; + } + if (Utils::isUnset($config->isEnableCrc)) { + $config->isEnableCrc = false; + } + $this->_endpoint = $config->endpoint; + $this->_protocol = $config->protocol; + $this->_regionId = $config->regionId; + $this->_userAgent = $config->userAgent; + $this->_readTimeout = $config->readTimeout; + $this->_connectTimeout = $config->connectTimeout; + $this->_localAddr = $config->localAddr; + $this->_httpProxy = $config->httpProxy; + $this->_httpsProxy = $config->httpsProxy; + $this->_noProxy = $config->noProxy; + $this->_socks5Proxy = $config->socks5Proxy; + $this->_socks5NetWork = $config->socks5NetWork; + $this->_maxIdleConns = $config->maxIdleConns; + $this->_signatureVersion = $config->signatureVersion; + $this->_addtionalHeaders = $config->addtionalHeaders; + $this->_hostModel = $config->hostModel; + $this->_isEnableMD5 = $config->isEnableMD5; + $this->_isEnableCrc = $config->isEnableCrc; + } + + /** + * @param PutBucketLifecycleRequest $request + * @param RuntimeOptions $runtime + * + * @throws TeaError + * @throws Exception + * @throws TeaUnableRetryError + * + * @return PutBucketLifecycleResponse + */ + public function putBucketLifecycle($request, $runtime) + { + $request->validate(); + $runtime->validate(); + $_runtime = [ + 'timeouted' => 'retry', + 'readTimeout' => Utils::defaultNumber($runtime->readTimeout, $this->_readTimeout), + 'connectTimeout' => Utils::defaultNumber($runtime->connectTimeout, $this->_connectTimeout), + 'localAddr' => Utils::defaultString($runtime->localAddr, $this->_localAddr), + 'httpProxy' => Utils::defaultString($runtime->httpProxy, $this->_httpProxy), + 'httpsProxy' => Utils::defaultString($runtime->httpsProxy, $this->_httpsProxy), + 'noProxy' => Utils::defaultString($runtime->noProxy, $this->_noProxy), + 'socks5Proxy' => Utils::defaultString($runtime->socks5Proxy, $this->_socks5Proxy), + 'socks5NetWork' => Utils::defaultString($runtime->socks5NetWork, $this->_socks5NetWork), + 'maxIdleConns' => Utils::defaultNumber($runtime->maxIdleConns, $this->_maxIdleConns), + 'retry' => [ + 'retryable' => $runtime->autoretry, + 'maxAttempts' => Utils::defaultNumber($runtime->maxAttempts, 3), + ], + 'backoff' => [ + 'policy' => Utils::defaultString($runtime->backoffPolicy, 'no'), + 'period' => Utils::defaultNumber($runtime->backoffPeriod, 1), + ], + 'ignoreSSL' => $runtime->ignoreSSL, + ]; + $_lastRequest = null; + $_lastException = null; + $_now = time(); + $_retryTimes = 0; + while (Tea::allowRetry(@$_runtime['retry'], $_retryTimes, $_now)) { + if ($_retryTimes > 0) { + $_backoffTime = Tea::getBackoffTime(@$_runtime['backoff'], $_retryTimes); + if ($_backoffTime > 0) { + Tea::sleep($_backoffTime); + } + } + $_retryTimes = $_retryTimes + 1; + + try { + $_request = new Request(); + $accessKeyId = $this->_credential->getAccessKeyId(); + $accessKeySecret = $this->_credential->getAccessKeySecret(); + $token = $this->_credential->getSecurityToken(); + $reqBody = XML::toXML(Tea::merge($request->body)); + $_request->protocol = $this->_protocol; + $_request->method = 'PUT'; + $_request->pathname = '/?lifecycle'; + $_request->headers = [ + 'host' => OSSUtils::getHost($request->bucketName, $this->_regionId, $this->_endpoint, $this->_hostModel), + 'date' => Utils::getDateUTCString(), + 'user-agent' => $this->getUserAgent(), + ]; + if (!Utils::empty_($token)) { + $_request->headers['x-oss-security-token'] = $token; + } + $_request->body = $reqBody; + $_request->headers['authorization'] = OSSUtils::getSignature($_request, $request->bucketName, $accessKeyId, $accessKeySecret, $this->_signatureVersion, $this->_addtionalHeaders); + $_lastRequest = $_request; + $_response = Tea::send($_request, $_runtime); + $respMap = null; + $bodyStr = null; + if (Utils::is4xx($_response->statusCode) || Utils::is5xx($_response->statusCode)) { + $bodyStr = Utils::readAsString($_response->body); + $respMap = OSSUtils::getErrMessage($bodyStr); + + throw new TeaError([ + 'code' => @$respMap['Code'], + 'message' => @$respMap['Message'], + 'data' => [ + 'httpCode' => $_response->statusCode, + 'requestId' => @$respMap['RequestId'], + 'hostId' => @$respMap['HostId'], + ], + ]); + } + + return PutBucketLifecycleResponse::fromMap(Tea::merge($_response->headers)); + } catch (Exception $e) { + if (!($e instanceof TeaError)) { + $e = new TeaError([], $e->getMessage(), $e->getCode(), $e); + } + if (Tea::isRetryable($e)) { + $_lastException = $e; + + continue; + } + + throw $e; + } + } + + throw new TeaUnableRetryError($_lastRequest, $_lastException); + } + + /** + * @param DeleteMultipleObjectsRequest $request + * @param RuntimeOptions $runtime + * + * @throws TeaError + * @throws Exception + * @throws TeaUnableRetryError + * + * @return DeleteMultipleObjectsResponse + */ + public function deleteMultipleObjects($request, $runtime) + { + $request->validate(); + $runtime->validate(); + $_runtime = [ + 'timeouted' => 'retry', + 'readTimeout' => Utils::defaultNumber($runtime->readTimeout, $this->_readTimeout), + 'connectTimeout' => Utils::defaultNumber($runtime->connectTimeout, $this->_connectTimeout), + 'localAddr' => Utils::defaultString($runtime->localAddr, $this->_localAddr), + 'httpProxy' => Utils::defaultString($runtime->httpProxy, $this->_httpProxy), + 'httpsProxy' => Utils::defaultString($runtime->httpsProxy, $this->_httpsProxy), + 'noProxy' => Utils::defaultString($runtime->noProxy, $this->_noProxy), + 'socks5Proxy' => Utils::defaultString($runtime->socks5Proxy, $this->_socks5Proxy), + 'socks5NetWork' => Utils::defaultString($runtime->socks5NetWork, $this->_socks5NetWork), + 'maxIdleConns' => Utils::defaultNumber($runtime->maxIdleConns, $this->_maxIdleConns), + 'retry' => [ + 'retryable' => $runtime->autoretry, + 'maxAttempts' => Utils::defaultNumber($runtime->maxAttempts, 3), + ], + 'backoff' => [ + 'policy' => Utils::defaultString($runtime->backoffPolicy, 'no'), + 'period' => Utils::defaultNumber($runtime->backoffPeriod, 1), + ], + 'ignoreSSL' => $runtime->ignoreSSL, + ]; + $_lastRequest = null; + $_lastException = null; + $_now = time(); + $_retryTimes = 0; + while (Tea::allowRetry(@$_runtime['retry'], $_retryTimes, $_now)) { + if ($_retryTimes > 0) { + $_backoffTime = Tea::getBackoffTime(@$_runtime['backoff'], $_retryTimes); + if ($_backoffTime > 0) { + Tea::sleep($_backoffTime); + } + } + $_retryTimes = $_retryTimes + 1; + + try { + $_request = new Request(); + $accessKeyId = $this->_credential->getAccessKeyId(); + $accessKeySecret = $this->_credential->getAccessKeySecret(); + $token = $this->_credential->getSecurityToken(); + $reqBody = XML::toXML(Tea::merge($request->body)); + $_request->protocol = $this->_protocol; + $_request->method = 'POST'; + $_request->pathname = '/?delete'; + $_request->headers = Tea::merge([ + 'host' => OSSUtils::getHost($request->bucketName, $this->_regionId, $this->_endpoint, $this->_hostModel), + 'date' => Utils::getDateUTCString(), + 'user-agent' => $this->getUserAgent(), + ], Utils::stringifyMapValue(Tea::merge($request->header))); + if (!Utils::empty_($token)) { + $_request->headers['x-oss-security-token'] = $token; + } + $_request->body = $reqBody; + if (!Utils::isUnset($request->header) && !Utils::empty_($request->header->contentMD5)) { + $_request->headers['content-md5'] = $request->header->contentMD5; + } else { + $_request->headers['content-md5'] = OSSUtils::getContentMD5($reqBody, $this->_isEnableMD5); + } + $_request->headers['authorization'] = OSSUtils::getSignature($_request, $request->bucketName, $accessKeyId, $accessKeySecret, $this->_signatureVersion, $this->_addtionalHeaders); + $_lastRequest = $_request; + $_response = Tea::send($_request, $_runtime); + $respMap = null; + $bodyStr = null; + if (Utils::is4xx($_response->statusCode) || Utils::is5xx($_response->statusCode)) { + $bodyStr = Utils::readAsString($_response->body); + $respMap = OSSUtils::getErrMessage($bodyStr); + + throw new TeaError([ + 'code' => @$respMap['Code'], + 'message' => @$respMap['Message'], + 'data' => [ + 'httpCode' => $_response->statusCode, + 'requestId' => @$respMap['RequestId'], + 'hostId' => @$respMap['HostId'], + ], + ]); + } + $bodyStr = Utils::readAsString($_response->body); + $respMap = XML::parseXml($bodyStr, DeleteMultipleObjectsResponse::class); + + return DeleteMultipleObjectsResponse::fromMap(Tea::merge([ + 'DeleteResult' => @$respMap['DeleteResult'], + ], $_response->headers)); + } catch (Exception $e) { + if (!($e instanceof TeaError)) { + $e = new TeaError([], $e->getMessage(), $e->getCode(), $e); + } + if (Tea::isRetryable($e)) { + $_lastException = $e; + + continue; + } + + throw $e; + } + } + + throw new TeaUnableRetryError($_lastRequest, $_lastException); + } + + /** + * @param PutBucketRefererRequest $request + * @param RuntimeOptions $runtime + * + * @throws TeaError + * @throws Exception + * @throws TeaUnableRetryError + * + * @return PutBucketRefererResponse + */ + public function putBucketReferer($request, $runtime) + { + $request->validate(); + $runtime->validate(); + $_runtime = [ + 'timeouted' => 'retry', + 'readTimeout' => Utils::defaultNumber($runtime->readTimeout, $this->_readTimeout), + 'connectTimeout' => Utils::defaultNumber($runtime->connectTimeout, $this->_connectTimeout), + 'localAddr' => Utils::defaultString($runtime->localAddr, $this->_localAddr), + 'httpProxy' => Utils::defaultString($runtime->httpProxy, $this->_httpProxy), + 'httpsProxy' => Utils::defaultString($runtime->httpsProxy, $this->_httpsProxy), + 'noProxy' => Utils::defaultString($runtime->noProxy, $this->_noProxy), + 'socks5Proxy' => Utils::defaultString($runtime->socks5Proxy, $this->_socks5Proxy), + 'socks5NetWork' => Utils::defaultString($runtime->socks5NetWork, $this->_socks5NetWork), + 'maxIdleConns' => Utils::defaultNumber($runtime->maxIdleConns, $this->_maxIdleConns), + 'retry' => [ + 'retryable' => $runtime->autoretry, + 'maxAttempts' => Utils::defaultNumber($runtime->maxAttempts, 3), + ], + 'backoff' => [ + 'policy' => Utils::defaultString($runtime->backoffPolicy, 'no'), + 'period' => Utils::defaultNumber($runtime->backoffPeriod, 1), + ], + 'ignoreSSL' => $runtime->ignoreSSL, + ]; + $_lastRequest = null; + $_lastException = null; + $_now = time(); + $_retryTimes = 0; + while (Tea::allowRetry(@$_runtime['retry'], $_retryTimes, $_now)) { + if ($_retryTimes > 0) { + $_backoffTime = Tea::getBackoffTime(@$_runtime['backoff'], $_retryTimes); + if ($_backoffTime > 0) { + Tea::sleep($_backoffTime); + } + } + $_retryTimes = $_retryTimes + 1; + + try { + $_request = new Request(); + $accessKeyId = $this->_credential->getAccessKeyId(); + $accessKeySecret = $this->_credential->getAccessKeySecret(); + $token = $this->_credential->getSecurityToken(); + $reqBody = XML::toXML(Tea::merge($request->body)); + $_request->protocol = $this->_protocol; + $_request->method = 'PUT'; + $_request->pathname = '/?referer'; + $_request->headers = [ + 'host' => OSSUtils::getHost($request->bucketName, $this->_regionId, $this->_endpoint, $this->_hostModel), + 'date' => Utils::getDateUTCString(), + 'user-agent' => $this->getUserAgent(), + ]; + if (!Utils::empty_($token)) { + $_request->headers['x-oss-security-token'] = $token; + } + $_request->body = $reqBody; + $_request->headers['authorization'] = OSSUtils::getSignature($_request, $request->bucketName, $accessKeyId, $accessKeySecret, $this->_signatureVersion, $this->_addtionalHeaders); + $_lastRequest = $_request; + $_response = Tea::send($_request, $_runtime); + $respMap = null; + $bodyStr = null; + if (Utils::is4xx($_response->statusCode) || Utils::is5xx($_response->statusCode)) { + $bodyStr = Utils::readAsString($_response->body); + $respMap = OSSUtils::getErrMessage($bodyStr); + + throw new TeaError([ + 'code' => @$respMap['Code'], + 'message' => @$respMap['Message'], + 'data' => [ + 'httpCode' => $_response->statusCode, + 'requestId' => @$respMap['RequestId'], + 'hostId' => @$respMap['HostId'], + ], + ]); + } + + return PutBucketRefererResponse::fromMap(Tea::merge($_response->headers)); + } catch (Exception $e) { + if (!($e instanceof TeaError)) { + $e = new TeaError([], $e->getMessage(), $e->getCode(), $e); + } + if (Tea::isRetryable($e)) { + $_lastException = $e; + + continue; + } + + throw $e; + } + } + + throw new TeaUnableRetryError($_lastRequest, $_lastException); + } + + /** + * @param PutBucketWebsiteRequest $request + * @param RuntimeOptions $runtime + * + * @throws TeaError + * @throws Exception + * @throws TeaUnableRetryError + * + * @return PutBucketWebsiteResponse + */ + public function putBucketWebsite($request, $runtime) + { + $request->validate(); + $runtime->validate(); + $_runtime = [ + 'timeouted' => 'retry', + 'readTimeout' => Utils::defaultNumber($runtime->readTimeout, $this->_readTimeout), + 'connectTimeout' => Utils::defaultNumber($runtime->connectTimeout, $this->_connectTimeout), + 'localAddr' => Utils::defaultString($runtime->localAddr, $this->_localAddr), + 'httpProxy' => Utils::defaultString($runtime->httpProxy, $this->_httpProxy), + 'httpsProxy' => Utils::defaultString($runtime->httpsProxy, $this->_httpsProxy), + 'noProxy' => Utils::defaultString($runtime->noProxy, $this->_noProxy), + 'socks5Proxy' => Utils::defaultString($runtime->socks5Proxy, $this->_socks5Proxy), + 'socks5NetWork' => Utils::defaultString($runtime->socks5NetWork, $this->_socks5NetWork), + 'maxIdleConns' => Utils::defaultNumber($runtime->maxIdleConns, $this->_maxIdleConns), + 'retry' => [ + 'retryable' => $runtime->autoretry, + 'maxAttempts' => Utils::defaultNumber($runtime->maxAttempts, 3), + ], + 'backoff' => [ + 'policy' => Utils::defaultString($runtime->backoffPolicy, 'no'), + 'period' => Utils::defaultNumber($runtime->backoffPeriod, 1), + ], + 'ignoreSSL' => $runtime->ignoreSSL, + ]; + $_lastRequest = null; + $_lastException = null; + $_now = time(); + $_retryTimes = 0; + while (Tea::allowRetry(@$_runtime['retry'], $_retryTimes, $_now)) { + if ($_retryTimes > 0) { + $_backoffTime = Tea::getBackoffTime(@$_runtime['backoff'], $_retryTimes); + if ($_backoffTime > 0) { + Tea::sleep($_backoffTime); + } + } + $_retryTimes = $_retryTimes + 1; + + try { + $_request = new Request(); + $accessKeyId = $this->_credential->getAccessKeyId(); + $accessKeySecret = $this->_credential->getAccessKeySecret(); + $token = $this->_credential->getSecurityToken(); + $reqBody = XML::toXML(Tea::merge($request->body)); + $_request->protocol = $this->_protocol; + $_request->method = 'PUT'; + $_request->pathname = '/?website'; + $_request->headers = [ + 'host' => OSSUtils::getHost($request->bucketName, $this->_regionId, $this->_endpoint, $this->_hostModel), + 'date' => Utils::getDateUTCString(), + 'user-agent' => $this->getUserAgent(), + ]; + if (!Utils::empty_($token)) { + $_request->headers['x-oss-security-token'] = $token; + } + $_request->body = $reqBody; + $_request->headers['authorization'] = OSSUtils::getSignature($_request, $request->bucketName, $accessKeyId, $accessKeySecret, $this->_signatureVersion, $this->_addtionalHeaders); + $_lastRequest = $_request; + $_response = Tea::send($_request, $_runtime); + $respMap = null; + $bodyStr = null; + if (Utils::is4xx($_response->statusCode) || Utils::is5xx($_response->statusCode)) { + $bodyStr = Utils::readAsString($_response->body); + $respMap = OSSUtils::getErrMessage($bodyStr); + + throw new TeaError([ + 'code' => @$respMap['Code'], + 'message' => @$respMap['Message'], + 'data' => [ + 'httpCode' => $_response->statusCode, + 'requestId' => @$respMap['RequestId'], + 'hostId' => @$respMap['HostId'], + ], + ]); + } + + return PutBucketWebsiteResponse::fromMap(Tea::merge($_response->headers)); + } catch (Exception $e) { + if (!($e instanceof TeaError)) { + $e = new TeaError([], $e->getMessage(), $e->getCode(), $e); + } + if (Tea::isRetryable($e)) { + $_lastException = $e; + + continue; + } + + throw $e; + } + } + + throw new TeaUnableRetryError($_lastRequest, $_lastException); + } + + /** + * @param CompleteMultipartUploadRequest $request + * @param RuntimeOptions $runtime + * + * @throws TeaError + * @throws Exception + * @throws TeaUnableRetryError + * + * @return CompleteMultipartUploadResponse + */ + public function completeMultipartUpload($request, $runtime) + { + $request->validate(); + $runtime->validate(); + $_runtime = [ + 'timeouted' => 'retry', + 'readTimeout' => Utils::defaultNumber($runtime->readTimeout, $this->_readTimeout), + 'connectTimeout' => Utils::defaultNumber($runtime->connectTimeout, $this->_connectTimeout), + 'localAddr' => Utils::defaultString($runtime->localAddr, $this->_localAddr), + 'httpProxy' => Utils::defaultString($runtime->httpProxy, $this->_httpProxy), + 'httpsProxy' => Utils::defaultString($runtime->httpsProxy, $this->_httpsProxy), + 'noProxy' => Utils::defaultString($runtime->noProxy, $this->_noProxy), + 'socks5Proxy' => Utils::defaultString($runtime->socks5Proxy, $this->_socks5Proxy), + 'socks5NetWork' => Utils::defaultString($runtime->socks5NetWork, $this->_socks5NetWork), + 'maxIdleConns' => Utils::defaultNumber($runtime->maxIdleConns, $this->_maxIdleConns), + 'retry' => [ + 'retryable' => $runtime->autoretry, + 'maxAttempts' => Utils::defaultNumber($runtime->maxAttempts, 3), + ], + 'backoff' => [ + 'policy' => Utils::defaultString($runtime->backoffPolicy, 'no'), + 'period' => Utils::defaultNumber($runtime->backoffPeriod, 1), + ], + 'ignoreSSL' => $runtime->ignoreSSL, + ]; + $_lastRequest = null; + $_lastException = null; + $_now = time(); + $_retryTimes = 0; + while (Tea::allowRetry(@$_runtime['retry'], $_retryTimes, $_now)) { + if ($_retryTimes > 0) { + $_backoffTime = Tea::getBackoffTime(@$_runtime['backoff'], $_retryTimes); + if ($_backoffTime > 0) { + Tea::sleep($_backoffTime); + } + } + $_retryTimes = $_retryTimes + 1; + + try { + $_request = new Request(); + $accessKeyId = $this->_credential->getAccessKeyId(); + $accessKeySecret = $this->_credential->getAccessKeySecret(); + $token = $this->_credential->getSecurityToken(); + $reqBody = XML::toXML(Tea::merge($request->body)); + $_request->protocol = $this->_protocol; + $_request->method = 'POST'; + $_request->pathname = '/' . $request->objectName . ''; + $_request->headers = [ + 'host' => OSSUtils::getHost($request->bucketName, $this->_regionId, $this->_endpoint, $this->_hostModel), + 'date' => Utils::getDateUTCString(), + 'user-agent' => $this->getUserAgent(), + ]; + if (!Utils::empty_($token)) { + $_request->headers['x-oss-security-token'] = $token; + } + $_request->query = Utils::stringifyMapValue(Tea::merge($request->filter)); + $_request->body = $reqBody; + $_request->headers['authorization'] = OSSUtils::getSignature($_request, $request->bucketName, $accessKeyId, $accessKeySecret, $this->_signatureVersion, $this->_addtionalHeaders); + $_lastRequest = $_request; + $_response = Tea::send($_request, $_runtime); + $respMap = null; + $bodyStr = null; + if (Utils::is4xx($_response->statusCode) || Utils::is5xx($_response->statusCode)) { + $bodyStr = Utils::readAsString($_response->body); + $respMap = OSSUtils::getErrMessage($bodyStr); + + throw new TeaError([ + 'code' => @$respMap['Code'], + 'message' => @$respMap['Message'], + 'data' => [ + 'httpCode' => $_response->statusCode, + 'requestId' => @$respMap['RequestId'], + 'hostId' => @$respMap['HostId'], + ], + ]); + } + $bodyStr = Utils::readAsString($_response->body); + $respMap = XML::parseXml($bodyStr, CompleteMultipartUploadResponse::class); + + return CompleteMultipartUploadResponse::fromMap(Tea::merge([ + 'CompleteMultipartUploadResult' => @$respMap['CompleteMultipartUploadResult'], + ], $_response->headers)); + } catch (Exception $e) { + if (!($e instanceof TeaError)) { + $e = new TeaError([], $e->getMessage(), $e->getCode(), $e); + } + if (Tea::isRetryable($e)) { + $_lastException = $e; + + continue; + } + + throw $e; + } + } + + throw new TeaUnableRetryError($_lastRequest, $_lastException); + } + + /** + * @param PutBucketLoggingRequest $request + * @param RuntimeOptions $runtime + * + * @throws TeaError + * @throws Exception + * @throws TeaUnableRetryError + * + * @return PutBucketLoggingResponse + */ + public function putBucketLogging($request, $runtime) + { + $request->validate(); + $runtime->validate(); + $_runtime = [ + 'timeouted' => 'retry', + 'readTimeout' => Utils::defaultNumber($runtime->readTimeout, $this->_readTimeout), + 'connectTimeout' => Utils::defaultNumber($runtime->connectTimeout, $this->_connectTimeout), + 'localAddr' => Utils::defaultString($runtime->localAddr, $this->_localAddr), + 'httpProxy' => Utils::defaultString($runtime->httpProxy, $this->_httpProxy), + 'httpsProxy' => Utils::defaultString($runtime->httpsProxy, $this->_httpsProxy), + 'noProxy' => Utils::defaultString($runtime->noProxy, $this->_noProxy), + 'socks5Proxy' => Utils::defaultString($runtime->socks5Proxy, $this->_socks5Proxy), + 'socks5NetWork' => Utils::defaultString($runtime->socks5NetWork, $this->_socks5NetWork), + 'maxIdleConns' => Utils::defaultNumber($runtime->maxIdleConns, $this->_maxIdleConns), + 'retry' => [ + 'retryable' => $runtime->autoretry, + 'maxAttempts' => Utils::defaultNumber($runtime->maxAttempts, 3), + ], + 'backoff' => [ + 'policy' => Utils::defaultString($runtime->backoffPolicy, 'no'), + 'period' => Utils::defaultNumber($runtime->backoffPeriod, 1), + ], + 'ignoreSSL' => $runtime->ignoreSSL, + ]; + $_lastRequest = null; + $_lastException = null; + $_now = time(); + $_retryTimes = 0; + while (Tea::allowRetry(@$_runtime['retry'], $_retryTimes, $_now)) { + if ($_retryTimes > 0) { + $_backoffTime = Tea::getBackoffTime(@$_runtime['backoff'], $_retryTimes); + if ($_backoffTime > 0) { + Tea::sleep($_backoffTime); + } + } + $_retryTimes = $_retryTimes + 1; + + try { + $_request = new Request(); + $accessKeyId = $this->_credential->getAccessKeyId(); + $accessKeySecret = $this->_credential->getAccessKeySecret(); + $token = $this->_credential->getSecurityToken(); + $reqBody = XML::toXML(Tea::merge($request->body)); + $_request->protocol = $this->_protocol; + $_request->method = 'PUT'; + $_request->pathname = '/?logging'; + $_request->headers = [ + 'host' => OSSUtils::getHost($request->bucketName, $this->_regionId, $this->_endpoint, $this->_hostModel), + 'date' => Utils::getDateUTCString(), + 'user-agent' => $this->getUserAgent(), + ]; + if (!Utils::empty_($token)) { + $_request->headers['x-oss-security-token'] = $token; + } + $_request->body = $reqBody; + $_request->headers['authorization'] = OSSUtils::getSignature($_request, $request->bucketName, $accessKeyId, $accessKeySecret, $this->_signatureVersion, $this->_addtionalHeaders); + $_lastRequest = $_request; + $_response = Tea::send($_request, $_runtime); + $respMap = null; + $bodyStr = null; + if (Utils::is4xx($_response->statusCode) || Utils::is5xx($_response->statusCode)) { + $bodyStr = Utils::readAsString($_response->body); + $respMap = OSSUtils::getErrMessage($bodyStr); + + throw new TeaError([ + 'code' => @$respMap['Code'], + 'message' => @$respMap['Message'], + 'data' => [ + 'httpCode' => $_response->statusCode, + 'requestId' => @$respMap['RequestId'], + 'hostId' => @$respMap['HostId'], + ], + ]); + } + + return PutBucketLoggingResponse::fromMap(Tea::merge($_response->headers)); + } catch (Exception $e) { + if (!($e instanceof TeaError)) { + $e = new TeaError([], $e->getMessage(), $e->getCode(), $e); + } + if (Tea::isRetryable($e)) { + $_lastException = $e; + + continue; + } + + throw $e; + } + } + + throw new TeaUnableRetryError($_lastRequest, $_lastException); + } + + /** + * @param PutBucketRequestPaymentRequest $request + * @param RuntimeOptions $runtime + * + * @throws TeaError + * @throws Exception + * @throws TeaUnableRetryError + * + * @return PutBucketRequestPaymentResponse + */ + public function putBucketRequestPayment($request, $runtime) + { + $request->validate(); + $runtime->validate(); + $_runtime = [ + 'timeouted' => 'retry', + 'readTimeout' => Utils::defaultNumber($runtime->readTimeout, $this->_readTimeout), + 'connectTimeout' => Utils::defaultNumber($runtime->connectTimeout, $this->_connectTimeout), + 'localAddr' => Utils::defaultString($runtime->localAddr, $this->_localAddr), + 'httpProxy' => Utils::defaultString($runtime->httpProxy, $this->_httpProxy), + 'httpsProxy' => Utils::defaultString($runtime->httpsProxy, $this->_httpsProxy), + 'noProxy' => Utils::defaultString($runtime->noProxy, $this->_noProxy), + 'socks5Proxy' => Utils::defaultString($runtime->socks5Proxy, $this->_socks5Proxy), + 'socks5NetWork' => Utils::defaultString($runtime->socks5NetWork, $this->_socks5NetWork), + 'maxIdleConns' => Utils::defaultNumber($runtime->maxIdleConns, $this->_maxIdleConns), + 'retry' => [ + 'retryable' => $runtime->autoretry, + 'maxAttempts' => Utils::defaultNumber($runtime->maxAttempts, 3), + ], + 'backoff' => [ + 'policy' => Utils::defaultString($runtime->backoffPolicy, 'no'), + 'period' => Utils::defaultNumber($runtime->backoffPeriod, 1), + ], + 'ignoreSSL' => $runtime->ignoreSSL, + ]; + $_lastRequest = null; + $_lastException = null; + $_now = time(); + $_retryTimes = 0; + while (Tea::allowRetry(@$_runtime['retry'], $_retryTimes, $_now)) { + if ($_retryTimes > 0) { + $_backoffTime = Tea::getBackoffTime(@$_runtime['backoff'], $_retryTimes); + if ($_backoffTime > 0) { + Tea::sleep($_backoffTime); + } + } + $_retryTimes = $_retryTimes + 1; + + try { + $_request = new Request(); + $accessKeyId = $this->_credential->getAccessKeyId(); + $accessKeySecret = $this->_credential->getAccessKeySecret(); + $token = $this->_credential->getSecurityToken(); + $reqBody = XML::toXML(Tea::merge($request->body)); + $_request->protocol = $this->_protocol; + $_request->method = 'PUT'; + $_request->pathname = '/?requestPayment'; + $_request->headers = [ + 'host' => OSSUtils::getHost($request->bucketName, $this->_regionId, $this->_endpoint, $this->_hostModel), + 'date' => Utils::getDateUTCString(), + 'user-agent' => $this->getUserAgent(), + ]; + if (!Utils::empty_($token)) { + $_request->headers['x-oss-security-token'] = $token; + } + $_request->body = $reqBody; + $_request->headers['authorization'] = OSSUtils::getSignature($_request, $request->bucketName, $accessKeyId, $accessKeySecret, $this->_signatureVersion, $this->_addtionalHeaders); + $_lastRequest = $_request; + $_response = Tea::send($_request, $_runtime); + $respMap = null; + $bodyStr = null; + if (Utils::is4xx($_response->statusCode) || Utils::is5xx($_response->statusCode)) { + $bodyStr = Utils::readAsString($_response->body); + $respMap = OSSUtils::getErrMessage($bodyStr); + + throw new TeaError([ + 'code' => @$respMap['Code'], + 'message' => @$respMap['Message'], + 'data' => [ + 'httpCode' => $_response->statusCode, + 'requestId' => @$respMap['RequestId'], + 'hostId' => @$respMap['HostId'], + ], + ]); + } + + return PutBucketRequestPaymentResponse::fromMap(Tea::merge($_response->headers)); + } catch (Exception $e) { + if (!($e instanceof TeaError)) { + $e = new TeaError([], $e->getMessage(), $e->getCode(), $e); + } + if (Tea::isRetryable($e)) { + $_lastException = $e; + + continue; + } + + throw $e; + } + } + + throw new TeaUnableRetryError($_lastRequest, $_lastException); + } + + /** + * @param PutBucketEncryptionRequest $request + * @param RuntimeOptions $runtime + * + * @throws TeaError + * @throws Exception + * @throws TeaUnableRetryError + * + * @return PutBucketEncryptionResponse + */ + public function putBucketEncryption($request, $runtime) + { + $request->validate(); + $runtime->validate(); + $_runtime = [ + 'timeouted' => 'retry', + 'readTimeout' => Utils::defaultNumber($runtime->readTimeout, $this->_readTimeout), + 'connectTimeout' => Utils::defaultNumber($runtime->connectTimeout, $this->_connectTimeout), + 'localAddr' => Utils::defaultString($runtime->localAddr, $this->_localAddr), + 'httpProxy' => Utils::defaultString($runtime->httpProxy, $this->_httpProxy), + 'httpsProxy' => Utils::defaultString($runtime->httpsProxy, $this->_httpsProxy), + 'noProxy' => Utils::defaultString($runtime->noProxy, $this->_noProxy), + 'socks5Proxy' => Utils::defaultString($runtime->socks5Proxy, $this->_socks5Proxy), + 'socks5NetWork' => Utils::defaultString($runtime->socks5NetWork, $this->_socks5NetWork), + 'maxIdleConns' => Utils::defaultNumber($runtime->maxIdleConns, $this->_maxIdleConns), + 'retry' => [ + 'retryable' => $runtime->autoretry, + 'maxAttempts' => Utils::defaultNumber($runtime->maxAttempts, 3), + ], + 'backoff' => [ + 'policy' => Utils::defaultString($runtime->backoffPolicy, 'no'), + 'period' => Utils::defaultNumber($runtime->backoffPeriod, 1), + ], + 'ignoreSSL' => $runtime->ignoreSSL, + ]; + $_lastRequest = null; + $_lastException = null; + $_now = time(); + $_retryTimes = 0; + while (Tea::allowRetry(@$_runtime['retry'], $_retryTimes, $_now)) { + if ($_retryTimes > 0) { + $_backoffTime = Tea::getBackoffTime(@$_runtime['backoff'], $_retryTimes); + if ($_backoffTime > 0) { + Tea::sleep($_backoffTime); + } + } + $_retryTimes = $_retryTimes + 1; + + try { + $_request = new Request(); + $accessKeyId = $this->_credential->getAccessKeyId(); + $accessKeySecret = $this->_credential->getAccessKeySecret(); + $token = $this->_credential->getSecurityToken(); + $reqBody = XML::toXML(Tea::merge($request->body)); + $_request->protocol = $this->_protocol; + $_request->method = 'PUT'; + $_request->pathname = '/?encryption'; + $_request->headers = [ + 'host' => OSSUtils::getHost($request->bucketName, $this->_regionId, $this->_endpoint, $this->_hostModel), + 'date' => Utils::getDateUTCString(), + 'user-agent' => $this->getUserAgent(), + ]; + if (!Utils::empty_($token)) { + $_request->headers['x-oss-security-token'] = $token; + } + $_request->body = $reqBody; + $_request->headers['authorization'] = OSSUtils::getSignature($_request, $request->bucketName, $accessKeyId, $accessKeySecret, $this->_signatureVersion, $this->_addtionalHeaders); + $_lastRequest = $_request; + $_response = Tea::send($_request, $_runtime); + $respMap = null; + $bodyStr = null; + if (Utils::is4xx($_response->statusCode) || Utils::is5xx($_response->statusCode)) { + $bodyStr = Utils::readAsString($_response->body); + $respMap = OSSUtils::getErrMessage($bodyStr); + + throw new TeaError([ + 'code' => @$respMap['Code'], + 'message' => @$respMap['Message'], + 'data' => [ + 'httpCode' => $_response->statusCode, + 'requestId' => @$respMap['RequestId'], + 'hostId' => @$respMap['HostId'], + ], + ]); + } + + return PutBucketEncryptionResponse::fromMap(Tea::merge($_response->headers)); + } catch (Exception $e) { + if (!($e instanceof TeaError)) { + $e = new TeaError([], $e->getMessage(), $e->getCode(), $e); + } + if (Tea::isRetryable($e)) { + $_lastException = $e; + + continue; + } + + throw $e; + } + } + + throw new TeaUnableRetryError($_lastRequest, $_lastException); + } + + /** + * @param PutLiveChannelRequest $request + * @param RuntimeOptions $runtime + * + * @throws TeaError + * @throws Exception + * @throws TeaUnableRetryError + * + * @return PutLiveChannelResponse + */ + public function putLiveChannel($request, $runtime) + { + $request->validate(); + $runtime->validate(); + $_runtime = [ + 'timeouted' => 'retry', + 'readTimeout' => Utils::defaultNumber($runtime->readTimeout, $this->_readTimeout), + 'connectTimeout' => Utils::defaultNumber($runtime->connectTimeout, $this->_connectTimeout), + 'localAddr' => Utils::defaultString($runtime->localAddr, $this->_localAddr), + 'httpProxy' => Utils::defaultString($runtime->httpProxy, $this->_httpProxy), + 'httpsProxy' => Utils::defaultString($runtime->httpsProxy, $this->_httpsProxy), + 'noProxy' => Utils::defaultString($runtime->noProxy, $this->_noProxy), + 'socks5Proxy' => Utils::defaultString($runtime->socks5Proxy, $this->_socks5Proxy), + 'socks5NetWork' => Utils::defaultString($runtime->socks5NetWork, $this->_socks5NetWork), + 'maxIdleConns' => Utils::defaultNumber($runtime->maxIdleConns, $this->_maxIdleConns), + 'retry' => [ + 'retryable' => $runtime->autoretry, + 'maxAttempts' => Utils::defaultNumber($runtime->maxAttempts, 3), + ], + 'backoff' => [ + 'policy' => Utils::defaultString($runtime->backoffPolicy, 'no'), + 'period' => Utils::defaultNumber($runtime->backoffPeriod, 1), + ], + 'ignoreSSL' => $runtime->ignoreSSL, + ]; + $_lastRequest = null; + $_lastException = null; + $_now = time(); + $_retryTimes = 0; + while (Tea::allowRetry(@$_runtime['retry'], $_retryTimes, $_now)) { + if ($_retryTimes > 0) { + $_backoffTime = Tea::getBackoffTime(@$_runtime['backoff'], $_retryTimes); + if ($_backoffTime > 0) { + Tea::sleep($_backoffTime); + } + } + $_retryTimes = $_retryTimes + 1; + + try { + $_request = new Request(); + $accessKeyId = $this->_credential->getAccessKeyId(); + $accessKeySecret = $this->_credential->getAccessKeySecret(); + $token = $this->_credential->getSecurityToken(); + $reqBody = XML::toXML(Tea::merge($request->body)); + $_request->protocol = $this->_protocol; + $_request->method = 'PUT'; + $_request->pathname = '/' . $request->channelName . '?live'; + $_request->headers = [ + 'host' => OSSUtils::getHost($request->bucketName, $this->_regionId, $this->_endpoint, $this->_hostModel), + 'date' => Utils::getDateUTCString(), + 'user-agent' => $this->getUserAgent(), + ]; + if (!Utils::empty_($token)) { + $_request->headers['x-oss-security-token'] = $token; + } + $_request->body = $reqBody; + $_request->headers['authorization'] = OSSUtils::getSignature($_request, $request->bucketName, $accessKeyId, $accessKeySecret, $this->_signatureVersion, $this->_addtionalHeaders); + $_lastRequest = $_request; + $_response = Tea::send($_request, $_runtime); + $respMap = null; + $bodyStr = null; + if (Utils::is4xx($_response->statusCode) || Utils::is5xx($_response->statusCode)) { + $bodyStr = Utils::readAsString($_response->body); + $respMap = OSSUtils::getErrMessage($bodyStr); + + throw new TeaError([ + 'code' => @$respMap['Code'], + 'message' => @$respMap['Message'], + 'data' => [ + 'httpCode' => $_response->statusCode, + 'requestId' => @$respMap['RequestId'], + 'hostId' => @$respMap['HostId'], + ], + ]); + } + $bodyStr = Utils::readAsString($_response->body); + $respMap = XML::parseXml($bodyStr, PutLiveChannelResponse::class); + + return PutLiveChannelResponse::fromMap(Tea::merge([ + 'CreateLiveChannelResult' => @$respMap['CreateLiveChannelResult'], + ], $_response->headers)); + } catch (Exception $e) { + if (!($e instanceof TeaError)) { + $e = new TeaError([], $e->getMessage(), $e->getCode(), $e); + } + if (Tea::isRetryable($e)) { + $_lastException = $e; + + continue; + } + + throw $e; + } + } + + throw new TeaUnableRetryError($_lastRequest, $_lastException); + } + + /** + * @param PutBucketTagsRequest $request + * @param RuntimeOptions $runtime + * + * @throws TeaError + * @throws Exception + * @throws TeaUnableRetryError + * + * @return PutBucketTagsResponse + */ + public function putBucketTags($request, $runtime) + { + $request->validate(); + $runtime->validate(); + $_runtime = [ + 'timeouted' => 'retry', + 'readTimeout' => Utils::defaultNumber($runtime->readTimeout, $this->_readTimeout), + 'connectTimeout' => Utils::defaultNumber($runtime->connectTimeout, $this->_connectTimeout), + 'localAddr' => Utils::defaultString($runtime->localAddr, $this->_localAddr), + 'httpProxy' => Utils::defaultString($runtime->httpProxy, $this->_httpProxy), + 'httpsProxy' => Utils::defaultString($runtime->httpsProxy, $this->_httpsProxy), + 'noProxy' => Utils::defaultString($runtime->noProxy, $this->_noProxy), + 'socks5Proxy' => Utils::defaultString($runtime->socks5Proxy, $this->_socks5Proxy), + 'socks5NetWork' => Utils::defaultString($runtime->socks5NetWork, $this->_socks5NetWork), + 'maxIdleConns' => Utils::defaultNumber($runtime->maxIdleConns, $this->_maxIdleConns), + 'retry' => [ + 'retryable' => $runtime->autoretry, + 'maxAttempts' => Utils::defaultNumber($runtime->maxAttempts, 3), + ], + 'backoff' => [ + 'policy' => Utils::defaultString($runtime->backoffPolicy, 'no'), + 'period' => Utils::defaultNumber($runtime->backoffPeriod, 1), + ], + 'ignoreSSL' => $runtime->ignoreSSL, + ]; + $_lastRequest = null; + $_lastException = null; + $_now = time(); + $_retryTimes = 0; + while (Tea::allowRetry(@$_runtime['retry'], $_retryTimes, $_now)) { + if ($_retryTimes > 0) { + $_backoffTime = Tea::getBackoffTime(@$_runtime['backoff'], $_retryTimes); + if ($_backoffTime > 0) { + Tea::sleep($_backoffTime); + } + } + $_retryTimes = $_retryTimes + 1; + + try { + $_request = new Request(); + $accessKeyId = $this->_credential->getAccessKeyId(); + $accessKeySecret = $this->_credential->getAccessKeySecret(); + $token = $this->_credential->getSecurityToken(); + $reqBody = XML::toXML(Tea::merge($request->body)); + $_request->protocol = $this->_protocol; + $_request->method = 'PUT'; + $_request->pathname = '/?tagging'; + $_request->headers = [ + 'host' => OSSUtils::getHost($request->bucketName, $this->_regionId, $this->_endpoint, $this->_hostModel), + 'date' => Utils::getDateUTCString(), + 'user-agent' => $this->getUserAgent(), + ]; + if (!Utils::empty_($token)) { + $_request->headers['x-oss-security-token'] = $token; + } + $_request->body = $reqBody; + $_request->headers['authorization'] = OSSUtils::getSignature($_request, $request->bucketName, $accessKeyId, $accessKeySecret, $this->_signatureVersion, $this->_addtionalHeaders); + $_lastRequest = $_request; + $_response = Tea::send($_request, $_runtime); + $respMap = null; + $bodyStr = null; + if (Utils::is4xx($_response->statusCode) || Utils::is5xx($_response->statusCode)) { + $bodyStr = Utils::readAsString($_response->body); + $respMap = OSSUtils::getErrMessage($bodyStr); + + throw new TeaError([ + 'code' => @$respMap['Code'], + 'message' => @$respMap['Message'], + 'data' => [ + 'httpCode' => $_response->statusCode, + 'requestId' => @$respMap['RequestId'], + 'hostId' => @$respMap['HostId'], + ], + ]); + } + + return PutBucketTagsResponse::fromMap(Tea::merge($_response->headers)); + } catch (Exception $e) { + if (!($e instanceof TeaError)) { + $e = new TeaError([], $e->getMessage(), $e->getCode(), $e); + } + if (Tea::isRetryable($e)) { + $_lastException = $e; + + continue; + } + + throw $e; + } + } + + throw new TeaUnableRetryError($_lastRequest, $_lastException); + } + + /** + * @param PutObjectTaggingRequest $request + * @param RuntimeOptions $runtime + * + * @throws TeaError + * @throws Exception + * @throws TeaUnableRetryError + * + * @return PutObjectTaggingResponse + */ + public function putObjectTagging($request, $runtime) + { + $request->validate(); + $runtime->validate(); + $_runtime = [ + 'timeouted' => 'retry', + 'readTimeout' => Utils::defaultNumber($runtime->readTimeout, $this->_readTimeout), + 'connectTimeout' => Utils::defaultNumber($runtime->connectTimeout, $this->_connectTimeout), + 'localAddr' => Utils::defaultString($runtime->localAddr, $this->_localAddr), + 'httpProxy' => Utils::defaultString($runtime->httpProxy, $this->_httpProxy), + 'httpsProxy' => Utils::defaultString($runtime->httpsProxy, $this->_httpsProxy), + 'noProxy' => Utils::defaultString($runtime->noProxy, $this->_noProxy), + 'socks5Proxy' => Utils::defaultString($runtime->socks5Proxy, $this->_socks5Proxy), + 'socks5NetWork' => Utils::defaultString($runtime->socks5NetWork, $this->_socks5NetWork), + 'maxIdleConns' => Utils::defaultNumber($runtime->maxIdleConns, $this->_maxIdleConns), + 'retry' => [ + 'retryable' => $runtime->autoretry, + 'maxAttempts' => Utils::defaultNumber($runtime->maxAttempts, 3), + ], + 'backoff' => [ + 'policy' => Utils::defaultString($runtime->backoffPolicy, 'no'), + 'period' => Utils::defaultNumber($runtime->backoffPeriod, 1), + ], + 'ignoreSSL' => $runtime->ignoreSSL, + ]; + $_lastRequest = null; + $_lastException = null; + $_now = time(); + $_retryTimes = 0; + while (Tea::allowRetry(@$_runtime['retry'], $_retryTimes, $_now)) { + if ($_retryTimes > 0) { + $_backoffTime = Tea::getBackoffTime(@$_runtime['backoff'], $_retryTimes); + if ($_backoffTime > 0) { + Tea::sleep($_backoffTime); + } + } + $_retryTimes = $_retryTimes + 1; + + try { + $_request = new Request(); + $accessKeyId = $this->_credential->getAccessKeyId(); + $accessKeySecret = $this->_credential->getAccessKeySecret(); + $token = $this->_credential->getSecurityToken(); + $reqBody = XML::toXML(Tea::merge($request->body)); + $_request->protocol = $this->_protocol; + $_request->method = 'PUT'; + $_request->pathname = '/' . $request->objectName . '?tagging'; + $_request->headers = [ + 'host' => OSSUtils::getHost($request->bucketName, $this->_regionId, $this->_endpoint, $this->_hostModel), + 'date' => Utils::getDateUTCString(), + 'user-agent' => $this->getUserAgent(), + ]; + if (!Utils::empty_($token)) { + $_request->headers['x-oss-security-token'] = $token; + } + $_request->body = $reqBody; + $_request->headers['authorization'] = OSSUtils::getSignature($_request, $request->bucketName, $accessKeyId, $accessKeySecret, $this->_signatureVersion, $this->_addtionalHeaders); + $_lastRequest = $_request; + $_response = Tea::send($_request, $_runtime); + $respMap = null; + $bodyStr = null; + if (Utils::is4xx($_response->statusCode) || Utils::is5xx($_response->statusCode)) { + $bodyStr = Utils::readAsString($_response->body); + $respMap = OSSUtils::getErrMessage($bodyStr); + + throw new TeaError([ + 'code' => @$respMap['Code'], + 'message' => @$respMap['Message'], + 'data' => [ + 'httpCode' => $_response->statusCode, + 'requestId' => @$respMap['RequestId'], + 'hostId' => @$respMap['HostId'], + ], + ]); + } + + return PutObjectTaggingResponse::fromMap(Tea::merge($_response->headers)); + } catch (Exception $e) { + if (!($e instanceof TeaError)) { + $e = new TeaError([], $e->getMessage(), $e->getCode(), $e); + } + if (Tea::isRetryable($e)) { + $_lastException = $e; + + continue; + } + + throw $e; + } + } + + throw new TeaUnableRetryError($_lastRequest, $_lastException); + } + + /** + * @param SelectObjectRequest $request + * @param RuntimeOptions $runtime + * + * @throws TeaError + * @throws Exception + * @throws TeaUnableRetryError + * + * @return SelectObjectResponse + */ + public function selectObject($request, $runtime) + { + $request->validate(); + $runtime->validate(); + $_runtime = [ + 'timeouted' => 'retry', + 'readTimeout' => Utils::defaultNumber($runtime->readTimeout, $this->_readTimeout), + 'connectTimeout' => Utils::defaultNumber($runtime->connectTimeout, $this->_connectTimeout), + 'localAddr' => Utils::defaultString($runtime->localAddr, $this->_localAddr), + 'httpProxy' => Utils::defaultString($runtime->httpProxy, $this->_httpProxy), + 'httpsProxy' => Utils::defaultString($runtime->httpsProxy, $this->_httpsProxy), + 'noProxy' => Utils::defaultString($runtime->noProxy, $this->_noProxy), + 'socks5Proxy' => Utils::defaultString($runtime->socks5Proxy, $this->_socks5Proxy), + 'socks5NetWork' => Utils::defaultString($runtime->socks5NetWork, $this->_socks5NetWork), + 'maxIdleConns' => Utils::defaultNumber($runtime->maxIdleConns, $this->_maxIdleConns), + 'retry' => [ + 'retryable' => $runtime->autoretry, + 'maxAttempts' => Utils::defaultNumber($runtime->maxAttempts, 3), + ], + 'backoff' => [ + 'policy' => Utils::defaultString($runtime->backoffPolicy, 'no'), + 'period' => Utils::defaultNumber($runtime->backoffPeriod, 1), + ], + 'ignoreSSL' => $runtime->ignoreSSL, + ]; + $_lastRequest = null; + $_lastException = null; + $_now = time(); + $_retryTimes = 0; + while (Tea::allowRetry(@$_runtime['retry'], $_retryTimes, $_now)) { + if ($_retryTimes > 0) { + $_backoffTime = Tea::getBackoffTime(@$_runtime['backoff'], $_retryTimes); + if ($_backoffTime > 0) { + Tea::sleep($_backoffTime); + } + } + $_retryTimes = $_retryTimes + 1; + + try { + $_request = new Request(); + $accessKeyId = $this->_credential->getAccessKeyId(); + $accessKeySecret = $this->_credential->getAccessKeySecret(); + $token = $this->_credential->getSecurityToken(); + $reqBody = XML::toXML(Tea::merge($request->body)); + $_request->protocol = $this->_protocol; + $_request->method = 'POST'; + $_request->pathname = '/' . $request->objectName . ''; + $_request->headers = [ + 'host' => OSSUtils::getHost($request->bucketName, $this->_regionId, $this->_endpoint, $this->_hostModel), + 'date' => Utils::getDateUTCString(), + 'user-agent' => $this->getUserAgent(), + ]; + if (!Utils::empty_($token)) { + $_request->headers['x-oss-security-token'] = $token; + } + $_request->query = Utils::stringifyMapValue(Tea::merge($request->filter)); + $_request->body = $reqBody; + $_request->headers['authorization'] = OSSUtils::getSignature($_request, $request->bucketName, $accessKeyId, $accessKeySecret, $this->_signatureVersion, $this->_addtionalHeaders); + $_lastRequest = $_request; + $_response = Tea::send($_request, $_runtime); + $respMap = null; + $bodyStr = null; + if (Utils::is4xx($_response->statusCode) || Utils::is5xx($_response->statusCode)) { + $bodyStr = Utils::readAsString($_response->body); + $respMap = OSSUtils::getErrMessage($bodyStr); + + throw new TeaError([ + 'code' => @$respMap['Code'], + 'message' => @$respMap['Message'], + 'data' => [ + 'httpCode' => $_response->statusCode, + 'requestId' => @$respMap['RequestId'], + 'hostId' => @$respMap['HostId'], + ], + ]); + } + + return SelectObjectResponse::fromMap(Tea::merge($_response->headers)); + } catch (Exception $e) { + if (!($e instanceof TeaError)) { + $e = new TeaError([], $e->getMessage(), $e->getCode(), $e); + } + if (Tea::isRetryable($e)) { + $_lastException = $e; + + continue; + } + + throw $e; + } + } + + throw new TeaUnableRetryError($_lastRequest, $_lastException); + } + + /** + * @param PutBucketCORSRequest $request + * @param RuntimeOptions $runtime + * + * @throws TeaError + * @throws Exception + * @throws TeaUnableRetryError + * + * @return PutBucketCORSResponse + */ + public function putBucketCORS($request, $runtime) + { + $request->validate(); + $runtime->validate(); + $_runtime = [ + 'timeouted' => 'retry', + 'readTimeout' => Utils::defaultNumber($runtime->readTimeout, $this->_readTimeout), + 'connectTimeout' => Utils::defaultNumber($runtime->connectTimeout, $this->_connectTimeout), + 'localAddr' => Utils::defaultString($runtime->localAddr, $this->_localAddr), + 'httpProxy' => Utils::defaultString($runtime->httpProxy, $this->_httpProxy), + 'httpsProxy' => Utils::defaultString($runtime->httpsProxy, $this->_httpsProxy), + 'noProxy' => Utils::defaultString($runtime->noProxy, $this->_noProxy), + 'socks5Proxy' => Utils::defaultString($runtime->socks5Proxy, $this->_socks5Proxy), + 'socks5NetWork' => Utils::defaultString($runtime->socks5NetWork, $this->_socks5NetWork), + 'maxIdleConns' => Utils::defaultNumber($runtime->maxIdleConns, $this->_maxIdleConns), + 'retry' => [ + 'retryable' => $runtime->autoretry, + 'maxAttempts' => Utils::defaultNumber($runtime->maxAttempts, 3), + ], + 'backoff' => [ + 'policy' => Utils::defaultString($runtime->backoffPolicy, 'no'), + 'period' => Utils::defaultNumber($runtime->backoffPeriod, 1), + ], + 'ignoreSSL' => $runtime->ignoreSSL, + ]; + $_lastRequest = null; + $_lastException = null; + $_now = time(); + $_retryTimes = 0; + while (Tea::allowRetry(@$_runtime['retry'], $_retryTimes, $_now)) { + if ($_retryTimes > 0) { + $_backoffTime = Tea::getBackoffTime(@$_runtime['backoff'], $_retryTimes); + if ($_backoffTime > 0) { + Tea::sleep($_backoffTime); + } + } + $_retryTimes = $_retryTimes + 1; + + try { + $_request = new Request(); + $accessKeyId = $this->_credential->getAccessKeyId(); + $accessKeySecret = $this->_credential->getAccessKeySecret(); + $token = $this->_credential->getSecurityToken(); + $reqBody = XML::toXML(Tea::merge($request->body)); + $_request->protocol = $this->_protocol; + $_request->method = 'PUT'; + $_request->pathname = '/?cors'; + $_request->headers = [ + 'host' => OSSUtils::getHost($request->bucketName, $this->_regionId, $this->_endpoint, $this->_hostModel), + 'date' => Utils::getDateUTCString(), + 'user-agent' => $this->getUserAgent(), + ]; + if (!Utils::empty_($token)) { + $_request->headers['x-oss-security-token'] = $token; + } + $_request->body = $reqBody; + $_request->headers['authorization'] = OSSUtils::getSignature($_request, $request->bucketName, $accessKeyId, $accessKeySecret, $this->_signatureVersion, $this->_addtionalHeaders); + $_lastRequest = $_request; + $_response = Tea::send($_request, $_runtime); + $respMap = null; + $bodyStr = null; + if (Utils::is4xx($_response->statusCode) || Utils::is5xx($_response->statusCode)) { + $bodyStr = Utils::readAsString($_response->body); + $respMap = OSSUtils::getErrMessage($bodyStr); + + throw new TeaError([ + 'code' => @$respMap['Code'], + 'message' => @$respMap['Message'], + 'data' => [ + 'httpCode' => $_response->statusCode, + 'requestId' => @$respMap['RequestId'], + 'hostId' => @$respMap['HostId'], + ], + ]); + } + + return PutBucketCORSResponse::fromMap(Tea::merge($_response->headers)); + } catch (Exception $e) { + if (!($e instanceof TeaError)) { + $e = new TeaError([], $e->getMessage(), $e->getCode(), $e); + } + if (Tea::isRetryable($e)) { + $_lastException = $e; + + continue; + } + + throw $e; + } + } + + throw new TeaUnableRetryError($_lastRequest, $_lastException); + } + + /** + * @param PutBucketRequest $request + * @param RuntimeOptions $runtime + * + * @throws TeaError + * @throws Exception + * @throws TeaUnableRetryError + * + * @return PutBucketResponse + */ + public function putBucket($request, $runtime) + { + $request->validate(); + $runtime->validate(); + $_runtime = [ + 'timeouted' => 'retry', + 'readTimeout' => Utils::defaultNumber($runtime->readTimeout, $this->_readTimeout), + 'connectTimeout' => Utils::defaultNumber($runtime->connectTimeout, $this->_connectTimeout), + 'localAddr' => Utils::defaultString($runtime->localAddr, $this->_localAddr), + 'httpProxy' => Utils::defaultString($runtime->httpProxy, $this->_httpProxy), + 'httpsProxy' => Utils::defaultString($runtime->httpsProxy, $this->_httpsProxy), + 'noProxy' => Utils::defaultString($runtime->noProxy, $this->_noProxy), + 'socks5Proxy' => Utils::defaultString($runtime->socks5Proxy, $this->_socks5Proxy), + 'socks5NetWork' => Utils::defaultString($runtime->socks5NetWork, $this->_socks5NetWork), + 'maxIdleConns' => Utils::defaultNumber($runtime->maxIdleConns, $this->_maxIdleConns), + 'retry' => [ + 'retryable' => $runtime->autoretry, + 'maxAttempts' => Utils::defaultNumber($runtime->maxAttempts, 3), + ], + 'backoff' => [ + 'policy' => Utils::defaultString($runtime->backoffPolicy, 'no'), + 'period' => Utils::defaultNumber($runtime->backoffPeriod, 1), + ], + 'ignoreSSL' => $runtime->ignoreSSL, + ]; + $_lastRequest = null; + $_lastException = null; + $_now = time(); + $_retryTimes = 0; + while (Tea::allowRetry(@$_runtime['retry'], $_retryTimes, $_now)) { + if ($_retryTimes > 0) { + $_backoffTime = Tea::getBackoffTime(@$_runtime['backoff'], $_retryTimes); + if ($_backoffTime > 0) { + Tea::sleep($_backoffTime); + } + } + $_retryTimes = $_retryTimes + 1; + + try { + $_request = new Request(); + $accessKeyId = $this->_credential->getAccessKeyId(); + $accessKeySecret = $this->_credential->getAccessKeySecret(); + $token = $this->_credential->getSecurityToken(); + $reqBody = XML::toXML(Tea::merge($request->body)); + $_request->protocol = $this->_protocol; + $_request->method = 'PUT'; + $_request->pathname = '/'; + $_request->headers = Tea::merge([ + 'host' => OSSUtils::getHost($request->bucketName, $this->_regionId, $this->_endpoint, $this->_hostModel), + 'date' => Utils::getDateUTCString(), + 'user-agent' => $this->getUserAgent(), + ], Utils::stringifyMapValue(Tea::merge($request->header))); + if (!Utils::empty_($token)) { + $_request->headers['x-oss-security-token'] = $token; + } + $_request->body = $reqBody; + $_request->headers['authorization'] = OSSUtils::getSignature($_request, $request->bucketName, $accessKeyId, $accessKeySecret, $this->_signatureVersion, $this->_addtionalHeaders); + $_lastRequest = $_request; + $_response = Tea::send($_request, $_runtime); + $respMap = null; + $bodyStr = null; + if (Utils::is4xx($_response->statusCode) || Utils::is5xx($_response->statusCode)) { + $bodyStr = Utils::readAsString($_response->body); + $respMap = OSSUtils::getErrMessage($bodyStr); + + throw new TeaError([ + 'code' => @$respMap['Code'], + 'message' => @$respMap['Message'], + 'data' => [ + 'httpCode' => $_response->statusCode, + 'requestId' => @$respMap['RequestId'], + 'hostId' => @$respMap['HostId'], + ], + ]); + } + + return PutBucketResponse::fromMap(Tea::merge($_response->headers)); + } catch (Exception $e) { + if (!($e instanceof TeaError)) { + $e = new TeaError([], $e->getMessage(), $e->getCode(), $e); + } + if (Tea::isRetryable($e)) { + $_lastException = $e; + + continue; + } + + throw $e; + } + } + + throw new TeaUnableRetryError($_lastRequest, $_lastException); + } + + /** + * @param ListMultipartUploadsRequest $request + * @param RuntimeOptions $runtime + * + * @throws TeaError + * @throws Exception + * @throws TeaUnableRetryError + * + * @return ListMultipartUploadsResponse + */ + public function listMultipartUploads($request, $runtime) + { + $request->validate(); + $runtime->validate(); + $_runtime = [ + 'timeouted' => 'retry', + 'readTimeout' => Utils::defaultNumber($runtime->readTimeout, $this->_readTimeout), + 'connectTimeout' => Utils::defaultNumber($runtime->connectTimeout, $this->_connectTimeout), + 'localAddr' => Utils::defaultString($runtime->localAddr, $this->_localAddr), + 'httpProxy' => Utils::defaultString($runtime->httpProxy, $this->_httpProxy), + 'httpsProxy' => Utils::defaultString($runtime->httpsProxy, $this->_httpsProxy), + 'noProxy' => Utils::defaultString($runtime->noProxy, $this->_noProxy), + 'socks5Proxy' => Utils::defaultString($runtime->socks5Proxy, $this->_socks5Proxy), + 'socks5NetWork' => Utils::defaultString($runtime->socks5NetWork, $this->_socks5NetWork), + 'maxIdleConns' => Utils::defaultNumber($runtime->maxIdleConns, $this->_maxIdleConns), + 'retry' => [ + 'retryable' => $runtime->autoretry, + 'maxAttempts' => Utils::defaultNumber($runtime->maxAttempts, 3), + ], + 'backoff' => [ + 'policy' => Utils::defaultString($runtime->backoffPolicy, 'no'), + 'period' => Utils::defaultNumber($runtime->backoffPeriod, 1), + ], + 'ignoreSSL' => $runtime->ignoreSSL, + ]; + $_lastRequest = null; + $_lastException = null; + $_now = time(); + $_retryTimes = 0; + while (Tea::allowRetry(@$_runtime['retry'], $_retryTimes, $_now)) { + if ($_retryTimes > 0) { + $_backoffTime = Tea::getBackoffTime(@$_runtime['backoff'], $_retryTimes); + if ($_backoffTime > 0) { + Tea::sleep($_backoffTime); + } + } + $_retryTimes = $_retryTimes + 1; + + try { + $_request = new Request(); + $accessKeyId = $this->_credential->getAccessKeyId(); + $accessKeySecret = $this->_credential->getAccessKeySecret(); + $token = $this->_credential->getSecurityToken(); + $_request->protocol = $this->_protocol; + $_request->method = 'GET'; + $_request->pathname = '/?uploads'; + $_request->headers = [ + 'host' => OSSUtils::getHost($request->bucketName, $this->_regionId, $this->_endpoint, $this->_hostModel), + 'date' => Utils::getDateUTCString(), + 'user-agent' => $this->getUserAgent(), + ]; + if (!Utils::empty_($token)) { + $_request->headers['x-oss-security-token'] = $token; + } + $_request->query = Utils::stringifyMapValue(Tea::merge($request->filter)); + $_request->headers['authorization'] = OSSUtils::getSignature($_request, $request->bucketName, $accessKeyId, $accessKeySecret, $this->_signatureVersion, $this->_addtionalHeaders); + $_lastRequest = $_request; + $_response = Tea::send($_request, $_runtime); + $respMap = null; + $bodyStr = null; + if (Utils::is4xx($_response->statusCode) || Utils::is5xx($_response->statusCode)) { + $bodyStr = Utils::readAsString($_response->body); + $respMap = OSSUtils::getErrMessage($bodyStr); + + throw new TeaError([ + 'code' => @$respMap['Code'], + 'message' => @$respMap['Message'], + 'data' => [ + 'httpCode' => $_response->statusCode, + 'requestId' => @$respMap['RequestId'], + 'hostId' => @$respMap['HostId'], + ], + ]); + } + $bodyStr = Utils::readAsString($_response->body); + $respMap = XML::parseXml($bodyStr, ListMultipartUploadsResponse::class); + + return ListMultipartUploadsResponse::fromMap(Tea::merge([ + 'ListMultipartUploadsResult' => @$respMap['ListMultipartUploadsResult'], + ], $_response->headers)); + } catch (Exception $e) { + if (!($e instanceof TeaError)) { + $e = new TeaError([], $e->getMessage(), $e->getCode(), $e); + } + if (Tea::isRetryable($e)) { + $_lastException = $e; + + continue; + } + + throw $e; + } + } + + throw new TeaUnableRetryError($_lastRequest, $_lastException); + } + + /** + * @param GetBucketRequestPaymentRequest $request + * @param RuntimeOptions $runtime + * + * @throws TeaError + * @throws Exception + * @throws TeaUnableRetryError + * + * @return GetBucketRequestPaymentResponse + */ + public function getBucketRequestPayment($request, $runtime) + { + $request->validate(); + $runtime->validate(); + $_runtime = [ + 'timeouted' => 'retry', + 'readTimeout' => Utils::defaultNumber($runtime->readTimeout, $this->_readTimeout), + 'connectTimeout' => Utils::defaultNumber($runtime->connectTimeout, $this->_connectTimeout), + 'localAddr' => Utils::defaultString($runtime->localAddr, $this->_localAddr), + 'httpProxy' => Utils::defaultString($runtime->httpProxy, $this->_httpProxy), + 'httpsProxy' => Utils::defaultString($runtime->httpsProxy, $this->_httpsProxy), + 'noProxy' => Utils::defaultString($runtime->noProxy, $this->_noProxy), + 'socks5Proxy' => Utils::defaultString($runtime->socks5Proxy, $this->_socks5Proxy), + 'socks5NetWork' => Utils::defaultString($runtime->socks5NetWork, $this->_socks5NetWork), + 'maxIdleConns' => Utils::defaultNumber($runtime->maxIdleConns, $this->_maxIdleConns), + 'retry' => [ + 'retryable' => $runtime->autoretry, + 'maxAttempts' => Utils::defaultNumber($runtime->maxAttempts, 3), + ], + 'backoff' => [ + 'policy' => Utils::defaultString($runtime->backoffPolicy, 'no'), + 'period' => Utils::defaultNumber($runtime->backoffPeriod, 1), + ], + 'ignoreSSL' => $runtime->ignoreSSL, + ]; + $_lastRequest = null; + $_lastException = null; + $_now = time(); + $_retryTimes = 0; + while (Tea::allowRetry(@$_runtime['retry'], $_retryTimes, $_now)) { + if ($_retryTimes > 0) { + $_backoffTime = Tea::getBackoffTime(@$_runtime['backoff'], $_retryTimes); + if ($_backoffTime > 0) { + Tea::sleep($_backoffTime); + } + } + $_retryTimes = $_retryTimes + 1; + + try { + $_request = new Request(); + $accessKeyId = $this->_credential->getAccessKeyId(); + $accessKeySecret = $this->_credential->getAccessKeySecret(); + $token = $this->_credential->getSecurityToken(); + $_request->protocol = $this->_protocol; + $_request->method = 'GET'; + $_request->pathname = '/?requestPayment'; + $_request->headers = [ + 'host' => OSSUtils::getHost($request->bucketName, $this->_regionId, $this->_endpoint, $this->_hostModel), + 'date' => Utils::getDateUTCString(), + 'user-agent' => $this->getUserAgent(), + ]; + if (!Utils::empty_($token)) { + $_request->headers['x-oss-security-token'] = $token; + } + $_request->headers['authorization'] = OSSUtils::getSignature($_request, $request->bucketName, $accessKeyId, $accessKeySecret, $this->_signatureVersion, $this->_addtionalHeaders); + $_lastRequest = $_request; + $_response = Tea::send($_request, $_runtime); + $respMap = null; + $bodyStr = null; + if (Utils::is4xx($_response->statusCode) || Utils::is5xx($_response->statusCode)) { + $bodyStr = Utils::readAsString($_response->body); + $respMap = OSSUtils::getErrMessage($bodyStr); + + throw new TeaError([ + 'code' => @$respMap['Code'], + 'message' => @$respMap['Message'], + 'data' => [ + 'httpCode' => $_response->statusCode, + 'requestId' => @$respMap['RequestId'], + 'hostId' => @$respMap['HostId'], + ], + ]); + } + $bodyStr = Utils::readAsString($_response->body); + $respMap = XML::parseXml($bodyStr, GetBucketRequestPaymentResponse::class); + + return GetBucketRequestPaymentResponse::fromMap(Tea::merge([ + 'RequestPaymentConfiguration' => @$respMap['RequestPaymentConfiguration'], + ], $_response->headers)); + } catch (Exception $e) { + if (!($e instanceof TeaError)) { + $e = new TeaError([], $e->getMessage(), $e->getCode(), $e); + } + if (Tea::isRetryable($e)) { + $_lastException = $e; + + continue; + } + + throw $e; + } + } + + throw new TeaUnableRetryError($_lastRequest, $_lastException); + } + + /** + * @param GetBucketEncryptionRequest $request + * @param RuntimeOptions $runtime + * + * @throws TeaError + * @throws Exception + * @throws TeaUnableRetryError + * + * @return GetBucketEncryptionResponse + */ + public function getBucketEncryption($request, $runtime) + { + $request->validate(); + $runtime->validate(); + $_runtime = [ + 'timeouted' => 'retry', + 'readTimeout' => Utils::defaultNumber($runtime->readTimeout, $this->_readTimeout), + 'connectTimeout' => Utils::defaultNumber($runtime->connectTimeout, $this->_connectTimeout), + 'localAddr' => Utils::defaultString($runtime->localAddr, $this->_localAddr), + 'httpProxy' => Utils::defaultString($runtime->httpProxy, $this->_httpProxy), + 'httpsProxy' => Utils::defaultString($runtime->httpsProxy, $this->_httpsProxy), + 'noProxy' => Utils::defaultString($runtime->noProxy, $this->_noProxy), + 'socks5Proxy' => Utils::defaultString($runtime->socks5Proxy, $this->_socks5Proxy), + 'socks5NetWork' => Utils::defaultString($runtime->socks5NetWork, $this->_socks5NetWork), + 'maxIdleConns' => Utils::defaultNumber($runtime->maxIdleConns, $this->_maxIdleConns), + 'retry' => [ + 'retryable' => $runtime->autoretry, + 'maxAttempts' => Utils::defaultNumber($runtime->maxAttempts, 3), + ], + 'backoff' => [ + 'policy' => Utils::defaultString($runtime->backoffPolicy, 'no'), + 'period' => Utils::defaultNumber($runtime->backoffPeriod, 1), + ], + 'ignoreSSL' => $runtime->ignoreSSL, + ]; + $_lastRequest = null; + $_lastException = null; + $_now = time(); + $_retryTimes = 0; + while (Tea::allowRetry(@$_runtime['retry'], $_retryTimes, $_now)) { + if ($_retryTimes > 0) { + $_backoffTime = Tea::getBackoffTime(@$_runtime['backoff'], $_retryTimes); + if ($_backoffTime > 0) { + Tea::sleep($_backoffTime); + } + } + $_retryTimes = $_retryTimes + 1; + + try { + $_request = new Request(); + $accessKeyId = $this->_credential->getAccessKeyId(); + $accessKeySecret = $this->_credential->getAccessKeySecret(); + $token = $this->_credential->getSecurityToken(); + $_request->protocol = $this->_protocol; + $_request->method = 'GET'; + $_request->pathname = '/?encryption'; + $_request->headers = [ + 'host' => OSSUtils::getHost($request->bucketName, $this->_regionId, $this->_endpoint, $this->_hostModel), + 'date' => Utils::getDateUTCString(), + 'user-agent' => $this->getUserAgent(), + ]; + if (!Utils::empty_($token)) { + $_request->headers['x-oss-security-token'] = $token; + } + $_request->headers['authorization'] = OSSUtils::getSignature($_request, $request->bucketName, $accessKeyId, $accessKeySecret, $this->_signatureVersion, $this->_addtionalHeaders); + $_lastRequest = $_request; + $_response = Tea::send($_request, $_runtime); + $respMap = null; + $bodyStr = null; + if (Utils::is4xx($_response->statusCode) || Utils::is5xx($_response->statusCode)) { + $bodyStr = Utils::readAsString($_response->body); + $respMap = OSSUtils::getErrMessage($bodyStr); + + throw new TeaError([ + 'code' => @$respMap['Code'], + 'message' => @$respMap['Message'], + 'data' => [ + 'httpCode' => $_response->statusCode, + 'requestId' => @$respMap['RequestId'], + 'hostId' => @$respMap['HostId'], + ], + ]); + } + $bodyStr = Utils::readAsString($_response->body); + $respMap = XML::parseXml($bodyStr, GetBucketEncryptionResponse::class); + + return GetBucketEncryptionResponse::fromMap(Tea::merge([ + 'ServerSideEncryptionRule' => @$respMap['ServerSideEncryptionRule'], + ], $_response->headers)); + } catch (Exception $e) { + if (!($e instanceof TeaError)) { + $e = new TeaError([], $e->getMessage(), $e->getCode(), $e); + } + if (Tea::isRetryable($e)) { + $_lastException = $e; + + continue; + } + + throw $e; + } + } + + throw new TeaUnableRetryError($_lastRequest, $_lastException); + } + + /** + * @param GetBucketTagsRequest $request + * @param RuntimeOptions $runtime + * + * @throws TeaError + * @throws Exception + * @throws TeaUnableRetryError + * + * @return GetBucketTagsResponse + */ + public function getBucketTags($request, $runtime) + { + $request->validate(); + $runtime->validate(); + $_runtime = [ + 'timeouted' => 'retry', + 'readTimeout' => Utils::defaultNumber($runtime->readTimeout, $this->_readTimeout), + 'connectTimeout' => Utils::defaultNumber($runtime->connectTimeout, $this->_connectTimeout), + 'localAddr' => Utils::defaultString($runtime->localAddr, $this->_localAddr), + 'httpProxy' => Utils::defaultString($runtime->httpProxy, $this->_httpProxy), + 'httpsProxy' => Utils::defaultString($runtime->httpsProxy, $this->_httpsProxy), + 'noProxy' => Utils::defaultString($runtime->noProxy, $this->_noProxy), + 'socks5Proxy' => Utils::defaultString($runtime->socks5Proxy, $this->_socks5Proxy), + 'socks5NetWork' => Utils::defaultString($runtime->socks5NetWork, $this->_socks5NetWork), + 'maxIdleConns' => Utils::defaultNumber($runtime->maxIdleConns, $this->_maxIdleConns), + 'retry' => [ + 'retryable' => $runtime->autoretry, + 'maxAttempts' => Utils::defaultNumber($runtime->maxAttempts, 3), + ], + 'backoff' => [ + 'policy' => Utils::defaultString($runtime->backoffPolicy, 'no'), + 'period' => Utils::defaultNumber($runtime->backoffPeriod, 1), + ], + 'ignoreSSL' => $runtime->ignoreSSL, + ]; + $_lastRequest = null; + $_lastException = null; + $_now = time(); + $_retryTimes = 0; + while (Tea::allowRetry(@$_runtime['retry'], $_retryTimes, $_now)) { + if ($_retryTimes > 0) { + $_backoffTime = Tea::getBackoffTime(@$_runtime['backoff'], $_retryTimes); + if ($_backoffTime > 0) { + Tea::sleep($_backoffTime); + } + } + $_retryTimes = $_retryTimes + 1; + + try { + $_request = new Request(); + $accessKeyId = $this->_credential->getAccessKeyId(); + $accessKeySecret = $this->_credential->getAccessKeySecret(); + $token = $this->_credential->getSecurityToken(); + $_request->protocol = $this->_protocol; + $_request->method = 'GET'; + $_request->pathname = '/?tagging'; + $_request->headers = [ + 'host' => OSSUtils::getHost($request->bucketName, $this->_regionId, $this->_endpoint, $this->_hostModel), + 'date' => Utils::getDateUTCString(), + 'user-agent' => $this->getUserAgent(), + ]; + if (!Utils::empty_($token)) { + $_request->headers['x-oss-security-token'] = $token; + } + $_request->headers['authorization'] = OSSUtils::getSignature($_request, $request->bucketName, $accessKeyId, $accessKeySecret, $this->_signatureVersion, $this->_addtionalHeaders); + $_lastRequest = $_request; + $_response = Tea::send($_request, $_runtime); + $respMap = null; + $bodyStr = null; + if (Utils::is4xx($_response->statusCode) || Utils::is5xx($_response->statusCode)) { + $bodyStr = Utils::readAsString($_response->body); + $respMap = OSSUtils::getErrMessage($bodyStr); + + throw new TeaError([ + 'code' => @$respMap['Code'], + 'message' => @$respMap['Message'], + 'data' => [ + 'httpCode' => $_response->statusCode, + 'requestId' => @$respMap['RequestId'], + 'hostId' => @$respMap['HostId'], + ], + ]); + } + $bodyStr = Utils::readAsString($_response->body); + $respMap = XML::parseXml($bodyStr, GetBucketTagsResponse::class); + + return GetBucketTagsResponse::fromMap(Tea::merge([ + 'Tagging' => @$respMap['Tagging'], + ], $_response->headers)); + } catch (Exception $e) { + if (!($e instanceof TeaError)) { + $e = new TeaError([], $e->getMessage(), $e->getCode(), $e); + } + if (Tea::isRetryable($e)) { + $_lastException = $e; + + continue; + } + + throw $e; + } + } + + throw new TeaUnableRetryError($_lastRequest, $_lastException); + } + + /** + * @param GetServiceRequest $request + * @param RuntimeOptions $runtime + * + * @throws TeaError + * @throws Exception + * @throws TeaUnableRetryError + * + * @return GetServiceResponse + */ + public function getService($request, $runtime) + { + $request->validate(); + $runtime->validate(); + $_runtime = [ + 'timeouted' => 'retry', + 'readTimeout' => Utils::defaultNumber($runtime->readTimeout, $this->_readTimeout), + 'connectTimeout' => Utils::defaultNumber($runtime->connectTimeout, $this->_connectTimeout), + 'localAddr' => Utils::defaultString($runtime->localAddr, $this->_localAddr), + 'httpProxy' => Utils::defaultString($runtime->httpProxy, $this->_httpProxy), + 'httpsProxy' => Utils::defaultString($runtime->httpsProxy, $this->_httpsProxy), + 'noProxy' => Utils::defaultString($runtime->noProxy, $this->_noProxy), + 'socks5Proxy' => Utils::defaultString($runtime->socks5Proxy, $this->_socks5Proxy), + 'socks5NetWork' => Utils::defaultString($runtime->socks5NetWork, $this->_socks5NetWork), + 'maxIdleConns' => Utils::defaultNumber($runtime->maxIdleConns, $this->_maxIdleConns), + 'retry' => [ + 'retryable' => $runtime->autoretry, + 'maxAttempts' => Utils::defaultNumber($runtime->maxAttempts, 3), + ], + 'backoff' => [ + 'policy' => Utils::defaultString($runtime->backoffPolicy, 'no'), + 'period' => Utils::defaultNumber($runtime->backoffPeriod, 1), + ], + 'ignoreSSL' => $runtime->ignoreSSL, + ]; + $_lastRequest = null; + $_lastException = null; + $_now = time(); + $_retryTimes = 0; + while (Tea::allowRetry(@$_runtime['retry'], $_retryTimes, $_now)) { + if ($_retryTimes > 0) { + $_backoffTime = Tea::getBackoffTime(@$_runtime['backoff'], $_retryTimes); + if ($_backoffTime > 0) { + Tea::sleep($_backoffTime); + } + } + $_retryTimes = $_retryTimes + 1; + + try { + $_request = new Request(); + $accessKeyId = $this->_credential->getAccessKeyId(); + $accessKeySecret = $this->_credential->getAccessKeySecret(); + $token = $this->_credential->getSecurityToken(); + $_request->protocol = $this->_protocol; + $_request->method = 'GET'; + $_request->pathname = '/'; + $_request->headers = [ + 'host' => OSSUtils::getHost('', $this->_regionId, $this->_endpoint, $this->_hostModel), + 'date' => Utils::getDateUTCString(), + 'user-agent' => $this->getUserAgent(), + ]; + if (!Utils::empty_($token)) { + $_request->headers['x-oss-security-token'] = $token; + } + $_request->query = Utils::stringifyMapValue(Tea::merge($request->filter)); + $_request->headers['authorization'] = OSSUtils::getSignature($_request, '', $accessKeyId, $accessKeySecret, $this->_signatureVersion, $this->_addtionalHeaders); + $_lastRequest = $_request; + $_response = Tea::send($_request, $_runtime); + $respMap = null; + $bodyStr = null; + if (Utils::is4xx($_response->statusCode) || Utils::is5xx($_response->statusCode)) { + $bodyStr = Utils::readAsString($_response->body); + $respMap = OSSUtils::getErrMessage($bodyStr); + + throw new TeaError([ + 'code' => @$respMap['Code'], + 'message' => @$respMap['Message'], + 'data' => [ + 'httpCode' => $_response->statusCode, + 'requestId' => @$respMap['RequestId'], + 'hostId' => @$respMap['HostId'], + ], + ]); + } + $bodyStr = Utils::readAsString($_response->body); + $respMap = XML::parseXml($bodyStr, GetServiceResponse::class); + + return GetServiceResponse::fromMap(Tea::merge([ + 'ListAllMyBucketsResult' => @$respMap['ListAllMyBucketsResult'], + ], $_response->headers)); + } catch (Exception $e) { + if (!($e instanceof TeaError)) { + $e = new TeaError([], $e->getMessage(), $e->getCode(), $e); + } + if (Tea::isRetryable($e)) { + $_lastException = $e; + + continue; + } + + throw $e; + } + } + + throw new TeaUnableRetryError($_lastRequest, $_lastException); + } + + /** + * @param DeleteBucketEncryptionRequest $request + * @param RuntimeOptions $runtime + * + * @throws TeaError + * @throws Exception + * @throws TeaUnableRetryError + * + * @return DeleteBucketEncryptionResponse + */ + public function deleteBucketEncryption($request, $runtime) + { + $request->validate(); + $runtime->validate(); + $_runtime = [ + 'timeouted' => 'retry', + 'readTimeout' => Utils::defaultNumber($runtime->readTimeout, $this->_readTimeout), + 'connectTimeout' => Utils::defaultNumber($runtime->connectTimeout, $this->_connectTimeout), + 'localAddr' => Utils::defaultString($runtime->localAddr, $this->_localAddr), + 'httpProxy' => Utils::defaultString($runtime->httpProxy, $this->_httpProxy), + 'httpsProxy' => Utils::defaultString($runtime->httpsProxy, $this->_httpsProxy), + 'noProxy' => Utils::defaultString($runtime->noProxy, $this->_noProxy), + 'socks5Proxy' => Utils::defaultString($runtime->socks5Proxy, $this->_socks5Proxy), + 'socks5NetWork' => Utils::defaultString($runtime->socks5NetWork, $this->_socks5NetWork), + 'maxIdleConns' => Utils::defaultNumber($runtime->maxIdleConns, $this->_maxIdleConns), + 'retry' => [ + 'retryable' => $runtime->autoretry, + 'maxAttempts' => Utils::defaultNumber($runtime->maxAttempts, 3), + ], + 'backoff' => [ + 'policy' => Utils::defaultString($runtime->backoffPolicy, 'no'), + 'period' => Utils::defaultNumber($runtime->backoffPeriod, 1), + ], + 'ignoreSSL' => $runtime->ignoreSSL, + ]; + $_lastRequest = null; + $_lastException = null; + $_now = time(); + $_retryTimes = 0; + while (Tea::allowRetry(@$_runtime['retry'], $_retryTimes, $_now)) { + if ($_retryTimes > 0) { + $_backoffTime = Tea::getBackoffTime(@$_runtime['backoff'], $_retryTimes); + if ($_backoffTime > 0) { + Tea::sleep($_backoffTime); + } + } + $_retryTimes = $_retryTimes + 1; + + try { + $_request = new Request(); + $accessKeyId = $this->_credential->getAccessKeyId(); + $accessKeySecret = $this->_credential->getAccessKeySecret(); + $token = $this->_credential->getSecurityToken(); + $_request->protocol = $this->_protocol; + $_request->method = 'DELETE'; + $_request->pathname = '/?encryption'; + $_request->headers = [ + 'host' => OSSUtils::getHost($request->bucketName, $this->_regionId, $this->_endpoint, $this->_hostModel), + 'date' => Utils::getDateUTCString(), + 'user-agent' => $this->getUserAgent(), + ]; + if (!Utils::empty_($token)) { + $_request->headers['x-oss-security-token'] = $token; + } + $_request->headers['authorization'] = OSSUtils::getSignature($_request, $request->bucketName, $accessKeyId, $accessKeySecret, $this->_signatureVersion, $this->_addtionalHeaders); + $_lastRequest = $_request; + $_response = Tea::send($_request, $_runtime); + $respMap = null; + $bodyStr = null; + if (Utils::is4xx($_response->statusCode) || Utils::is5xx($_response->statusCode)) { + $bodyStr = Utils::readAsString($_response->body); + $respMap = OSSUtils::getErrMessage($bodyStr); + + throw new TeaError([ + 'code' => @$respMap['Code'], + 'message' => @$respMap['Message'], + 'data' => [ + 'httpCode' => $_response->statusCode, + 'requestId' => @$respMap['RequestId'], + 'hostId' => @$respMap['HostId'], + ], + ]); + } + + return DeleteBucketEncryptionResponse::fromMap(Tea::merge($_response->headers)); + } catch (Exception $e) { + if (!($e instanceof TeaError)) { + $e = new TeaError([], $e->getMessage(), $e->getCode(), $e); + } + if (Tea::isRetryable($e)) { + $_lastException = $e; + + continue; + } + + throw $e; + } + } + + throw new TeaUnableRetryError($_lastRequest, $_lastException); + } + + /** + * @param DeleteBucketTagsRequest $request + * @param RuntimeOptions $runtime + * + * @throws TeaError + * @throws Exception + * @throws TeaUnableRetryError + * + * @return DeleteBucketTagsResponse + */ + public function deleteBucketTags($request, $runtime) + { + $request->validate(); + $runtime->validate(); + $_runtime = [ + 'timeouted' => 'retry', + 'readTimeout' => Utils::defaultNumber($runtime->readTimeout, $this->_readTimeout), + 'connectTimeout' => Utils::defaultNumber($runtime->connectTimeout, $this->_connectTimeout), + 'localAddr' => Utils::defaultString($runtime->localAddr, $this->_localAddr), + 'httpProxy' => Utils::defaultString($runtime->httpProxy, $this->_httpProxy), + 'httpsProxy' => Utils::defaultString($runtime->httpsProxy, $this->_httpsProxy), + 'noProxy' => Utils::defaultString($runtime->noProxy, $this->_noProxy), + 'socks5Proxy' => Utils::defaultString($runtime->socks5Proxy, $this->_socks5Proxy), + 'socks5NetWork' => Utils::defaultString($runtime->socks5NetWork, $this->_socks5NetWork), + 'maxIdleConns' => Utils::defaultNumber($runtime->maxIdleConns, $this->_maxIdleConns), + 'retry' => [ + 'retryable' => $runtime->autoretry, + 'maxAttempts' => Utils::defaultNumber($runtime->maxAttempts, 3), + ], + 'backoff' => [ + 'policy' => Utils::defaultString($runtime->backoffPolicy, 'no'), + 'period' => Utils::defaultNumber($runtime->backoffPeriod, 1), + ], + 'ignoreSSL' => $runtime->ignoreSSL, + ]; + $_lastRequest = null; + $_lastException = null; + $_now = time(); + $_retryTimes = 0; + while (Tea::allowRetry(@$_runtime['retry'], $_retryTimes, $_now)) { + if ($_retryTimes > 0) { + $_backoffTime = Tea::getBackoffTime(@$_runtime['backoff'], $_retryTimes); + if ($_backoffTime > 0) { + Tea::sleep($_backoffTime); + } + } + $_retryTimes = $_retryTimes + 1; + + try { + $_request = new Request(); + $accessKeyId = $this->_credential->getAccessKeyId(); + $accessKeySecret = $this->_credential->getAccessKeySecret(); + $token = $this->_credential->getSecurityToken(); + $_request->protocol = $this->_protocol; + $_request->method = 'DELETE'; + $_request->pathname = '/'; + $_request->headers = [ + 'host' => OSSUtils::getHost($request->bucketName, $this->_regionId, $this->_endpoint, $this->_hostModel), + 'date' => Utils::getDateUTCString(), + 'user-agent' => $this->getUserAgent(), + ]; + if (!Utils::empty_($token)) { + $_request->headers['x-oss-security-token'] = $token; + } + $_request->query = Utils::stringifyMapValue(Tea::merge($request->filter)); + $_request->headers['authorization'] = OSSUtils::getSignature($_request, $request->bucketName, $accessKeyId, $accessKeySecret, $this->_signatureVersion, $this->_addtionalHeaders); + $_lastRequest = $_request; + $_response = Tea::send($_request, $_runtime); + $respMap = null; + $bodyStr = null; + if (Utils::is4xx($_response->statusCode) || Utils::is5xx($_response->statusCode)) { + $bodyStr = Utils::readAsString($_response->body); + $respMap = OSSUtils::getErrMessage($bodyStr); + + throw new TeaError([ + 'code' => @$respMap['Code'], + 'message' => @$respMap['Message'], + 'data' => [ + 'httpCode' => $_response->statusCode, + 'requestId' => @$respMap['RequestId'], + 'hostId' => @$respMap['HostId'], + ], + ]); + } + + return DeleteBucketTagsResponse::fromMap(Tea::merge($_response->headers)); + } catch (Exception $e) { + if (!($e instanceof TeaError)) { + $e = new TeaError([], $e->getMessage(), $e->getCode(), $e); + } + if (Tea::isRetryable($e)) { + $_lastException = $e; + + continue; + } + + throw $e; + } + } + + throw new TeaUnableRetryError($_lastRequest, $_lastException); + } + + /** + * @param GetBucketWebsiteRequest $request + * @param RuntimeOptions $runtime + * + * @throws TeaError + * @throws Exception + * @throws TeaUnableRetryError + * + * @return GetBucketWebsiteResponse + */ + public function getBucketWebsite($request, $runtime) + { + $request->validate(); + $runtime->validate(); + $_runtime = [ + 'timeouted' => 'retry', + 'readTimeout' => Utils::defaultNumber($runtime->readTimeout, $this->_readTimeout), + 'connectTimeout' => Utils::defaultNumber($runtime->connectTimeout, $this->_connectTimeout), + 'localAddr' => Utils::defaultString($runtime->localAddr, $this->_localAddr), + 'httpProxy' => Utils::defaultString($runtime->httpProxy, $this->_httpProxy), + 'httpsProxy' => Utils::defaultString($runtime->httpsProxy, $this->_httpsProxy), + 'noProxy' => Utils::defaultString($runtime->noProxy, $this->_noProxy), + 'socks5Proxy' => Utils::defaultString($runtime->socks5Proxy, $this->_socks5Proxy), + 'socks5NetWork' => Utils::defaultString($runtime->socks5NetWork, $this->_socks5NetWork), + 'maxIdleConns' => Utils::defaultNumber($runtime->maxIdleConns, $this->_maxIdleConns), + 'retry' => [ + 'retryable' => $runtime->autoretry, + 'maxAttempts' => Utils::defaultNumber($runtime->maxAttempts, 3), + ], + 'backoff' => [ + 'policy' => Utils::defaultString($runtime->backoffPolicy, 'no'), + 'period' => Utils::defaultNumber($runtime->backoffPeriod, 1), + ], + 'ignoreSSL' => $runtime->ignoreSSL, + ]; + $_lastRequest = null; + $_lastException = null; + $_now = time(); + $_retryTimes = 0; + while (Tea::allowRetry(@$_runtime['retry'], $_retryTimes, $_now)) { + if ($_retryTimes > 0) { + $_backoffTime = Tea::getBackoffTime(@$_runtime['backoff'], $_retryTimes); + if ($_backoffTime > 0) { + Tea::sleep($_backoffTime); + } + } + $_retryTimes = $_retryTimes + 1; + + try { + $_request = new Request(); + $accessKeyId = $this->_credential->getAccessKeyId(); + $accessKeySecret = $this->_credential->getAccessKeySecret(); + $token = $this->_credential->getSecurityToken(); + $_request->protocol = $this->_protocol; + $_request->method = 'GET'; + $_request->pathname = '/?website'; + $_request->headers = [ + 'host' => OSSUtils::getHost($request->bucketName, $this->_regionId, $this->_endpoint, $this->_hostModel), + 'date' => Utils::getDateUTCString(), + 'user-agent' => $this->getUserAgent(), + ]; + if (!Utils::empty_($token)) { + $_request->headers['x-oss-security-token'] = $token; + } + $_request->headers['authorization'] = OSSUtils::getSignature($_request, $request->bucketName, $accessKeyId, $accessKeySecret, $this->_signatureVersion, $this->_addtionalHeaders); + $_lastRequest = $_request; + $_response = Tea::send($_request, $_runtime); + $respMap = null; + $bodyStr = null; + if (Utils::is4xx($_response->statusCode) || Utils::is5xx($_response->statusCode)) { + $bodyStr = Utils::readAsString($_response->body); + $respMap = OSSUtils::getErrMessage($bodyStr); + + throw new TeaError([ + 'code' => @$respMap['Code'], + 'message' => @$respMap['Message'], + 'data' => [ + 'httpCode' => $_response->statusCode, + 'requestId' => @$respMap['RequestId'], + 'hostId' => @$respMap['HostId'], + ], + ]); + } + $bodyStr = Utils::readAsString($_response->body); + $respMap = XML::parseXml($bodyStr, GetBucketWebsiteResponse::class); + + return GetBucketWebsiteResponse::fromMap(Tea::merge([ + 'WebsiteConfiguration' => @$respMap['WebsiteConfiguration'], + ], $_response->headers)); + } catch (Exception $e) { + if (!($e instanceof TeaError)) { + $e = new TeaError([], $e->getMessage(), $e->getCode(), $e); + } + if (Tea::isRetryable($e)) { + $_lastException = $e; + + continue; + } + + throw $e; + } + } + + throw new TeaUnableRetryError($_lastRequest, $_lastException); + } + + /** + * @param DeleteLiveChannelRequest $request + * @param RuntimeOptions $runtime + * + * @throws TeaError + * @throws Exception + * @throws TeaUnableRetryError + * + * @return DeleteLiveChannelResponse + */ + public function deleteLiveChannel($request, $runtime) + { + $request->validate(); + $runtime->validate(); + $_runtime = [ + 'timeouted' => 'retry', + 'readTimeout' => Utils::defaultNumber($runtime->readTimeout, $this->_readTimeout), + 'connectTimeout' => Utils::defaultNumber($runtime->connectTimeout, $this->_connectTimeout), + 'localAddr' => Utils::defaultString($runtime->localAddr, $this->_localAddr), + 'httpProxy' => Utils::defaultString($runtime->httpProxy, $this->_httpProxy), + 'httpsProxy' => Utils::defaultString($runtime->httpsProxy, $this->_httpsProxy), + 'noProxy' => Utils::defaultString($runtime->noProxy, $this->_noProxy), + 'socks5Proxy' => Utils::defaultString($runtime->socks5Proxy, $this->_socks5Proxy), + 'socks5NetWork' => Utils::defaultString($runtime->socks5NetWork, $this->_socks5NetWork), + 'maxIdleConns' => Utils::defaultNumber($runtime->maxIdleConns, $this->_maxIdleConns), + 'retry' => [ + 'retryable' => $runtime->autoretry, + 'maxAttempts' => Utils::defaultNumber($runtime->maxAttempts, 3), + ], + 'backoff' => [ + 'policy' => Utils::defaultString($runtime->backoffPolicy, 'no'), + 'period' => Utils::defaultNumber($runtime->backoffPeriod, 1), + ], + 'ignoreSSL' => $runtime->ignoreSSL, + ]; + $_lastRequest = null; + $_lastException = null; + $_now = time(); + $_retryTimes = 0; + while (Tea::allowRetry(@$_runtime['retry'], $_retryTimes, $_now)) { + if ($_retryTimes > 0) { + $_backoffTime = Tea::getBackoffTime(@$_runtime['backoff'], $_retryTimes); + if ($_backoffTime > 0) { + Tea::sleep($_backoffTime); + } + } + $_retryTimes = $_retryTimes + 1; + + try { + $_request = new Request(); + $accessKeyId = $this->_credential->getAccessKeyId(); + $accessKeySecret = $this->_credential->getAccessKeySecret(); + $token = $this->_credential->getSecurityToken(); + $_request->protocol = $this->_protocol; + $_request->method = 'DELETE'; + $_request->pathname = '/' . $request->channelName . '?live'; + $_request->headers = [ + 'host' => OSSUtils::getHost($request->bucketName, $this->_regionId, $this->_endpoint, $this->_hostModel), + 'date' => Utils::getDateUTCString(), + 'user-agent' => $this->getUserAgent(), + ]; + if (!Utils::empty_($token)) { + $_request->headers['x-oss-security-token'] = $token; + } + $_request->headers['authorization'] = OSSUtils::getSignature($_request, $request->bucketName, $accessKeyId, $accessKeySecret, $this->_signatureVersion, $this->_addtionalHeaders); + $_lastRequest = $_request; + $_response = Tea::send($_request, $_runtime); + $respMap = null; + $bodyStr = null; + if (Utils::is4xx($_response->statusCode) || Utils::is5xx($_response->statusCode)) { + $bodyStr = Utils::readAsString($_response->body); + $respMap = OSSUtils::getErrMessage($bodyStr); + + throw new TeaError([ + 'code' => @$respMap['Code'], + 'message' => @$respMap['Message'], + 'data' => [ + 'httpCode' => $_response->statusCode, + 'requestId' => @$respMap['RequestId'], + 'hostId' => @$respMap['HostId'], + ], + ]); + } + + return DeleteLiveChannelResponse::fromMap(Tea::merge($_response->headers)); + } catch (Exception $e) { + if (!($e instanceof TeaError)) { + $e = new TeaError([], $e->getMessage(), $e->getCode(), $e); + } + if (Tea::isRetryable($e)) { + $_lastException = $e; + + continue; + } + + throw $e; + } + } + + throw new TeaUnableRetryError($_lastRequest, $_lastException); + } + + /** + * @param GetBucketLocationRequest $request + * @param RuntimeOptions $runtime + * + * @throws TeaError + * @throws Exception + * @throws TeaUnableRetryError + * + * @return GetBucketLocationResponse + */ + public function getBucketLocation($request, $runtime) + { + $request->validate(); + $runtime->validate(); + $_runtime = [ + 'timeouted' => 'retry', + 'readTimeout' => Utils::defaultNumber($runtime->readTimeout, $this->_readTimeout), + 'connectTimeout' => Utils::defaultNumber($runtime->connectTimeout, $this->_connectTimeout), + 'localAddr' => Utils::defaultString($runtime->localAddr, $this->_localAddr), + 'httpProxy' => Utils::defaultString($runtime->httpProxy, $this->_httpProxy), + 'httpsProxy' => Utils::defaultString($runtime->httpsProxy, $this->_httpsProxy), + 'noProxy' => Utils::defaultString($runtime->noProxy, $this->_noProxy), + 'socks5Proxy' => Utils::defaultString($runtime->socks5Proxy, $this->_socks5Proxy), + 'socks5NetWork' => Utils::defaultString($runtime->socks5NetWork, $this->_socks5NetWork), + 'maxIdleConns' => Utils::defaultNumber($runtime->maxIdleConns, $this->_maxIdleConns), + 'retry' => [ + 'retryable' => $runtime->autoretry, + 'maxAttempts' => Utils::defaultNumber($runtime->maxAttempts, 3), + ], + 'backoff' => [ + 'policy' => Utils::defaultString($runtime->backoffPolicy, 'no'), + 'period' => Utils::defaultNumber($runtime->backoffPeriod, 1), + ], + 'ignoreSSL' => $runtime->ignoreSSL, + ]; + $_lastRequest = null; + $_lastException = null; + $_now = time(); + $_retryTimes = 0; + while (Tea::allowRetry(@$_runtime['retry'], $_retryTimes, $_now)) { + if ($_retryTimes > 0) { + $_backoffTime = Tea::getBackoffTime(@$_runtime['backoff'], $_retryTimes); + if ($_backoffTime > 0) { + Tea::sleep($_backoffTime); + } + } + $_retryTimes = $_retryTimes + 1; + + try { + $_request = new Request(); + $accessKeyId = $this->_credential->getAccessKeyId(); + $accessKeySecret = $this->_credential->getAccessKeySecret(); + $token = $this->_credential->getSecurityToken(); + $_request->protocol = $this->_protocol; + $_request->method = 'GET'; + $_request->pathname = '/?location'; + $_request->headers = [ + 'host' => OSSUtils::getHost($request->bucketName, $this->_regionId, $this->_endpoint, $this->_hostModel), + 'date' => Utils::getDateUTCString(), + 'user-agent' => $this->getUserAgent(), + ]; + if (!Utils::empty_($token)) { + $_request->headers['x-oss-security-token'] = $token; + } + $_request->headers['authorization'] = OSSUtils::getSignature($_request, $request->bucketName, $accessKeyId, $accessKeySecret, $this->_signatureVersion, $this->_addtionalHeaders); + $_lastRequest = $_request; + $_response = Tea::send($_request, $_runtime); + $respMap = null; + $bodyStr = null; + if (Utils::is4xx($_response->statusCode) || Utils::is5xx($_response->statusCode)) { + $bodyStr = Utils::readAsString($_response->body); + $respMap = OSSUtils::getErrMessage($bodyStr); + + throw new TeaError([ + 'code' => @$respMap['Code'], + 'message' => @$respMap['Message'], + 'data' => [ + 'httpCode' => $_response->statusCode, + 'requestId' => @$respMap['RequestId'], + 'hostId' => @$respMap['HostId'], + ], + ]); + } + $bodyStr = Utils::readAsString($_response->body); + $respMap = XML::parseXml($bodyStr, GetBucketLocationResponse::class); + + return GetBucketLocationResponse::fromMap(Tea::merge([ + 'LocationConstraint' => @$respMap['LocationConstraint'], + ], $_response->headers)); + } catch (Exception $e) { + if (!($e instanceof TeaError)) { + $e = new TeaError([], $e->getMessage(), $e->getCode(), $e); + } + if (Tea::isRetryable($e)) { + $_lastException = $e; + + continue; + } + + throw $e; + } + } + + throw new TeaUnableRetryError($_lastRequest, $_lastException); + } + + /** + * @param ListLiveChannelRequest $request + * @param RuntimeOptions $runtime + * + * @throws TeaError + * @throws Exception + * @throws TeaUnableRetryError + * + * @return ListLiveChannelResponse + */ + public function listLiveChannel($request, $runtime) + { + $request->validate(); + $runtime->validate(); + $_runtime = [ + 'timeouted' => 'retry', + 'readTimeout' => Utils::defaultNumber($runtime->readTimeout, $this->_readTimeout), + 'connectTimeout' => Utils::defaultNumber($runtime->connectTimeout, $this->_connectTimeout), + 'localAddr' => Utils::defaultString($runtime->localAddr, $this->_localAddr), + 'httpProxy' => Utils::defaultString($runtime->httpProxy, $this->_httpProxy), + 'httpsProxy' => Utils::defaultString($runtime->httpsProxy, $this->_httpsProxy), + 'noProxy' => Utils::defaultString($runtime->noProxy, $this->_noProxy), + 'socks5Proxy' => Utils::defaultString($runtime->socks5Proxy, $this->_socks5Proxy), + 'socks5NetWork' => Utils::defaultString($runtime->socks5NetWork, $this->_socks5NetWork), + 'maxIdleConns' => Utils::defaultNumber($runtime->maxIdleConns, $this->_maxIdleConns), + 'retry' => [ + 'retryable' => $runtime->autoretry, + 'maxAttempts' => Utils::defaultNumber($runtime->maxAttempts, 3), + ], + 'backoff' => [ + 'policy' => Utils::defaultString($runtime->backoffPolicy, 'no'), + 'period' => Utils::defaultNumber($runtime->backoffPeriod, 1), + ], + 'ignoreSSL' => $runtime->ignoreSSL, + ]; + $_lastRequest = null; + $_lastException = null; + $_now = time(); + $_retryTimes = 0; + while (Tea::allowRetry(@$_runtime['retry'], $_retryTimes, $_now)) { + if ($_retryTimes > 0) { + $_backoffTime = Tea::getBackoffTime(@$_runtime['backoff'], $_retryTimes); + if ($_backoffTime > 0) { + Tea::sleep($_backoffTime); + } + } + $_retryTimes = $_retryTimes + 1; + + try { + $_request = new Request(); + $accessKeyId = $this->_credential->getAccessKeyId(); + $accessKeySecret = $this->_credential->getAccessKeySecret(); + $token = $this->_credential->getSecurityToken(); + $_request->protocol = $this->_protocol; + $_request->method = 'GET'; + $_request->pathname = '/?live'; + $_request->headers = [ + 'host' => OSSUtils::getHost($request->bucketName, $this->_regionId, $this->_endpoint, $this->_hostModel), + 'date' => Utils::getDateUTCString(), + 'user-agent' => $this->getUserAgent(), + ]; + if (!Utils::empty_($token)) { + $_request->headers['x-oss-security-token'] = $token; + } + $_request->query = Utils::stringifyMapValue(Tea::merge($request->filter)); + $_request->headers['authorization'] = OSSUtils::getSignature($_request, $request->bucketName, $accessKeyId, $accessKeySecret, $this->_signatureVersion, $this->_addtionalHeaders); + $_lastRequest = $_request; + $_response = Tea::send($_request, $_runtime); + $respMap = null; + $bodyStr = null; + if (Utils::is4xx($_response->statusCode) || Utils::is5xx($_response->statusCode)) { + $bodyStr = Utils::readAsString($_response->body); + $respMap = OSSUtils::getErrMessage($bodyStr); + + throw new TeaError([ + 'code' => @$respMap['Code'], + 'message' => @$respMap['Message'], + 'data' => [ + 'httpCode' => $_response->statusCode, + 'requestId' => @$respMap['RequestId'], + 'hostId' => @$respMap['HostId'], + ], + ]); + } + $bodyStr = Utils::readAsString($_response->body); + $respMap = XML::parseXml($bodyStr, ListLiveChannelResponse::class); + + return ListLiveChannelResponse::fromMap(Tea::merge([ + 'ListLiveChannelResult' => @$respMap['ListLiveChannelResult'], + ], $_response->headers)); + } catch (Exception $e) { + if (!($e instanceof TeaError)) { + $e = new TeaError([], $e->getMessage(), $e->getCode(), $e); + } + if (Tea::isRetryable($e)) { + $_lastException = $e; + + continue; + } + + throw $e; + } + } + + throw new TeaUnableRetryError($_lastRequest, $_lastException); + } + + /** + * @param GetObjectMetaRequest $request + * @param RuntimeOptions $runtime + * + * @throws TeaError + * @throws Exception + * @throws TeaUnableRetryError + * + * @return GetObjectMetaResponse + */ + public function getObjectMeta($request, $runtime) + { + $request->validate(); + $runtime->validate(); + $_runtime = [ + 'timeouted' => 'retry', + 'readTimeout' => Utils::defaultNumber($runtime->readTimeout, $this->_readTimeout), + 'connectTimeout' => Utils::defaultNumber($runtime->connectTimeout, $this->_connectTimeout), + 'localAddr' => Utils::defaultString($runtime->localAddr, $this->_localAddr), + 'httpProxy' => Utils::defaultString($runtime->httpProxy, $this->_httpProxy), + 'httpsProxy' => Utils::defaultString($runtime->httpsProxy, $this->_httpsProxy), + 'noProxy' => Utils::defaultString($runtime->noProxy, $this->_noProxy), + 'socks5Proxy' => Utils::defaultString($runtime->socks5Proxy, $this->_socks5Proxy), + 'socks5NetWork' => Utils::defaultString($runtime->socks5NetWork, $this->_socks5NetWork), + 'maxIdleConns' => Utils::defaultNumber($runtime->maxIdleConns, $this->_maxIdleConns), + 'retry' => [ + 'retryable' => $runtime->autoretry, + 'maxAttempts' => Utils::defaultNumber($runtime->maxAttempts, 3), + ], + 'backoff' => [ + 'policy' => Utils::defaultString($runtime->backoffPolicy, 'no'), + 'period' => Utils::defaultNumber($runtime->backoffPeriod, 1), + ], + 'ignoreSSL' => $runtime->ignoreSSL, + ]; + $_lastRequest = null; + $_lastException = null; + $_now = time(); + $_retryTimes = 0; + while (Tea::allowRetry(@$_runtime['retry'], $_retryTimes, $_now)) { + if ($_retryTimes > 0) { + $_backoffTime = Tea::getBackoffTime(@$_runtime['backoff'], $_retryTimes); + if ($_backoffTime > 0) { + Tea::sleep($_backoffTime); + } + } + $_retryTimes = $_retryTimes + 1; + + try { + $_request = new Request(); + $accessKeyId = $this->_credential->getAccessKeyId(); + $accessKeySecret = $this->_credential->getAccessKeySecret(); + $token = $this->_credential->getSecurityToken(); + $_request->protocol = $this->_protocol; + $_request->method = 'HEAD'; + $_request->pathname = '/' . $request->objectName . '?objectMeta'; + $_request->headers = [ + 'host' => OSSUtils::getHost($request->bucketName, $this->_regionId, $this->_endpoint, $this->_hostModel), + 'date' => Utils::getDateUTCString(), + 'user-agent' => $this->getUserAgent(), + ]; + if (!Utils::empty_($token)) { + $_request->headers['x-oss-security-token'] = $token; + } + $_request->headers['authorization'] = OSSUtils::getSignature($_request, $request->bucketName, $accessKeyId, $accessKeySecret, $this->_signatureVersion, $this->_addtionalHeaders); + $_lastRequest = $_request; + $_response = Tea::send($_request, $_runtime); + $respMap = null; + $bodyStr = null; + if (Utils::is4xx($_response->statusCode) || Utils::is5xx($_response->statusCode)) { + $bodyStr = Utils::readAsString($_response->body); + $respMap = OSSUtils::getErrMessage($bodyStr); + + throw new TeaError([ + 'code' => @$respMap['Code'], + 'message' => @$respMap['Message'], + 'data' => [ + 'httpCode' => $_response->statusCode, + 'requestId' => @$respMap['RequestId'], + 'hostId' => @$respMap['HostId'], + ], + ]); + } + + return GetObjectMetaResponse::fromMap(Tea::merge($_response->headers)); + } catch (Exception $e) { + if (!($e instanceof TeaError)) { + $e = new TeaError([], $e->getMessage(), $e->getCode(), $e); + } + if (Tea::isRetryable($e)) { + $_lastException = $e; + + continue; + } + + throw $e; + } + } + + throw new TeaUnableRetryError($_lastRequest, $_lastException); + } + + /** + * @param GetBucketAclRequest $request + * @param RuntimeOptions $runtime + * + * @throws TeaError + * @throws Exception + * @throws TeaUnableRetryError + * + * @return GetBucketAclResponse + */ + public function getBucketAcl($request, $runtime) + { + $request->validate(); + $runtime->validate(); + $_runtime = [ + 'timeouted' => 'retry', + 'readTimeout' => Utils::defaultNumber($runtime->readTimeout, $this->_readTimeout), + 'connectTimeout' => Utils::defaultNumber($runtime->connectTimeout, $this->_connectTimeout), + 'localAddr' => Utils::defaultString($runtime->localAddr, $this->_localAddr), + 'httpProxy' => Utils::defaultString($runtime->httpProxy, $this->_httpProxy), + 'httpsProxy' => Utils::defaultString($runtime->httpsProxy, $this->_httpsProxy), + 'noProxy' => Utils::defaultString($runtime->noProxy, $this->_noProxy), + 'socks5Proxy' => Utils::defaultString($runtime->socks5Proxy, $this->_socks5Proxy), + 'socks5NetWork' => Utils::defaultString($runtime->socks5NetWork, $this->_socks5NetWork), + 'maxIdleConns' => Utils::defaultNumber($runtime->maxIdleConns, $this->_maxIdleConns), + 'retry' => [ + 'retryable' => $runtime->autoretry, + 'maxAttempts' => Utils::defaultNumber($runtime->maxAttempts, 3), + ], + 'backoff' => [ + 'policy' => Utils::defaultString($runtime->backoffPolicy, 'no'), + 'period' => Utils::defaultNumber($runtime->backoffPeriod, 1), + ], + 'ignoreSSL' => $runtime->ignoreSSL, + ]; + $_lastRequest = null; + $_lastException = null; + $_now = time(); + $_retryTimes = 0; + while (Tea::allowRetry(@$_runtime['retry'], $_retryTimes, $_now)) { + if ($_retryTimes > 0) { + $_backoffTime = Tea::getBackoffTime(@$_runtime['backoff'], $_retryTimes); + if ($_backoffTime > 0) { + Tea::sleep($_backoffTime); + } + } + $_retryTimes = $_retryTimes + 1; + + try { + $_request = new Request(); + $accessKeyId = $this->_credential->getAccessKeyId(); + $accessKeySecret = $this->_credential->getAccessKeySecret(); + $token = $this->_credential->getSecurityToken(); + $_request->protocol = $this->_protocol; + $_request->method = 'GET'; + $_request->pathname = '/?acl'; + $_request->headers = [ + 'host' => OSSUtils::getHost($request->bucketName, $this->_regionId, $this->_endpoint, $this->_hostModel), + 'date' => Utils::getDateUTCString(), + 'user-agent' => $this->getUserAgent(), + ]; + if (!Utils::empty_($token)) { + $_request->headers['x-oss-security-token'] = $token; + } + $_request->headers['authorization'] = OSSUtils::getSignature($_request, $request->bucketName, $accessKeyId, $accessKeySecret, $this->_signatureVersion, $this->_addtionalHeaders); + $_lastRequest = $_request; + $_response = Tea::send($_request, $_runtime); + $respMap = null; + $bodyStr = null; + if (Utils::is4xx($_response->statusCode) || Utils::is5xx($_response->statusCode)) { + $bodyStr = Utils::readAsString($_response->body); + $respMap = OSSUtils::getErrMessage($bodyStr); + + throw new TeaError([ + 'code' => @$respMap['Code'], + 'message' => @$respMap['Message'], + 'data' => [ + 'httpCode' => $_response->statusCode, + 'requestId' => @$respMap['RequestId'], + 'hostId' => @$respMap['HostId'], + ], + ]); + } + $bodyStr = Utils::readAsString($_response->body); + $respMap = XML::parseXml($bodyStr, GetBucketAclResponse::class); + + return GetBucketAclResponse::fromMap(Tea::merge([ + 'AccessControlPolicy' => @$respMap['AccessControlPolicy'], + ], $_response->headers)); + } catch (Exception $e) { + if (!($e instanceof TeaError)) { + $e = new TeaError([], $e->getMessage(), $e->getCode(), $e); + } + if (Tea::isRetryable($e)) { + $_lastException = $e; + + continue; + } + + throw $e; + } + } + + throw new TeaUnableRetryError($_lastRequest, $_lastException); + } + + /** + * @param ListPartsRequest $request + * @param RuntimeOptions $runtime + * + * @throws TeaError + * @throws Exception + * @throws TeaUnableRetryError + * + * @return ListPartsResponse + */ + public function listParts($request, $runtime) + { + $request->validate(); + $runtime->validate(); + $_runtime = [ + 'timeouted' => 'retry', + 'readTimeout' => Utils::defaultNumber($runtime->readTimeout, $this->_readTimeout), + 'connectTimeout' => Utils::defaultNumber($runtime->connectTimeout, $this->_connectTimeout), + 'localAddr' => Utils::defaultString($runtime->localAddr, $this->_localAddr), + 'httpProxy' => Utils::defaultString($runtime->httpProxy, $this->_httpProxy), + 'httpsProxy' => Utils::defaultString($runtime->httpsProxy, $this->_httpsProxy), + 'noProxy' => Utils::defaultString($runtime->noProxy, $this->_noProxy), + 'socks5Proxy' => Utils::defaultString($runtime->socks5Proxy, $this->_socks5Proxy), + 'socks5NetWork' => Utils::defaultString($runtime->socks5NetWork, $this->_socks5NetWork), + 'maxIdleConns' => Utils::defaultNumber($runtime->maxIdleConns, $this->_maxIdleConns), + 'retry' => [ + 'retryable' => $runtime->autoretry, + 'maxAttempts' => Utils::defaultNumber($runtime->maxAttempts, 3), + ], + 'backoff' => [ + 'policy' => Utils::defaultString($runtime->backoffPolicy, 'no'), + 'period' => Utils::defaultNumber($runtime->backoffPeriod, 1), + ], + 'ignoreSSL' => $runtime->ignoreSSL, + ]; + $_lastRequest = null; + $_lastException = null; + $_now = time(); + $_retryTimes = 0; + while (Tea::allowRetry(@$_runtime['retry'], $_retryTimes, $_now)) { + if ($_retryTimes > 0) { + $_backoffTime = Tea::getBackoffTime(@$_runtime['backoff'], $_retryTimes); + if ($_backoffTime > 0) { + Tea::sleep($_backoffTime); + } + } + $_retryTimes = $_retryTimes + 1; + + try { + $_request = new Request(); + $accessKeyId = $this->_credential->getAccessKeyId(); + $accessKeySecret = $this->_credential->getAccessKeySecret(); + $token = $this->_credential->getSecurityToken(); + $_request->protocol = $this->_protocol; + $_request->method = 'GET'; + $_request->pathname = '/' . $request->objectName . ''; + $_request->headers = [ + 'host' => OSSUtils::getHost($request->bucketName, $this->_regionId, $this->_endpoint, $this->_hostModel), + 'date' => Utils::getDateUTCString(), + 'user-agent' => $this->getUserAgent(), + ]; + if (!Utils::empty_($token)) { + $_request->headers['x-oss-security-token'] = $token; + } + $_request->query = Utils::stringifyMapValue(Tea::merge($request->filter)); + $_request->headers['authorization'] = OSSUtils::getSignature($_request, $request->bucketName, $accessKeyId, $accessKeySecret, $this->_signatureVersion, $this->_addtionalHeaders); + $_lastRequest = $_request; + $_response = Tea::send($_request, $_runtime); + $respMap = null; + $bodyStr = null; + if (Utils::is4xx($_response->statusCode) || Utils::is5xx($_response->statusCode)) { + $bodyStr = Utils::readAsString($_response->body); + $respMap = OSSUtils::getErrMessage($bodyStr); + + throw new TeaError([ + 'code' => @$respMap['Code'], + 'message' => @$respMap['Message'], + 'data' => [ + 'httpCode' => $_response->statusCode, + 'requestId' => @$respMap['RequestId'], + 'hostId' => @$respMap['HostId'], + ], + ]); + } + $bodyStr = Utils::readAsString($_response->body); + $respMap = XML::parseXml($bodyStr, ListPartsResponse::class); + + return ListPartsResponse::fromMap(Tea::merge([ + 'ListPartsResult' => @$respMap['ListPartsResult'], + ], $_response->headers)); + } catch (Exception $e) { + if (!($e instanceof TeaError)) { + $e = new TeaError([], $e->getMessage(), $e->getCode(), $e); + } + if (Tea::isRetryable($e)) { + $_lastException = $e; + + continue; + } + + throw $e; + } + } + + throw new TeaUnableRetryError($_lastRequest, $_lastException); + } + + /** + * @param GetLiveChannelHistoryRequest $request + * @param RuntimeOptions $runtime + * + * @throws TeaError + * @throws Exception + * @throws TeaUnableRetryError + * + * @return GetLiveChannelHistoryResponse + */ + public function getLiveChannelHistory($request, $runtime) + { + $request->validate(); + $runtime->validate(); + $_runtime = [ + 'timeouted' => 'retry', + 'readTimeout' => Utils::defaultNumber($runtime->readTimeout, $this->_readTimeout), + 'connectTimeout' => Utils::defaultNumber($runtime->connectTimeout, $this->_connectTimeout), + 'localAddr' => Utils::defaultString($runtime->localAddr, $this->_localAddr), + 'httpProxy' => Utils::defaultString($runtime->httpProxy, $this->_httpProxy), + 'httpsProxy' => Utils::defaultString($runtime->httpsProxy, $this->_httpsProxy), + 'noProxy' => Utils::defaultString($runtime->noProxy, $this->_noProxy), + 'socks5Proxy' => Utils::defaultString($runtime->socks5Proxy, $this->_socks5Proxy), + 'socks5NetWork' => Utils::defaultString($runtime->socks5NetWork, $this->_socks5NetWork), + 'maxIdleConns' => Utils::defaultNumber($runtime->maxIdleConns, $this->_maxIdleConns), + 'retry' => [ + 'retryable' => $runtime->autoretry, + 'maxAttempts' => Utils::defaultNumber($runtime->maxAttempts, 3), + ], + 'backoff' => [ + 'policy' => Utils::defaultString($runtime->backoffPolicy, 'no'), + 'period' => Utils::defaultNumber($runtime->backoffPeriod, 1), + ], + 'ignoreSSL' => $runtime->ignoreSSL, + ]; + $_lastRequest = null; + $_lastException = null; + $_now = time(); + $_retryTimes = 0; + while (Tea::allowRetry(@$_runtime['retry'], $_retryTimes, $_now)) { + if ($_retryTimes > 0) { + $_backoffTime = Tea::getBackoffTime(@$_runtime['backoff'], $_retryTimes); + if ($_backoffTime > 0) { + Tea::sleep($_backoffTime); + } + } + $_retryTimes = $_retryTimes + 1; + + try { + $_request = new Request(); + $accessKeyId = $this->_credential->getAccessKeyId(); + $accessKeySecret = $this->_credential->getAccessKeySecret(); + $token = $this->_credential->getSecurityToken(); + $_request->protocol = $this->_protocol; + $_request->method = 'GET'; + $_request->pathname = '/' . $request->channelName . '?live'; + $_request->headers = [ + 'host' => OSSUtils::getHost($request->bucketName, $this->_regionId, $this->_endpoint, $this->_hostModel), + 'date' => Utils::getDateUTCString(), + 'user-agent' => $this->getUserAgent(), + ]; + if (!Utils::empty_($token)) { + $_request->headers['x-oss-security-token'] = $token; + } + $_request->query = Utils::stringifyMapValue(Tea::merge($request->filter)); + $_request->headers['authorization'] = OSSUtils::getSignature($_request, $request->bucketName, $accessKeyId, $accessKeySecret, $this->_signatureVersion, $this->_addtionalHeaders); + $_lastRequest = $_request; + $_response = Tea::send($_request, $_runtime); + $respMap = null; + $bodyStr = null; + if (Utils::is4xx($_response->statusCode) || Utils::is5xx($_response->statusCode)) { + $bodyStr = Utils::readAsString($_response->body); + $respMap = OSSUtils::getErrMessage($bodyStr); + + throw new TeaError([ + 'code' => @$respMap['Code'], + 'message' => @$respMap['Message'], + 'data' => [ + 'httpCode' => $_response->statusCode, + 'requestId' => @$respMap['RequestId'], + 'hostId' => @$respMap['HostId'], + ], + ]); + } + $bodyStr = Utils::readAsString($_response->body); + $respMap = XML::parseXml($bodyStr, GetLiveChannelHistoryResponse::class); + + return GetLiveChannelHistoryResponse::fromMap(Tea::merge([ + 'LiveChannelHistory' => @$respMap['LiveChannelHistory'], + ], $_response->headers)); + } catch (Exception $e) { + if (!($e instanceof TeaError)) { + $e = new TeaError([], $e->getMessage(), $e->getCode(), $e); + } + if (Tea::isRetryable($e)) { + $_lastException = $e; + + continue; + } + + throw $e; + } + } + + throw new TeaUnableRetryError($_lastRequest, $_lastException); + } + + /** + * @param GetBucketRequest $request + * @param RuntimeOptions $runtime + * + * @throws TeaError + * @throws Exception + * @throws TeaUnableRetryError + * + * @return GetBucketResponse + */ + public function getBucket($request, $runtime) + { + $request->validate(); + $runtime->validate(); + $_runtime = [ + 'timeouted' => 'retry', + 'readTimeout' => Utils::defaultNumber($runtime->readTimeout, $this->_readTimeout), + 'connectTimeout' => Utils::defaultNumber($runtime->connectTimeout, $this->_connectTimeout), + 'localAddr' => Utils::defaultString($runtime->localAddr, $this->_localAddr), + 'httpProxy' => Utils::defaultString($runtime->httpProxy, $this->_httpProxy), + 'httpsProxy' => Utils::defaultString($runtime->httpsProxy, $this->_httpsProxy), + 'noProxy' => Utils::defaultString($runtime->noProxy, $this->_noProxy), + 'socks5Proxy' => Utils::defaultString($runtime->socks5Proxy, $this->_socks5Proxy), + 'socks5NetWork' => Utils::defaultString($runtime->socks5NetWork, $this->_socks5NetWork), + 'maxIdleConns' => Utils::defaultNumber($runtime->maxIdleConns, $this->_maxIdleConns), + 'retry' => [ + 'retryable' => $runtime->autoretry, + 'maxAttempts' => Utils::defaultNumber($runtime->maxAttempts, 3), + ], + 'backoff' => [ + 'policy' => Utils::defaultString($runtime->backoffPolicy, 'no'), + 'period' => Utils::defaultNumber($runtime->backoffPeriod, 1), + ], + 'ignoreSSL' => $runtime->ignoreSSL, + ]; + $_lastRequest = null; + $_lastException = null; + $_now = time(); + $_retryTimes = 0; + while (Tea::allowRetry(@$_runtime['retry'], $_retryTimes, $_now)) { + if ($_retryTimes > 0) { + $_backoffTime = Tea::getBackoffTime(@$_runtime['backoff'], $_retryTimes); + if ($_backoffTime > 0) { + Tea::sleep($_backoffTime); + } + } + $_retryTimes = $_retryTimes + 1; + + try { + $_request = new Request(); + $accessKeyId = $this->_credential->getAccessKeyId(); + $accessKeySecret = $this->_credential->getAccessKeySecret(); + $token = $this->_credential->getSecurityToken(); + $_request->protocol = $this->_protocol; + $_request->method = 'GET'; + $_request->pathname = '/'; + $_request->headers = [ + 'host' => OSSUtils::getHost($request->bucketName, $this->_regionId, $this->_endpoint, $this->_hostModel), + 'date' => Utils::getDateUTCString(), + 'user-agent' => $this->getUserAgent(), + ]; + if (!Utils::empty_($token)) { + $_request->headers['x-oss-security-token'] = $token; + } + $_request->query = Utils::stringifyMapValue(Tea::merge($request->filter)); + $_request->headers['authorization'] = OSSUtils::getSignature($_request, $request->bucketName, $accessKeyId, $accessKeySecret, $this->_signatureVersion, $this->_addtionalHeaders); + $_lastRequest = $_request; + $_response = Tea::send($_request, $_runtime); + $respMap = null; + $bodyStr = null; + if (Utils::is4xx($_response->statusCode) || Utils::is5xx($_response->statusCode)) { + $bodyStr = Utils::readAsString($_response->body); + $respMap = OSSUtils::getErrMessage($bodyStr); + + throw new TeaError([ + 'code' => @$respMap['Code'], + 'message' => @$respMap['Message'], + 'data' => [ + 'httpCode' => $_response->statusCode, + 'requestId' => @$respMap['RequestId'], + 'hostId' => @$respMap['HostId'], + ], + ]); + } + $bodyStr = Utils::readAsString($_response->body); + $respMap = XML::parseXml($bodyStr, GetBucketResponse::class); + + return GetBucketResponse::fromMap(Tea::merge([ + 'ListBucketResult' => @$respMap['ListBucketResult'], + ], $_response->headers)); + } catch (Exception $e) { + if (!($e instanceof TeaError)) { + $e = new TeaError([], $e->getMessage(), $e->getCode(), $e); + } + if (Tea::isRetryable($e)) { + $_lastException = $e; + + continue; + } + + throw $e; + } + } + + throw new TeaUnableRetryError($_lastRequest, $_lastException); + } + + /** + * @param GetLiveChannelInfoRequest $request + * @param RuntimeOptions $runtime + * + * @throws TeaError + * @throws Exception + * @throws TeaUnableRetryError + * + * @return GetLiveChannelInfoResponse + */ + public function getLiveChannelInfo($request, $runtime) + { + $request->validate(); + $runtime->validate(); + $_runtime = [ + 'timeouted' => 'retry', + 'readTimeout' => Utils::defaultNumber($runtime->readTimeout, $this->_readTimeout), + 'connectTimeout' => Utils::defaultNumber($runtime->connectTimeout, $this->_connectTimeout), + 'localAddr' => Utils::defaultString($runtime->localAddr, $this->_localAddr), + 'httpProxy' => Utils::defaultString($runtime->httpProxy, $this->_httpProxy), + 'httpsProxy' => Utils::defaultString($runtime->httpsProxy, $this->_httpsProxy), + 'noProxy' => Utils::defaultString($runtime->noProxy, $this->_noProxy), + 'socks5Proxy' => Utils::defaultString($runtime->socks5Proxy, $this->_socks5Proxy), + 'socks5NetWork' => Utils::defaultString($runtime->socks5NetWork, $this->_socks5NetWork), + 'maxIdleConns' => Utils::defaultNumber($runtime->maxIdleConns, $this->_maxIdleConns), + 'retry' => [ + 'retryable' => $runtime->autoretry, + 'maxAttempts' => Utils::defaultNumber($runtime->maxAttempts, 3), + ], + 'backoff' => [ + 'policy' => Utils::defaultString($runtime->backoffPolicy, 'no'), + 'period' => Utils::defaultNumber($runtime->backoffPeriod, 1), + ], + 'ignoreSSL' => $runtime->ignoreSSL, + ]; + $_lastRequest = null; + $_lastException = null; + $_now = time(); + $_retryTimes = 0; + while (Tea::allowRetry(@$_runtime['retry'], $_retryTimes, $_now)) { + if ($_retryTimes > 0) { + $_backoffTime = Tea::getBackoffTime(@$_runtime['backoff'], $_retryTimes); + if ($_backoffTime > 0) { + Tea::sleep($_backoffTime); + } + } + $_retryTimes = $_retryTimes + 1; + + try { + $_request = new Request(); + $accessKeyId = $this->_credential->getAccessKeyId(); + $accessKeySecret = $this->_credential->getAccessKeySecret(); + $token = $this->_credential->getSecurityToken(); + $_request->protocol = $this->_protocol; + $_request->method = 'GET'; + $_request->pathname = '/' . $request->channelName . '?live'; + $_request->headers = [ + 'host' => OSSUtils::getHost($request->bucketName, $this->_regionId, $this->_endpoint, $this->_hostModel), + 'date' => Utils::getDateUTCString(), + 'user-agent' => $this->getUserAgent(), + ]; + if (!Utils::empty_($token)) { + $_request->headers['x-oss-security-token'] = $token; + } + $_request->headers['authorization'] = OSSUtils::getSignature($_request, $request->bucketName, $accessKeyId, $accessKeySecret, $this->_signatureVersion, $this->_addtionalHeaders); + $_lastRequest = $_request; + $_response = Tea::send($_request, $_runtime); + $respMap = null; + $bodyStr = null; + if (Utils::is4xx($_response->statusCode) || Utils::is5xx($_response->statusCode)) { + $bodyStr = Utils::readAsString($_response->body); + $respMap = OSSUtils::getErrMessage($bodyStr); + + throw new TeaError([ + 'code' => @$respMap['Code'], + 'message' => @$respMap['Message'], + 'data' => [ + 'httpCode' => $_response->statusCode, + 'requestId' => @$respMap['RequestId'], + 'hostId' => @$respMap['HostId'], + ], + ]); + } + $bodyStr = Utils::readAsString($_response->body); + $respMap = XML::parseXml($bodyStr, GetLiveChannelInfoResponse::class); + + return GetLiveChannelInfoResponse::fromMap(Tea::merge([ + 'LiveChannelConfiguration' => @$respMap['LiveChannelConfiguration'], + ], $_response->headers)); + } catch (Exception $e) { + if (!($e instanceof TeaError)) { + $e = new TeaError([], $e->getMessage(), $e->getCode(), $e); + } + if (Tea::isRetryable($e)) { + $_lastException = $e; + + continue; + } + + throw $e; + } + } + + throw new TeaUnableRetryError($_lastRequest, $_lastException); + } + + /** + * @param GetLiveChannelStatRequest $request + * @param RuntimeOptions $runtime + * + * @throws TeaError + * @throws Exception + * @throws TeaUnableRetryError + * + * @return GetLiveChannelStatResponse + */ + public function getLiveChannelStat($request, $runtime) + { + $request->validate(); + $runtime->validate(); + $_runtime = [ + 'timeouted' => 'retry', + 'readTimeout' => Utils::defaultNumber($runtime->readTimeout, $this->_readTimeout), + 'connectTimeout' => Utils::defaultNumber($runtime->connectTimeout, $this->_connectTimeout), + 'localAddr' => Utils::defaultString($runtime->localAddr, $this->_localAddr), + 'httpProxy' => Utils::defaultString($runtime->httpProxy, $this->_httpProxy), + 'httpsProxy' => Utils::defaultString($runtime->httpsProxy, $this->_httpsProxy), + 'noProxy' => Utils::defaultString($runtime->noProxy, $this->_noProxy), + 'socks5Proxy' => Utils::defaultString($runtime->socks5Proxy, $this->_socks5Proxy), + 'socks5NetWork' => Utils::defaultString($runtime->socks5NetWork, $this->_socks5NetWork), + 'maxIdleConns' => Utils::defaultNumber($runtime->maxIdleConns, $this->_maxIdleConns), + 'retry' => [ + 'retryable' => $runtime->autoretry, + 'maxAttempts' => Utils::defaultNumber($runtime->maxAttempts, 3), + ], + 'backoff' => [ + 'policy' => Utils::defaultString($runtime->backoffPolicy, 'no'), + 'period' => Utils::defaultNumber($runtime->backoffPeriod, 1), + ], + 'ignoreSSL' => $runtime->ignoreSSL, + ]; + $_lastRequest = null; + $_lastException = null; + $_now = time(); + $_retryTimes = 0; + while (Tea::allowRetry(@$_runtime['retry'], $_retryTimes, $_now)) { + if ($_retryTimes > 0) { + $_backoffTime = Tea::getBackoffTime(@$_runtime['backoff'], $_retryTimes); + if ($_backoffTime > 0) { + Tea::sleep($_backoffTime); + } + } + $_retryTimes = $_retryTimes + 1; + + try { + $_request = new Request(); + $accessKeyId = $this->_credential->getAccessKeyId(); + $accessKeySecret = $this->_credential->getAccessKeySecret(); + $token = $this->_credential->getSecurityToken(); + $_request->protocol = $this->_protocol; + $_request->method = 'GET'; + $_request->pathname = '/' . $request->channelName . '?live'; + $_request->headers = [ + 'host' => OSSUtils::getHost($request->bucketName, $this->_regionId, $this->_endpoint, $this->_hostModel), + 'date' => Utils::getDateUTCString(), + 'user-agent' => $this->getUserAgent(), + ]; + if (!Utils::empty_($token)) { + $_request->headers['x-oss-security-token'] = $token; + } + $_request->query = Utils::stringifyMapValue(Tea::merge($request->filter)); + $_request->headers['authorization'] = OSSUtils::getSignature($_request, $request->bucketName, $accessKeyId, $accessKeySecret, $this->_signatureVersion, $this->_addtionalHeaders); + $_lastRequest = $_request; + $_response = Tea::send($_request, $_runtime); + $respMap = null; + $bodyStr = null; + if (Utils::is4xx($_response->statusCode) || Utils::is5xx($_response->statusCode)) { + $bodyStr = Utils::readAsString($_response->body); + $respMap = OSSUtils::getErrMessage($bodyStr); + + throw new TeaError([ + 'code' => @$respMap['Code'], + 'message' => @$respMap['Message'], + 'data' => [ + 'httpCode' => $_response->statusCode, + 'requestId' => @$respMap['RequestId'], + 'hostId' => @$respMap['HostId'], + ], + ]); + } + $bodyStr = Utils::readAsString($_response->body); + $respMap = XML::parseXml($bodyStr, GetLiveChannelStatResponse::class); + + return GetLiveChannelStatResponse::fromMap(Tea::merge([ + 'LiveChannelStat' => @$respMap['LiveChannelStat'], + ], $_response->headers)); + } catch (Exception $e) { + if (!($e instanceof TeaError)) { + $e = new TeaError([], $e->getMessage(), $e->getCode(), $e); + } + if (Tea::isRetryable($e)) { + $_lastException = $e; + + continue; + } + + throw $e; + } + } + + throw new TeaUnableRetryError($_lastRequest, $_lastException); + } + + /** + * @param DeleteObjectRequest $request + * @param RuntimeOptions $runtime + * + * @throws TeaError + * @throws Exception + * @throws TeaUnableRetryError + * + * @return DeleteObjectResponse + */ + public function deleteObject($request, $runtime) + { + $request->validate(); + $runtime->validate(); + $_runtime = [ + 'timeouted' => 'retry', + 'readTimeout' => Utils::defaultNumber($runtime->readTimeout, $this->_readTimeout), + 'connectTimeout' => Utils::defaultNumber($runtime->connectTimeout, $this->_connectTimeout), + 'localAddr' => Utils::defaultString($runtime->localAddr, $this->_localAddr), + 'httpProxy' => Utils::defaultString($runtime->httpProxy, $this->_httpProxy), + 'httpsProxy' => Utils::defaultString($runtime->httpsProxy, $this->_httpsProxy), + 'noProxy' => Utils::defaultString($runtime->noProxy, $this->_noProxy), + 'socks5Proxy' => Utils::defaultString($runtime->socks5Proxy, $this->_socks5Proxy), + 'socks5NetWork' => Utils::defaultString($runtime->socks5NetWork, $this->_socks5NetWork), + 'maxIdleConns' => Utils::defaultNumber($runtime->maxIdleConns, $this->_maxIdleConns), + 'retry' => [ + 'retryable' => $runtime->autoretry, + 'maxAttempts' => Utils::defaultNumber($runtime->maxAttempts, 3), + ], + 'backoff' => [ + 'policy' => Utils::defaultString($runtime->backoffPolicy, 'no'), + 'period' => Utils::defaultNumber($runtime->backoffPeriod, 1), + ], + 'ignoreSSL' => $runtime->ignoreSSL, + ]; + $_lastRequest = null; + $_lastException = null; + $_now = time(); + $_retryTimes = 0; + while (Tea::allowRetry(@$_runtime['retry'], $_retryTimes, $_now)) { + if ($_retryTimes > 0) { + $_backoffTime = Tea::getBackoffTime(@$_runtime['backoff'], $_retryTimes); + if ($_backoffTime > 0) { + Tea::sleep($_backoffTime); + } + } + $_retryTimes = $_retryTimes + 1; + + try { + $_request = new Request(); + $accessKeyId = $this->_credential->getAccessKeyId(); + $accessKeySecret = $this->_credential->getAccessKeySecret(); + $token = $this->_credential->getSecurityToken(); + $_request->protocol = $this->_protocol; + $_request->method = 'DELETE'; + $_request->pathname = '/' . $request->objectName . ''; + $_request->headers = [ + 'host' => OSSUtils::getHost($request->bucketName, $this->_regionId, $this->_endpoint, $this->_hostModel), + 'date' => Utils::getDateUTCString(), + 'user-agent' => $this->getUserAgent(), + ]; + if (!Utils::empty_($token)) { + $_request->headers['x-oss-security-token'] = $token; + } + $_request->headers['authorization'] = OSSUtils::getSignature($_request, $request->bucketName, $accessKeyId, $accessKeySecret, $this->_signatureVersion, $this->_addtionalHeaders); + $_lastRequest = $_request; + $_response = Tea::send($_request, $_runtime); + $respMap = null; + $bodyStr = null; + if (Utils::is4xx($_response->statusCode) || Utils::is5xx($_response->statusCode)) { + $bodyStr = Utils::readAsString($_response->body); + $respMap = OSSUtils::getErrMessage($bodyStr); + + throw new TeaError([ + 'code' => @$respMap['Code'], + 'message' => @$respMap['Message'], + 'data' => [ + 'httpCode' => $_response->statusCode, + 'requestId' => @$respMap['RequestId'], + 'hostId' => @$respMap['HostId'], + ], + ]); + } + + return DeleteObjectResponse::fromMap(Tea::merge($_response->headers)); + } catch (Exception $e) { + if (!($e instanceof TeaError)) { + $e = new TeaError([], $e->getMessage(), $e->getCode(), $e); + } + if (Tea::isRetryable($e)) { + $_lastException = $e; + + continue; + } + + throw $e; + } + } + + throw new TeaUnableRetryError($_lastRequest, $_lastException); + } + + /** + * @param AbortMultipartUploadRequest $request + * @param RuntimeOptions $runtime + * + * @throws TeaError + * @throws Exception + * @throws TeaUnableRetryError + * + * @return AbortMultipartUploadResponse + */ + public function abortMultipartUpload($request, $runtime) + { + $request->validate(); + $runtime->validate(); + $_runtime = [ + 'timeouted' => 'retry', + 'readTimeout' => Utils::defaultNumber($runtime->readTimeout, $this->_readTimeout), + 'connectTimeout' => Utils::defaultNumber($runtime->connectTimeout, $this->_connectTimeout), + 'localAddr' => Utils::defaultString($runtime->localAddr, $this->_localAddr), + 'httpProxy' => Utils::defaultString($runtime->httpProxy, $this->_httpProxy), + 'httpsProxy' => Utils::defaultString($runtime->httpsProxy, $this->_httpsProxy), + 'noProxy' => Utils::defaultString($runtime->noProxy, $this->_noProxy), + 'socks5Proxy' => Utils::defaultString($runtime->socks5Proxy, $this->_socks5Proxy), + 'socks5NetWork' => Utils::defaultString($runtime->socks5NetWork, $this->_socks5NetWork), + 'maxIdleConns' => Utils::defaultNumber($runtime->maxIdleConns, $this->_maxIdleConns), + 'retry' => [ + 'retryable' => $runtime->autoretry, + 'maxAttempts' => Utils::defaultNumber($runtime->maxAttempts, 3), + ], + 'backoff' => [ + 'policy' => Utils::defaultString($runtime->backoffPolicy, 'no'), + 'period' => Utils::defaultNumber($runtime->backoffPeriod, 1), + ], + 'ignoreSSL' => $runtime->ignoreSSL, + ]; + $_lastRequest = null; + $_lastException = null; + $_now = time(); + $_retryTimes = 0; + while (Tea::allowRetry(@$_runtime['retry'], $_retryTimes, $_now)) { + if ($_retryTimes > 0) { + $_backoffTime = Tea::getBackoffTime(@$_runtime['backoff'], $_retryTimes); + if ($_backoffTime > 0) { + Tea::sleep($_backoffTime); + } + } + $_retryTimes = $_retryTimes + 1; + + try { + $_request = new Request(); + $accessKeyId = $this->_credential->getAccessKeyId(); + $accessKeySecret = $this->_credential->getAccessKeySecret(); + $token = $this->_credential->getSecurityToken(); + $_request->protocol = $this->_protocol; + $_request->method = 'DELETE'; + $_request->pathname = '/' . $request->objectName . ''; + $_request->headers = [ + 'host' => OSSUtils::getHost($request->bucketName, $this->_regionId, $this->_endpoint, $this->_hostModel), + 'date' => Utils::getDateUTCString(), + 'user-agent' => $this->getUserAgent(), + ]; + if (!Utils::empty_($token)) { + $_request->headers['x-oss-security-token'] = $token; + } + $_request->query = Utils::stringifyMapValue(Tea::merge($request->filter)); + $_request->headers['authorization'] = OSSUtils::getSignature($_request, $request->bucketName, $accessKeyId, $accessKeySecret, $this->_signatureVersion, $this->_addtionalHeaders); + $_lastRequest = $_request; + $_response = Tea::send($_request, $_runtime); + $respMap = null; + $bodyStr = null; + if (Utils::is4xx($_response->statusCode) || Utils::is5xx($_response->statusCode)) { + $bodyStr = Utils::readAsString($_response->body); + $respMap = OSSUtils::getErrMessage($bodyStr); + + throw new TeaError([ + 'code' => @$respMap['Code'], + 'message' => @$respMap['Message'], + 'data' => [ + 'httpCode' => $_response->statusCode, + 'requestId' => @$respMap['RequestId'], + 'hostId' => @$respMap['HostId'], + ], + ]); + } + + return AbortMultipartUploadResponse::fromMap(Tea::merge($_response->headers)); + } catch (Exception $e) { + if (!($e instanceof TeaError)) { + $e = new TeaError([], $e->getMessage(), $e->getCode(), $e); + } + if (Tea::isRetryable($e)) { + $_lastException = $e; + + continue; + } + + throw $e; + } + } + + throw new TeaUnableRetryError($_lastRequest, $_lastException); + } + + /** + * @param AppendObjectRequest $request + * @param RuntimeOptions $runtime + * + * @throws TeaError + * @throws Exception + * @throws TeaUnableRetryError + * + * @return AppendObjectResponse + */ + public function appendObject($request, $runtime) + { + $request->validate(); + $runtime->validate(); + $_runtime = [ + 'timeouted' => 'retry', + 'readTimeout' => Utils::defaultNumber($runtime->readTimeout, $this->_readTimeout), + 'connectTimeout' => Utils::defaultNumber($runtime->connectTimeout, $this->_connectTimeout), + 'localAddr' => Utils::defaultString($runtime->localAddr, $this->_localAddr), + 'httpProxy' => Utils::defaultString($runtime->httpProxy, $this->_httpProxy), + 'httpsProxy' => Utils::defaultString($runtime->httpsProxy, $this->_httpsProxy), + 'noProxy' => Utils::defaultString($runtime->noProxy, $this->_noProxy), + 'socks5Proxy' => Utils::defaultString($runtime->socks5Proxy, $this->_socks5Proxy), + 'socks5NetWork' => Utils::defaultString($runtime->socks5NetWork, $this->_socks5NetWork), + 'maxIdleConns' => Utils::defaultNumber($runtime->maxIdleConns, $this->_maxIdleConns), + 'retry' => [ + 'retryable' => $runtime->autoretry, + 'maxAttempts' => Utils::defaultNumber($runtime->maxAttempts, 3), + ], + 'backoff' => [ + 'policy' => Utils::defaultString($runtime->backoffPolicy, 'no'), + 'period' => Utils::defaultNumber($runtime->backoffPeriod, 1), + ], + 'ignoreSSL' => $runtime->ignoreSSL, + ]; + $_lastRequest = null; + $_lastException = null; + $_now = time(); + $_retryTimes = 0; + while (Tea::allowRetry(@$_runtime['retry'], $_retryTimes, $_now)) { + if ($_retryTimes > 0) { + $_backoffTime = Tea::getBackoffTime(@$_runtime['backoff'], $_retryTimes); + if ($_backoffTime > 0) { + Tea::sleep($_backoffTime); + } + } + $_retryTimes = $_retryTimes + 1; + + try { + $_request = new Request(); + $ctx = []; + $accessKeyId = $this->_credential->getAccessKeyId(); + $accessKeySecret = $this->_credential->getAccessKeySecret(); + $token = $this->_credential->getSecurityToken(); + $_request->protocol = $this->_protocol; + $_request->method = 'POST'; + $_request->pathname = '/' . $request->objectName . '?append'; + $_request->headers = Tea::merge([ + 'host' => OSSUtils::getHost($request->bucketName, $this->_regionId, $this->_endpoint, $this->_hostModel), + 'date' => Utils::getDateUTCString(), + 'user-agent' => $this->getUserAgent(), + ], Utils::stringifyMapValue(Tea::merge($request->header)), OSSUtils::parseMeta($request->userMeta, 'x-oss-meta-')); + if (!Utils::empty_($token)) { + $_request->headers['x-oss-security-token'] = $token; + } + $_request->query = Utils::stringifyMapValue(Tea::merge($request->filter)); + $_request->body = OSSUtils::inject($request->body, $ctx); + if (!Utils::isUnset($request->header) && !Utils::empty_($request->header->contentType)) { + $_request->headers['content-type'] = $request->header->contentType; + } else { + $_request->headers['content-type'] = OSSUtils::getContentType($request->objectName); + } + $_request->headers['authorization'] = OSSUtils::getSignature($_request, $request->bucketName, $accessKeyId, $accessKeySecret, $this->_signatureVersion, $this->_addtionalHeaders); + $_lastRequest = $_request; + $_response = Tea::send($_request, $_runtime); + $respMap = null; + $bodyStr = null; + if (Utils::is4xx($_response->statusCode) || Utils::is5xx($_response->statusCode)) { + $bodyStr = Utils::readAsString($_response->body); + $respMap = OSSUtils::getErrMessage($bodyStr); + + throw new TeaError([ + 'code' => @$respMap['Code'], + 'message' => @$respMap['Message'], + 'data' => [ + 'httpCode' => $_response->statusCode, + 'requestId' => @$respMap['RequestId'], + 'hostId' => @$respMap['HostId'], + ], + ]); + } + if ($this->_isEnableCrc && !Utils::equalString(@$ctx['crc'], @$_response->headers['x-oss-hash-crc64ecma'])) { + throw new TeaError([ + 'code' => 'CrcNotMatched', + 'data' => [ + 'clientCrc' => @$ctx['crc'], + 'serverCrc' => @$_response->headers['x-oss-hash-crc64ecma'], + ], + ]); + } + if ($this->_isEnableMD5 && !Utils::equalString(@$ctx['md5'], @$_response->headers['content-md5'])) { + throw new TeaError([ + 'code' => 'MD5NotMatched', + 'data' => [ + 'clientMD5' => @$ctx['md5'], + 'serverMD5' => @$_response->headers['content-md5'], + ], + ]); + } + + return AppendObjectResponse::fromMap(Tea::merge($_response->headers)); + } catch (Exception $e) { + if (!($e instanceof TeaError)) { + $e = new TeaError([], $e->getMessage(), $e->getCode(), $e); + } + if (Tea::isRetryable($e)) { + $_lastException = $e; + + continue; + } + + throw $e; + } + } + + throw new TeaUnableRetryError($_lastRequest, $_lastException); + } + + /** + * @param UploadPartCopyRequest $request + * @param RuntimeOptions $runtime + * + * @throws TeaError + * @throws Exception + * @throws TeaUnableRetryError + * + * @return UploadPartCopyResponse + */ + public function uploadPartCopy($request, $runtime) + { + $request->validate(); + $runtime->validate(); + $_runtime = [ + 'timeouted' => 'retry', + 'readTimeout' => Utils::defaultNumber($runtime->readTimeout, $this->_readTimeout), + 'connectTimeout' => Utils::defaultNumber($runtime->connectTimeout, $this->_connectTimeout), + 'localAddr' => Utils::defaultString($runtime->localAddr, $this->_localAddr), + 'httpProxy' => Utils::defaultString($runtime->httpProxy, $this->_httpProxy), + 'httpsProxy' => Utils::defaultString($runtime->httpsProxy, $this->_httpsProxy), + 'noProxy' => Utils::defaultString($runtime->noProxy, $this->_noProxy), + 'socks5Proxy' => Utils::defaultString($runtime->socks5Proxy, $this->_socks5Proxy), + 'socks5NetWork' => Utils::defaultString($runtime->socks5NetWork, $this->_socks5NetWork), + 'maxIdleConns' => Utils::defaultNumber($runtime->maxIdleConns, $this->_maxIdleConns), + 'retry' => [ + 'retryable' => $runtime->autoretry, + 'maxAttempts' => Utils::defaultNumber($runtime->maxAttempts, 3), + ], + 'backoff' => [ + 'policy' => Utils::defaultString($runtime->backoffPolicy, 'no'), + 'period' => Utils::defaultNumber($runtime->backoffPeriod, 1), + ], + 'ignoreSSL' => $runtime->ignoreSSL, + ]; + $_lastRequest = null; + $_lastException = null; + $_now = time(); + $_retryTimes = 0; + while (Tea::allowRetry(@$_runtime['retry'], $_retryTimes, $_now)) { + if ($_retryTimes > 0) { + $_backoffTime = Tea::getBackoffTime(@$_runtime['backoff'], $_retryTimes); + if ($_backoffTime > 0) { + Tea::sleep($_backoffTime); + } + } + $_retryTimes = $_retryTimes + 1; + + try { + $_request = new Request(); + $accessKeyId = $this->_credential->getAccessKeyId(); + $accessKeySecret = $this->_credential->getAccessKeySecret(); + $token = $this->_credential->getSecurityToken(); + $_request->protocol = $this->_protocol; + $_request->method = 'PUT'; + $_request->pathname = '/' . $request->objectName . ''; + $_request->headers = Tea::merge([ + 'host' => OSSUtils::getHost($request->bucketName, $this->_regionId, $this->_endpoint, $this->_hostModel), + 'date' => Utils::getDateUTCString(), + 'user-agent' => $this->getUserAgent(), + ], Utils::stringifyMapValue(Tea::merge($request->header))); + if (!Utils::empty_($token)) { + $_request->headers['x-oss-security-token'] = $token; + } + $_request->query = Utils::stringifyMapValue(Tea::merge($request->filter)); + $_request->headers['authorization'] = OSSUtils::getSignature($_request, $request->bucketName, $accessKeyId, $accessKeySecret, $this->_signatureVersion, $this->_addtionalHeaders); + $_lastRequest = $_request; + $_response = Tea::send($_request, $_runtime); + $respMap = null; + $bodyStr = null; + if (Utils::is4xx($_response->statusCode) || Utils::is5xx($_response->statusCode)) { + $bodyStr = Utils::readAsString($_response->body); + $respMap = OSSUtils::getErrMessage($bodyStr); + + throw new TeaError([ + 'code' => @$respMap['Code'], + 'message' => @$respMap['Message'], + 'data' => [ + 'httpCode' => $_response->statusCode, + 'requestId' => @$respMap['RequestId'], + 'hostId' => @$respMap['HostId'], + ], + ]); + } + $bodyStr = Utils::readAsString($_response->body); + $respMap = XML::parseXml($bodyStr, UploadPartCopyResponse::class); + + return UploadPartCopyResponse::fromMap(Tea::merge([ + 'CopyPartResult' => @$respMap['CopyPartResult'], + ], $_response->headers)); + } catch (Exception $e) { + if (!($e instanceof TeaError)) { + $e = new TeaError([], $e->getMessage(), $e->getCode(), $e); + } + if (Tea::isRetryable($e)) { + $_lastException = $e; + + continue; + } + + throw $e; + } + } + + throw new TeaUnableRetryError($_lastRequest, $_lastException); + } + + /** + * @param GetVodPlaylistRequest $request + * @param RuntimeOptions $runtime + * + * @throws TeaError + * @throws Exception + * @throws TeaUnableRetryError + * + * @return GetVodPlaylistResponse + */ + public function getVodPlaylist($request, $runtime) + { + $request->validate(); + $runtime->validate(); + $_runtime = [ + 'timeouted' => 'retry', + 'readTimeout' => Utils::defaultNumber($runtime->readTimeout, $this->_readTimeout), + 'connectTimeout' => Utils::defaultNumber($runtime->connectTimeout, $this->_connectTimeout), + 'localAddr' => Utils::defaultString($runtime->localAddr, $this->_localAddr), + 'httpProxy' => Utils::defaultString($runtime->httpProxy, $this->_httpProxy), + 'httpsProxy' => Utils::defaultString($runtime->httpsProxy, $this->_httpsProxy), + 'noProxy' => Utils::defaultString($runtime->noProxy, $this->_noProxy), + 'socks5Proxy' => Utils::defaultString($runtime->socks5Proxy, $this->_socks5Proxy), + 'socks5NetWork' => Utils::defaultString($runtime->socks5NetWork, $this->_socks5NetWork), + 'maxIdleConns' => Utils::defaultNumber($runtime->maxIdleConns, $this->_maxIdleConns), + 'retry' => [ + 'retryable' => $runtime->autoretry, + 'maxAttempts' => Utils::defaultNumber($runtime->maxAttempts, 3), + ], + 'backoff' => [ + 'policy' => Utils::defaultString($runtime->backoffPolicy, 'no'), + 'period' => Utils::defaultNumber($runtime->backoffPeriod, 1), + ], + 'ignoreSSL' => $runtime->ignoreSSL, + ]; + $_lastRequest = null; + $_lastException = null; + $_now = time(); + $_retryTimes = 0; + while (Tea::allowRetry(@$_runtime['retry'], $_retryTimes, $_now)) { + if ($_retryTimes > 0) { + $_backoffTime = Tea::getBackoffTime(@$_runtime['backoff'], $_retryTimes); + if ($_backoffTime > 0) { + Tea::sleep($_backoffTime); + } + } + $_retryTimes = $_retryTimes + 1; + + try { + $_request = new Request(); + $accessKeyId = $this->_credential->getAccessKeyId(); + $accessKeySecret = $this->_credential->getAccessKeySecret(); + $token = $this->_credential->getSecurityToken(); + $_request->protocol = $this->_protocol; + $_request->method = 'GET'; + $_request->pathname = '/' . $request->channelName . '?vod'; + $_request->headers = [ + 'host' => OSSUtils::getHost($request->bucketName, $this->_regionId, $this->_endpoint, $this->_hostModel), + 'date' => Utils::getDateUTCString(), + 'user-agent' => $this->getUserAgent(), + ]; + if (!Utils::empty_($token)) { + $_request->headers['x-oss-security-token'] = $token; + } + $_request->query = Utils::stringifyMapValue(Tea::merge($request->filter)); + $_request->headers['authorization'] = OSSUtils::getSignature($_request, $request->bucketName, $accessKeyId, $accessKeySecret, $this->_signatureVersion, $this->_addtionalHeaders); + $_lastRequest = $_request; + $_response = Tea::send($_request, $_runtime); + $respMap = null; + $bodyStr = null; + if (Utils::is4xx($_response->statusCode) || Utils::is5xx($_response->statusCode)) { + $bodyStr = Utils::readAsString($_response->body); + $respMap = OSSUtils::getErrMessage($bodyStr); + + throw new TeaError([ + 'code' => @$respMap['Code'], + 'message' => @$respMap['Message'], + 'data' => [ + 'httpCode' => $_response->statusCode, + 'requestId' => @$respMap['RequestId'], + 'hostId' => @$respMap['HostId'], + ], + ]); + } + + return GetVodPlaylistResponse::fromMap(Tea::merge($_response->headers)); + } catch (Exception $e) { + if (!($e instanceof TeaError)) { + $e = new TeaError([], $e->getMessage(), $e->getCode(), $e); + } + if (Tea::isRetryable($e)) { + $_lastException = $e; + + continue; + } + + throw $e; + } + } + + throw new TeaUnableRetryError($_lastRequest, $_lastException); + } + + /** + * @param DeleteBucketCORSRequest $request + * @param RuntimeOptions $runtime + * + * @throws TeaError + * @throws Exception + * @throws TeaUnableRetryError + * + * @return DeleteBucketCORSResponse + */ + public function deleteBucketCORS($request, $runtime) + { + $request->validate(); + $runtime->validate(); + $_runtime = [ + 'timeouted' => 'retry', + 'readTimeout' => Utils::defaultNumber($runtime->readTimeout, $this->_readTimeout), + 'connectTimeout' => Utils::defaultNumber($runtime->connectTimeout, $this->_connectTimeout), + 'localAddr' => Utils::defaultString($runtime->localAddr, $this->_localAddr), + 'httpProxy' => Utils::defaultString($runtime->httpProxy, $this->_httpProxy), + 'httpsProxy' => Utils::defaultString($runtime->httpsProxy, $this->_httpsProxy), + 'noProxy' => Utils::defaultString($runtime->noProxy, $this->_noProxy), + 'socks5Proxy' => Utils::defaultString($runtime->socks5Proxy, $this->_socks5Proxy), + 'socks5NetWork' => Utils::defaultString($runtime->socks5NetWork, $this->_socks5NetWork), + 'maxIdleConns' => Utils::defaultNumber($runtime->maxIdleConns, $this->_maxIdleConns), + 'retry' => [ + 'retryable' => $runtime->autoretry, + 'maxAttempts' => Utils::defaultNumber($runtime->maxAttempts, 3), + ], + 'backoff' => [ + 'policy' => Utils::defaultString($runtime->backoffPolicy, 'no'), + 'period' => Utils::defaultNumber($runtime->backoffPeriod, 1), + ], + 'ignoreSSL' => $runtime->ignoreSSL, + ]; + $_lastRequest = null; + $_lastException = null; + $_now = time(); + $_retryTimes = 0; + while (Tea::allowRetry(@$_runtime['retry'], $_retryTimes, $_now)) { + if ($_retryTimes > 0) { + $_backoffTime = Tea::getBackoffTime(@$_runtime['backoff'], $_retryTimes); + if ($_backoffTime > 0) { + Tea::sleep($_backoffTime); + } + } + $_retryTimes = $_retryTimes + 1; + + try { + $_request = new Request(); + $accessKeyId = $this->_credential->getAccessKeyId(); + $accessKeySecret = $this->_credential->getAccessKeySecret(); + $token = $this->_credential->getSecurityToken(); + $_request->protocol = $this->_protocol; + $_request->method = 'DELETE'; + $_request->pathname = '/?cors'; + $_request->headers = [ + 'host' => OSSUtils::getHost($request->bucketName, $this->_regionId, $this->_endpoint, $this->_hostModel), + 'date' => Utils::getDateUTCString(), + 'user-agent' => $this->getUserAgent(), + ]; + if (!Utils::empty_($token)) { + $_request->headers['x-oss-security-token'] = $token; + } + $_request->headers['authorization'] = OSSUtils::getSignature($_request, $request->bucketName, $accessKeyId, $accessKeySecret, $this->_signatureVersion, $this->_addtionalHeaders); + $_lastRequest = $_request; + $_response = Tea::send($_request, $_runtime); + $respMap = null; + $bodyStr = null; + if (Utils::is4xx($_response->statusCode) || Utils::is5xx($_response->statusCode)) { + $bodyStr = Utils::readAsString($_response->body); + $respMap = OSSUtils::getErrMessage($bodyStr); + + throw new TeaError([ + 'code' => @$respMap['Code'], + 'message' => @$respMap['Message'], + 'data' => [ + 'httpCode' => $_response->statusCode, + 'requestId' => @$respMap['RequestId'], + 'hostId' => @$respMap['HostId'], + ], + ]); + } + + return DeleteBucketCORSResponse::fromMap(Tea::merge($_response->headers)); + } catch (Exception $e) { + if (!($e instanceof TeaError)) { + $e = new TeaError([], $e->getMessage(), $e->getCode(), $e); + } + if (Tea::isRetryable($e)) { + $_lastException = $e; + + continue; + } + + throw $e; + } + } + + throw new TeaUnableRetryError($_lastRequest, $_lastException); + } + + /** + * @param GetObjectRequest $request + * @param RuntimeOptions $runtime + * + * @throws TeaError + * @throws Exception + * @throws TeaUnableRetryError + * + * @return GetObjectResponse + */ + public function getObject($request, $runtime) + { + $request->validate(); + $runtime->validate(); + $_runtime = [ + 'timeouted' => 'retry', + 'readTimeout' => Utils::defaultNumber($runtime->readTimeout, $this->_readTimeout), + 'connectTimeout' => Utils::defaultNumber($runtime->connectTimeout, $this->_connectTimeout), + 'localAddr' => Utils::defaultString($runtime->localAddr, $this->_localAddr), + 'httpProxy' => Utils::defaultString($runtime->httpProxy, $this->_httpProxy), + 'httpsProxy' => Utils::defaultString($runtime->httpsProxy, $this->_httpsProxy), + 'noProxy' => Utils::defaultString($runtime->noProxy, $this->_noProxy), + 'socks5Proxy' => Utils::defaultString($runtime->socks5Proxy, $this->_socks5Proxy), + 'socks5NetWork' => Utils::defaultString($runtime->socks5NetWork, $this->_socks5NetWork), + 'maxIdleConns' => Utils::defaultNumber($runtime->maxIdleConns, $this->_maxIdleConns), + 'retry' => [ + 'retryable' => $runtime->autoretry, + 'maxAttempts' => Utils::defaultNumber($runtime->maxAttempts, 3), + ], + 'backoff' => [ + 'policy' => Utils::defaultString($runtime->backoffPolicy, 'no'), + 'period' => Utils::defaultNumber($runtime->backoffPeriod, 1), + ], + 'ignoreSSL' => $runtime->ignoreSSL, + ]; + $_lastRequest = null; + $_lastException = null; + $_now = time(); + $_retryTimes = 0; + while (Tea::allowRetry(@$_runtime['retry'], $_retryTimes, $_now)) { + if ($_retryTimes > 0) { + $_backoffTime = Tea::getBackoffTime(@$_runtime['backoff'], $_retryTimes); + if ($_backoffTime > 0) { + Tea::sleep($_backoffTime); + } + } + $_retryTimes = $_retryTimes + 1; + + try { + $_request = new Request(); + $accessKeyId = $this->_credential->getAccessKeyId(); + $accessKeySecret = $this->_credential->getAccessKeySecret(); + $token = $this->_credential->getSecurityToken(); + $_request->protocol = $this->_protocol; + $_request->method = 'GET'; + $_request->pathname = '/' . $request->objectName . ''; + $_request->headers = Tea::merge([ + 'host' => OSSUtils::getHost($request->bucketName, $this->_regionId, $this->_endpoint, $this->_hostModel), + 'date' => Utils::getDateUTCString(), + 'user-agent' => $this->getUserAgent(), + ], Utils::stringifyMapValue(Tea::merge($request->header))); + if (!Utils::empty_($token)) { + $_request->headers['x-oss-security-token'] = $token; + } + $_request->headers['authorization'] = OSSUtils::getSignature($_request, $request->bucketName, $accessKeyId, $accessKeySecret, $this->_signatureVersion, $this->_addtionalHeaders); + $_lastRequest = $_request; + $_response = Tea::send($_request, $_runtime); + $respMap = null; + $bodyStr = null; + if (Utils::is4xx($_response->statusCode) || Utils::is5xx($_response->statusCode)) { + $bodyStr = Utils::readAsString($_response->body); + $respMap = OSSUtils::getErrMessage($bodyStr); + + throw new TeaError([ + 'code' => @$respMap['Code'], + 'message' => @$respMap['Message'], + 'data' => [ + 'httpCode' => $_response->statusCode, + 'requestId' => @$respMap['RequestId'], + 'hostId' => @$respMap['HostId'], + ], + ]); + } + + return GetObjectResponse::fromMap(Tea::merge([ + 'body' => $_response->body, + ], $_response->headers)); + } catch (Exception $e) { + if (!($e instanceof TeaError)) { + $e = new TeaError([], $e->getMessage(), $e->getCode(), $e); + } + if (Tea::isRetryable($e)) { + $_lastException = $e; + + continue; + } + + throw $e; + } + } + + throw new TeaUnableRetryError($_lastRequest, $_lastException); + } + + /** + * @param UploadPartRequest $request + * @param RuntimeOptions $runtime + * + * @throws TeaError + * @throws Exception + * @throws TeaUnableRetryError + * + * @return UploadPartResponse + */ + public function uploadPart($request, $runtime) + { + $request->validate(); + $runtime->validate(); + $_runtime = [ + 'timeouted' => 'retry', + 'readTimeout' => Utils::defaultNumber($runtime->readTimeout, $this->_readTimeout), + 'connectTimeout' => Utils::defaultNumber($runtime->connectTimeout, $this->_connectTimeout), + 'localAddr' => Utils::defaultString($runtime->localAddr, $this->_localAddr), + 'httpProxy' => Utils::defaultString($runtime->httpProxy, $this->_httpProxy), + 'httpsProxy' => Utils::defaultString($runtime->httpsProxy, $this->_httpsProxy), + 'noProxy' => Utils::defaultString($runtime->noProxy, $this->_noProxy), + 'socks5Proxy' => Utils::defaultString($runtime->socks5Proxy, $this->_socks5Proxy), + 'socks5NetWork' => Utils::defaultString($runtime->socks5NetWork, $this->_socks5NetWork), + 'maxIdleConns' => Utils::defaultNumber($runtime->maxIdleConns, $this->_maxIdleConns), + 'retry' => [ + 'retryable' => $runtime->autoretry, + 'maxAttempts' => Utils::defaultNumber($runtime->maxAttempts, 3), + ], + 'backoff' => [ + 'policy' => Utils::defaultString($runtime->backoffPolicy, 'no'), + 'period' => Utils::defaultNumber($runtime->backoffPeriod, 1), + ], + 'ignoreSSL' => $runtime->ignoreSSL, + ]; + $_lastRequest = null; + $_lastException = null; + $_now = time(); + $_retryTimes = 0; + while (Tea::allowRetry(@$_runtime['retry'], $_retryTimes, $_now)) { + if ($_retryTimes > 0) { + $_backoffTime = Tea::getBackoffTime(@$_runtime['backoff'], $_retryTimes); + if ($_backoffTime > 0) { + Tea::sleep($_backoffTime); + } + } + $_retryTimes = $_retryTimes + 1; + + try { + $_request = new Request(); + $ctx = []; + $accessKeyId = $this->_credential->getAccessKeyId(); + $accessKeySecret = $this->_credential->getAccessKeySecret(); + $token = $this->_credential->getSecurityToken(); + $_request->protocol = $this->_protocol; + $_request->method = 'PUT'; + $_request->pathname = '/' . $request->objectName . ''; + $_request->headers = [ + 'host' => OSSUtils::getHost($request->bucketName, $this->_regionId, $this->_endpoint, $this->_hostModel), + 'date' => Utils::getDateUTCString(), + 'user-agent' => $this->getUserAgent(), + ]; + if (!Utils::empty_($token)) { + $_request->headers['x-oss-security-token'] = $token; + } + $_request->query = Utils::stringifyMapValue(Tea::merge($request->filter)); + $_request->body = OSSUtils::inject($request->body, $ctx); + $_request->headers['authorization'] = OSSUtils::getSignature($_request, $request->bucketName, $accessKeyId, $accessKeySecret, $this->_signatureVersion, $this->_addtionalHeaders); + $_lastRequest = $_request; + $_response = Tea::send($_request, $_runtime); + $respMap = null; + $bodyStr = null; + if (Utils::is4xx($_response->statusCode) || Utils::is5xx($_response->statusCode)) { + $bodyStr = Utils::readAsString($_response->body); + $respMap = OSSUtils::getErrMessage($bodyStr); + + throw new TeaError([ + 'code' => @$respMap['Code'], + 'message' => @$respMap['Message'], + 'data' => [ + 'httpCode' => $_response->statusCode, + 'requestId' => @$respMap['RequestId'], + 'hostId' => @$respMap['HostId'], + ], + ]); + } + if ($this->_isEnableCrc && !Utils::equalString(@$ctx['crc'], @$_response->headers['x-oss-hash-crc64ecma'])) { + throw new TeaError([ + 'code' => 'CrcNotMatched', + 'data' => [ + 'clientCrc' => @$ctx['crc'], + 'serverCrc' => @$_response->headers['x-oss-hash-crc64ecma'], + ], + ]); + } + if ($this->_isEnableMD5 && !Utils::equalString(@$ctx['md5'], @$_response->headers['content-md5'])) { + throw new TeaError([ + 'code' => 'MD5NotMatched', + 'data' => [ + 'clientMD5' => @$ctx['md5'], + 'serverMD5' => @$_response->headers['content-md5'], + ], + ]); + } + + return UploadPartResponse::fromMap(Tea::merge($_response->headers)); + } catch (Exception $e) { + if (!($e instanceof TeaError)) { + $e = new TeaError([], $e->getMessage(), $e->getCode(), $e); + } + if (Tea::isRetryable($e)) { + $_lastException = $e; + + continue; + } + + throw $e; + } + } + + throw new TeaUnableRetryError($_lastRequest, $_lastException); + } + + /** + * @param GetBucketCORSRequest $request + * @param RuntimeOptions $runtime + * + * @throws TeaError + * @throws Exception + * @throws TeaUnableRetryError + * + * @return GetBucketCORSResponse + */ + public function getBucketCORS($request, $runtime) + { + $request->validate(); + $runtime->validate(); + $_runtime = [ + 'timeouted' => 'retry', + 'readTimeout' => Utils::defaultNumber($runtime->readTimeout, $this->_readTimeout), + 'connectTimeout' => Utils::defaultNumber($runtime->connectTimeout, $this->_connectTimeout), + 'localAddr' => Utils::defaultString($runtime->localAddr, $this->_localAddr), + 'httpProxy' => Utils::defaultString($runtime->httpProxy, $this->_httpProxy), + 'httpsProxy' => Utils::defaultString($runtime->httpsProxy, $this->_httpsProxy), + 'noProxy' => Utils::defaultString($runtime->noProxy, $this->_noProxy), + 'socks5Proxy' => Utils::defaultString($runtime->socks5Proxy, $this->_socks5Proxy), + 'socks5NetWork' => Utils::defaultString($runtime->socks5NetWork, $this->_socks5NetWork), + 'maxIdleConns' => Utils::defaultNumber($runtime->maxIdleConns, $this->_maxIdleConns), + 'retry' => [ + 'retryable' => $runtime->autoretry, + 'maxAttempts' => Utils::defaultNumber($runtime->maxAttempts, 3), + ], + 'backoff' => [ + 'policy' => Utils::defaultString($runtime->backoffPolicy, 'no'), + 'period' => Utils::defaultNumber($runtime->backoffPeriod, 1), + ], + 'ignoreSSL' => $runtime->ignoreSSL, + ]; + $_lastRequest = null; + $_lastException = null; + $_now = time(); + $_retryTimes = 0; + while (Tea::allowRetry(@$_runtime['retry'], $_retryTimes, $_now)) { + if ($_retryTimes > 0) { + $_backoffTime = Tea::getBackoffTime(@$_runtime['backoff'], $_retryTimes); + if ($_backoffTime > 0) { + Tea::sleep($_backoffTime); + } + } + $_retryTimes = $_retryTimes + 1; + + try { + $_request = new Request(); + $accessKeyId = $this->_credential->getAccessKeyId(); + $accessKeySecret = $this->_credential->getAccessKeySecret(); + $token = $this->_credential->getSecurityToken(); + $_request->protocol = $this->_protocol; + $_request->method = 'GET'; + $_request->pathname = '/?cors'; + $_request->headers = [ + 'host' => OSSUtils::getHost($request->bucketName, $this->_regionId, $this->_endpoint, $this->_hostModel), + 'date' => Utils::getDateUTCString(), + 'user-agent' => $this->getUserAgent(), + ]; + if (!Utils::empty_($token)) { + $_request->headers['x-oss-security-token'] = $token; + } + $_request->headers['authorization'] = OSSUtils::getSignature($_request, $request->bucketName, $accessKeyId, $accessKeySecret, $this->_signatureVersion, $this->_addtionalHeaders); + $_lastRequest = $_request; + $_response = Tea::send($_request, $_runtime); + $respMap = null; + $bodyStr = null; + if (Utils::is4xx($_response->statusCode) || Utils::is5xx($_response->statusCode)) { + $bodyStr = Utils::readAsString($_response->body); + $respMap = OSSUtils::getErrMessage($bodyStr); + + throw new TeaError([ + 'code' => @$respMap['Code'], + 'message' => @$respMap['Message'], + 'data' => [ + 'httpCode' => $_response->statusCode, + 'requestId' => @$respMap['RequestId'], + 'hostId' => @$respMap['HostId'], + ], + ]); + } + $bodyStr = Utils::readAsString($_response->body); + $respMap = XML::parseXml($bodyStr, GetBucketCORSResponse::class); + + return GetBucketCORSResponse::fromMap(Tea::merge([ + 'CORSConfiguration' => @$respMap['CORSConfiguration'], + ], $_response->headers)); + } catch (Exception $e) { + if (!($e instanceof TeaError)) { + $e = new TeaError([], $e->getMessage(), $e->getCode(), $e); + } + if (Tea::isRetryable($e)) { + $_lastException = $e; + + continue; + } + + throw $e; + } + } + + throw new TeaUnableRetryError($_lastRequest, $_lastException); + } + + /** + * @param CopyObjectRequest $request + * @param RuntimeOptions $runtime + * + * @throws TeaError + * @throws Exception + * @throws TeaUnableRetryError + * + * @return CopyObjectResponse + */ + public function copyObject($request, $runtime) + { + $request->validate(); + $runtime->validate(); + $_runtime = [ + 'timeouted' => 'retry', + 'readTimeout' => Utils::defaultNumber($runtime->readTimeout, $this->_readTimeout), + 'connectTimeout' => Utils::defaultNumber($runtime->connectTimeout, $this->_connectTimeout), + 'localAddr' => Utils::defaultString($runtime->localAddr, $this->_localAddr), + 'httpProxy' => Utils::defaultString($runtime->httpProxy, $this->_httpProxy), + 'httpsProxy' => Utils::defaultString($runtime->httpsProxy, $this->_httpsProxy), + 'noProxy' => Utils::defaultString($runtime->noProxy, $this->_noProxy), + 'socks5Proxy' => Utils::defaultString($runtime->socks5Proxy, $this->_socks5Proxy), + 'socks5NetWork' => Utils::defaultString($runtime->socks5NetWork, $this->_socks5NetWork), + 'maxIdleConns' => Utils::defaultNumber($runtime->maxIdleConns, $this->_maxIdleConns), + 'retry' => [ + 'retryable' => $runtime->autoretry, + 'maxAttempts' => Utils::defaultNumber($runtime->maxAttempts, 3), + ], + 'backoff' => [ + 'policy' => Utils::defaultString($runtime->backoffPolicy, 'no'), + 'period' => Utils::defaultNumber($runtime->backoffPeriod, 1), + ], + 'ignoreSSL' => $runtime->ignoreSSL, + ]; + $_lastRequest = null; + $_lastException = null; + $_now = time(); + $_retryTimes = 0; + while (Tea::allowRetry(@$_runtime['retry'], $_retryTimes, $_now)) { + if ($_retryTimes > 0) { + $_backoffTime = Tea::getBackoffTime(@$_runtime['backoff'], $_retryTimes); + if ($_backoffTime > 0) { + Tea::sleep($_backoffTime); + } + } + $_retryTimes = $_retryTimes + 1; + + try { + $_request = new Request(); + $accessKeyId = $this->_credential->getAccessKeyId(); + $accessKeySecret = $this->_credential->getAccessKeySecret(); + $token = $this->_credential->getSecurityToken(); + $_request->protocol = $this->_protocol; + $_request->method = 'PUT'; + $_request->pathname = '/' . $request->destObjectName . ''; + $_request->headers = Tea::merge([ + 'host' => OSSUtils::getHost($request->bucketName, $this->_regionId, $this->_endpoint, $this->_hostModel), + 'date' => Utils::getDateUTCString(), + 'user-agent' => $this->getUserAgent(), + ], Utils::stringifyMapValue(Tea::merge($request->header))); + if (!Utils::empty_($token)) { + $_request->headers['x-oss-security-token'] = $token; + } + $_request->headers['x-oss-copy-source'] = OSSUtils::encode(@$_request->headers['x-oss-copy-source'], 'UrlEncode'); + $_request->headers['authorization'] = OSSUtils::getSignature($_request, $request->bucketName, $accessKeyId, $accessKeySecret, $this->_signatureVersion, $this->_addtionalHeaders); + $_lastRequest = $_request; + $_response = Tea::send($_request, $_runtime); + $respMap = null; + $bodyStr = null; + if (Utils::is4xx($_response->statusCode) || Utils::is5xx($_response->statusCode)) { + $bodyStr = Utils::readAsString($_response->body); + $respMap = OSSUtils::getErrMessage($bodyStr); + + throw new TeaError([ + 'code' => @$respMap['Code'], + 'message' => @$respMap['Message'], + 'data' => [ + 'httpCode' => $_response->statusCode, + 'requestId' => @$respMap['RequestId'], + 'hostId' => @$respMap['HostId'], + ], + ]); + } + $bodyStr = Utils::readAsString($_response->body); + $respMap = XML::parseXml($bodyStr, CopyObjectResponse::class); + + return CopyObjectResponse::fromMap(Tea::merge([ + 'CopyObjectResult' => @$respMap['CopyObjectResult'], + ], $_response->headers)); + } catch (Exception $e) { + if (!($e instanceof TeaError)) { + $e = new TeaError([], $e->getMessage(), $e->getCode(), $e); + } + if (Tea::isRetryable($e)) { + $_lastException = $e; + + continue; + } + + throw $e; + } + } + + throw new TeaUnableRetryError($_lastRequest, $_lastException); + } + + /** + * @param GetObjectTaggingRequest $request + * @param RuntimeOptions $runtime + * + * @throws TeaError + * @throws Exception + * @throws TeaUnableRetryError + * + * @return GetObjectTaggingResponse + */ + public function getObjectTagging($request, $runtime) + { + $request->validate(); + $runtime->validate(); + $_runtime = [ + 'timeouted' => 'retry', + 'readTimeout' => Utils::defaultNumber($runtime->readTimeout, $this->_readTimeout), + 'connectTimeout' => Utils::defaultNumber($runtime->connectTimeout, $this->_connectTimeout), + 'localAddr' => Utils::defaultString($runtime->localAddr, $this->_localAddr), + 'httpProxy' => Utils::defaultString($runtime->httpProxy, $this->_httpProxy), + 'httpsProxy' => Utils::defaultString($runtime->httpsProxy, $this->_httpsProxy), + 'noProxy' => Utils::defaultString($runtime->noProxy, $this->_noProxy), + 'socks5Proxy' => Utils::defaultString($runtime->socks5Proxy, $this->_socks5Proxy), + 'socks5NetWork' => Utils::defaultString($runtime->socks5NetWork, $this->_socks5NetWork), + 'maxIdleConns' => Utils::defaultNumber($runtime->maxIdleConns, $this->_maxIdleConns), + 'retry' => [ + 'retryable' => $runtime->autoretry, + 'maxAttempts' => Utils::defaultNumber($runtime->maxAttempts, 3), + ], + 'backoff' => [ + 'policy' => Utils::defaultString($runtime->backoffPolicy, 'no'), + 'period' => Utils::defaultNumber($runtime->backoffPeriod, 1), + ], + 'ignoreSSL' => $runtime->ignoreSSL, + ]; + $_lastRequest = null; + $_lastException = null; + $_now = time(); + $_retryTimes = 0; + while (Tea::allowRetry(@$_runtime['retry'], $_retryTimes, $_now)) { + if ($_retryTimes > 0) { + $_backoffTime = Tea::getBackoffTime(@$_runtime['backoff'], $_retryTimes); + if ($_backoffTime > 0) { + Tea::sleep($_backoffTime); + } + } + $_retryTimes = $_retryTimes + 1; + + try { + $_request = new Request(); + $accessKeyId = $this->_credential->getAccessKeyId(); + $accessKeySecret = $this->_credential->getAccessKeySecret(); + $token = $this->_credential->getSecurityToken(); + $_request->protocol = $this->_protocol; + $_request->method = 'GET'; + $_request->pathname = '/' . $request->objectName . '?tagging'; + $_request->headers = [ + 'host' => OSSUtils::getHost($request->bucketName, $this->_regionId, $this->_endpoint, $this->_hostModel), + 'date' => Utils::getDateUTCString(), + 'user-agent' => $this->getUserAgent(), + ]; + if (!Utils::empty_($token)) { + $_request->headers['x-oss-security-token'] = $token; + } + $_request->headers['authorization'] = OSSUtils::getSignature($_request, $request->bucketName, $accessKeyId, $accessKeySecret, $this->_signatureVersion, $this->_addtionalHeaders); + $_lastRequest = $_request; + $_response = Tea::send($_request, $_runtime); + $respMap = null; + $bodyStr = null; + if (Utils::is4xx($_response->statusCode) || Utils::is5xx($_response->statusCode)) { + $bodyStr = Utils::readAsString($_response->body); + $respMap = OSSUtils::getErrMessage($bodyStr); + + throw new TeaError([ + 'code' => @$respMap['Code'], + 'message' => @$respMap['Message'], + 'data' => [ + 'httpCode' => $_response->statusCode, + 'requestId' => @$respMap['RequestId'], + 'hostId' => @$respMap['HostId'], + ], + ]); + } + $bodyStr = Utils::readAsString($_response->body); + $respMap = XML::parseXml($bodyStr, GetObjectTaggingResponse::class); + + return GetObjectTaggingResponse::fromMap(Tea::merge([ + 'Tagging' => @$respMap['Tagging'], + ], $_response->headers)); + } catch (Exception $e) { + if (!($e instanceof TeaError)) { + $e = new TeaError([], $e->getMessage(), $e->getCode(), $e); + } + if (Tea::isRetryable($e)) { + $_lastException = $e; + + continue; + } + + throw $e; + } + } + + throw new TeaUnableRetryError($_lastRequest, $_lastException); + } + + /** + * @param DeleteBucketLifecycleRequest $request + * @param RuntimeOptions $runtime + * + * @throws TeaError + * @throws Exception + * @throws TeaUnableRetryError + * + * @return DeleteBucketLifecycleResponse + */ + public function deleteBucketLifecycle($request, $runtime) + { + $request->validate(); + $runtime->validate(); + $_runtime = [ + 'timeouted' => 'retry', + 'readTimeout' => Utils::defaultNumber($runtime->readTimeout, $this->_readTimeout), + 'connectTimeout' => Utils::defaultNumber($runtime->connectTimeout, $this->_connectTimeout), + 'localAddr' => Utils::defaultString($runtime->localAddr, $this->_localAddr), + 'httpProxy' => Utils::defaultString($runtime->httpProxy, $this->_httpProxy), + 'httpsProxy' => Utils::defaultString($runtime->httpsProxy, $this->_httpsProxy), + 'noProxy' => Utils::defaultString($runtime->noProxy, $this->_noProxy), + 'socks5Proxy' => Utils::defaultString($runtime->socks5Proxy, $this->_socks5Proxy), + 'socks5NetWork' => Utils::defaultString($runtime->socks5NetWork, $this->_socks5NetWork), + 'maxIdleConns' => Utils::defaultNumber($runtime->maxIdleConns, $this->_maxIdleConns), + 'retry' => [ + 'retryable' => $runtime->autoretry, + 'maxAttempts' => Utils::defaultNumber($runtime->maxAttempts, 3), + ], + 'backoff' => [ + 'policy' => Utils::defaultString($runtime->backoffPolicy, 'no'), + 'period' => Utils::defaultNumber($runtime->backoffPeriod, 1), + ], + 'ignoreSSL' => $runtime->ignoreSSL, + ]; + $_lastRequest = null; + $_lastException = null; + $_now = time(); + $_retryTimes = 0; + while (Tea::allowRetry(@$_runtime['retry'], $_retryTimes, $_now)) { + if ($_retryTimes > 0) { + $_backoffTime = Tea::getBackoffTime(@$_runtime['backoff'], $_retryTimes); + if ($_backoffTime > 0) { + Tea::sleep($_backoffTime); + } + } + $_retryTimes = $_retryTimes + 1; + + try { + $_request = new Request(); + $accessKeyId = $this->_credential->getAccessKeyId(); + $accessKeySecret = $this->_credential->getAccessKeySecret(); + $token = $this->_credential->getSecurityToken(); + $_request->protocol = $this->_protocol; + $_request->method = 'DELETE'; + $_request->pathname = '/?lifecycle'; + $_request->headers = [ + 'host' => OSSUtils::getHost($request->bucketName, $this->_regionId, $this->_endpoint, $this->_hostModel), + 'date' => Utils::getDateUTCString(), + 'user-agent' => $this->getUserAgent(), + ]; + if (!Utils::empty_($token)) { + $_request->headers['x-oss-security-token'] = $token; + } + $_request->headers['authorization'] = OSSUtils::getSignature($_request, $request->bucketName, $accessKeyId, $accessKeySecret, $this->_signatureVersion, $this->_addtionalHeaders); + $_lastRequest = $_request; + $_response = Tea::send($_request, $_runtime); + $respMap = null; + $bodyStr = null; + if (Utils::is4xx($_response->statusCode) || Utils::is5xx($_response->statusCode)) { + $bodyStr = Utils::readAsString($_response->body); + $respMap = OSSUtils::getErrMessage($bodyStr); + + throw new TeaError([ + 'code' => @$respMap['Code'], + 'message' => @$respMap['Message'], + 'data' => [ + 'httpCode' => $_response->statusCode, + 'requestId' => @$respMap['RequestId'], + 'hostId' => @$respMap['HostId'], + ], + ]); + } + + return DeleteBucketLifecycleResponse::fromMap(Tea::merge($_response->headers)); + } catch (Exception $e) { + if (!($e instanceof TeaError)) { + $e = new TeaError([], $e->getMessage(), $e->getCode(), $e); + } + if (Tea::isRetryable($e)) { + $_lastException = $e; + + continue; + } + + throw $e; + } + } + + throw new TeaUnableRetryError($_lastRequest, $_lastException); + } + + /** + * @param DeleteBucketLoggingRequest $request + * @param RuntimeOptions $runtime + * + * @throws TeaError + * @throws Exception + * @throws TeaUnableRetryError + * + * @return DeleteBucketLoggingResponse + */ + public function deleteBucketLogging($request, $runtime) + { + $request->validate(); + $runtime->validate(); + $_runtime = [ + 'timeouted' => 'retry', + 'readTimeout' => Utils::defaultNumber($runtime->readTimeout, $this->_readTimeout), + 'connectTimeout' => Utils::defaultNumber($runtime->connectTimeout, $this->_connectTimeout), + 'localAddr' => Utils::defaultString($runtime->localAddr, $this->_localAddr), + 'httpProxy' => Utils::defaultString($runtime->httpProxy, $this->_httpProxy), + 'httpsProxy' => Utils::defaultString($runtime->httpsProxy, $this->_httpsProxy), + 'noProxy' => Utils::defaultString($runtime->noProxy, $this->_noProxy), + 'socks5Proxy' => Utils::defaultString($runtime->socks5Proxy, $this->_socks5Proxy), + 'socks5NetWork' => Utils::defaultString($runtime->socks5NetWork, $this->_socks5NetWork), + 'maxIdleConns' => Utils::defaultNumber($runtime->maxIdleConns, $this->_maxIdleConns), + 'retry' => [ + 'retryable' => $runtime->autoretry, + 'maxAttempts' => Utils::defaultNumber($runtime->maxAttempts, 3), + ], + 'backoff' => [ + 'policy' => Utils::defaultString($runtime->backoffPolicy, 'no'), + 'period' => Utils::defaultNumber($runtime->backoffPeriod, 1), + ], + 'ignoreSSL' => $runtime->ignoreSSL, + ]; + $_lastRequest = null; + $_lastException = null; + $_now = time(); + $_retryTimes = 0; + while (Tea::allowRetry(@$_runtime['retry'], $_retryTimes, $_now)) { + if ($_retryTimes > 0) { + $_backoffTime = Tea::getBackoffTime(@$_runtime['backoff'], $_retryTimes); + if ($_backoffTime > 0) { + Tea::sleep($_backoffTime); + } + } + $_retryTimes = $_retryTimes + 1; + + try { + $_request = new Request(); + $accessKeyId = $this->_credential->getAccessKeyId(); + $accessKeySecret = $this->_credential->getAccessKeySecret(); + $token = $this->_credential->getSecurityToken(); + $_request->protocol = $this->_protocol; + $_request->method = 'DELETE'; + $_request->pathname = '/?logging'; + $_request->headers = [ + 'host' => OSSUtils::getHost($request->bucketName, $this->_regionId, $this->_endpoint, $this->_hostModel), + 'date' => Utils::getDateUTCString(), + 'user-agent' => $this->getUserAgent(), + ]; + if (!Utils::empty_($token)) { + $_request->headers['x-oss-security-token'] = $token; + } + $_request->headers['authorization'] = OSSUtils::getSignature($_request, $request->bucketName, $accessKeyId, $accessKeySecret, $this->_signatureVersion, $this->_addtionalHeaders); + $_lastRequest = $_request; + $_response = Tea::send($_request, $_runtime); + $respMap = null; + $bodyStr = null; + if (Utils::is4xx($_response->statusCode) || Utils::is5xx($_response->statusCode)) { + $bodyStr = Utils::readAsString($_response->body); + $respMap = OSSUtils::getErrMessage($bodyStr); + + throw new TeaError([ + 'code' => @$respMap['Code'], + 'message' => @$respMap['Message'], + 'data' => [ + 'httpCode' => $_response->statusCode, + 'requestId' => @$respMap['RequestId'], + 'hostId' => @$respMap['HostId'], + ], + ]); + } + + return DeleteBucketLoggingResponse::fromMap(Tea::merge($_response->headers)); + } catch (Exception $e) { + if (!($e instanceof TeaError)) { + $e = new TeaError([], $e->getMessage(), $e->getCode(), $e); + } + if (Tea::isRetryable($e)) { + $_lastException = $e; + + continue; + } + + throw $e; + } + } + + throw new TeaUnableRetryError($_lastRequest, $_lastException); + } + + /** + * @param DeleteBucketWebsiteRequest $request + * @param RuntimeOptions $runtime + * + * @throws TeaError + * @throws Exception + * @throws TeaUnableRetryError + * + * @return DeleteBucketWebsiteResponse + */ + public function deleteBucketWebsite($request, $runtime) + { + $request->validate(); + $runtime->validate(); + $_runtime = [ + 'timeouted' => 'retry', + 'readTimeout' => Utils::defaultNumber($runtime->readTimeout, $this->_readTimeout), + 'connectTimeout' => Utils::defaultNumber($runtime->connectTimeout, $this->_connectTimeout), + 'localAddr' => Utils::defaultString($runtime->localAddr, $this->_localAddr), + 'httpProxy' => Utils::defaultString($runtime->httpProxy, $this->_httpProxy), + 'httpsProxy' => Utils::defaultString($runtime->httpsProxy, $this->_httpsProxy), + 'noProxy' => Utils::defaultString($runtime->noProxy, $this->_noProxy), + 'socks5Proxy' => Utils::defaultString($runtime->socks5Proxy, $this->_socks5Proxy), + 'socks5NetWork' => Utils::defaultString($runtime->socks5NetWork, $this->_socks5NetWork), + 'maxIdleConns' => Utils::defaultNumber($runtime->maxIdleConns, $this->_maxIdleConns), + 'retry' => [ + 'retryable' => $runtime->autoretry, + 'maxAttempts' => Utils::defaultNumber($runtime->maxAttempts, 3), + ], + 'backoff' => [ + 'policy' => Utils::defaultString($runtime->backoffPolicy, 'no'), + 'period' => Utils::defaultNumber($runtime->backoffPeriod, 1), + ], + 'ignoreSSL' => $runtime->ignoreSSL, + ]; + $_lastRequest = null; + $_lastException = null; + $_now = time(); + $_retryTimes = 0; + while (Tea::allowRetry(@$_runtime['retry'], $_retryTimes, $_now)) { + if ($_retryTimes > 0) { + $_backoffTime = Tea::getBackoffTime(@$_runtime['backoff'], $_retryTimes); + if ($_backoffTime > 0) { + Tea::sleep($_backoffTime); + } + } + $_retryTimes = $_retryTimes + 1; + + try { + $_request = new Request(); + $accessKeyId = $this->_credential->getAccessKeyId(); + $accessKeySecret = $this->_credential->getAccessKeySecret(); + $token = $this->_credential->getSecurityToken(); + $_request->protocol = $this->_protocol; + $_request->method = 'DELETE'; + $_request->pathname = '/?website'; + $_request->headers = [ + 'host' => OSSUtils::getHost($request->bucketName, $this->_regionId, $this->_endpoint, $this->_hostModel), + 'date' => Utils::getDateUTCString(), + 'user-agent' => $this->getUserAgent(), + ]; + if (!Utils::empty_($token)) { + $_request->headers['x-oss-security-token'] = $token; + } + $_request->headers['authorization'] = OSSUtils::getSignature($_request, $request->bucketName, $accessKeyId, $accessKeySecret, $this->_signatureVersion, $this->_addtionalHeaders); + $_lastRequest = $_request; + $_response = Tea::send($_request, $_runtime); + $respMap = null; + $bodyStr = null; + if (Utils::is4xx($_response->statusCode) || Utils::is5xx($_response->statusCode)) { + $bodyStr = Utils::readAsString($_response->body); + $respMap = OSSUtils::getErrMessage($bodyStr); + + throw new TeaError([ + 'code' => @$respMap['Code'], + 'message' => @$respMap['Message'], + 'data' => [ + 'httpCode' => $_response->statusCode, + 'requestId' => @$respMap['RequestId'], + 'hostId' => @$respMap['HostId'], + ], + ]); + } + + return DeleteBucketWebsiteResponse::fromMap(Tea::merge($_response->headers)); + } catch (Exception $e) { + if (!($e instanceof TeaError)) { + $e = new TeaError([], $e->getMessage(), $e->getCode(), $e); + } + if (Tea::isRetryable($e)) { + $_lastException = $e; + + continue; + } + + throw $e; + } + } + + throw new TeaUnableRetryError($_lastRequest, $_lastException); + } + + /** + * @param GetSymlinkRequest $request + * @param RuntimeOptions $runtime + * + * @throws TeaError + * @throws Exception + * @throws TeaUnableRetryError + * + * @return GetSymlinkResponse + */ + public function getSymlink($request, $runtime) + { + $request->validate(); + $runtime->validate(); + $_runtime = [ + 'timeouted' => 'retry', + 'readTimeout' => Utils::defaultNumber($runtime->readTimeout, $this->_readTimeout), + 'connectTimeout' => Utils::defaultNumber($runtime->connectTimeout, $this->_connectTimeout), + 'localAddr' => Utils::defaultString($runtime->localAddr, $this->_localAddr), + 'httpProxy' => Utils::defaultString($runtime->httpProxy, $this->_httpProxy), + 'httpsProxy' => Utils::defaultString($runtime->httpsProxy, $this->_httpsProxy), + 'noProxy' => Utils::defaultString($runtime->noProxy, $this->_noProxy), + 'socks5Proxy' => Utils::defaultString($runtime->socks5Proxy, $this->_socks5Proxy), + 'socks5NetWork' => Utils::defaultString($runtime->socks5NetWork, $this->_socks5NetWork), + 'maxIdleConns' => Utils::defaultNumber($runtime->maxIdleConns, $this->_maxIdleConns), + 'retry' => [ + 'retryable' => $runtime->autoretry, + 'maxAttempts' => Utils::defaultNumber($runtime->maxAttempts, 3), + ], + 'backoff' => [ + 'policy' => Utils::defaultString($runtime->backoffPolicy, 'no'), + 'period' => Utils::defaultNumber($runtime->backoffPeriod, 1), + ], + 'ignoreSSL' => $runtime->ignoreSSL, + ]; + $_lastRequest = null; + $_lastException = null; + $_now = time(); + $_retryTimes = 0; + while (Tea::allowRetry(@$_runtime['retry'], $_retryTimes, $_now)) { + if ($_retryTimes > 0) { + $_backoffTime = Tea::getBackoffTime(@$_runtime['backoff'], $_retryTimes); + if ($_backoffTime > 0) { + Tea::sleep($_backoffTime); + } + } + $_retryTimes = $_retryTimes + 1; + + try { + $_request = new Request(); + $accessKeyId = $this->_credential->getAccessKeyId(); + $accessKeySecret = $this->_credential->getAccessKeySecret(); + $token = $this->_credential->getSecurityToken(); + $_request->protocol = $this->_protocol; + $_request->method = 'GET'; + $_request->pathname = '/' . $request->objectName . '?symlink'; + $_request->headers = [ + 'host' => OSSUtils::getHost($request->bucketName, $this->_regionId, $this->_endpoint, $this->_hostModel), + 'date' => Utils::getDateUTCString(), + 'user-agent' => $this->getUserAgent(), + ]; + if (!Utils::empty_($token)) { + $_request->headers['x-oss-security-token'] = $token; + } + $_request->headers['authorization'] = OSSUtils::getSignature($_request, $request->bucketName, $accessKeyId, $accessKeySecret, $this->_signatureVersion, $this->_addtionalHeaders); + $_lastRequest = $_request; + $_response = Tea::send($_request, $_runtime); + $respMap = null; + $bodyStr = null; + if (Utils::is4xx($_response->statusCode) || Utils::is5xx($_response->statusCode)) { + $bodyStr = Utils::readAsString($_response->body); + $respMap = OSSUtils::getErrMessage($bodyStr); + + throw new TeaError([ + 'code' => @$respMap['Code'], + 'message' => @$respMap['Message'], + 'data' => [ + 'httpCode' => $_response->statusCode, + 'requestId' => @$respMap['RequestId'], + 'hostId' => @$respMap['HostId'], + ], + ]); + } + + return GetSymlinkResponse::fromMap(Tea::merge($_response->headers)); + } catch (Exception $e) { + if (!($e instanceof TeaError)) { + $e = new TeaError([], $e->getMessage(), $e->getCode(), $e); + } + if (Tea::isRetryable($e)) { + $_lastException = $e; + + continue; + } + + throw $e; + } + } + + throw new TeaUnableRetryError($_lastRequest, $_lastException); + } + + /** + * @param GetBucketLifecycleRequest $request + * @param RuntimeOptions $runtime + * + * @throws TeaError + * @throws Exception + * @throws TeaUnableRetryError + * + * @return GetBucketLifecycleResponse + */ + public function getBucketLifecycle($request, $runtime) + { + $request->validate(); + $runtime->validate(); + $_runtime = [ + 'timeouted' => 'retry', + 'readTimeout' => Utils::defaultNumber($runtime->readTimeout, $this->_readTimeout), + 'connectTimeout' => Utils::defaultNumber($runtime->connectTimeout, $this->_connectTimeout), + 'localAddr' => Utils::defaultString($runtime->localAddr, $this->_localAddr), + 'httpProxy' => Utils::defaultString($runtime->httpProxy, $this->_httpProxy), + 'httpsProxy' => Utils::defaultString($runtime->httpsProxy, $this->_httpsProxy), + 'noProxy' => Utils::defaultString($runtime->noProxy, $this->_noProxy), + 'socks5Proxy' => Utils::defaultString($runtime->socks5Proxy, $this->_socks5Proxy), + 'socks5NetWork' => Utils::defaultString($runtime->socks5NetWork, $this->_socks5NetWork), + 'maxIdleConns' => Utils::defaultNumber($runtime->maxIdleConns, $this->_maxIdleConns), + 'retry' => [ + 'retryable' => $runtime->autoretry, + 'maxAttempts' => Utils::defaultNumber($runtime->maxAttempts, 3), + ], + 'backoff' => [ + 'policy' => Utils::defaultString($runtime->backoffPolicy, 'no'), + 'period' => Utils::defaultNumber($runtime->backoffPeriod, 1), + ], + 'ignoreSSL' => $runtime->ignoreSSL, + ]; + $_lastRequest = null; + $_lastException = null; + $_now = time(); + $_retryTimes = 0; + while (Tea::allowRetry(@$_runtime['retry'], $_retryTimes, $_now)) { + if ($_retryTimes > 0) { + $_backoffTime = Tea::getBackoffTime(@$_runtime['backoff'], $_retryTimes); + if ($_backoffTime > 0) { + Tea::sleep($_backoffTime); + } + } + $_retryTimes = $_retryTimes + 1; + + try { + $_request = new Request(); + $accessKeyId = $this->_credential->getAccessKeyId(); + $accessKeySecret = $this->_credential->getAccessKeySecret(); + $token = $this->_credential->getSecurityToken(); + $_request->protocol = $this->_protocol; + $_request->method = 'GET'; + $_request->pathname = '/?lifecycle'; + $_request->headers = [ + 'host' => OSSUtils::getHost($request->bucketName, $this->_regionId, $this->_endpoint, $this->_hostModel), + 'date' => Utils::getDateUTCString(), + 'user-agent' => $this->getUserAgent(), + ]; + if (!Utils::empty_($token)) { + $_request->headers['x-oss-security-token'] = $token; + } + $_request->headers['authorization'] = OSSUtils::getSignature($_request, $request->bucketName, $accessKeyId, $accessKeySecret, $this->_signatureVersion, $this->_addtionalHeaders); + $_lastRequest = $_request; + $_response = Tea::send($_request, $_runtime); + $respMap = null; + $bodyStr = null; + if (Utils::is4xx($_response->statusCode) || Utils::is5xx($_response->statusCode)) { + $bodyStr = Utils::readAsString($_response->body); + $respMap = OSSUtils::getErrMessage($bodyStr); + + throw new TeaError([ + 'code' => @$respMap['Code'], + 'message' => @$respMap['Message'], + 'data' => [ + 'httpCode' => $_response->statusCode, + 'requestId' => @$respMap['RequestId'], + 'hostId' => @$respMap['HostId'], + ], + ]); + } + $bodyStr = Utils::readAsString($_response->body); + $respMap = XML::parseXml($bodyStr, GetBucketLifecycleResponse::class); + + return GetBucketLifecycleResponse::fromMap(Tea::merge([ + 'LifecycleConfiguration' => @$respMap['LifecycleConfiguration'], + ], $_response->headers)); + } catch (Exception $e) { + if (!($e instanceof TeaError)) { + $e = new TeaError([], $e->getMessage(), $e->getCode(), $e); + } + if (Tea::isRetryable($e)) { + $_lastException = $e; + + continue; + } + + throw $e; + } + } + + throw new TeaUnableRetryError($_lastRequest, $_lastException); + } + + /** + * @param PutSymlinkRequest $request + * @param RuntimeOptions $runtime + * + * @throws TeaError + * @throws Exception + * @throws TeaUnableRetryError + * + * @return PutSymlinkResponse + */ + public function putSymlink($request, $runtime) + { + $request->validate(); + $runtime->validate(); + $_runtime = [ + 'timeouted' => 'retry', + 'readTimeout' => Utils::defaultNumber($runtime->readTimeout, $this->_readTimeout), + 'connectTimeout' => Utils::defaultNumber($runtime->connectTimeout, $this->_connectTimeout), + 'localAddr' => Utils::defaultString($runtime->localAddr, $this->_localAddr), + 'httpProxy' => Utils::defaultString($runtime->httpProxy, $this->_httpProxy), + 'httpsProxy' => Utils::defaultString($runtime->httpsProxy, $this->_httpsProxy), + 'noProxy' => Utils::defaultString($runtime->noProxy, $this->_noProxy), + 'socks5Proxy' => Utils::defaultString($runtime->socks5Proxy, $this->_socks5Proxy), + 'socks5NetWork' => Utils::defaultString($runtime->socks5NetWork, $this->_socks5NetWork), + 'maxIdleConns' => Utils::defaultNumber($runtime->maxIdleConns, $this->_maxIdleConns), + 'retry' => [ + 'retryable' => $runtime->autoretry, + 'maxAttempts' => Utils::defaultNumber($runtime->maxAttempts, 3), + ], + 'backoff' => [ + 'policy' => Utils::defaultString($runtime->backoffPolicy, 'no'), + 'period' => Utils::defaultNumber($runtime->backoffPeriod, 1), + ], + 'ignoreSSL' => $runtime->ignoreSSL, + ]; + $_lastRequest = null; + $_lastException = null; + $_now = time(); + $_retryTimes = 0; + while (Tea::allowRetry(@$_runtime['retry'], $_retryTimes, $_now)) { + if ($_retryTimes > 0) { + $_backoffTime = Tea::getBackoffTime(@$_runtime['backoff'], $_retryTimes); + if ($_backoffTime > 0) { + Tea::sleep($_backoffTime); + } + } + $_retryTimes = $_retryTimes + 1; + + try { + $_request = new Request(); + $accessKeyId = $this->_credential->getAccessKeyId(); + $accessKeySecret = $this->_credential->getAccessKeySecret(); + $token = $this->_credential->getSecurityToken(); + $_request->protocol = $this->_protocol; + $_request->method = 'PUT'; + $_request->pathname = '/' . $request->objectName . '?symlink'; + $_request->headers = Tea::merge([ + 'host' => OSSUtils::getHost($request->bucketName, $this->_regionId, $this->_endpoint, $this->_hostModel), + 'date' => Utils::getDateUTCString(), + 'user-agent' => $this->getUserAgent(), + ], Utils::stringifyMapValue(Tea::merge($request->header))); + if (!Utils::empty_($token)) { + $_request->headers['x-oss-security-token'] = $token; + } + $_request->headers['authorization'] = OSSUtils::getSignature($_request, $request->bucketName, $accessKeyId, $accessKeySecret, $this->_signatureVersion, $this->_addtionalHeaders); + $_lastRequest = $_request; + $_response = Tea::send($_request, $_runtime); + $respMap = null; + $bodyStr = null; + if (Utils::is4xx($_response->statusCode) || Utils::is5xx($_response->statusCode)) { + $bodyStr = Utils::readAsString($_response->body); + $respMap = OSSUtils::getErrMessage($bodyStr); + + throw new TeaError([ + 'code' => @$respMap['Code'], + 'message' => @$respMap['Message'], + 'data' => [ + 'httpCode' => $_response->statusCode, + 'requestId' => @$respMap['RequestId'], + 'hostId' => @$respMap['HostId'], + ], + ]); + } + + return PutSymlinkResponse::fromMap(Tea::merge($_response->headers)); + } catch (Exception $e) { + if (!($e instanceof TeaError)) { + $e = new TeaError([], $e->getMessage(), $e->getCode(), $e); + } + if (Tea::isRetryable($e)) { + $_lastException = $e; + + continue; + } + + throw $e; + } + } + + throw new TeaUnableRetryError($_lastRequest, $_lastException); + } + + /** + * @param GetBucketRefererRequest $request + * @param RuntimeOptions $runtime + * + * @throws TeaError + * @throws Exception + * @throws TeaUnableRetryError + * + * @return GetBucketRefererResponse + */ + public function getBucketReferer($request, $runtime) + { + $request->validate(); + $runtime->validate(); + $_runtime = [ + 'timeouted' => 'retry', + 'readTimeout' => Utils::defaultNumber($runtime->readTimeout, $this->_readTimeout), + 'connectTimeout' => Utils::defaultNumber($runtime->connectTimeout, $this->_connectTimeout), + 'localAddr' => Utils::defaultString($runtime->localAddr, $this->_localAddr), + 'httpProxy' => Utils::defaultString($runtime->httpProxy, $this->_httpProxy), + 'httpsProxy' => Utils::defaultString($runtime->httpsProxy, $this->_httpsProxy), + 'noProxy' => Utils::defaultString($runtime->noProxy, $this->_noProxy), + 'socks5Proxy' => Utils::defaultString($runtime->socks5Proxy, $this->_socks5Proxy), + 'socks5NetWork' => Utils::defaultString($runtime->socks5NetWork, $this->_socks5NetWork), + 'maxIdleConns' => Utils::defaultNumber($runtime->maxIdleConns, $this->_maxIdleConns), + 'retry' => [ + 'retryable' => $runtime->autoretry, + 'maxAttempts' => Utils::defaultNumber($runtime->maxAttempts, 3), + ], + 'backoff' => [ + 'policy' => Utils::defaultString($runtime->backoffPolicy, 'no'), + 'period' => Utils::defaultNumber($runtime->backoffPeriod, 1), + ], + 'ignoreSSL' => $runtime->ignoreSSL, + ]; + $_lastRequest = null; + $_lastException = null; + $_now = time(); + $_retryTimes = 0; + while (Tea::allowRetry(@$_runtime['retry'], $_retryTimes, $_now)) { + if ($_retryTimes > 0) { + $_backoffTime = Tea::getBackoffTime(@$_runtime['backoff'], $_retryTimes); + if ($_backoffTime > 0) { + Tea::sleep($_backoffTime); + } + } + $_retryTimes = $_retryTimes + 1; + + try { + $_request = new Request(); + $accessKeyId = $this->_credential->getAccessKeyId(); + $accessKeySecret = $this->_credential->getAccessKeySecret(); + $token = $this->_credential->getSecurityToken(); + $_request->protocol = $this->_protocol; + $_request->method = 'GET'; + $_request->pathname = '/?referer'; + $_request->headers = [ + 'host' => OSSUtils::getHost($request->bucketName, $this->_regionId, $this->_endpoint, $this->_hostModel), + 'date' => Utils::getDateUTCString(), + 'user-agent' => $this->getUserAgent(), + ]; + if (!Utils::empty_($token)) { + $_request->headers['x-oss-security-token'] = $token; + } + $_request->headers['authorization'] = OSSUtils::getSignature($_request, $request->bucketName, $accessKeyId, $accessKeySecret, $this->_signatureVersion, $this->_addtionalHeaders); + $_lastRequest = $_request; + $_response = Tea::send($_request, $_runtime); + $respMap = null; + $bodyStr = null; + if (Utils::is4xx($_response->statusCode) || Utils::is5xx($_response->statusCode)) { + $bodyStr = Utils::readAsString($_response->body); + $respMap = OSSUtils::getErrMessage($bodyStr); + + throw new TeaError([ + 'code' => @$respMap['Code'], + 'message' => @$respMap['Message'], + 'data' => [ + 'httpCode' => $_response->statusCode, + 'requestId' => @$respMap['RequestId'], + 'hostId' => @$respMap['HostId'], + ], + ]); + } + $bodyStr = Utils::readAsString($_response->body); + $respMap = XML::parseXml($bodyStr, GetBucketRefererResponse::class); + + return GetBucketRefererResponse::fromMap(Tea::merge([ + 'RefererConfiguration' => @$respMap['RefererConfiguration'], + ], $_response->headers)); + } catch (Exception $e) { + if (!($e instanceof TeaError)) { + $e = new TeaError([], $e->getMessage(), $e->getCode(), $e); + } + if (Tea::isRetryable($e)) { + $_lastException = $e; + + continue; + } + + throw $e; + } + } + + throw new TeaUnableRetryError($_lastRequest, $_lastException); + } + + /** + * @param CallbackRequest $request + * @param RuntimeOptions $runtime + * + * @throws TeaError + * @throws Exception + * @throws TeaUnableRetryError + * + * @return CallbackResponse + */ + public function callback($request, $runtime) + { + $request->validate(); + $runtime->validate(); + $_runtime = [ + 'timeouted' => 'retry', + 'readTimeout' => Utils::defaultNumber($runtime->readTimeout, $this->_readTimeout), + 'connectTimeout' => Utils::defaultNumber($runtime->connectTimeout, $this->_connectTimeout), + 'localAddr' => Utils::defaultString($runtime->localAddr, $this->_localAddr), + 'httpProxy' => Utils::defaultString($runtime->httpProxy, $this->_httpProxy), + 'httpsProxy' => Utils::defaultString($runtime->httpsProxy, $this->_httpsProxy), + 'noProxy' => Utils::defaultString($runtime->noProxy, $this->_noProxy), + 'socks5Proxy' => Utils::defaultString($runtime->socks5Proxy, $this->_socks5Proxy), + 'socks5NetWork' => Utils::defaultString($runtime->socks5NetWork, $this->_socks5NetWork), + 'maxIdleConns' => Utils::defaultNumber($runtime->maxIdleConns, $this->_maxIdleConns), + 'retry' => [ + 'retryable' => $runtime->autoretry, + 'maxAttempts' => Utils::defaultNumber($runtime->maxAttempts, 3), + ], + 'backoff' => [ + 'policy' => Utils::defaultString($runtime->backoffPolicy, 'no'), + 'period' => Utils::defaultNumber($runtime->backoffPeriod, 1), + ], + 'ignoreSSL' => $runtime->ignoreSSL, + ]; + $_lastRequest = null; + $_lastException = null; + $_now = time(); + $_retryTimes = 0; + while (Tea::allowRetry(@$_runtime['retry'], $_retryTimes, $_now)) { + if ($_retryTimes > 0) { + $_backoffTime = Tea::getBackoffTime(@$_runtime['backoff'], $_retryTimes); + if ($_backoffTime > 0) { + Tea::sleep($_backoffTime); + } + } + $_retryTimes = $_retryTimes + 1; + + try { + $_request = new Request(); + $accessKeyId = $this->_credential->getAccessKeyId(); + $accessKeySecret = $this->_credential->getAccessKeySecret(); + $token = $this->_credential->getSecurityToken(); + $_request->protocol = $this->_protocol; + $_request->method = 'GET'; + $_request->pathname = '/'; + $_request->headers = [ + 'host' => OSSUtils::getHost($request->bucketName, $this->_regionId, $this->_endpoint, $this->_hostModel), + 'date' => Utils::getDateUTCString(), + 'user-agent' => $this->getUserAgent(), + ]; + if (!Utils::empty_($token)) { + $_request->headers['x-oss-security-token'] = $token; + } + $_request->headers['authorization'] = OSSUtils::getSignature($_request, $request->bucketName, $accessKeyId, $accessKeySecret, $this->_signatureVersion, $this->_addtionalHeaders); + $_lastRequest = $_request; + $_response = Tea::send($_request, $_runtime); + $respMap = null; + $bodyStr = null; + if (Utils::is4xx($_response->statusCode) || Utils::is5xx($_response->statusCode)) { + $bodyStr = Utils::readAsString($_response->body); + $respMap = OSSUtils::getErrMessage($bodyStr); + + throw new TeaError([ + 'code' => @$respMap['Code'], + 'message' => @$respMap['Message'], + 'data' => [ + 'httpCode' => $_response->statusCode, + 'requestId' => @$respMap['RequestId'], + 'hostId' => @$respMap['HostId'], + ], + ]); + } + + return CallbackResponse::fromMap(Tea::merge($_response->headers)); + } catch (Exception $e) { + if (!($e instanceof TeaError)) { + $e = new TeaError([], $e->getMessage(), $e->getCode(), $e); + } + if (Tea::isRetryable($e)) { + $_lastException = $e; + + continue; + } + + throw $e; + } + } + + throw new TeaUnableRetryError($_lastRequest, $_lastException); + } + + /** + * @param GetBucketLoggingRequest $request + * @param RuntimeOptions $runtime + * + * @throws TeaError + * @throws Exception + * @throws TeaUnableRetryError + * + * @return GetBucketLoggingResponse + */ + public function getBucketLogging($request, $runtime) + { + $request->validate(); + $runtime->validate(); + $_runtime = [ + 'timeouted' => 'retry', + 'readTimeout' => Utils::defaultNumber($runtime->readTimeout, $this->_readTimeout), + 'connectTimeout' => Utils::defaultNumber($runtime->connectTimeout, $this->_connectTimeout), + 'localAddr' => Utils::defaultString($runtime->localAddr, $this->_localAddr), + 'httpProxy' => Utils::defaultString($runtime->httpProxy, $this->_httpProxy), + 'httpsProxy' => Utils::defaultString($runtime->httpsProxy, $this->_httpsProxy), + 'noProxy' => Utils::defaultString($runtime->noProxy, $this->_noProxy), + 'socks5Proxy' => Utils::defaultString($runtime->socks5Proxy, $this->_socks5Proxy), + 'socks5NetWork' => Utils::defaultString($runtime->socks5NetWork, $this->_socks5NetWork), + 'maxIdleConns' => Utils::defaultNumber($runtime->maxIdleConns, $this->_maxIdleConns), + 'retry' => [ + 'retryable' => $runtime->autoretry, + 'maxAttempts' => Utils::defaultNumber($runtime->maxAttempts, 3), + ], + 'backoff' => [ + 'policy' => Utils::defaultString($runtime->backoffPolicy, 'no'), + 'period' => Utils::defaultNumber($runtime->backoffPeriod, 1), + ], + 'ignoreSSL' => $runtime->ignoreSSL, + ]; + $_lastRequest = null; + $_lastException = null; + $_now = time(); + $_retryTimes = 0; + while (Tea::allowRetry(@$_runtime['retry'], $_retryTimes, $_now)) { + if ($_retryTimes > 0) { + $_backoffTime = Tea::getBackoffTime(@$_runtime['backoff'], $_retryTimes); + if ($_backoffTime > 0) { + Tea::sleep($_backoffTime); + } + } + $_retryTimes = $_retryTimes + 1; + + try { + $_request = new Request(); + $accessKeyId = $this->_credential->getAccessKeyId(); + $accessKeySecret = $this->_credential->getAccessKeySecret(); + $token = $this->_credential->getSecurityToken(); + $_request->protocol = $this->_protocol; + $_request->method = 'GET'; + $_request->pathname = '/?logging'; + $_request->headers = [ + 'host' => OSSUtils::getHost($request->bucketName, $this->_regionId, $this->_endpoint, $this->_hostModel), + 'date' => Utils::getDateUTCString(), + 'user-agent' => $this->getUserAgent(), + ]; + if (!Utils::empty_($token)) { + $_request->headers['x-oss-security-token'] = $token; + } + $_request->headers['authorization'] = OSSUtils::getSignature($_request, $request->bucketName, $accessKeyId, $accessKeySecret, $this->_signatureVersion, $this->_addtionalHeaders); + $_lastRequest = $_request; + $_response = Tea::send($_request, $_runtime); + $respMap = null; + $bodyStr = null; + if (Utils::is4xx($_response->statusCode) || Utils::is5xx($_response->statusCode)) { + $bodyStr = Utils::readAsString($_response->body); + $respMap = OSSUtils::getErrMessage($bodyStr); + + throw new TeaError([ + 'code' => @$respMap['Code'], + 'message' => @$respMap['Message'], + 'data' => [ + 'httpCode' => $_response->statusCode, + 'requestId' => @$respMap['RequestId'], + 'hostId' => @$respMap['HostId'], + ], + ]); + } + $bodyStr = Utils::readAsString($_response->body); + $respMap = XML::parseXml($bodyStr, GetBucketLoggingResponse::class); + + return GetBucketLoggingResponse::fromMap(Tea::merge([ + 'BucketLoggingStatus' => @$respMap['BucketLoggingStatus'], + ], $_response->headers)); + } catch (Exception $e) { + if (!($e instanceof TeaError)) { + $e = new TeaError([], $e->getMessage(), $e->getCode(), $e); + } + if (Tea::isRetryable($e)) { + $_lastException = $e; + + continue; + } + + throw $e; + } + } + + throw new TeaUnableRetryError($_lastRequest, $_lastException); + } + + /** + * @param PutObjectAclRequest $request + * @param RuntimeOptions $runtime + * + * @throws TeaError + * @throws Exception + * @throws TeaUnableRetryError + * + * @return PutObjectAclResponse + */ + public function putObjectAcl($request, $runtime) + { + $request->validate(); + $runtime->validate(); + $_runtime = [ + 'timeouted' => 'retry', + 'readTimeout' => Utils::defaultNumber($runtime->readTimeout, $this->_readTimeout), + 'connectTimeout' => Utils::defaultNumber($runtime->connectTimeout, $this->_connectTimeout), + 'localAddr' => Utils::defaultString($runtime->localAddr, $this->_localAddr), + 'httpProxy' => Utils::defaultString($runtime->httpProxy, $this->_httpProxy), + 'httpsProxy' => Utils::defaultString($runtime->httpsProxy, $this->_httpsProxy), + 'noProxy' => Utils::defaultString($runtime->noProxy, $this->_noProxy), + 'socks5Proxy' => Utils::defaultString($runtime->socks5Proxy, $this->_socks5Proxy), + 'socks5NetWork' => Utils::defaultString($runtime->socks5NetWork, $this->_socks5NetWork), + 'maxIdleConns' => Utils::defaultNumber($runtime->maxIdleConns, $this->_maxIdleConns), + 'retry' => [ + 'retryable' => $runtime->autoretry, + 'maxAttempts' => Utils::defaultNumber($runtime->maxAttempts, 3), + ], + 'backoff' => [ + 'policy' => Utils::defaultString($runtime->backoffPolicy, 'no'), + 'period' => Utils::defaultNumber($runtime->backoffPeriod, 1), + ], + 'ignoreSSL' => $runtime->ignoreSSL, + ]; + $_lastRequest = null; + $_lastException = null; + $_now = time(); + $_retryTimes = 0; + while (Tea::allowRetry(@$_runtime['retry'], $_retryTimes, $_now)) { + if ($_retryTimes > 0) { + $_backoffTime = Tea::getBackoffTime(@$_runtime['backoff'], $_retryTimes); + if ($_backoffTime > 0) { + Tea::sleep($_backoffTime); + } + } + $_retryTimes = $_retryTimes + 1; + + try { + $_request = new Request(); + $accessKeyId = $this->_credential->getAccessKeyId(); + $accessKeySecret = $this->_credential->getAccessKeySecret(); + $token = $this->_credential->getSecurityToken(); + $_request->protocol = $this->_protocol; + $_request->method = 'PUT'; + $_request->pathname = '/' . $request->objectName . '?acl'; + $_request->headers = Tea::merge([ + 'host' => OSSUtils::getHost($request->bucketName, $this->_regionId, $this->_endpoint, $this->_hostModel), + 'date' => Utils::getDateUTCString(), + 'user-agent' => $this->getUserAgent(), + ], Utils::stringifyMapValue(Tea::merge($request->header))); + if (!Utils::empty_($token)) { + $_request->headers['x-oss-security-token'] = $token; + } + $_request->headers['authorization'] = OSSUtils::getSignature($_request, $request->bucketName, $accessKeyId, $accessKeySecret, $this->_signatureVersion, $this->_addtionalHeaders); + $_lastRequest = $_request; + $_response = Tea::send($_request, $_runtime); + $respMap = null; + $bodyStr = null; + if (Utils::is4xx($_response->statusCode) || Utils::is5xx($_response->statusCode)) { + $bodyStr = Utils::readAsString($_response->body); + $respMap = OSSUtils::getErrMessage($bodyStr); + + throw new TeaError([ + 'code' => @$respMap['Code'], + 'message' => @$respMap['Message'], + 'data' => [ + 'httpCode' => $_response->statusCode, + 'requestId' => @$respMap['RequestId'], + 'hostId' => @$respMap['HostId'], + ], + ]); + } + + return PutObjectAclResponse::fromMap(Tea::merge($_response->headers)); + } catch (Exception $e) { + if (!($e instanceof TeaError)) { + $e = new TeaError([], $e->getMessage(), $e->getCode(), $e); + } + if (Tea::isRetryable($e)) { + $_lastException = $e; + + continue; + } + + throw $e; + } + } + + throw new TeaUnableRetryError($_lastRequest, $_lastException); + } + + /** + * @param GetBucketInfoRequest $request + * @param RuntimeOptions $runtime + * + * @throws TeaError + * @throws Exception + * @throws TeaUnableRetryError + * + * @return GetBucketInfoResponse + */ + public function getBucketInfo($request, $runtime) + { + $request->validate(); + $runtime->validate(); + $_runtime = [ + 'timeouted' => 'retry', + 'readTimeout' => Utils::defaultNumber($runtime->readTimeout, $this->_readTimeout), + 'connectTimeout' => Utils::defaultNumber($runtime->connectTimeout, $this->_connectTimeout), + 'localAddr' => Utils::defaultString($runtime->localAddr, $this->_localAddr), + 'httpProxy' => Utils::defaultString($runtime->httpProxy, $this->_httpProxy), + 'httpsProxy' => Utils::defaultString($runtime->httpsProxy, $this->_httpsProxy), + 'noProxy' => Utils::defaultString($runtime->noProxy, $this->_noProxy), + 'socks5Proxy' => Utils::defaultString($runtime->socks5Proxy, $this->_socks5Proxy), + 'socks5NetWork' => Utils::defaultString($runtime->socks5NetWork, $this->_socks5NetWork), + 'maxIdleConns' => Utils::defaultNumber($runtime->maxIdleConns, $this->_maxIdleConns), + 'retry' => [ + 'retryable' => $runtime->autoretry, + 'maxAttempts' => Utils::defaultNumber($runtime->maxAttempts, 3), + ], + 'backoff' => [ + 'policy' => Utils::defaultString($runtime->backoffPolicy, 'no'), + 'period' => Utils::defaultNumber($runtime->backoffPeriod, 1), + ], + 'ignoreSSL' => $runtime->ignoreSSL, + ]; + $_lastRequest = null; + $_lastException = null; + $_now = time(); + $_retryTimes = 0; + while (Tea::allowRetry(@$_runtime['retry'], $_retryTimes, $_now)) { + if ($_retryTimes > 0) { + $_backoffTime = Tea::getBackoffTime(@$_runtime['backoff'], $_retryTimes); + if ($_backoffTime > 0) { + Tea::sleep($_backoffTime); + } + } + $_retryTimes = $_retryTimes + 1; + + try { + $_request = new Request(); + $accessKeyId = $this->_credential->getAccessKeyId(); + $accessKeySecret = $this->_credential->getAccessKeySecret(); + $token = $this->_credential->getSecurityToken(); + $_request->protocol = $this->_protocol; + $_request->method = 'GET'; + $_request->pathname = '/?bucketInfo'; + $_request->headers = [ + 'host' => OSSUtils::getHost($request->bucketName, $this->_regionId, $this->_endpoint, $this->_hostModel), + 'date' => Utils::getDateUTCString(), + 'user-agent' => $this->getUserAgent(), + ]; + if (!Utils::empty_($token)) { + $_request->headers['x-oss-security-token'] = $token; + } + $_request->headers['authorization'] = OSSUtils::getSignature($_request, $request->bucketName, $accessKeyId, $accessKeySecret, $this->_signatureVersion, $this->_addtionalHeaders); + $_lastRequest = $_request; + $_response = Tea::send($_request, $_runtime); + $respMap = null; + $bodyStr = null; + if (Utils::is4xx($_response->statusCode) || Utils::is5xx($_response->statusCode)) { + $bodyStr = Utils::readAsString($_response->body); + $respMap = OSSUtils::getErrMessage($bodyStr); + + throw new TeaError([ + 'code' => @$respMap['Code'], + 'message' => @$respMap['Message'], + 'data' => [ + 'httpCode' => $_response->statusCode, + 'requestId' => @$respMap['RequestId'], + 'hostId' => @$respMap['HostId'], + ], + ]); + } + $bodyStr = Utils::readAsString($_response->body); + $respMap = XML::parseXml($bodyStr, GetBucketInfoResponse::class); + + return GetBucketInfoResponse::fromMap(Tea::merge([ + 'BucketInfo' => @$respMap['BucketInfo'], + ], $_response->headers)); + } catch (Exception $e) { + if (!($e instanceof TeaError)) { + $e = new TeaError([], $e->getMessage(), $e->getCode(), $e); + } + if (Tea::isRetryable($e)) { + $_lastException = $e; + + continue; + } + + throw $e; + } + } + + throw new TeaUnableRetryError($_lastRequest, $_lastException); + } + + /** + * @param PutLiveChannelStatusRequest $request + * @param RuntimeOptions $runtime + * + * @throws TeaError + * @throws Exception + * @throws TeaUnableRetryError + * + * @return PutLiveChannelStatusResponse + */ + public function putLiveChannelStatus($request, $runtime) + { + $request->validate(); + $runtime->validate(); + $_runtime = [ + 'timeouted' => 'retry', + 'readTimeout' => Utils::defaultNumber($runtime->readTimeout, $this->_readTimeout), + 'connectTimeout' => Utils::defaultNumber($runtime->connectTimeout, $this->_connectTimeout), + 'localAddr' => Utils::defaultString($runtime->localAddr, $this->_localAddr), + 'httpProxy' => Utils::defaultString($runtime->httpProxy, $this->_httpProxy), + 'httpsProxy' => Utils::defaultString($runtime->httpsProxy, $this->_httpsProxy), + 'noProxy' => Utils::defaultString($runtime->noProxy, $this->_noProxy), + 'socks5Proxy' => Utils::defaultString($runtime->socks5Proxy, $this->_socks5Proxy), + 'socks5NetWork' => Utils::defaultString($runtime->socks5NetWork, $this->_socks5NetWork), + 'maxIdleConns' => Utils::defaultNumber($runtime->maxIdleConns, $this->_maxIdleConns), + 'retry' => [ + 'retryable' => $runtime->autoretry, + 'maxAttempts' => Utils::defaultNumber($runtime->maxAttempts, 3), + ], + 'backoff' => [ + 'policy' => Utils::defaultString($runtime->backoffPolicy, 'no'), + 'period' => Utils::defaultNumber($runtime->backoffPeriod, 1), + ], + 'ignoreSSL' => $runtime->ignoreSSL, + ]; + $_lastRequest = null; + $_lastException = null; + $_now = time(); + $_retryTimes = 0; + while (Tea::allowRetry(@$_runtime['retry'], $_retryTimes, $_now)) { + if ($_retryTimes > 0) { + $_backoffTime = Tea::getBackoffTime(@$_runtime['backoff'], $_retryTimes); + if ($_backoffTime > 0) { + Tea::sleep($_backoffTime); + } + } + $_retryTimes = $_retryTimes + 1; + + try { + $_request = new Request(); + $accessKeyId = $this->_credential->getAccessKeyId(); + $accessKeySecret = $this->_credential->getAccessKeySecret(); + $token = $this->_credential->getSecurityToken(); + $_request->protocol = $this->_protocol; + $_request->method = 'PUT'; + $_request->pathname = '/' . $request->channelName . '?live'; + $_request->headers = [ + 'host' => OSSUtils::getHost($request->bucketName, $this->_regionId, $this->_endpoint, $this->_hostModel), + 'date' => Utils::getDateUTCString(), + 'user-agent' => $this->getUserAgent(), + ]; + if (!Utils::empty_($token)) { + $_request->headers['x-oss-security-token'] = $token; + } + $_request->query = Utils::stringifyMapValue(Tea::merge($request->filter)); + $_request->headers['authorization'] = OSSUtils::getSignature($_request, $request->bucketName, $accessKeyId, $accessKeySecret, $this->_signatureVersion, $this->_addtionalHeaders); + $_lastRequest = $_request; + $_response = Tea::send($_request, $_runtime); + $respMap = null; + $bodyStr = null; + if (Utils::is4xx($_response->statusCode) || Utils::is5xx($_response->statusCode)) { + $bodyStr = Utils::readAsString($_response->body); + $respMap = OSSUtils::getErrMessage($bodyStr); + + throw new TeaError([ + 'code' => @$respMap['Code'], + 'message' => @$respMap['Message'], + 'data' => [ + 'httpCode' => $_response->statusCode, + 'requestId' => @$respMap['RequestId'], + 'hostId' => @$respMap['HostId'], + ], + ]); + } + + return PutLiveChannelStatusResponse::fromMap(Tea::merge($_response->headers)); + } catch (Exception $e) { + if (!($e instanceof TeaError)) { + $e = new TeaError([], $e->getMessage(), $e->getCode(), $e); + } + if (Tea::isRetryable($e)) { + $_lastException = $e; + + continue; + } + + throw $e; + } + } + + throw new TeaUnableRetryError($_lastRequest, $_lastException); + } + + /** + * @param InitiateMultipartUploadRequest $request + * @param RuntimeOptions $runtime + * + * @throws TeaError + * @throws Exception + * @throws TeaUnableRetryError + * + * @return InitiateMultipartUploadResponse + */ + public function initiateMultipartUpload($request, $runtime) + { + $request->validate(); + $runtime->validate(); + $_runtime = [ + 'timeouted' => 'retry', + 'readTimeout' => Utils::defaultNumber($runtime->readTimeout, $this->_readTimeout), + 'connectTimeout' => Utils::defaultNumber($runtime->connectTimeout, $this->_connectTimeout), + 'localAddr' => Utils::defaultString($runtime->localAddr, $this->_localAddr), + 'httpProxy' => Utils::defaultString($runtime->httpProxy, $this->_httpProxy), + 'httpsProxy' => Utils::defaultString($runtime->httpsProxy, $this->_httpsProxy), + 'noProxy' => Utils::defaultString($runtime->noProxy, $this->_noProxy), + 'socks5Proxy' => Utils::defaultString($runtime->socks5Proxy, $this->_socks5Proxy), + 'socks5NetWork' => Utils::defaultString($runtime->socks5NetWork, $this->_socks5NetWork), + 'maxIdleConns' => Utils::defaultNumber($runtime->maxIdleConns, $this->_maxIdleConns), + 'retry' => [ + 'retryable' => $runtime->autoretry, + 'maxAttempts' => Utils::defaultNumber($runtime->maxAttempts, 3), + ], + 'backoff' => [ + 'policy' => Utils::defaultString($runtime->backoffPolicy, 'no'), + 'period' => Utils::defaultNumber($runtime->backoffPeriod, 1), + ], + 'ignoreSSL' => $runtime->ignoreSSL, + ]; + $_lastRequest = null; + $_lastException = null; + $_now = time(); + $_retryTimes = 0; + while (Tea::allowRetry(@$_runtime['retry'], $_retryTimes, $_now)) { + if ($_retryTimes > 0) { + $_backoffTime = Tea::getBackoffTime(@$_runtime['backoff'], $_retryTimes); + if ($_backoffTime > 0) { + Tea::sleep($_backoffTime); + } + } + $_retryTimes = $_retryTimes + 1; + + try { + $_request = new Request(); + $accessKeyId = $this->_credential->getAccessKeyId(); + $accessKeySecret = $this->_credential->getAccessKeySecret(); + $token = $this->_credential->getSecurityToken(); + $_request->protocol = $this->_protocol; + $_request->method = 'POST'; + $_request->pathname = '/' . $request->objectName . '?uploads'; + $_request->headers = Tea::merge([ + 'host' => OSSUtils::getHost($request->bucketName, $this->_regionId, $this->_endpoint, $this->_hostModel), + 'date' => Utils::getDateUTCString(), + 'user-agent' => $this->getUserAgent(), + ], Utils::stringifyMapValue(Tea::merge($request->header))); + if (!Utils::empty_($token)) { + $_request->headers['x-oss-security-token'] = $token; + } + $_request->query = Utils::stringifyMapValue(Tea::merge($request->filter)); + if (!Utils::isUnset($request->header) && !Utils::empty_($request->header->contentType)) { + $_request->headers['content-type'] = $request->header->contentType; + } else { + $_request->headers['content-type'] = OSSUtils::getContentType($request->objectName); + } + $_request->headers['authorization'] = OSSUtils::getSignature($_request, $request->bucketName, $accessKeyId, $accessKeySecret, $this->_signatureVersion, $this->_addtionalHeaders); + $_lastRequest = $_request; + $_response = Tea::send($_request, $_runtime); + $respMap = null; + $bodyStr = null; + if (Utils::is4xx($_response->statusCode) || Utils::is5xx($_response->statusCode)) { + $bodyStr = Utils::readAsString($_response->body); + $respMap = OSSUtils::getErrMessage($bodyStr); + + throw new TeaError([ + 'code' => @$respMap['Code'], + 'message' => @$respMap['Message'], + 'data' => [ + 'httpCode' => $_response->statusCode, + 'requestId' => @$respMap['RequestId'], + 'hostId' => @$respMap['HostId'], + ], + ]); + } + $bodyStr = Utils::readAsString($_response->body); + $respMap = XML::parseXml($bodyStr, InitiateMultipartUploadResponse::class); + + return InitiateMultipartUploadResponse::fromMap(Tea::merge([ + 'InitiateMultipartUploadResult' => @$respMap['InitiateMultipartUploadResult'], + ], $_response->headers)); + } catch (Exception $e) { + if (!($e instanceof TeaError)) { + $e = new TeaError([], $e->getMessage(), $e->getCode(), $e); + } + if (Tea::isRetryable($e)) { + $_lastException = $e; + + continue; + } + + throw $e; + } + } + + throw new TeaUnableRetryError($_lastRequest, $_lastException); + } + + /** + * @param OptionObjectRequest $request + * @param RuntimeOptions $runtime + * + * @throws TeaError + * @throws Exception + * @throws TeaUnableRetryError + * + * @return OptionObjectResponse + */ + public function optionObject($request, $runtime) + { + $request->validate(); + $runtime->validate(); + $_runtime = [ + 'timeouted' => 'retry', + 'readTimeout' => Utils::defaultNumber($runtime->readTimeout, $this->_readTimeout), + 'connectTimeout' => Utils::defaultNumber($runtime->connectTimeout, $this->_connectTimeout), + 'localAddr' => Utils::defaultString($runtime->localAddr, $this->_localAddr), + 'httpProxy' => Utils::defaultString($runtime->httpProxy, $this->_httpProxy), + 'httpsProxy' => Utils::defaultString($runtime->httpsProxy, $this->_httpsProxy), + 'noProxy' => Utils::defaultString($runtime->noProxy, $this->_noProxy), + 'socks5Proxy' => Utils::defaultString($runtime->socks5Proxy, $this->_socks5Proxy), + 'socks5NetWork' => Utils::defaultString($runtime->socks5NetWork, $this->_socks5NetWork), + 'maxIdleConns' => Utils::defaultNumber($runtime->maxIdleConns, $this->_maxIdleConns), + 'retry' => [ + 'retryable' => $runtime->autoretry, + 'maxAttempts' => Utils::defaultNumber($runtime->maxAttempts, 3), + ], + 'backoff' => [ + 'policy' => Utils::defaultString($runtime->backoffPolicy, 'no'), + 'period' => Utils::defaultNumber($runtime->backoffPeriod, 1), + ], + 'ignoreSSL' => $runtime->ignoreSSL, + ]; + $_lastRequest = null; + $_lastException = null; + $_now = time(); + $_retryTimes = 0; + while (Tea::allowRetry(@$_runtime['retry'], $_retryTimes, $_now)) { + if ($_retryTimes > 0) { + $_backoffTime = Tea::getBackoffTime(@$_runtime['backoff'], $_retryTimes); + if ($_backoffTime > 0) { + Tea::sleep($_backoffTime); + } + } + $_retryTimes = $_retryTimes + 1; + + try { + $_request = new Request(); + $accessKeyId = $this->_credential->getAccessKeyId(); + $accessKeySecret = $this->_credential->getAccessKeySecret(); + $token = $this->_credential->getSecurityToken(); + $_request->protocol = $this->_protocol; + $_request->method = 'OPTIONS'; + $_request->pathname = '/' . $request->objectName . ''; + $_request->headers = Tea::merge([ + 'host' => OSSUtils::getHost($request->bucketName, $this->_regionId, $this->_endpoint, $this->_hostModel), + 'date' => Utils::getDateUTCString(), + 'user-agent' => $this->getUserAgent(), + ], Utils::stringifyMapValue(Tea::merge($request->header))); + if (!Utils::empty_($token)) { + $_request->headers['x-oss-security-token'] = $token; + } + $_request->headers['authorization'] = OSSUtils::getSignature($_request, $request->bucketName, $accessKeyId, $accessKeySecret, $this->_signatureVersion, $this->_addtionalHeaders); + $_lastRequest = $_request; + $_response = Tea::send($_request, $_runtime); + $respMap = null; + $bodyStr = null; + if (Utils::is4xx($_response->statusCode) || Utils::is5xx($_response->statusCode)) { + $bodyStr = Utils::readAsString($_response->body); + $respMap = OSSUtils::getErrMessage($bodyStr); + + throw new TeaError([ + 'code' => @$respMap['Code'], + 'message' => @$respMap['Message'], + 'data' => [ + 'httpCode' => $_response->statusCode, + 'requestId' => @$respMap['RequestId'], + 'hostId' => @$respMap['HostId'], + ], + ]); + } + + return OptionObjectResponse::fromMap(Tea::merge($_response->headers)); + } catch (Exception $e) { + if (!($e instanceof TeaError)) { + $e = new TeaError([], $e->getMessage(), $e->getCode(), $e); + } + if (Tea::isRetryable($e)) { + $_lastException = $e; + + continue; + } + + throw $e; + } + } + + throw new TeaUnableRetryError($_lastRequest, $_lastException); + } + + /** + * @param PostVodPlaylistRequest $request + * @param RuntimeOptions $runtime + * + * @throws TeaError + * @throws Exception + * @throws TeaUnableRetryError + * + * @return PostVodPlaylistResponse + */ + public function postVodPlaylist($request, $runtime) + { + $request->validate(); + $runtime->validate(); + $_runtime = [ + 'timeouted' => 'retry', + 'readTimeout' => Utils::defaultNumber($runtime->readTimeout, $this->_readTimeout), + 'connectTimeout' => Utils::defaultNumber($runtime->connectTimeout, $this->_connectTimeout), + 'localAddr' => Utils::defaultString($runtime->localAddr, $this->_localAddr), + 'httpProxy' => Utils::defaultString($runtime->httpProxy, $this->_httpProxy), + 'httpsProxy' => Utils::defaultString($runtime->httpsProxy, $this->_httpsProxy), + 'noProxy' => Utils::defaultString($runtime->noProxy, $this->_noProxy), + 'socks5Proxy' => Utils::defaultString($runtime->socks5Proxy, $this->_socks5Proxy), + 'socks5NetWork' => Utils::defaultString($runtime->socks5NetWork, $this->_socks5NetWork), + 'maxIdleConns' => Utils::defaultNumber($runtime->maxIdleConns, $this->_maxIdleConns), + 'retry' => [ + 'retryable' => $runtime->autoretry, + 'maxAttempts' => Utils::defaultNumber($runtime->maxAttempts, 3), + ], + 'backoff' => [ + 'policy' => Utils::defaultString($runtime->backoffPolicy, 'no'), + 'period' => Utils::defaultNumber($runtime->backoffPeriod, 1), + ], + 'ignoreSSL' => $runtime->ignoreSSL, + ]; + $_lastRequest = null; + $_lastException = null; + $_now = time(); + $_retryTimes = 0; + while (Tea::allowRetry(@$_runtime['retry'], $_retryTimes, $_now)) { + if ($_retryTimes > 0) { + $_backoffTime = Tea::getBackoffTime(@$_runtime['backoff'], $_retryTimes); + if ($_backoffTime > 0) { + Tea::sleep($_backoffTime); + } + } + $_retryTimes = $_retryTimes + 1; + + try { + $_request = new Request(); + $accessKeyId = $this->_credential->getAccessKeyId(); + $accessKeySecret = $this->_credential->getAccessKeySecret(); + $token = $this->_credential->getSecurityToken(); + $_request->protocol = $this->_protocol; + $_request->method = 'POST'; + $_request->pathname = '/' . $request->channelName . '/' . $request->playlistName . '?vod'; + $_request->headers = [ + 'host' => OSSUtils::getHost($request->bucketName, $this->_regionId, $this->_endpoint, $this->_hostModel), + 'date' => Utils::getDateUTCString(), + 'user-agent' => $this->getUserAgent(), + ]; + if (!Utils::empty_($token)) { + $_request->headers['x-oss-security-token'] = $token; + } + $_request->query = Utils::stringifyMapValue(Tea::merge($request->filter)); + $_request->headers['authorization'] = OSSUtils::getSignature($_request, $request->bucketName, $accessKeyId, $accessKeySecret, $this->_signatureVersion, $this->_addtionalHeaders); + $_lastRequest = $_request; + $_response = Tea::send($_request, $_runtime); + $respMap = null; + $bodyStr = null; + if (Utils::is4xx($_response->statusCode) || Utils::is5xx($_response->statusCode)) { + $bodyStr = Utils::readAsString($_response->body); + $respMap = OSSUtils::getErrMessage($bodyStr); + + throw new TeaError([ + 'code' => @$respMap['Code'], + 'message' => @$respMap['Message'], + 'data' => [ + 'httpCode' => $_response->statusCode, + 'requestId' => @$respMap['RequestId'], + 'hostId' => @$respMap['HostId'], + ], + ]); + } + + return PostVodPlaylistResponse::fromMap(Tea::merge($_response->headers)); + } catch (Exception $e) { + if (!($e instanceof TeaError)) { + $e = new TeaError([], $e->getMessage(), $e->getCode(), $e); + } + if (Tea::isRetryable($e)) { + $_lastException = $e; + + continue; + } + + throw $e; + } + } + + throw new TeaUnableRetryError($_lastRequest, $_lastException); + } + + /** + * @param PostObjectRequest $request + * @param RuntimeOptions $runtime + * + * @throws TeaError + * @throws Exception + * @throws TeaUnableRetryError + * + * @return PostObjectResponse + */ + public function postObject($request, $runtime) + { + $request->validate(); + $runtime->validate(); + $_runtime = [ + 'timeouted' => 'retry', + 'readTimeout' => Utils::defaultNumber($runtime->readTimeout, $this->_readTimeout), + 'connectTimeout' => Utils::defaultNumber($runtime->connectTimeout, $this->_connectTimeout), + 'httpProxy' => Utils::defaultString($runtime->httpProxy, $this->_httpProxy), + 'httpsProxy' => Utils::defaultString($runtime->httpsProxy, $this->_httpsProxy), + 'noProxy' => Utils::defaultString($runtime->noProxy, $this->_noProxy), + 'maxIdleConns' => Utils::defaultNumber($runtime->maxIdleConns, $this->_maxIdleConns), + 'retry' => [ + 'retryable' => $runtime->autoretry, + 'maxAttempts' => Utils::defaultNumber($runtime->maxAttempts, 3), + ], + 'backoff' => [ + 'policy' => Utils::defaultString($runtime->backoffPolicy, 'no'), + 'period' => Utils::defaultNumber($runtime->backoffPeriod, 1), + ], + 'ignoreSSL' => $runtime->ignoreSSL, + ]; + $_lastRequest = null; + $_lastException = null; + $_now = time(); + $_retryTimes = 0; + while (Tea::allowRetry(@$_runtime['retry'], $_retryTimes, $_now)) { + if ($_retryTimes > 0) { + $_backoffTime = Tea::getBackoffTime(@$_runtime['backoff'], $_retryTimes); + if ($_backoffTime > 0) { + Tea::sleep($_backoffTime); + } + } + $_retryTimes = $_retryTimes + 1; + + try { + $_request = new Request(); + $boundary = FileForm::getBoundary(); + $_request->protocol = $this->_protocol; + $_request->method = 'POST'; + $_request->pathname = '/'; + $_request->headers = [ + 'host' => OSSUtils::getHost($request->bucketName, $this->_regionId, $this->_endpoint, $this->_hostModel), + 'date' => Utils::getDateUTCString(), + 'user-agent' => $this->getUserAgent(), + ]; + $_request->headers['content-type'] = 'multipart/form-data; boundary=' . $boundary . ''; + $form = Tea::merge([ + 'OSSAccessKeyId' => $request->header->accessKeyId, + 'policy' => $request->header->policy, + 'Signature' => $request->header->signature, + 'key' => $request->header->key, + 'success_action_status' => $request->header->successActionStatus, + 'file' => $request->header->file, + ], OSSUtils::toMeta($request->header->userMeta, 'x-oss-meta-')); + $_request->body = FileForm::toFileForm($form, $boundary); + $_lastRequest = $_request; + $_response = Tea::send($_request, $_runtime); + $respMap = null; + $bodyStr = Utils::readAsString($_response->body); + if (Utils::is4xx($_response->statusCode) || Utils::is5xx($_response->statusCode)) { + $respMap = OSSUtils::getErrMessage($bodyStr); + + throw new TeaError([ + 'code' => @$respMap['Code'], + 'message' => @$respMap['Message'], + 'data' => [ + 'httpCode' => $_response->statusCode, + 'requestId' => @$respMap['RequestId'], + 'hostId' => @$respMap['HostId'], + ], + ]); + } + $respMap = XML::parseXml($bodyStr, PostObjectResponse::class); + + return PostObjectResponse::fromMap(Tea::merge($respMap)); + } catch (Exception $e) { + if (!($e instanceof TeaError)) { + $e = new TeaError([], $e->getMessage(), $e->getCode(), $e); + } + if (Tea::isRetryable($e)) { + $_lastException = $e; + + continue; + } + + throw $e; + } + } + + throw new TeaUnableRetryError($_lastRequest, $_lastException); + } + + /** + * @param HeadObjectRequest $request + * @param RuntimeOptions $runtime + * + * @throws TeaError + * @throws Exception + * @throws TeaUnableRetryError + * + * @return HeadObjectResponse + */ + public function headObject($request, $runtime) + { + $request->validate(); + $runtime->validate(); + $_runtime = [ + 'timeouted' => 'retry', + 'readTimeout' => Utils::defaultNumber($runtime->readTimeout, $this->_readTimeout), + 'connectTimeout' => Utils::defaultNumber($runtime->connectTimeout, $this->_connectTimeout), + 'localAddr' => Utils::defaultString($runtime->localAddr, $this->_localAddr), + 'httpProxy' => Utils::defaultString($runtime->httpProxy, $this->_httpProxy), + 'httpsProxy' => Utils::defaultString($runtime->httpsProxy, $this->_httpsProxy), + 'noProxy' => Utils::defaultString($runtime->noProxy, $this->_noProxy), + 'socks5Proxy' => Utils::defaultString($runtime->socks5Proxy, $this->_socks5Proxy), + 'socks5NetWork' => Utils::defaultString($runtime->socks5NetWork, $this->_socks5NetWork), + 'maxIdleConns' => Utils::defaultNumber($runtime->maxIdleConns, $this->_maxIdleConns), + 'retry' => [ + 'retryable' => $runtime->autoretry, + 'maxAttempts' => Utils::defaultNumber($runtime->maxAttempts, 3), + ], + 'backoff' => [ + 'policy' => Utils::defaultString($runtime->backoffPolicy, 'no'), + 'period' => Utils::defaultNumber($runtime->backoffPeriod, 1), + ], + 'ignoreSSL' => $runtime->ignoreSSL, + ]; + $_lastRequest = null; + $_lastException = null; + $_now = time(); + $_retryTimes = 0; + while (Tea::allowRetry(@$_runtime['retry'], $_retryTimes, $_now)) { + if ($_retryTimes > 0) { + $_backoffTime = Tea::getBackoffTime(@$_runtime['backoff'], $_retryTimes); + if ($_backoffTime > 0) { + Tea::sleep($_backoffTime); + } + } + $_retryTimes = $_retryTimes + 1; + + try { + $_request = new Request(); + $accessKeyId = $this->_credential->getAccessKeyId(); + $accessKeySecret = $this->_credential->getAccessKeySecret(); + $token = $this->_credential->getSecurityToken(); + $_request->protocol = $this->_protocol; + $_request->method = 'HEAD'; + $_request->pathname = '/' . $request->objectName . ''; + $_request->headers = Tea::merge([ + 'host' => OSSUtils::getHost($request->bucketName, $this->_regionId, $this->_endpoint, $this->_hostModel), + 'date' => Utils::getDateUTCString(), + 'user-agent' => $this->getUserAgent(), + ], Utils::stringifyMapValue(Tea::merge($request->header))); + if (!Utils::empty_($token)) { + $_request->headers['x-oss-security-token'] = $token; + } + $_request->headers['authorization'] = OSSUtils::getSignature($_request, $request->bucketName, $accessKeyId, $accessKeySecret, $this->_signatureVersion, $this->_addtionalHeaders); + $_lastRequest = $_request; + $_response = Tea::send($_request, $_runtime); + $respMap = null; + $bodyStr = null; + if (Utils::is4xx($_response->statusCode) || Utils::is5xx($_response->statusCode)) { + $bodyStr = Utils::readAsString($_response->body); + $respMap = OSSUtils::getErrMessage($bodyStr); + + throw new TeaError([ + 'code' => @$respMap['Code'], + 'message' => @$respMap['Message'], + 'data' => [ + 'httpCode' => $_response->statusCode, + 'requestId' => @$respMap['RequestId'], + 'hostId' => @$respMap['HostId'], + ], + ]); + } + + return HeadObjectResponse::fromMap(Tea::merge([ + 'usermeta' => OSSUtils::toMeta($_response->headers, 'x-oss-meta-'), + ], $_response->headers)); + } catch (Exception $e) { + if (!($e instanceof TeaError)) { + $e = new TeaError([], $e->getMessage(), $e->getCode(), $e); + } + if (Tea::isRetryable($e)) { + $_lastException = $e; + + continue; + } + + throw $e; + } + } + + throw new TeaUnableRetryError($_lastRequest, $_lastException); + } + + /** + * @param DeleteObjectTaggingRequest $request + * @param RuntimeOptions $runtime + * + * @throws TeaError + * @throws Exception + * @throws TeaUnableRetryError + * + * @return DeleteObjectTaggingResponse + */ + public function deleteObjectTagging($request, $runtime) + { + $request->validate(); + $runtime->validate(); + $_runtime = [ + 'timeouted' => 'retry', + 'readTimeout' => Utils::defaultNumber($runtime->readTimeout, $this->_readTimeout), + 'connectTimeout' => Utils::defaultNumber($runtime->connectTimeout, $this->_connectTimeout), + 'localAddr' => Utils::defaultString($runtime->localAddr, $this->_localAddr), + 'httpProxy' => Utils::defaultString($runtime->httpProxy, $this->_httpProxy), + 'httpsProxy' => Utils::defaultString($runtime->httpsProxy, $this->_httpsProxy), + 'noProxy' => Utils::defaultString($runtime->noProxy, $this->_noProxy), + 'socks5Proxy' => Utils::defaultString($runtime->socks5Proxy, $this->_socks5Proxy), + 'socks5NetWork' => Utils::defaultString($runtime->socks5NetWork, $this->_socks5NetWork), + 'maxIdleConns' => Utils::defaultNumber($runtime->maxIdleConns, $this->_maxIdleConns), + 'retry' => [ + 'retryable' => $runtime->autoretry, + 'maxAttempts' => Utils::defaultNumber($runtime->maxAttempts, 3), + ], + 'backoff' => [ + 'policy' => Utils::defaultString($runtime->backoffPolicy, 'no'), + 'period' => Utils::defaultNumber($runtime->backoffPeriod, 1), + ], + 'ignoreSSL' => $runtime->ignoreSSL, + ]; + $_lastRequest = null; + $_lastException = null; + $_now = time(); + $_retryTimes = 0; + while (Tea::allowRetry(@$_runtime['retry'], $_retryTimes, $_now)) { + if ($_retryTimes > 0) { + $_backoffTime = Tea::getBackoffTime(@$_runtime['backoff'], $_retryTimes); + if ($_backoffTime > 0) { + Tea::sleep($_backoffTime); + } + } + $_retryTimes = $_retryTimes + 1; + + try { + $_request = new Request(); + $accessKeyId = $this->_credential->getAccessKeyId(); + $accessKeySecret = $this->_credential->getAccessKeySecret(); + $token = $this->_credential->getSecurityToken(); + $_request->protocol = $this->_protocol; + $_request->method = 'DELETE'; + $_request->pathname = '/' . $request->objectName . '?tagging'; + $_request->headers = [ + 'host' => OSSUtils::getHost($request->bucketName, $this->_regionId, $this->_endpoint, $this->_hostModel), + 'date' => Utils::getDateUTCString(), + 'user-agent' => $this->getUserAgent(), + ]; + if (!Utils::empty_($token)) { + $_request->headers['x-oss-security-token'] = $token; + } + $_request->headers['authorization'] = OSSUtils::getSignature($_request, $request->bucketName, $accessKeyId, $accessKeySecret, $this->_signatureVersion, $this->_addtionalHeaders); + $_lastRequest = $_request; + $_response = Tea::send($_request, $_runtime); + $respMap = null; + $bodyStr = null; + if (Utils::is4xx($_response->statusCode) || Utils::is5xx($_response->statusCode)) { + $bodyStr = Utils::readAsString($_response->body); + $respMap = OSSUtils::getErrMessage($bodyStr); + + throw new TeaError([ + 'code' => @$respMap['Code'], + 'message' => @$respMap['Message'], + 'data' => [ + 'httpCode' => $_response->statusCode, + 'requestId' => @$respMap['RequestId'], + 'hostId' => @$respMap['HostId'], + ], + ]); + } + + return DeleteObjectTaggingResponse::fromMap(Tea::merge($_response->headers)); + } catch (Exception $e) { + if (!($e instanceof TeaError)) { + $e = new TeaError([], $e->getMessage(), $e->getCode(), $e); + } + if (Tea::isRetryable($e)) { + $_lastException = $e; + + continue; + } + + throw $e; + } + } + + throw new TeaUnableRetryError($_lastRequest, $_lastException); + } + + /** + * @param RestoreObjectRequest $request + * @param RuntimeOptions $runtime + * + * @throws TeaError + * @throws Exception + * @throws TeaUnableRetryError + * + * @return RestoreObjectResponse + */ + public function restoreObject($request, $runtime) + { + $request->validate(); + $runtime->validate(); + $_runtime = [ + 'timeouted' => 'retry', + 'readTimeout' => Utils::defaultNumber($runtime->readTimeout, $this->_readTimeout), + 'connectTimeout' => Utils::defaultNumber($runtime->connectTimeout, $this->_connectTimeout), + 'localAddr' => Utils::defaultString($runtime->localAddr, $this->_localAddr), + 'httpProxy' => Utils::defaultString($runtime->httpProxy, $this->_httpProxy), + 'httpsProxy' => Utils::defaultString($runtime->httpsProxy, $this->_httpsProxy), + 'noProxy' => Utils::defaultString($runtime->noProxy, $this->_noProxy), + 'socks5Proxy' => Utils::defaultString($runtime->socks5Proxy, $this->_socks5Proxy), + 'socks5NetWork' => Utils::defaultString($runtime->socks5NetWork, $this->_socks5NetWork), + 'maxIdleConns' => Utils::defaultNumber($runtime->maxIdleConns, $this->_maxIdleConns), + 'retry' => [ + 'retryable' => $runtime->autoretry, + 'maxAttempts' => Utils::defaultNumber($runtime->maxAttempts, 3), + ], + 'backoff' => [ + 'policy' => Utils::defaultString($runtime->backoffPolicy, 'no'), + 'period' => Utils::defaultNumber($runtime->backoffPeriod, 1), + ], + 'ignoreSSL' => $runtime->ignoreSSL, + ]; + $_lastRequest = null; + $_lastException = null; + $_now = time(); + $_retryTimes = 0; + while (Tea::allowRetry(@$_runtime['retry'], $_retryTimes, $_now)) { + if ($_retryTimes > 0) { + $_backoffTime = Tea::getBackoffTime(@$_runtime['backoff'], $_retryTimes); + if ($_backoffTime > 0) { + Tea::sleep($_backoffTime); + } + } + $_retryTimes = $_retryTimes + 1; + + try { + $_request = new Request(); + $accessKeyId = $this->_credential->getAccessKeyId(); + $accessKeySecret = $this->_credential->getAccessKeySecret(); + $token = $this->_credential->getSecurityToken(); + $_request->protocol = $this->_protocol; + $_request->method = 'POST'; + $_request->pathname = '/' . $request->objectName . '?restore'; + $_request->headers = [ + 'host' => OSSUtils::getHost($request->bucketName, $this->_regionId, $this->_endpoint, $this->_hostModel), + 'date' => Utils::getDateUTCString(), + 'user-agent' => $this->getUserAgent(), + ]; + if (!Utils::empty_($token)) { + $_request->headers['x-oss-security-token'] = $token; + } + $_request->headers['authorization'] = OSSUtils::getSignature($_request, $request->bucketName, $accessKeyId, $accessKeySecret, $this->_signatureVersion, $this->_addtionalHeaders); + $_lastRequest = $_request; + $_response = Tea::send($_request, $_runtime); + $respMap = null; + $bodyStr = null; + if (Utils::is4xx($_response->statusCode) || Utils::is5xx($_response->statusCode)) { + $bodyStr = Utils::readAsString($_response->body); + $respMap = OSSUtils::getErrMessage($bodyStr); + + throw new TeaError([ + 'code' => @$respMap['Code'], + 'message' => @$respMap['Message'], + 'data' => [ + 'httpCode' => $_response->statusCode, + 'requestId' => @$respMap['RequestId'], + 'hostId' => @$respMap['HostId'], + ], + ]); + } + + return RestoreObjectResponse::fromMap(Tea::merge($_response->headers)); + } catch (Exception $e) { + if (!($e instanceof TeaError)) { + $e = new TeaError([], $e->getMessage(), $e->getCode(), $e); + } + if (Tea::isRetryable($e)) { + $_lastException = $e; + + continue; + } + + throw $e; + } + } + + throw new TeaUnableRetryError($_lastRequest, $_lastException); + } + + /** + * @param GetObjectAclRequest $request + * @param RuntimeOptions $runtime + * + * @throws TeaError + * @throws Exception + * @throws TeaUnableRetryError + * + * @return GetObjectAclResponse + */ + public function getObjectAcl($request, $runtime) + { + $request->validate(); + $runtime->validate(); + $_runtime = [ + 'timeouted' => 'retry', + 'readTimeout' => Utils::defaultNumber($runtime->readTimeout, $this->_readTimeout), + 'connectTimeout' => Utils::defaultNumber($runtime->connectTimeout, $this->_connectTimeout), + 'localAddr' => Utils::defaultString($runtime->localAddr, $this->_localAddr), + 'httpProxy' => Utils::defaultString($runtime->httpProxy, $this->_httpProxy), + 'httpsProxy' => Utils::defaultString($runtime->httpsProxy, $this->_httpsProxy), + 'noProxy' => Utils::defaultString($runtime->noProxy, $this->_noProxy), + 'socks5Proxy' => Utils::defaultString($runtime->socks5Proxy, $this->_socks5Proxy), + 'socks5NetWork' => Utils::defaultString($runtime->socks5NetWork, $this->_socks5NetWork), + 'maxIdleConns' => Utils::defaultNumber($runtime->maxIdleConns, $this->_maxIdleConns), + 'retry' => [ + 'retryable' => $runtime->autoretry, + 'maxAttempts' => Utils::defaultNumber($runtime->maxAttempts, 3), + ], + 'backoff' => [ + 'policy' => Utils::defaultString($runtime->backoffPolicy, 'no'), + 'period' => Utils::defaultNumber($runtime->backoffPeriod, 1), + ], + 'ignoreSSL' => $runtime->ignoreSSL, + ]; + $_lastRequest = null; + $_lastException = null; + $_now = time(); + $_retryTimes = 0; + while (Tea::allowRetry(@$_runtime['retry'], $_retryTimes, $_now)) { + if ($_retryTimes > 0) { + $_backoffTime = Tea::getBackoffTime(@$_runtime['backoff'], $_retryTimes); + if ($_backoffTime > 0) { + Tea::sleep($_backoffTime); + } + } + $_retryTimes = $_retryTimes + 1; + + try { + $_request = new Request(); + $accessKeyId = $this->_credential->getAccessKeyId(); + $accessKeySecret = $this->_credential->getAccessKeySecret(); + $token = $this->_credential->getSecurityToken(); + $_request->protocol = $this->_protocol; + $_request->method = 'GET'; + $_request->pathname = '/' . $request->objectName . '?acl'; + $_request->headers = [ + 'host' => OSSUtils::getHost($request->bucketName, $this->_regionId, $this->_endpoint, $this->_hostModel), + 'date' => Utils::getDateUTCString(), + 'user-agent' => $this->getUserAgent(), + ]; + if (!Utils::empty_($token)) { + $_request->headers['x-oss-security-token'] = $token; + } + $_request->headers['authorization'] = OSSUtils::getSignature($_request, $request->bucketName, $accessKeyId, $accessKeySecret, $this->_signatureVersion, $this->_addtionalHeaders); + $_lastRequest = $_request; + $_response = Tea::send($_request, $_runtime); + $respMap = null; + $bodyStr = null; + if (Utils::is4xx($_response->statusCode) || Utils::is5xx($_response->statusCode)) { + $bodyStr = Utils::readAsString($_response->body); + $respMap = OSSUtils::getErrMessage($bodyStr); + + throw new TeaError([ + 'code' => @$respMap['Code'], + 'message' => @$respMap['Message'], + 'data' => [ + 'httpCode' => $_response->statusCode, + 'requestId' => @$respMap['RequestId'], + 'hostId' => @$respMap['HostId'], + ], + ]); + } + $bodyStr = Utils::readAsString($_response->body); + $respMap = XML::parseXml($bodyStr, GetObjectAclResponse::class); + + return GetObjectAclResponse::fromMap(Tea::merge([ + 'AccessControlPolicy' => @$respMap['AccessControlPolicy'], + ], $_response->headers)); + } catch (Exception $e) { + if (!($e instanceof TeaError)) { + $e = new TeaError([], $e->getMessage(), $e->getCode(), $e); + } + if (Tea::isRetryable($e)) { + $_lastException = $e; + + continue; + } + + throw $e; + } + } + + throw new TeaUnableRetryError($_lastRequest, $_lastException); + } + + /** + * @param PutBucketAclRequest $request + * @param RuntimeOptions $runtime + * + * @throws TeaError + * @throws Exception + * @throws TeaUnableRetryError + * + * @return PutBucketAclResponse + */ + public function putBucketAcl($request, $runtime) + { + $request->validate(); + $runtime->validate(); + $_runtime = [ + 'timeouted' => 'retry', + 'readTimeout' => Utils::defaultNumber($runtime->readTimeout, $this->_readTimeout), + 'connectTimeout' => Utils::defaultNumber($runtime->connectTimeout, $this->_connectTimeout), + 'localAddr' => Utils::defaultString($runtime->localAddr, $this->_localAddr), + 'httpProxy' => Utils::defaultString($runtime->httpProxy, $this->_httpProxy), + 'httpsProxy' => Utils::defaultString($runtime->httpsProxy, $this->_httpsProxy), + 'noProxy' => Utils::defaultString($runtime->noProxy, $this->_noProxy), + 'socks5Proxy' => Utils::defaultString($runtime->socks5Proxy, $this->_socks5Proxy), + 'socks5NetWork' => Utils::defaultString($runtime->socks5NetWork, $this->_socks5NetWork), + 'maxIdleConns' => Utils::defaultNumber($runtime->maxIdleConns, $this->_maxIdleConns), + 'retry' => [ + 'retryable' => $runtime->autoretry, + 'maxAttempts' => Utils::defaultNumber($runtime->maxAttempts, 3), + ], + 'backoff' => [ + 'policy' => Utils::defaultString($runtime->backoffPolicy, 'no'), + 'period' => Utils::defaultNumber($runtime->backoffPeriod, 1), + ], + 'ignoreSSL' => $runtime->ignoreSSL, + ]; + $_lastRequest = null; + $_lastException = null; + $_now = time(); + $_retryTimes = 0; + while (Tea::allowRetry(@$_runtime['retry'], $_retryTimes, $_now)) { + if ($_retryTimes > 0) { + $_backoffTime = Tea::getBackoffTime(@$_runtime['backoff'], $_retryTimes); + if ($_backoffTime > 0) { + Tea::sleep($_backoffTime); + } + } + $_retryTimes = $_retryTimes + 1; + + try { + $_request = new Request(); + $accessKeyId = $this->_credential->getAccessKeyId(); + $accessKeySecret = $this->_credential->getAccessKeySecret(); + $token = $this->_credential->getSecurityToken(); + $_request->protocol = $this->_protocol; + $_request->method = 'PUT'; + $_request->pathname = '/?acl'; + $_request->headers = Tea::merge([ + 'host' => OSSUtils::getHost($request->bucketName, $this->_regionId, $this->_endpoint, $this->_hostModel), + 'date' => Utils::getDateUTCString(), + 'user-agent' => $this->getUserAgent(), + ], Utils::stringifyMapValue(Tea::merge($request->header))); + if (!Utils::empty_($token)) { + $_request->headers['x-oss-security-token'] = $token; + } + $_request->headers['authorization'] = OSSUtils::getSignature($_request, $request->bucketName, $accessKeyId, $accessKeySecret, $this->_signatureVersion, $this->_addtionalHeaders); + $_lastRequest = $_request; + $_response = Tea::send($_request, $_runtime); + $respMap = null; + $bodyStr = null; + if (Utils::is4xx($_response->statusCode) || Utils::is5xx($_response->statusCode)) { + $bodyStr = Utils::readAsString($_response->body); + $respMap = OSSUtils::getErrMessage($bodyStr); + + throw new TeaError([ + 'code' => @$respMap['Code'], + 'message' => @$respMap['Message'], + 'data' => [ + 'httpCode' => $_response->statusCode, + 'requestId' => @$respMap['RequestId'], + 'hostId' => @$respMap['HostId'], + ], + ]); + } + + return PutBucketAclResponse::fromMap(Tea::merge($_response->headers)); + } catch (Exception $e) { + if (!($e instanceof TeaError)) { + $e = new TeaError([], $e->getMessage(), $e->getCode(), $e); + } + if (Tea::isRetryable($e)) { + $_lastException = $e; + + continue; + } + + throw $e; + } + } + + throw new TeaUnableRetryError($_lastRequest, $_lastException); + } + + /** + * @param DeleteBucketRequest $request + * @param RuntimeOptions $runtime + * + * @throws TeaError + * @throws Exception + * @throws TeaUnableRetryError + * + * @return DeleteBucketResponse + */ + public function deleteBucket($request, $runtime) + { + $request->validate(); + $runtime->validate(); + $_runtime = [ + 'timeouted' => 'retry', + 'readTimeout' => Utils::defaultNumber($runtime->readTimeout, $this->_readTimeout), + 'connectTimeout' => Utils::defaultNumber($runtime->connectTimeout, $this->_connectTimeout), + 'localAddr' => Utils::defaultString($runtime->localAddr, $this->_localAddr), + 'httpProxy' => Utils::defaultString($runtime->httpProxy, $this->_httpProxy), + 'httpsProxy' => Utils::defaultString($runtime->httpsProxy, $this->_httpsProxy), + 'noProxy' => Utils::defaultString($runtime->noProxy, $this->_noProxy), + 'socks5Proxy' => Utils::defaultString($runtime->socks5Proxy, $this->_socks5Proxy), + 'socks5NetWork' => Utils::defaultString($runtime->socks5NetWork, $this->_socks5NetWork), + 'maxIdleConns' => Utils::defaultNumber($runtime->maxIdleConns, $this->_maxIdleConns), + 'retry' => [ + 'retryable' => $runtime->autoretry, + 'maxAttempts' => Utils::defaultNumber($runtime->maxAttempts, 3), + ], + 'backoff' => [ + 'policy' => Utils::defaultString($runtime->backoffPolicy, 'no'), + 'period' => Utils::defaultNumber($runtime->backoffPeriod, 1), + ], + 'ignoreSSL' => $runtime->ignoreSSL, + ]; + $_lastRequest = null; + $_lastException = null; + $_now = time(); + $_retryTimes = 0; + while (Tea::allowRetry(@$_runtime['retry'], $_retryTimes, $_now)) { + if ($_retryTimes > 0) { + $_backoffTime = Tea::getBackoffTime(@$_runtime['backoff'], $_retryTimes); + if ($_backoffTime > 0) { + Tea::sleep($_backoffTime); + } + } + $_retryTimes = $_retryTimes + 1; + + try { + $_request = new Request(); + $accessKeyId = $this->_credential->getAccessKeyId(); + $accessKeySecret = $this->_credential->getAccessKeySecret(); + $token = $this->_credential->getSecurityToken(); + $_request->protocol = $this->_protocol; + $_request->method = 'DELETE'; + $_request->pathname = '/'; + $_request->headers = [ + 'host' => OSSUtils::getHost($request->bucketName, $this->_regionId, $this->_endpoint, $this->_hostModel), + 'date' => Utils::getDateUTCString(), + 'user-agent' => $this->getUserAgent(), + ]; + if (!Utils::empty_($token)) { + $_request->headers['x-oss-security-token'] = $token; + } + $_request->headers['authorization'] = OSSUtils::getSignature($_request, $request->bucketName, $accessKeyId, $accessKeySecret, $this->_signatureVersion, $this->_addtionalHeaders); + $_lastRequest = $_request; + $_response = Tea::send($_request, $_runtime); + $respMap = null; + $bodyStr = null; + if (Utils::is4xx($_response->statusCode) || Utils::is5xx($_response->statusCode)) { + $bodyStr = Utils::readAsString($_response->body); + $respMap = OSSUtils::getErrMessage($bodyStr); + + throw new TeaError([ + 'code' => @$respMap['Code'], + 'message' => @$respMap['Message'], + 'data' => [ + 'httpCode' => $_response->statusCode, + 'requestId' => @$respMap['RequestId'], + 'hostId' => @$respMap['HostId'], + ], + ]); + } + + return DeleteBucketResponse::fromMap(Tea::merge($_response->headers)); + } catch (Exception $e) { + if (!($e instanceof TeaError)) { + $e = new TeaError([], $e->getMessage(), $e->getCode(), $e); + } + if (Tea::isRetryable($e)) { + $_lastException = $e; + + continue; + } + + throw $e; + } + } + + throw new TeaUnableRetryError($_lastRequest, $_lastException); + } + + /** + * @param PutObjectRequest $request + * @param RuntimeOptions $runtime + * + * @throws TeaError + * @throws Exception + * @throws TeaUnableRetryError + * + * @return PutObjectResponse + */ + public function putObject($request, $runtime) + { + $request->validate(); + $runtime->validate(); + $_runtime = [ + 'timeouted' => 'retry', + 'readTimeout' => Utils::defaultNumber($runtime->readTimeout, $this->_readTimeout), + 'connectTimeout' => Utils::defaultNumber($runtime->connectTimeout, $this->_connectTimeout), + 'localAddr' => Utils::defaultString($runtime->localAddr, $this->_localAddr), + 'httpProxy' => Utils::defaultString($runtime->httpProxy, $this->_httpProxy), + 'httpsProxy' => Utils::defaultString($runtime->httpsProxy, $this->_httpsProxy), + 'noProxy' => Utils::defaultString($runtime->noProxy, $this->_noProxy), + 'socks5Proxy' => Utils::defaultString($runtime->socks5Proxy, $this->_socks5Proxy), + 'socks5NetWork' => Utils::defaultString($runtime->socks5NetWork, $this->_socks5NetWork), + 'maxIdleConns' => Utils::defaultNumber($runtime->maxIdleConns, $this->_maxIdleConns), + 'retry' => [ + 'retryable' => $runtime->autoretry, + 'maxAttempts' => Utils::defaultNumber($runtime->maxAttempts, 3), + ], + 'backoff' => [ + 'policy' => Utils::defaultString($runtime->backoffPolicy, 'no'), + 'period' => Utils::defaultNumber($runtime->backoffPeriod, 1), + ], + 'ignoreSSL' => $runtime->ignoreSSL, + ]; + $_lastRequest = null; + $_lastException = null; + $_now = time(); + $_retryTimes = 0; + while (Tea::allowRetry(@$_runtime['retry'], $_retryTimes, $_now)) { + if ($_retryTimes > 0) { + $_backoffTime = Tea::getBackoffTime(@$_runtime['backoff'], $_retryTimes); + if ($_backoffTime > 0) { + Tea::sleep($_backoffTime); + } + } + $_retryTimes = $_retryTimes + 1; + + try { + $_request = new Request(); + $ctx = []; + $accessKeyId = $this->_credential->getAccessKeyId(); + $accessKeySecret = $this->_credential->getAccessKeySecret(); + $token = $this->_credential->getSecurityToken(); + $_request->protocol = $this->_protocol; + $_request->method = 'PUT'; + $_request->pathname = '/' . $request->objectName . ''; + $_request->headers = Tea::merge([ + 'host' => OSSUtils::getHost($request->bucketName, $this->_regionId, $this->_endpoint, $this->_hostModel), + 'date' => Utils::getDateUTCString(), + 'user-agent' => $this->getUserAgent(), + ], Utils::stringifyMapValue(Tea::merge($request->header)), OSSUtils::parseMeta($request->userMeta, 'x-oss-meta-')); + if (!Utils::empty_($token)) { + $_request->headers['x-oss-security-token'] = $token; + } + $_request->body = OSSUtils::inject($request->body, $ctx); + if (!Utils::isUnset($request->header) && !Utils::empty_($request->header->contentType)) { + $_request->headers['content-type'] = $request->header->contentType; + } else { + $_request->headers['content-type'] = OSSUtils::getContentType($request->objectName); + } + $_request->headers['authorization'] = OSSUtils::getSignature($_request, $request->bucketName, $accessKeyId, $accessKeySecret, $this->_signatureVersion, $this->_addtionalHeaders); + $_lastRequest = $_request; + $_response = Tea::send($_request, $_runtime); + $respMap = null; + $bodyStr = null; + if (Utils::is4xx($_response->statusCode) || Utils::is5xx($_response->statusCode)) { + $bodyStr = Utils::readAsString($_response->body); + $respMap = OSSUtils::getErrMessage($bodyStr); + + throw new TeaError([ + 'code' => @$respMap['Code'], + 'message' => @$respMap['Message'], + 'data' => [ + 'httpCode' => $_response->statusCode, + 'requestId' => @$respMap['RequestId'], + 'hostId' => @$respMap['HostId'], + ], + ]); + } + if ($this->_isEnableCrc && !Utils::equalString(@$ctx['crc'], @$_response->headers['x-oss-hash-crc64ecma'])) { + throw new TeaError([ + 'code' => 'CrcNotMatched', + 'data' => [ + 'clientCrc' => @$ctx['crc'], + 'serverCrc' => @$_response->headers['x-oss-hash-crc64ecma'], + ], + ]); + } + if ($this->_isEnableMD5 && !Utils::equalString(@$ctx['md5'], @$_response->headers['content-md5'])) { + throw new TeaError([ + 'code' => 'MD5NotMatched', + 'data' => [ + 'clientMD5' => @$ctx['md5'], + 'serverMD5' => @$_response->headers['content-md5'], + ], + ]); + } + + return PutObjectResponse::fromMap(Tea::merge($_response->headers)); + } catch (Exception $e) { + if (!($e instanceof TeaError)) { + $e = new TeaError([], $e->getMessage(), $e->getCode(), $e); + } + if (Tea::isRetryable($e)) { + $_lastException = $e; + + continue; + } + + throw $e; + } + } + + throw new TeaUnableRetryError($_lastRequest, $_lastException); + } + + /** + * @param string $userAgent + */ + public function setUserAgent($userAgent) + { + $this->_userAgent = $userAgent; + } + + /** + * @param string $userAgent + */ + public function appendUserAgent($userAgent) + { + $this->_userAgent = '' . $this->_userAgent . ' ' . $userAgent . ''; + } + + /** + * @return string + */ + public function getUserAgent() + { + return Utils::getUserAgent($this->_userAgent); + } + + /** + * @return string + */ + public function getAccessKeyId() + { + if (Utils::isUnset($this->_credential)) { + return ''; + } + + return $this->_credential->getAccessKeyId(); + } + + /** + * @return string + */ + public function getAccessKeySecret() + { + if (Utils::isUnset($this->_credential)) { + return ''; + } + + return $this->_credential->getAccessKeySecret(); + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/AbortMultipartUploadRequest.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/AbortMultipartUploadRequest.php new file mode 100644 index 00000000..20fbc366 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/AbortMultipartUploadRequest.php @@ -0,0 +1,82 @@ + 'BucketName', + 'objectName' => 'ObjectName', + 'filter' => 'Filter', + ]; + + public function validate() + { + Model::validateRequired('bucketName', $this->bucketName, true); + Model::validateRequired('objectName', $this->objectName, true); + Model::validateRequired('filter', $this->filter, true); + Model::validatePattern('bucketName', $this->bucketName, '[a-zA-Z0-9-_]+'); + } + + public function toMap() + { + $res = []; + if (null !== $this->bucketName) { + $res['BucketName'] = $this->bucketName; + } + if (null !== $this->objectName) { + $res['ObjectName'] = $this->objectName; + } + if (null !== $this->filter) { + $res['Filter'] = null !== $this->filter ? $this->filter->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return AbortMultipartUploadRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['BucketName'])) { + $model->bucketName = $map['BucketName']; + } + if (isset($map['ObjectName'])) { + $model->objectName = $map['ObjectName']; + } + if (isset($map['Filter'])) { + $model->filter = filter::fromMap($map['Filter']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/AbortMultipartUploadRequest/filter.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/AbortMultipartUploadRequest/filter.php new file mode 100644 index 00000000..e82ddcf5 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/AbortMultipartUploadRequest/filter.php @@ -0,0 +1,50 @@ + 'uploadId', + ]; + + public function validate() + { + Model::validateRequired('uploadId', $this->uploadId, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->uploadId) { + $res['uploadId'] = $this->uploadId; + } + + return $res; + } + + /** + * @param array $map + * + * @return filter + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['uploadId'])) { + $model->uploadId = $map['uploadId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/AbortMultipartUploadResponse.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/AbortMultipartUploadResponse.php new file mode 100644 index 00000000..f6184003 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/AbortMultipartUploadResponse.php @@ -0,0 +1,50 @@ + 'x-oss-request-id', + ]; + + public function validate() + { + Model::validateRequired('requestId', $this->requestId, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['x-oss-request-id'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return AbortMultipartUploadResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['x-oss-request-id'])) { + $model->requestId = $map['x-oss-request-id']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/AppendObjectRequest.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/AppendObjectRequest.php new file mode 100644 index 00000000..b916a2bf --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/AppendObjectRequest.php @@ -0,0 +1,126 @@ + 'BucketName', + 'objectName' => 'ObjectName', + 'userMeta' => 'UserMeta', + 'body' => 'body', + 'filter' => 'Filter', + 'header' => 'Header', + ]; + + public function validate() + { + Model::validateRequired('bucketName', $this->bucketName, true); + Model::validateRequired('objectName', $this->objectName, true); + Model::validateRequired('filter', $this->filter, true); + Model::validatePattern('bucketName', $this->bucketName, '[a-zA-Z0-9-_]+'); + } + + public function toMap() + { + $res = []; + if (null !== $this->bucketName) { + $res['BucketName'] = $this->bucketName; + } + if (null !== $this->objectName) { + $res['ObjectName'] = $this->objectName; + } + if (null !== $this->userMeta) { + $res['UserMeta'] = $this->userMeta; + } + if (null !== $this->body) { + $res['body'] = $this->body; + } + if (null !== $this->filter) { + $res['Filter'] = null !== $this->filter ? $this->filter->toMap() : null; + } + if (null !== $this->header) { + $res['Header'] = null !== $this->header ? $this->header->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return AppendObjectRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['BucketName'])) { + $model->bucketName = $map['BucketName']; + } + if (isset($map['ObjectName'])) { + $model->objectName = $map['ObjectName']; + } + if (isset($map['UserMeta'])) { + $model->userMeta = $map['UserMeta']; + } + if (isset($map['body'])) { + $model->body = $map['body']; + } + if (isset($map['Filter'])) { + $model->filter = filter::fromMap($map['Filter']); + } + if (isset($map['Header'])) { + $model->header = header::fromMap($map['Header']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/AppendObjectRequest/filter.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/AppendObjectRequest/filter.php new file mode 100644 index 00000000..50f7a538 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/AppendObjectRequest/filter.php @@ -0,0 +1,50 @@ + 'position', + ]; + + public function validate() + { + Model::validateRequired('position', $this->position, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->position) { + $res['position'] = $this->position; + } + + return $res; + } + + /** + * @param array $map + * + * @return filter + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['position'])) { + $model->position = $map['position']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/AppendObjectRequest/header.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/AppendObjectRequest/header.php new file mode 100644 index 00000000..51aab290 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/AppendObjectRequest/header.php @@ -0,0 +1,161 @@ + 'Cache-Control', + 'contentDisposition' => 'Content-Disposition', + 'contentEncoding' => 'Content-Encoding', + 'contentMD5' => 'Content-MD5', + 'expires' => 'Expires', + 'serverSideEncryption' => 'x-oss-server-side-encryption', + 'objectAcl' => 'x-oss-object-acl', + 'storageClass' => 'x-oss-storage-class', + 'contentType' => 'content-type', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->cacheControl) { + $res['Cache-Control'] = $this->cacheControl; + } + if (null !== $this->contentDisposition) { + $res['Content-Disposition'] = $this->contentDisposition; + } + if (null !== $this->contentEncoding) { + $res['Content-Encoding'] = $this->contentEncoding; + } + if (null !== $this->contentMD5) { + $res['Content-MD5'] = $this->contentMD5; + } + if (null !== $this->expires) { + $res['Expires'] = $this->expires; + } + if (null !== $this->serverSideEncryption) { + $res['x-oss-server-side-encryption'] = $this->serverSideEncryption; + } + if (null !== $this->objectAcl) { + $res['x-oss-object-acl'] = $this->objectAcl; + } + if (null !== $this->storageClass) { + $res['x-oss-storage-class'] = $this->storageClass; + } + if (null !== $this->contentType) { + $res['content-type'] = $this->contentType; + } + + return $res; + } + + /** + * @param array $map + * + * @return header + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Cache-Control'])) { + $model->cacheControl = $map['Cache-Control']; + } + if (isset($map['Content-Disposition'])) { + $model->contentDisposition = $map['Content-Disposition']; + } + if (isset($map['Content-Encoding'])) { + $model->contentEncoding = $map['Content-Encoding']; + } + if (isset($map['Content-MD5'])) { + $model->contentMD5 = $map['Content-MD5']; + } + if (isset($map['Expires'])) { + $model->expires = $map['Expires']; + } + if (isset($map['x-oss-server-side-encryption'])) { + $model->serverSideEncryption = $map['x-oss-server-side-encryption']; + } + if (isset($map['x-oss-object-acl'])) { + $model->objectAcl = $map['x-oss-object-acl']; + } + if (isset($map['x-oss-storage-class'])) { + $model->storageClass = $map['x-oss-storage-class']; + } + if (isset($map['content-type'])) { + $model->contentType = $map['content-type']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/AppendObjectResponse.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/AppendObjectResponse.php new file mode 100644 index 00000000..7d768867 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/AppendObjectResponse.php @@ -0,0 +1,80 @@ + 'x-oss-request-id', + 'nextAppendPosition' => 'x-oss-next-append-position', + 'hashCrc64ecma' => 'x-oss-hash-crc64ecma', + ]; + + public function validate() + { + Model::validateRequired('requestId', $this->requestId, true); + Model::validateRequired('nextAppendPosition', $this->nextAppendPosition, true); + Model::validateRequired('hashCrc64ecma', $this->hashCrc64ecma, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['x-oss-request-id'] = $this->requestId; + } + if (null !== $this->nextAppendPosition) { + $res['x-oss-next-append-position'] = $this->nextAppendPosition; + } + if (null !== $this->hashCrc64ecma) { + $res['x-oss-hash-crc64ecma'] = $this->hashCrc64ecma; + } + + return $res; + } + + /** + * @param array $map + * + * @return AppendObjectResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['x-oss-request-id'])) { + $model->requestId = $map['x-oss-request-id']; + } + if (isset($map['x-oss-next-append-position'])) { + $model->nextAppendPosition = $map['x-oss-next-append-position']; + } + if (isset($map['x-oss-hash-crc64ecma'])) { + $model->hashCrc64ecma = $map['x-oss-hash-crc64ecma']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/CallbackRequest.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/CallbackRequest.php new file mode 100644 index 00000000..2ff92f7b --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/CallbackRequest.php @@ -0,0 +1,51 @@ + 'BucketName', + ]; + + public function validate() + { + Model::validateRequired('bucketName', $this->bucketName, true); + Model::validatePattern('bucketName', $this->bucketName, '[a-zA-Z0-9-_]+'); + } + + public function toMap() + { + $res = []; + if (null !== $this->bucketName) { + $res['BucketName'] = $this->bucketName; + } + + return $res; + } + + /** + * @param array $map + * + * @return CallbackRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['BucketName'])) { + $model->bucketName = $map['BucketName']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/CallbackResponse.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/CallbackResponse.php new file mode 100644 index 00000000..d458ca5e --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/CallbackResponse.php @@ -0,0 +1,50 @@ + 'x-oss-request-id', + ]; + + public function validate() + { + Model::validateRequired('requestId', $this->requestId, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['x-oss-request-id'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return CallbackResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['x-oss-request-id'])) { + $model->requestId = $map['x-oss-request-id']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/CompleteMultipartUploadRequest.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/CompleteMultipartUploadRequest.php new file mode 100644 index 00000000..90d25e2f --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/CompleteMultipartUploadRequest.php @@ -0,0 +1,97 @@ + 'BucketName', + 'objectName' => 'ObjectName', + 'filter' => 'Filter', + 'body' => 'Body', + ]; + + public function validate() + { + Model::validateRequired('bucketName', $this->bucketName, true); + Model::validateRequired('objectName', $this->objectName, true); + Model::validateRequired('filter', $this->filter, true); + Model::validatePattern('bucketName', $this->bucketName, '[a-zA-Z0-9-_]+'); + } + + public function toMap() + { + $res = []; + if (null !== $this->bucketName) { + $res['BucketName'] = $this->bucketName; + } + if (null !== $this->objectName) { + $res['ObjectName'] = $this->objectName; + } + if (null !== $this->filter) { + $res['Filter'] = null !== $this->filter ? $this->filter->toMap() : null; + } + if (null !== $this->body) { + $res['Body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return CompleteMultipartUploadRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['BucketName'])) { + $model->bucketName = $map['BucketName']; + } + if (isset($map['ObjectName'])) { + $model->objectName = $map['ObjectName']; + } + if (isset($map['Filter'])) { + $model->filter = filter::fromMap($map['Filter']); + } + if (isset($map['Body'])) { + $model->body = body::fromMap($map['Body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/CompleteMultipartUploadRequest/body.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/CompleteMultipartUploadRequest/body.php new file mode 100644 index 00000000..75ed6d5f --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/CompleteMultipartUploadRequest/body.php @@ -0,0 +1,51 @@ + 'CompleteMultipartUpload', + ]; + + public function validate() + { + Model::validateRequired('completeMultipartUpload', $this->completeMultipartUpload, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->completeMultipartUpload) { + $res['CompleteMultipartUpload'] = null !== $this->completeMultipartUpload ? $this->completeMultipartUpload->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return body + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CompleteMultipartUpload'])) { + $model->completeMultipartUpload = completeMultipartUpload::fromMap($map['CompleteMultipartUpload']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/CompleteMultipartUploadRequest/body/completeMultipartUpload.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/CompleteMultipartUploadRequest/body/completeMultipartUpload.php new file mode 100644 index 00000000..30a591ff --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/CompleteMultipartUploadRequest/body/completeMultipartUpload.php @@ -0,0 +1,62 @@ + 'Part', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->part) { + $res['Part'] = []; + if (null !== $this->part && \is_array($this->part)) { + $n = 0; + foreach ($this->part as $item) { + $res['Part'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return completeMultipartUpload + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Part'])) { + if (!empty($map['Part'])) { + $model->part = []; + $n = 0; + foreach ($map['Part'] as $item) { + $model->part[$n++] = null !== $item ? part::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/CompleteMultipartUploadRequest/body/completeMultipartUpload/part.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/CompleteMultipartUploadRequest/body/completeMultipartUpload/part.php new file mode 100644 index 00000000..76e5d2b8 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/CompleteMultipartUploadRequest/body/completeMultipartUpload/part.php @@ -0,0 +1,63 @@ + 'PartNumber', + 'eTag' => 'ETag', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->partNumber) { + $res['PartNumber'] = $this->partNumber; + } + if (null !== $this->eTag) { + $res['ETag'] = $this->eTag; + } + + return $res; + } + + /** + * @param array $map + * + * @return part + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['PartNumber'])) { + $model->partNumber = $map['PartNumber']; + } + if (isset($map['ETag'])) { + $model->eTag = $map['ETag']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/CompleteMultipartUploadRequest/filter.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/CompleteMultipartUploadRequest/filter.php new file mode 100644 index 00000000..49c156f3 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/CompleteMultipartUploadRequest/filter.php @@ -0,0 +1,64 @@ + 'uploadId', + 'encodingType' => 'Encoding-type', + ]; + + public function validate() + { + Model::validateRequired('uploadId', $this->uploadId, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->uploadId) { + $res['uploadId'] = $this->uploadId; + } + if (null !== $this->encodingType) { + $res['Encoding-type'] = $this->encodingType; + } + + return $res; + } + + /** + * @param array $map + * + * @return filter + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['uploadId'])) { + $model->uploadId = $map['uploadId']; + } + if (isset($map['Encoding-type'])) { + $model->encodingType = $map['Encoding-type']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/CompleteMultipartUploadResponse.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/CompleteMultipartUploadResponse.php new file mode 100644 index 00000000..4274b81b --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/CompleteMultipartUploadResponse.php @@ -0,0 +1,66 @@ + 'x-oss-request-id', + 'completeMultipartUploadResult' => 'CompleteMultipartUploadResult', + ]; + + public function validate() + { + Model::validateRequired('requestId', $this->requestId, true); + Model::validateRequired('completeMultipartUploadResult', $this->completeMultipartUploadResult, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['x-oss-request-id'] = $this->requestId; + } + if (null !== $this->completeMultipartUploadResult) { + $res['CompleteMultipartUploadResult'] = null !== $this->completeMultipartUploadResult ? $this->completeMultipartUploadResult->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return CompleteMultipartUploadResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['x-oss-request-id'])) { + $model->requestId = $map['x-oss-request-id']; + } + if (isset($map['CompleteMultipartUploadResult'])) { + $model->completeMultipartUploadResult = completeMultipartUploadResult::fromMap($map['CompleteMultipartUploadResult']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/CompleteMultipartUploadResponse/completeMultipartUploadResult.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/CompleteMultipartUploadResponse/completeMultipartUploadResult.php new file mode 100644 index 00000000..ece6c6f5 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/CompleteMultipartUploadResponse/completeMultipartUploadResult.php @@ -0,0 +1,105 @@ + 'Bucket', + 'eTag' => 'ETag', + 'location' => 'Location', + 'key' => 'Key', + 'encodingType' => 'EncodingType', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->bucket) { + $res['Bucket'] = $this->bucket; + } + if (null !== $this->eTag) { + $res['ETag'] = $this->eTag; + } + if (null !== $this->location) { + $res['Location'] = $this->location; + } + if (null !== $this->key) { + $res['Key'] = $this->key; + } + if (null !== $this->encodingType) { + $res['EncodingType'] = $this->encodingType; + } + + return $res; + } + + /** + * @param array $map + * + * @return completeMultipartUploadResult + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Bucket'])) { + $model->bucket = $map['Bucket']; + } + if (isset($map['ETag'])) { + $model->eTag = $map['ETag']; + } + if (isset($map['Location'])) { + $model->location = $map['Location']; + } + if (isset($map['Key'])) { + $model->key = $map['Key']; + } + if (isset($map['EncodingType'])) { + $model->encodingType = $map['EncodingType']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/Config.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/Config.php new file mode 100644 index 00000000..93b26d58 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/Config.php @@ -0,0 +1,223 @@ +accessKeyId, true); + Model::validateRequired('accessKeySecret', $this->accessKeySecret, true); + Model::validatePattern('regionId', $this->regionId, '[a-zA-Z0-9-_]+'); + } + + public function toMap() + { + $res = []; + if (null !== $this->type) { + $res['type'] = $this->type; + } + if (null !== $this->securityToken) { + $res['securityToken'] = $this->securityToken; + } + if (null !== $this->accessKeyId) { + $res['accessKeyId'] = $this->accessKeyId; + } + if (null !== $this->accessKeySecret) { + $res['accessKeySecret'] = $this->accessKeySecret; + } + if (null !== $this->endpoint) { + $res['endpoint'] = $this->endpoint; + } + if (null !== $this->protocol) { + $res['protocol'] = $this->protocol; + } + if (null !== $this->regionId) { + $res['regionId'] = $this->regionId; + } + if (null !== $this->userAgent) { + $res['userAgent'] = $this->userAgent; + } + if (null !== $this->hostModel) { + $res['hostModel'] = $this->hostModel; + } + if (null !== $this->signatureVersion) { + $res['signatureVersion'] = $this->signatureVersion; + } + if (null !== $this->isEnableMD5) { + $res['isEnableMD5'] = $this->isEnableMD5; + } + if (null !== $this->isEnableCrc) { + $res['isEnableCrc'] = $this->isEnableCrc; + } + if (null !== $this->readTimeout) { + $res['readTimeout'] = $this->readTimeout; + } + if (null !== $this->connectTimeout) { + $res['connectTimeout'] = $this->connectTimeout; + } + if (null !== $this->localAddr) { + $res['localAddr'] = $this->localAddr; + } + if (null !== $this->httpProxy) { + $res['httpProxy'] = $this->httpProxy; + } + if (null !== $this->httpsProxy) { + $res['httpsProxy'] = $this->httpsProxy; + } + if (null !== $this->noProxy) { + $res['noProxy'] = $this->noProxy; + } + if (null !== $this->socks5Proxy) { + $res['socks5Proxy'] = $this->socks5Proxy; + } + if (null !== $this->socks5NetWork) { + $res['socks5NetWork'] = $this->socks5NetWork; + } + if (null !== $this->maxIdleConns) { + $res['maxIdleConns'] = $this->maxIdleConns; + } + if (null !== $this->addtionalHeaders) { + $res['addtionalHeaders'] = $this->addtionalHeaders; + } + + return $res; + } + + /** + * @param array $map + * + * @return Config + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['type'])) { + $model->type = $map['type']; + } + if (isset($map['securityToken'])) { + $model->securityToken = $map['securityToken']; + } + if (isset($map['accessKeyId'])) { + $model->accessKeyId = $map['accessKeyId']; + } + if (isset($map['accessKeySecret'])) { + $model->accessKeySecret = $map['accessKeySecret']; + } + if (isset($map['endpoint'])) { + $model->endpoint = $map['endpoint']; + } + if (isset($map['protocol'])) { + $model->protocol = $map['protocol']; + } + if (isset($map['regionId'])) { + $model->regionId = $map['regionId']; + } + if (isset($map['userAgent'])) { + $model->userAgent = $map['userAgent']; + } + if (isset($map['hostModel'])) { + $model->hostModel = $map['hostModel']; + } + if (isset($map['signatureVersion'])) { + $model->signatureVersion = $map['signatureVersion']; + } + if (isset($map['isEnableMD5'])) { + $model->isEnableMD5 = $map['isEnableMD5']; + } + if (isset($map['isEnableCrc'])) { + $model->isEnableCrc = $map['isEnableCrc']; + } + if (isset($map['readTimeout'])) { + $model->readTimeout = $map['readTimeout']; + } + if (isset($map['connectTimeout'])) { + $model->connectTimeout = $map['connectTimeout']; + } + if (isset($map['localAddr'])) { + $model->localAddr = $map['localAddr']; + } + if (isset($map['httpProxy'])) { + $model->httpProxy = $map['httpProxy']; + } + if (isset($map['httpsProxy'])) { + $model->httpsProxy = $map['httpsProxy']; + } + if (isset($map['noProxy'])) { + $model->noProxy = $map['noProxy']; + } + if (isset($map['socks5Proxy'])) { + $model->socks5Proxy = $map['socks5Proxy']; + } + if (isset($map['socks5NetWork'])) { + $model->socks5NetWork = $map['socks5NetWork']; + } + if (isset($map['maxIdleConns'])) { + $model->maxIdleConns = $map['maxIdleConns']; + } + if (isset($map['addtionalHeaders'])) { + if (!empty($map['addtionalHeaders'])) { + $model->addtionalHeaders = $map['addtionalHeaders']; + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/CopyObjectRequest.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/CopyObjectRequest.php new file mode 100644 index 00000000..c0a085db --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/CopyObjectRequest.php @@ -0,0 +1,82 @@ + 'BucketName', + 'destObjectName' => 'DestObjectName', + 'header' => 'Header', + ]; + + public function validate() + { + Model::validateRequired('bucketName', $this->bucketName, true); + Model::validateRequired('destObjectName', $this->destObjectName, true); + Model::validateRequired('header', $this->header, true); + Model::validatePattern('bucketName', $this->bucketName, '[a-zA-Z0-9-_]+'); + } + + public function toMap() + { + $res = []; + if (null !== $this->bucketName) { + $res['BucketName'] = $this->bucketName; + } + if (null !== $this->destObjectName) { + $res['DestObjectName'] = $this->destObjectName; + } + if (null !== $this->header) { + $res['Header'] = null !== $this->header ? $this->header->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return CopyObjectRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['BucketName'])) { + $model->bucketName = $map['BucketName']; + } + if (isset($map['DestObjectName'])) { + $model->destObjectName = $map['DestObjectName']; + } + if (isset($map['Header'])) { + $model->header = header::fromMap($map['Header']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/CopyObjectRequest/header.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/CopyObjectRequest/header.php new file mode 100644 index 00000000..ed3d126b --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/CopyObjectRequest/header.php @@ -0,0 +1,204 @@ + 'x-oss-copy-source', + 'copySourceIfMatch' => 'x-oss-copy-source-if-match', + 'copySourceIfNoneMatch' => 'x-oss-copy-source-if-none-match', + 'copySourceIfUnmodifiedSince' => 'x-oss-copy-source-if-unmodified-since', + 'copySourceIfModifiedSince' => 'x-oss-copy-source-if-modified-since', + 'metadataDirective' => 'x-oss-metadata-directive', + 'serverSideEncryption' => 'x-oss-server-side-encryption', + 'serverSideEncryptionKeyId' => 'x-oss-server-side-encryption-key-id', + 'objectAcl' => 'x-oss-object-acl', + 'storageClass' => 'x-oss-storage-class', + 'tagging' => 'x-oss-tagging', + 'taggingDirective' => 'x-oss-tagging-directive', + ]; + + public function validate() + { + Model::validateRequired('copySource', $this->copySource, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->copySource) { + $res['x-oss-copy-source'] = $this->copySource; + } + if (null !== $this->copySourceIfMatch) { + $res['x-oss-copy-source-if-match'] = $this->copySourceIfMatch; + } + if (null !== $this->copySourceIfNoneMatch) { + $res['x-oss-copy-source-if-none-match'] = $this->copySourceIfNoneMatch; + } + if (null !== $this->copySourceIfUnmodifiedSince) { + $res['x-oss-copy-source-if-unmodified-since'] = $this->copySourceIfUnmodifiedSince; + } + if (null !== $this->copySourceIfModifiedSince) { + $res['x-oss-copy-source-if-modified-since'] = $this->copySourceIfModifiedSince; + } + if (null !== $this->metadataDirective) { + $res['x-oss-metadata-directive'] = $this->metadataDirective; + } + if (null !== $this->serverSideEncryption) { + $res['x-oss-server-side-encryption'] = $this->serverSideEncryption; + } + if (null !== $this->serverSideEncryptionKeyId) { + $res['x-oss-server-side-encryption-key-id'] = $this->serverSideEncryptionKeyId; + } + if (null !== $this->objectAcl) { + $res['x-oss-object-acl'] = $this->objectAcl; + } + if (null !== $this->storageClass) { + $res['x-oss-storage-class'] = $this->storageClass; + } + if (null !== $this->tagging) { + $res['x-oss-tagging'] = $this->tagging; + } + if (null !== $this->taggingDirective) { + $res['x-oss-tagging-directive'] = $this->taggingDirective; + } + + return $res; + } + + /** + * @param array $map + * + * @return header + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['x-oss-copy-source'])) { + $model->copySource = $map['x-oss-copy-source']; + } + if (isset($map['x-oss-copy-source-if-match'])) { + $model->copySourceIfMatch = $map['x-oss-copy-source-if-match']; + } + if (isset($map['x-oss-copy-source-if-none-match'])) { + $model->copySourceIfNoneMatch = $map['x-oss-copy-source-if-none-match']; + } + if (isset($map['x-oss-copy-source-if-unmodified-since'])) { + $model->copySourceIfUnmodifiedSince = $map['x-oss-copy-source-if-unmodified-since']; + } + if (isset($map['x-oss-copy-source-if-modified-since'])) { + $model->copySourceIfModifiedSince = $map['x-oss-copy-source-if-modified-since']; + } + if (isset($map['x-oss-metadata-directive'])) { + $model->metadataDirective = $map['x-oss-metadata-directive']; + } + if (isset($map['x-oss-server-side-encryption'])) { + $model->serverSideEncryption = $map['x-oss-server-side-encryption']; + } + if (isset($map['x-oss-server-side-encryption-key-id'])) { + $model->serverSideEncryptionKeyId = $map['x-oss-server-side-encryption-key-id']; + } + if (isset($map['x-oss-object-acl'])) { + $model->objectAcl = $map['x-oss-object-acl']; + } + if (isset($map['x-oss-storage-class'])) { + $model->storageClass = $map['x-oss-storage-class']; + } + if (isset($map['x-oss-tagging'])) { + $model->tagging = $map['x-oss-tagging']; + } + if (isset($map['x-oss-tagging-directive'])) { + $model->taggingDirective = $map['x-oss-tagging-directive']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/CopyObjectResponse.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/CopyObjectResponse.php new file mode 100644 index 00000000..7348bfdc --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/CopyObjectResponse.php @@ -0,0 +1,66 @@ + 'x-oss-request-id', + 'copyObjectResult' => 'CopyObjectResult', + ]; + + public function validate() + { + Model::validateRequired('requestId', $this->requestId, true); + Model::validateRequired('copyObjectResult', $this->copyObjectResult, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['x-oss-request-id'] = $this->requestId; + } + if (null !== $this->copyObjectResult) { + $res['CopyObjectResult'] = null !== $this->copyObjectResult ? $this->copyObjectResult->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return CopyObjectResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['x-oss-request-id'])) { + $model->requestId = $map['x-oss-request-id']; + } + if (isset($map['CopyObjectResult'])) { + $model->copyObjectResult = copyObjectResult::fromMap($map['CopyObjectResult']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/CopyObjectResponse/copyObjectResult.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/CopyObjectResponse/copyObjectResult.php new file mode 100644 index 00000000..dd77d956 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/CopyObjectResponse/copyObjectResult.php @@ -0,0 +1,63 @@ + 'LastModified', + 'eTag' => 'ETag', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->lastModified) { + $res['LastModified'] = $this->lastModified; + } + if (null !== $this->eTag) { + $res['ETag'] = $this->eTag; + } + + return $res; + } + + /** + * @param array $map + * + * @return copyObjectResult + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['LastModified'])) { + $model->lastModified = $map['LastModified']; + } + if (isset($map['ETag'])) { + $model->eTag = $map['ETag']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/DeleteBucketCORSRequest.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/DeleteBucketCORSRequest.php new file mode 100644 index 00000000..947cdae6 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/DeleteBucketCORSRequest.php @@ -0,0 +1,51 @@ + 'BucketName', + ]; + + public function validate() + { + Model::validateRequired('bucketName', $this->bucketName, true); + Model::validatePattern('bucketName', $this->bucketName, '[a-zA-Z0-9-_]+'); + } + + public function toMap() + { + $res = []; + if (null !== $this->bucketName) { + $res['BucketName'] = $this->bucketName; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteBucketCORSRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['BucketName'])) { + $model->bucketName = $map['BucketName']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/DeleteBucketCORSResponse.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/DeleteBucketCORSResponse.php new file mode 100644 index 00000000..6b6516ef --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/DeleteBucketCORSResponse.php @@ -0,0 +1,50 @@ + 'x-oss-request-id', + ]; + + public function validate() + { + Model::validateRequired('requestId', $this->requestId, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['x-oss-request-id'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteBucketCORSResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['x-oss-request-id'])) { + $model->requestId = $map['x-oss-request-id']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/DeleteBucketEncryptionRequest.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/DeleteBucketEncryptionRequest.php new file mode 100644 index 00000000..9c180e18 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/DeleteBucketEncryptionRequest.php @@ -0,0 +1,51 @@ + 'BucketName', + ]; + + public function validate() + { + Model::validateRequired('bucketName', $this->bucketName, true); + Model::validatePattern('bucketName', $this->bucketName, '[a-zA-Z0-9-_]+'); + } + + public function toMap() + { + $res = []; + if (null !== $this->bucketName) { + $res['BucketName'] = $this->bucketName; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteBucketEncryptionRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['BucketName'])) { + $model->bucketName = $map['BucketName']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/DeleteBucketEncryptionResponse.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/DeleteBucketEncryptionResponse.php new file mode 100644 index 00000000..81ddf0e8 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/DeleteBucketEncryptionResponse.php @@ -0,0 +1,50 @@ + 'x-oss-request-id', + ]; + + public function validate() + { + Model::validateRequired('requestId', $this->requestId, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['x-oss-request-id'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteBucketEncryptionResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['x-oss-request-id'])) { + $model->requestId = $map['x-oss-request-id']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/DeleteBucketLifecycleRequest.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/DeleteBucketLifecycleRequest.php new file mode 100644 index 00000000..ca16a47e --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/DeleteBucketLifecycleRequest.php @@ -0,0 +1,51 @@ + 'BucketName', + ]; + + public function validate() + { + Model::validateRequired('bucketName', $this->bucketName, true); + Model::validatePattern('bucketName', $this->bucketName, '[a-zA-Z0-9-_]+'); + } + + public function toMap() + { + $res = []; + if (null !== $this->bucketName) { + $res['BucketName'] = $this->bucketName; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteBucketLifecycleRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['BucketName'])) { + $model->bucketName = $map['BucketName']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/DeleteBucketLifecycleResponse.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/DeleteBucketLifecycleResponse.php new file mode 100644 index 00000000..eebd3172 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/DeleteBucketLifecycleResponse.php @@ -0,0 +1,50 @@ + 'x-oss-request-id', + ]; + + public function validate() + { + Model::validateRequired('requestId', $this->requestId, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['x-oss-request-id'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteBucketLifecycleResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['x-oss-request-id'])) { + $model->requestId = $map['x-oss-request-id']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/DeleteBucketLoggingRequest.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/DeleteBucketLoggingRequest.php new file mode 100644 index 00000000..201dfbb0 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/DeleteBucketLoggingRequest.php @@ -0,0 +1,51 @@ + 'BucketName', + ]; + + public function validate() + { + Model::validateRequired('bucketName', $this->bucketName, true); + Model::validatePattern('bucketName', $this->bucketName, '[a-zA-Z0-9-_]+'); + } + + public function toMap() + { + $res = []; + if (null !== $this->bucketName) { + $res['BucketName'] = $this->bucketName; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteBucketLoggingRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['BucketName'])) { + $model->bucketName = $map['BucketName']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/DeleteBucketLoggingResponse.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/DeleteBucketLoggingResponse.php new file mode 100644 index 00000000..60ceb9c5 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/DeleteBucketLoggingResponse.php @@ -0,0 +1,50 @@ + 'x-oss-request-id', + ]; + + public function validate() + { + Model::validateRequired('requestId', $this->requestId, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['x-oss-request-id'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteBucketLoggingResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['x-oss-request-id'])) { + $model->requestId = $map['x-oss-request-id']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/DeleteBucketRequest.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/DeleteBucketRequest.php new file mode 100644 index 00000000..b0283539 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/DeleteBucketRequest.php @@ -0,0 +1,51 @@ + 'BucketName', + ]; + + public function validate() + { + Model::validateRequired('bucketName', $this->bucketName, true); + Model::validatePattern('bucketName', $this->bucketName, '[a-zA-Z0-9-_]+'); + } + + public function toMap() + { + $res = []; + if (null !== $this->bucketName) { + $res['BucketName'] = $this->bucketName; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteBucketRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['BucketName'])) { + $model->bucketName = $map['BucketName']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/DeleteBucketResponse.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/DeleteBucketResponse.php new file mode 100644 index 00000000..204eafdb --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/DeleteBucketResponse.php @@ -0,0 +1,50 @@ + 'x-oss-request-id', + ]; + + public function validate() + { + Model::validateRequired('requestId', $this->requestId, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['x-oss-request-id'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteBucketResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['x-oss-request-id'])) { + $model->requestId = $map['x-oss-request-id']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/DeleteBucketTagsRequest.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/DeleteBucketTagsRequest.php new file mode 100644 index 00000000..b0ed35f0 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/DeleteBucketTagsRequest.php @@ -0,0 +1,67 @@ + 'BucketName', + 'filter' => 'Filter', + ]; + + public function validate() + { + Model::validateRequired('bucketName', $this->bucketName, true); + Model::validateRequired('filter', $this->filter, true); + Model::validatePattern('bucketName', $this->bucketName, '[a-zA-Z0-9-_]+'); + } + + public function toMap() + { + $res = []; + if (null !== $this->bucketName) { + $res['BucketName'] = $this->bucketName; + } + if (null !== $this->filter) { + $res['Filter'] = null !== $this->filter ? $this->filter->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteBucketTagsRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['BucketName'])) { + $model->bucketName = $map['BucketName']; + } + if (isset($map['Filter'])) { + $model->filter = filter::fromMap($map['Filter']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/DeleteBucketTagsRequest/filter.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/DeleteBucketTagsRequest/filter.php new file mode 100644 index 00000000..8bb196c5 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/DeleteBucketTagsRequest/filter.php @@ -0,0 +1,50 @@ + 'tagging', + ]; + + public function validate() + { + Model::validateRequired('tagging', $this->tagging, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->tagging) { + $res['tagging'] = $this->tagging; + } + + return $res; + } + + /** + * @param array $map + * + * @return filter + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['tagging'])) { + $model->tagging = $map['tagging']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/DeleteBucketTagsResponse.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/DeleteBucketTagsResponse.php new file mode 100644 index 00000000..0ba6adc8 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/DeleteBucketTagsResponse.php @@ -0,0 +1,50 @@ + 'x-oss-request-id', + ]; + + public function validate() + { + Model::validateRequired('requestId', $this->requestId, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['x-oss-request-id'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteBucketTagsResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['x-oss-request-id'])) { + $model->requestId = $map['x-oss-request-id']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/DeleteBucketWebsiteRequest.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/DeleteBucketWebsiteRequest.php new file mode 100644 index 00000000..04659af2 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/DeleteBucketWebsiteRequest.php @@ -0,0 +1,51 @@ + 'BucketName', + ]; + + public function validate() + { + Model::validateRequired('bucketName', $this->bucketName, true); + Model::validatePattern('bucketName', $this->bucketName, '[a-zA-Z0-9-_]+'); + } + + public function toMap() + { + $res = []; + if (null !== $this->bucketName) { + $res['BucketName'] = $this->bucketName; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteBucketWebsiteRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['BucketName'])) { + $model->bucketName = $map['BucketName']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/DeleteBucketWebsiteResponse.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/DeleteBucketWebsiteResponse.php new file mode 100644 index 00000000..d8ebc54f --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/DeleteBucketWebsiteResponse.php @@ -0,0 +1,50 @@ + 'x-oss-request-id', + ]; + + public function validate() + { + Model::validateRequired('requestId', $this->requestId, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['x-oss-request-id'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteBucketWebsiteResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['x-oss-request-id'])) { + $model->requestId = $map['x-oss-request-id']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/DeleteLiveChannelRequest.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/DeleteLiveChannelRequest.php new file mode 100644 index 00000000..205f700c --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/DeleteLiveChannelRequest.php @@ -0,0 +1,66 @@ + 'BucketName', + 'channelName' => 'ChannelName', + ]; + + public function validate() + { + Model::validateRequired('bucketName', $this->bucketName, true); + Model::validateRequired('channelName', $this->channelName, true); + Model::validatePattern('bucketName', $this->bucketName, '[a-zA-Z0-9-_]+'); + } + + public function toMap() + { + $res = []; + if (null !== $this->bucketName) { + $res['BucketName'] = $this->bucketName; + } + if (null !== $this->channelName) { + $res['ChannelName'] = $this->channelName; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteLiveChannelRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['BucketName'])) { + $model->bucketName = $map['BucketName']; + } + if (isset($map['ChannelName'])) { + $model->channelName = $map['ChannelName']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/DeleteLiveChannelResponse.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/DeleteLiveChannelResponse.php new file mode 100644 index 00000000..e462a405 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/DeleteLiveChannelResponse.php @@ -0,0 +1,50 @@ + 'x-oss-request-id', + ]; + + public function validate() + { + Model::validateRequired('requestId', $this->requestId, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['x-oss-request-id'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteLiveChannelResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['x-oss-request-id'])) { + $model->requestId = $map['x-oss-request-id']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/DeleteMultipleObjectsRequest.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/DeleteMultipleObjectsRequest.php new file mode 100644 index 00000000..3b8c0855 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/DeleteMultipleObjectsRequest.php @@ -0,0 +1,82 @@ + 'BucketName', + 'body' => 'Body', + 'header' => 'Header', + ]; + + public function validate() + { + Model::validateRequired('bucketName', $this->bucketName, true); + Model::validateRequired('header', $this->header, true); + Model::validatePattern('bucketName', $this->bucketName, '[a-zA-Z0-9-_]+'); + } + + public function toMap() + { + $res = []; + if (null !== $this->bucketName) { + $res['BucketName'] = $this->bucketName; + } + if (null !== $this->body) { + $res['Body'] = null !== $this->body ? $this->body->toMap() : null; + } + if (null !== $this->header) { + $res['Header'] = null !== $this->header ? $this->header->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteMultipleObjectsRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['BucketName'])) { + $model->bucketName = $map['BucketName']; + } + if (isset($map['Body'])) { + $model->body = body::fromMap($map['Body']); + } + if (isset($map['Header'])) { + $model->header = header::fromMap($map['Header']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/DeleteMultipleObjectsRequest/body.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/DeleteMultipleObjectsRequest/body.php new file mode 100644 index 00000000..0deee716 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/DeleteMultipleObjectsRequest/body.php @@ -0,0 +1,51 @@ + 'Delete', + ]; + + public function validate() + { + Model::validateRequired('delete', $this->delete, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->delete) { + $res['Delete'] = null !== $this->delete ? $this->delete->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return body + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Delete'])) { + $model->delete = delete::fromMap($map['Delete']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/DeleteMultipleObjectsRequest/body/delete.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/DeleteMultipleObjectsRequest/body/delete.php new file mode 100644 index 00000000..840fc89c --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/DeleteMultipleObjectsRequest/body/delete.php @@ -0,0 +1,76 @@ + 'Object', + 'quiet' => 'Quiet', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->object) { + $res['Object'] = []; + if (null !== $this->object && \is_array($this->object)) { + $n = 0; + foreach ($this->object as $item) { + $res['Object'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + if (null !== $this->quiet) { + $res['Quiet'] = $this->quiet; + } + + return $res; + } + + /** + * @param array $map + * + * @return delete + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Object'])) { + if (!empty($map['Object'])) { + $model->object = []; + $n = 0; + foreach ($map['Object'] as $item) { + $model->object[$n++] = null !== $item ? object::fromMap($item) : $item; + } + } + } + if (isset($map['Quiet'])) { + $model->quiet = $map['Quiet']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/DeleteMultipleObjectsRequest/body/delete/object.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/DeleteMultipleObjectsRequest/body/delete/object.php new file mode 100644 index 00000000..cad453ec --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/DeleteMultipleObjectsRequest/body/delete/object.php @@ -0,0 +1,49 @@ + 'Key', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->key) { + $res['Key'] = $this->key; + } + + return $res; + } + + /** + * @param array $map + * + * @return object + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Key'])) { + $model->key = $map['Key']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/DeleteMultipleObjectsRequest/header.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/DeleteMultipleObjectsRequest/header.php new file mode 100644 index 00000000..dbc3abcc --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/DeleteMultipleObjectsRequest/header.php @@ -0,0 +1,79 @@ + 'Encoding-type', + 'contentLength' => 'Content-Length', + 'contentMD5' => 'Content-MD5', + ]; + + public function validate() + { + Model::validateRequired('contentLength', $this->contentLength, true); + Model::validateRequired('contentMD5', $this->contentMD5, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->encodingType) { + $res['Encoding-type'] = $this->encodingType; + } + if (null !== $this->contentLength) { + $res['Content-Length'] = $this->contentLength; + } + if (null !== $this->contentMD5) { + $res['Content-MD5'] = $this->contentMD5; + } + + return $res; + } + + /** + * @param array $map + * + * @return header + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Encoding-type'])) { + $model->encodingType = $map['Encoding-type']; + } + if (isset($map['Content-Length'])) { + $model->contentLength = $map['Content-Length']; + } + if (isset($map['Content-MD5'])) { + $model->contentMD5 = $map['Content-MD5']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/DeleteMultipleObjectsResponse.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/DeleteMultipleObjectsResponse.php new file mode 100644 index 00000000..78d0921a --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/DeleteMultipleObjectsResponse.php @@ -0,0 +1,66 @@ + 'x-oss-request-id', + 'deleteResult' => 'DeleteResult', + ]; + + public function validate() + { + Model::validateRequired('requestId', $this->requestId, true); + Model::validateRequired('deleteResult', $this->deleteResult, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['x-oss-request-id'] = $this->requestId; + } + if (null !== $this->deleteResult) { + $res['DeleteResult'] = null !== $this->deleteResult ? $this->deleteResult->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteMultipleObjectsResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['x-oss-request-id'])) { + $model->requestId = $map['x-oss-request-id']; + } + if (isset($map['DeleteResult'])) { + $model->deleteResult = deleteResult::fromMap($map['DeleteResult']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/DeleteMultipleObjectsResponse/deleteResult.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/DeleteMultipleObjectsResponse/deleteResult.php new file mode 100644 index 00000000..bd6881e2 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/DeleteMultipleObjectsResponse/deleteResult.php @@ -0,0 +1,90 @@ + 'Quiet', + 'encodingType' => 'EncodingType', + 'deleted' => 'Deleted', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->quiet) { + $res['Quiet'] = $this->quiet; + } + if (null !== $this->encodingType) { + $res['EncodingType'] = $this->encodingType; + } + if (null !== $this->deleted) { + $res['Deleted'] = []; + if (null !== $this->deleted && \is_array($this->deleted)) { + $n = 0; + foreach ($this->deleted as $item) { + $res['Deleted'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return deleteResult + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Quiet'])) { + $model->quiet = $map['Quiet']; + } + if (isset($map['EncodingType'])) { + $model->encodingType = $map['EncodingType']; + } + if (isset($map['Deleted'])) { + if (!empty($map['Deleted'])) { + $model->deleted = []; + $n = 0; + foreach ($map['Deleted'] as $item) { + $model->deleted[$n++] = null !== $item ? deleted::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/DeleteMultipleObjectsResponse/deleteResult/deleted.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/DeleteMultipleObjectsResponse/deleteResult/deleted.php new file mode 100644 index 00000000..0a7cadbf --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/DeleteMultipleObjectsResponse/deleteResult/deleted.php @@ -0,0 +1,49 @@ + 'Key', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->key) { + $res['Key'] = $this->key; + } + + return $res; + } + + /** + * @param array $map + * + * @return deleted + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Key'])) { + $model->key = $map['Key']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/DeleteObjectRequest.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/DeleteObjectRequest.php new file mode 100644 index 00000000..2337b980 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/DeleteObjectRequest.php @@ -0,0 +1,66 @@ + 'BucketName', + 'objectName' => 'ObjectName', + ]; + + public function validate() + { + Model::validateRequired('bucketName', $this->bucketName, true); + Model::validateRequired('objectName', $this->objectName, true); + Model::validatePattern('bucketName', $this->bucketName, '[a-zA-Z0-9-_]+'); + } + + public function toMap() + { + $res = []; + if (null !== $this->bucketName) { + $res['BucketName'] = $this->bucketName; + } + if (null !== $this->objectName) { + $res['ObjectName'] = $this->objectName; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteObjectRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['BucketName'])) { + $model->bucketName = $map['BucketName']; + } + if (isset($map['ObjectName'])) { + $model->objectName = $map['ObjectName']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/DeleteObjectResponse.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/DeleteObjectResponse.php new file mode 100644 index 00000000..1f73a0a5 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/DeleteObjectResponse.php @@ -0,0 +1,50 @@ + 'x-oss-request-id', + ]; + + public function validate() + { + Model::validateRequired('requestId', $this->requestId, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['x-oss-request-id'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteObjectResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['x-oss-request-id'])) { + $model->requestId = $map['x-oss-request-id']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/DeleteObjectTaggingRequest.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/DeleteObjectTaggingRequest.php new file mode 100644 index 00000000..f10f4dfe --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/DeleteObjectTaggingRequest.php @@ -0,0 +1,66 @@ + 'BucketName', + 'objectName' => 'ObjectName', + ]; + + public function validate() + { + Model::validateRequired('bucketName', $this->bucketName, true); + Model::validateRequired('objectName', $this->objectName, true); + Model::validatePattern('bucketName', $this->bucketName, '[a-zA-Z0-9-_]+'); + } + + public function toMap() + { + $res = []; + if (null !== $this->bucketName) { + $res['BucketName'] = $this->bucketName; + } + if (null !== $this->objectName) { + $res['ObjectName'] = $this->objectName; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteObjectTaggingRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['BucketName'])) { + $model->bucketName = $map['BucketName']; + } + if (isset($map['ObjectName'])) { + $model->objectName = $map['ObjectName']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/DeleteObjectTaggingResponse.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/DeleteObjectTaggingResponse.php new file mode 100644 index 00000000..584d72ba --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/DeleteObjectTaggingResponse.php @@ -0,0 +1,50 @@ + 'x-oss-request-id', + ]; + + public function validate() + { + Model::validateRequired('requestId', $this->requestId, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['x-oss-request-id'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteObjectTaggingResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['x-oss-request-id'])) { + $model->requestId = $map['x-oss-request-id']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketAclRequest.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketAclRequest.php new file mode 100644 index 00000000..85987681 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketAclRequest.php @@ -0,0 +1,51 @@ + 'BucketName', + ]; + + public function validate() + { + Model::validateRequired('bucketName', $this->bucketName, true); + Model::validatePattern('bucketName', $this->bucketName, '[a-zA-Z0-9-_]+'); + } + + public function toMap() + { + $res = []; + if (null !== $this->bucketName) { + $res['BucketName'] = $this->bucketName; + } + + return $res; + } + + /** + * @param array $map + * + * @return GetBucketAclRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['BucketName'])) { + $model->bucketName = $map['BucketName']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketAclResponse.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketAclResponse.php new file mode 100644 index 00000000..62d2a5c0 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketAclResponse.php @@ -0,0 +1,66 @@ + 'x-oss-request-id', + 'accessControlPolicy' => 'AccessControlPolicy', + ]; + + public function validate() + { + Model::validateRequired('requestId', $this->requestId, true); + Model::validateRequired('accessControlPolicy', $this->accessControlPolicy, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['x-oss-request-id'] = $this->requestId; + } + if (null !== $this->accessControlPolicy) { + $res['AccessControlPolicy'] = null !== $this->accessControlPolicy ? $this->accessControlPolicy->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return GetBucketAclResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['x-oss-request-id'])) { + $model->requestId = $map['x-oss-request-id']; + } + if (isset($map['AccessControlPolicy'])) { + $model->accessControlPolicy = accessControlPolicy::fromMap($map['AccessControlPolicy']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketAclResponse/accessControlPolicy.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketAclResponse/accessControlPolicy.php new file mode 100644 index 00000000..2ca986c6 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketAclResponse/accessControlPolicy.php @@ -0,0 +1,67 @@ + 'Owner', + 'accessControlList' => 'AccessControlList', + ]; + + public function validate() + { + Model::validateRequired('owner', $this->owner, true); + Model::validateRequired('accessControlList', $this->accessControlList, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->owner) { + $res['Owner'] = null !== $this->owner ? $this->owner->toMap() : null; + } + if (null !== $this->accessControlList) { + $res['AccessControlList'] = null !== $this->accessControlList ? $this->accessControlList->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return accessControlPolicy + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Owner'])) { + $model->owner = owner::fromMap($map['Owner']); + } + if (isset($map['AccessControlList'])) { + $model->accessControlList = accessControlList::fromMap($map['AccessControlList']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketAclResponse/accessControlPolicy/accessControlList.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketAclResponse/accessControlPolicy/accessControlList.php new file mode 100644 index 00000000..fe4281e7 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketAclResponse/accessControlPolicy/accessControlList.php @@ -0,0 +1,49 @@ + 'Grant', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->grant) { + $res['Grant'] = $this->grant; + } + + return $res; + } + + /** + * @param array $map + * + * @return accessControlList + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Grant'])) { + $model->grant = $map['Grant']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketAclResponse/accessControlPolicy/owner.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketAclResponse/accessControlPolicy/owner.php new file mode 100644 index 00000000..70a08c2a --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketAclResponse/accessControlPolicy/owner.php @@ -0,0 +1,63 @@ + 'ID', + 'displayName' => 'DisplayName', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->iD) { + $res['ID'] = $this->iD; + } + if (null !== $this->displayName) { + $res['DisplayName'] = $this->displayName; + } + + return $res; + } + + /** + * @param array $map + * + * @return owner + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['ID'])) { + $model->iD = $map['ID']; + } + if (isset($map['DisplayName'])) { + $model->displayName = $map['DisplayName']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketCORSRequest.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketCORSRequest.php new file mode 100644 index 00000000..f6687195 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketCORSRequest.php @@ -0,0 +1,51 @@ + 'BucketName', + ]; + + public function validate() + { + Model::validateRequired('bucketName', $this->bucketName, true); + Model::validatePattern('bucketName', $this->bucketName, '[a-zA-Z0-9-_]+'); + } + + public function toMap() + { + $res = []; + if (null !== $this->bucketName) { + $res['BucketName'] = $this->bucketName; + } + + return $res; + } + + /** + * @param array $map + * + * @return GetBucketCORSRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['BucketName'])) { + $model->bucketName = $map['BucketName']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketCORSResponse.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketCORSResponse.php new file mode 100644 index 00000000..2f724d79 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketCORSResponse.php @@ -0,0 +1,66 @@ + 'x-oss-request-id', + 'cORSConfiguration' => 'CORSConfiguration', + ]; + + public function validate() + { + Model::validateRequired('requestId', $this->requestId, true); + Model::validateRequired('cORSConfiguration', $this->cORSConfiguration, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['x-oss-request-id'] = $this->requestId; + } + if (null !== $this->cORSConfiguration) { + $res['CORSConfiguration'] = null !== $this->cORSConfiguration ? $this->cORSConfiguration->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return GetBucketCORSResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['x-oss-request-id'])) { + $model->requestId = $map['x-oss-request-id']; + } + if (isset($map['CORSConfiguration'])) { + $model->cORSConfiguration = cORSConfiguration::fromMap($map['CORSConfiguration']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketCORSResponse/cORSConfiguration.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketCORSResponse/cORSConfiguration.php new file mode 100644 index 00000000..eb85cf8b --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketCORSResponse/cORSConfiguration.php @@ -0,0 +1,62 @@ + 'CORSRule', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->cORSRule) { + $res['CORSRule'] = []; + if (null !== $this->cORSRule && \is_array($this->cORSRule)) { + $n = 0; + foreach ($this->cORSRule as $item) { + $res['CORSRule'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return cORSConfiguration + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CORSRule'])) { + if (!empty($map['CORSRule'])) { + $model->cORSRule = []; + $n = 0; + foreach ($map['CORSRule'] as $item) { + $model->cORSRule[$n++] = null !== $item ? cORSRule::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketCORSResponse/cORSConfiguration/cORSRule.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketCORSResponse/cORSConfiguration/cORSRule.php new file mode 100644 index 00000000..85c6d080 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketCORSResponse/cORSConfiguration/cORSRule.php @@ -0,0 +1,49 @@ + 'MaxAgeSeconds', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->maxAgeSeconds) { + $res['MaxAgeSeconds'] = $this->maxAgeSeconds; + } + + return $res; + } + + /** + * @param array $map + * + * @return cORSRule + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['MaxAgeSeconds'])) { + $model->maxAgeSeconds = $map['MaxAgeSeconds']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketEncryptionRequest.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketEncryptionRequest.php new file mode 100644 index 00000000..603bbfe7 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketEncryptionRequest.php @@ -0,0 +1,51 @@ + 'BucketName', + ]; + + public function validate() + { + Model::validateRequired('bucketName', $this->bucketName, true); + Model::validatePattern('bucketName', $this->bucketName, '[a-zA-Z0-9-_]+'); + } + + public function toMap() + { + $res = []; + if (null !== $this->bucketName) { + $res['BucketName'] = $this->bucketName; + } + + return $res; + } + + /** + * @param array $map + * + * @return GetBucketEncryptionRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['BucketName'])) { + $model->bucketName = $map['BucketName']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketEncryptionResponse.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketEncryptionResponse.php new file mode 100644 index 00000000..fe50abe3 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketEncryptionResponse.php @@ -0,0 +1,66 @@ + 'x-oss-request-id', + 'serverSideEncryptionRule' => 'ServerSideEncryptionRule', + ]; + + public function validate() + { + Model::validateRequired('requestId', $this->requestId, true); + Model::validateRequired('serverSideEncryptionRule', $this->serverSideEncryptionRule, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['x-oss-request-id'] = $this->requestId; + } + if (null !== $this->serverSideEncryptionRule) { + $res['ServerSideEncryptionRule'] = null !== $this->serverSideEncryptionRule ? $this->serverSideEncryptionRule->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return GetBucketEncryptionResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['x-oss-request-id'])) { + $model->requestId = $map['x-oss-request-id']; + } + if (isset($map['ServerSideEncryptionRule'])) { + $model->serverSideEncryptionRule = serverSideEncryptionRule::fromMap($map['ServerSideEncryptionRule']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketEncryptionResponse/serverSideEncryptionRule.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketEncryptionResponse/serverSideEncryptionRule.php new file mode 100644 index 00000000..f07502cf --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketEncryptionResponse/serverSideEncryptionRule.php @@ -0,0 +1,51 @@ + 'ApplyServerSideEncryptionByDefault', + ]; + + public function validate() + { + Model::validateRequired('applyServerSideEncryptionByDefault', $this->applyServerSideEncryptionByDefault, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->applyServerSideEncryptionByDefault) { + $res['ApplyServerSideEncryptionByDefault'] = null !== $this->applyServerSideEncryptionByDefault ? $this->applyServerSideEncryptionByDefault->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return serverSideEncryptionRule + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['ApplyServerSideEncryptionByDefault'])) { + $model->applyServerSideEncryptionByDefault = applyServerSideEncryptionByDefault::fromMap($map['ApplyServerSideEncryptionByDefault']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketEncryptionResponse/serverSideEncryptionRule/applyServerSideEncryptionByDefault.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketEncryptionResponse/serverSideEncryptionRule/applyServerSideEncryptionByDefault.php new file mode 100644 index 00000000..5d269b60 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketEncryptionResponse/serverSideEncryptionRule/applyServerSideEncryptionByDefault.php @@ -0,0 +1,63 @@ + 'SSEAlgorithm', + 'kMSMasterKeyID' => 'KMSMasterKeyID', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->sSEAlgorithm) { + $res['SSEAlgorithm'] = $this->sSEAlgorithm; + } + if (null !== $this->kMSMasterKeyID) { + $res['KMSMasterKeyID'] = $this->kMSMasterKeyID; + } + + return $res; + } + + /** + * @param array $map + * + * @return applyServerSideEncryptionByDefault + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['SSEAlgorithm'])) { + $model->sSEAlgorithm = $map['SSEAlgorithm']; + } + if (isset($map['KMSMasterKeyID'])) { + $model->kMSMasterKeyID = $map['KMSMasterKeyID']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketInfoRequest.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketInfoRequest.php new file mode 100644 index 00000000..f534eca6 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketInfoRequest.php @@ -0,0 +1,51 @@ + 'BucketName', + ]; + + public function validate() + { + Model::validateRequired('bucketName', $this->bucketName, true); + Model::validatePattern('bucketName', $this->bucketName, '[a-zA-Z0-9-_]+'); + } + + public function toMap() + { + $res = []; + if (null !== $this->bucketName) { + $res['BucketName'] = $this->bucketName; + } + + return $res; + } + + /** + * @param array $map + * + * @return GetBucketInfoRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['BucketName'])) { + $model->bucketName = $map['BucketName']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketInfoResponse.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketInfoResponse.php new file mode 100644 index 00000000..0ebaa9de --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketInfoResponse.php @@ -0,0 +1,66 @@ + 'x-oss-request-id', + 'bucketInfo' => 'BucketInfo', + ]; + + public function validate() + { + Model::validateRequired('requestId', $this->requestId, true); + Model::validateRequired('bucketInfo', $this->bucketInfo, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['x-oss-request-id'] = $this->requestId; + } + if (null !== $this->bucketInfo) { + $res['BucketInfo'] = null !== $this->bucketInfo ? $this->bucketInfo->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return GetBucketInfoResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['x-oss-request-id'])) { + $model->requestId = $map['x-oss-request-id']; + } + if (isset($map['BucketInfo'])) { + $model->bucketInfo = bucketInfo::fromMap($map['BucketInfo']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketInfoResponse/bucketInfo.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketInfoResponse/bucketInfo.php new file mode 100644 index 00000000..df158464 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketInfoResponse/bucketInfo.php @@ -0,0 +1,51 @@ + 'Bucket', + ]; + + public function validate() + { + Model::validateRequired('bucket', $this->bucket, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->bucket) { + $res['Bucket'] = null !== $this->bucket ? $this->bucket->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return bucketInfo + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Bucket'])) { + $model->bucket = bucket::fromMap($map['Bucket']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketInfoResponse/bucketInfo/bucket.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketInfoResponse/bucketInfo/bucket.php new file mode 100644 index 00000000..622bcf8f --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketInfoResponse/bucketInfo/bucket.php @@ -0,0 +1,179 @@ + 'CreationDate', + 'extranetEndpoint' => 'ExtranetEndpoint', + 'intranetEndpoint' => 'IntranetEndpoint', + 'location' => 'Location', + 'name' => 'Name', + 'dataRedundancyType' => 'DataRedundancyType', + 'storageClass' => 'StorageClass', + 'comment' => 'Comment', + 'owner' => 'Owner', + 'accessControlList' => 'AccessControlList', + ]; + + public function validate() + { + Model::validateRequired('owner', $this->owner, true); + Model::validateRequired('accessControlList', $this->accessControlList, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->creationDate) { + $res['CreationDate'] = $this->creationDate; + } + if (null !== $this->extranetEndpoint) { + $res['ExtranetEndpoint'] = $this->extranetEndpoint; + } + if (null !== $this->intranetEndpoint) { + $res['IntranetEndpoint'] = $this->intranetEndpoint; + } + if (null !== $this->location) { + $res['Location'] = $this->location; + } + if (null !== $this->name) { + $res['Name'] = $this->name; + } + if (null !== $this->dataRedundancyType) { + $res['DataRedundancyType'] = $this->dataRedundancyType; + } + if (null !== $this->storageClass) { + $res['StorageClass'] = $this->storageClass; + } + if (null !== $this->comment) { + $res['Comment'] = $this->comment; + } + if (null !== $this->owner) { + $res['Owner'] = null !== $this->owner ? $this->owner->toMap() : null; + } + if (null !== $this->accessControlList) { + $res['AccessControlList'] = null !== $this->accessControlList ? $this->accessControlList->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return bucket + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CreationDate'])) { + $model->creationDate = $map['CreationDate']; + } + if (isset($map['ExtranetEndpoint'])) { + $model->extranetEndpoint = $map['ExtranetEndpoint']; + } + if (isset($map['IntranetEndpoint'])) { + $model->intranetEndpoint = $map['IntranetEndpoint']; + } + if (isset($map['Location'])) { + $model->location = $map['Location']; + } + if (isset($map['Name'])) { + $model->name = $map['Name']; + } + if (isset($map['DataRedundancyType'])) { + $model->dataRedundancyType = $map['DataRedundancyType']; + } + if (isset($map['StorageClass'])) { + $model->storageClass = $map['StorageClass']; + } + if (isset($map['Comment'])) { + $model->comment = $map['Comment']; + } + if (isset($map['Owner'])) { + $model->owner = owner::fromMap($map['Owner']); + } + if (isset($map['AccessControlList'])) { + $model->accessControlList = accessControlList::fromMap($map['AccessControlList']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketInfoResponse/bucketInfo/bucket/accessControlList.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketInfoResponse/bucketInfo/bucket/accessControlList.php new file mode 100644 index 00000000..b2b6e16b --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketInfoResponse/bucketInfo/bucket/accessControlList.php @@ -0,0 +1,49 @@ + 'Grant', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->grant) { + $res['Grant'] = $this->grant; + } + + return $res; + } + + /** + * @param array $map + * + * @return accessControlList + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Grant'])) { + $model->grant = $map['Grant']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketInfoResponse/bucketInfo/bucket/owner.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketInfoResponse/bucketInfo/bucket/owner.php new file mode 100644 index 00000000..f24cfdf2 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketInfoResponse/bucketInfo/bucket/owner.php @@ -0,0 +1,63 @@ + 'ID', + 'displayName' => 'DisplayName', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->iD) { + $res['ID'] = $this->iD; + } + if (null !== $this->displayName) { + $res['DisplayName'] = $this->displayName; + } + + return $res; + } + + /** + * @param array $map + * + * @return owner + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['ID'])) { + $model->iD = $map['ID']; + } + if (isset($map['DisplayName'])) { + $model->displayName = $map['DisplayName']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketLifecycleRequest.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketLifecycleRequest.php new file mode 100644 index 00000000..175033bf --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketLifecycleRequest.php @@ -0,0 +1,51 @@ + 'BucketName', + ]; + + public function validate() + { + Model::validateRequired('bucketName', $this->bucketName, true); + Model::validatePattern('bucketName', $this->bucketName, '[a-zA-Z0-9-_]+'); + } + + public function toMap() + { + $res = []; + if (null !== $this->bucketName) { + $res['BucketName'] = $this->bucketName; + } + + return $res; + } + + /** + * @param array $map + * + * @return GetBucketLifecycleRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['BucketName'])) { + $model->bucketName = $map['BucketName']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketLifecycleResponse.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketLifecycleResponse.php new file mode 100644 index 00000000..313f89cc --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketLifecycleResponse.php @@ -0,0 +1,66 @@ + 'x-oss-request-id', + 'lifecycleConfiguration' => 'LifecycleConfiguration', + ]; + + public function validate() + { + Model::validateRequired('requestId', $this->requestId, true); + Model::validateRequired('lifecycleConfiguration', $this->lifecycleConfiguration, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['x-oss-request-id'] = $this->requestId; + } + if (null !== $this->lifecycleConfiguration) { + $res['LifecycleConfiguration'] = null !== $this->lifecycleConfiguration ? $this->lifecycleConfiguration->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return GetBucketLifecycleResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['x-oss-request-id'])) { + $model->requestId = $map['x-oss-request-id']; + } + if (isset($map['LifecycleConfiguration'])) { + $model->lifecycleConfiguration = lifecycleConfiguration::fromMap($map['LifecycleConfiguration']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketLifecycleResponse/lifecycleConfiguration.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketLifecycleResponse/lifecycleConfiguration.php new file mode 100644 index 00000000..6518e5f2 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketLifecycleResponse/lifecycleConfiguration.php @@ -0,0 +1,62 @@ + 'Rule', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->rule) { + $res['Rule'] = []; + if (null !== $this->rule && \is_array($this->rule)) { + $n = 0; + foreach ($this->rule as $item) { + $res['Rule'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return lifecycleConfiguration + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Rule'])) { + if (!empty($map['Rule'])) { + $model->rule = []; + $n = 0; + foreach ($map['Rule'] as $item) { + $model->rule[$n++] = null !== $item ? rule::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketLifecycleResponse/lifecycleConfiguration/rule.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketLifecycleResponse/lifecycleConfiguration/rule.php new file mode 100644 index 00000000..ee1574bc --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketLifecycleResponse/lifecycleConfiguration/rule.php @@ -0,0 +1,141 @@ + 'ID', + 'prefix' => 'Prefix', + 'status' => 'Status', + 'expiration' => 'Expiration', + 'transition' => 'Transition', + 'abortMultipartUpload' => 'AbortMultipartUpload', + 'tag' => 'Tag', + ]; + + public function validate() + { + Model::validateRequired('expiration', $this->expiration, true); + Model::validateRequired('transition', $this->transition, true); + Model::validateRequired('abortMultipartUpload', $this->abortMultipartUpload, true); + Model::validateRequired('tag', $this->tag, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->iD) { + $res['ID'] = $this->iD; + } + if (null !== $this->prefix) { + $res['Prefix'] = $this->prefix; + } + if (null !== $this->status) { + $res['Status'] = $this->status; + } + if (null !== $this->expiration) { + $res['Expiration'] = null !== $this->expiration ? $this->expiration->toMap() : null; + } + if (null !== $this->transition) { + $res['Transition'] = null !== $this->transition ? $this->transition->toMap() : null; + } + if (null !== $this->abortMultipartUpload) { + $res['AbortMultipartUpload'] = null !== $this->abortMultipartUpload ? $this->abortMultipartUpload->toMap() : null; + } + if (null !== $this->tag) { + $res['Tag'] = null !== $this->tag ? $this->tag->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return rule + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['ID'])) { + $model->iD = $map['ID']; + } + if (isset($map['Prefix'])) { + $model->prefix = $map['Prefix']; + } + if (isset($map['Status'])) { + $model->status = $map['Status']; + } + if (isset($map['Expiration'])) { + $model->expiration = expiration::fromMap($map['Expiration']); + } + if (isset($map['Transition'])) { + $model->transition = transition::fromMap($map['Transition']); + } + if (isset($map['AbortMultipartUpload'])) { + $model->abortMultipartUpload = abortMultipartUpload::fromMap($map['AbortMultipartUpload']); + } + if (isset($map['Tag'])) { + $model->tag = tag::fromMap($map['Tag']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketLifecycleResponse/lifecycleConfiguration/rule/abortMultipartUpload.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketLifecycleResponse/lifecycleConfiguration/rule/abortMultipartUpload.php new file mode 100644 index 00000000..4f571826 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketLifecycleResponse/lifecycleConfiguration/rule/abortMultipartUpload.php @@ -0,0 +1,63 @@ + 'Days', + 'createdBeforeDate' => 'CreatedBeforeDate', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->days) { + $res['Days'] = $this->days; + } + if (null !== $this->createdBeforeDate) { + $res['CreatedBeforeDate'] = $this->createdBeforeDate; + } + + return $res; + } + + /** + * @param array $map + * + * @return abortMultipartUpload + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Days'])) { + $model->days = $map['Days']; + } + if (isset($map['CreatedBeforeDate'])) { + $model->createdBeforeDate = $map['CreatedBeforeDate']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketLifecycleResponse/lifecycleConfiguration/rule/expiration.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketLifecycleResponse/lifecycleConfiguration/rule/expiration.php new file mode 100644 index 00000000..f13edfd7 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketLifecycleResponse/lifecycleConfiguration/rule/expiration.php @@ -0,0 +1,63 @@ + 'Days', + 'createdBeforeDate' => 'CreatedBeforeDate', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->days) { + $res['Days'] = $this->days; + } + if (null !== $this->createdBeforeDate) { + $res['CreatedBeforeDate'] = $this->createdBeforeDate; + } + + return $res; + } + + /** + * @param array $map + * + * @return expiration + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Days'])) { + $model->days = $map['Days']; + } + if (isset($map['CreatedBeforeDate'])) { + $model->createdBeforeDate = $map['CreatedBeforeDate']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketLifecycleResponse/lifecycleConfiguration/rule/tag.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketLifecycleResponse/lifecycleConfiguration/rule/tag.php new file mode 100644 index 00000000..fd39ff7f --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketLifecycleResponse/lifecycleConfiguration/rule/tag.php @@ -0,0 +1,63 @@ + 'Key', + 'value' => 'Value', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->key) { + $res['Key'] = $this->key; + } + if (null !== $this->value) { + $res['Value'] = $this->value; + } + + return $res; + } + + /** + * @param array $map + * + * @return tag + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Key'])) { + $model->key = $map['Key']; + } + if (isset($map['Value'])) { + $model->value = $map['Value']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketLifecycleResponse/lifecycleConfiguration/rule/transition.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketLifecycleResponse/lifecycleConfiguration/rule/transition.php new file mode 100644 index 00000000..b692c0ed --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketLifecycleResponse/lifecycleConfiguration/rule/transition.php @@ -0,0 +1,63 @@ + 'Days', + 'storageClass' => 'StorageClass', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->days) { + $res['Days'] = $this->days; + } + if (null !== $this->storageClass) { + $res['StorageClass'] = $this->storageClass; + } + + return $res; + } + + /** + * @param array $map + * + * @return transition + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Days'])) { + $model->days = $map['Days']; + } + if (isset($map['StorageClass'])) { + $model->storageClass = $map['StorageClass']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketLocationRequest.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketLocationRequest.php new file mode 100644 index 00000000..f71bbc72 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketLocationRequest.php @@ -0,0 +1,51 @@ + 'BucketName', + ]; + + public function validate() + { + Model::validateRequired('bucketName', $this->bucketName, true); + Model::validatePattern('bucketName', $this->bucketName, '[a-zA-Z0-9-_]+'); + } + + public function toMap() + { + $res = []; + if (null !== $this->bucketName) { + $res['BucketName'] = $this->bucketName; + } + + return $res; + } + + /** + * @param array $map + * + * @return GetBucketLocationRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['BucketName'])) { + $model->bucketName = $map['BucketName']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketLocationResponse.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketLocationResponse.php new file mode 100644 index 00000000..4a1ed5f3 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketLocationResponse.php @@ -0,0 +1,65 @@ + 'x-oss-request-id', + 'locationConstraint' => 'LocationConstraint', + ]; + + public function validate() + { + Model::validateRequired('requestId', $this->requestId, true); + Model::validateRequired('locationConstraint', $this->locationConstraint, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['x-oss-request-id'] = $this->requestId; + } + if (null !== $this->locationConstraint) { + $res['LocationConstraint'] = $this->locationConstraint; + } + + return $res; + } + + /** + * @param array $map + * + * @return GetBucketLocationResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['x-oss-request-id'])) { + $model->requestId = $map['x-oss-request-id']; + } + if (isset($map['LocationConstraint'])) { + $model->locationConstraint = $map['LocationConstraint']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketLoggingRequest.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketLoggingRequest.php new file mode 100644 index 00000000..e82ee283 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketLoggingRequest.php @@ -0,0 +1,51 @@ + 'BucketName', + ]; + + public function validate() + { + Model::validateRequired('bucketName', $this->bucketName, true); + Model::validatePattern('bucketName', $this->bucketName, '[a-zA-Z0-9-_]+'); + } + + public function toMap() + { + $res = []; + if (null !== $this->bucketName) { + $res['BucketName'] = $this->bucketName; + } + + return $res; + } + + /** + * @param array $map + * + * @return GetBucketLoggingRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['BucketName'])) { + $model->bucketName = $map['BucketName']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketLoggingResponse.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketLoggingResponse.php new file mode 100644 index 00000000..1eb6e118 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketLoggingResponse.php @@ -0,0 +1,66 @@ + 'x-oss-request-id', + 'bucketLoggingStatus' => 'BucketLoggingStatus', + ]; + + public function validate() + { + Model::validateRequired('requestId', $this->requestId, true); + Model::validateRequired('bucketLoggingStatus', $this->bucketLoggingStatus, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['x-oss-request-id'] = $this->requestId; + } + if (null !== $this->bucketLoggingStatus) { + $res['BucketLoggingStatus'] = null !== $this->bucketLoggingStatus ? $this->bucketLoggingStatus->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return GetBucketLoggingResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['x-oss-request-id'])) { + $model->requestId = $map['x-oss-request-id']; + } + if (isset($map['BucketLoggingStatus'])) { + $model->bucketLoggingStatus = bucketLoggingStatus::fromMap($map['BucketLoggingStatus']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketLoggingResponse/bucketLoggingStatus.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketLoggingResponse/bucketLoggingStatus.php new file mode 100644 index 00000000..c279b9ab --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketLoggingResponse/bucketLoggingStatus.php @@ -0,0 +1,51 @@ + 'LoggingEnabled', + ]; + + public function validate() + { + Model::validateRequired('loggingEnabled', $this->loggingEnabled, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->loggingEnabled) { + $res['LoggingEnabled'] = null !== $this->loggingEnabled ? $this->loggingEnabled->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return bucketLoggingStatus + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['LoggingEnabled'])) { + $model->loggingEnabled = loggingEnabled::fromMap($map['LoggingEnabled']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketLoggingResponse/bucketLoggingStatus/loggingEnabled.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketLoggingResponse/bucketLoggingStatus/loggingEnabled.php new file mode 100644 index 00000000..98fe44e9 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketLoggingResponse/bucketLoggingStatus/loggingEnabled.php @@ -0,0 +1,63 @@ + 'TargetBucket', + 'targetPrefix' => 'TargetPrefix', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->targetBucket) { + $res['TargetBucket'] = $this->targetBucket; + } + if (null !== $this->targetPrefix) { + $res['TargetPrefix'] = $this->targetPrefix; + } + + return $res; + } + + /** + * @param array $map + * + * @return loggingEnabled + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['TargetBucket'])) { + $model->targetBucket = $map['TargetBucket']; + } + if (isset($map['TargetPrefix'])) { + $model->targetPrefix = $map['TargetPrefix']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketRefererRequest.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketRefererRequest.php new file mode 100644 index 00000000..f6a9865a --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketRefererRequest.php @@ -0,0 +1,51 @@ + 'BucketName', + ]; + + public function validate() + { + Model::validateRequired('bucketName', $this->bucketName, true); + Model::validatePattern('bucketName', $this->bucketName, '[a-zA-Z0-9-_]+'); + } + + public function toMap() + { + $res = []; + if (null !== $this->bucketName) { + $res['BucketName'] = $this->bucketName; + } + + return $res; + } + + /** + * @param array $map + * + * @return GetBucketRefererRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['BucketName'])) { + $model->bucketName = $map['BucketName']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketRefererResponse.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketRefererResponse.php new file mode 100644 index 00000000..f9336b67 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketRefererResponse.php @@ -0,0 +1,66 @@ + 'x-oss-request-id', + 'refererConfiguration' => 'RefererConfiguration', + ]; + + public function validate() + { + Model::validateRequired('requestId', $this->requestId, true); + Model::validateRequired('refererConfiguration', $this->refererConfiguration, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['x-oss-request-id'] = $this->requestId; + } + if (null !== $this->refererConfiguration) { + $res['RefererConfiguration'] = null !== $this->refererConfiguration ? $this->refererConfiguration->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return GetBucketRefererResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['x-oss-request-id'])) { + $model->requestId = $map['x-oss-request-id']; + } + if (isset($map['RefererConfiguration'])) { + $model->refererConfiguration = refererConfiguration::fromMap($map['RefererConfiguration']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketRefererResponse/refererConfiguration.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketRefererResponse/refererConfiguration.php new file mode 100644 index 00000000..78118348 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketRefererResponse/refererConfiguration.php @@ -0,0 +1,65 @@ + 'AllowEmptyReferer', + 'refererList' => 'RefererList', + ]; + + public function validate() + { + Model::validateRequired('refererList', $this->refererList, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->allowEmptyReferer) { + $res['AllowEmptyReferer'] = $this->allowEmptyReferer; + } + if (null !== $this->refererList) { + $res['RefererList'] = null !== $this->refererList ? $this->refererList->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return refererConfiguration + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AllowEmptyReferer'])) { + $model->allowEmptyReferer = $map['AllowEmptyReferer']; + } + if (isset($map['RefererList'])) { + $model->refererList = refererList::fromMap($map['RefererList']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketRefererResponse/refererConfiguration/refererList.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketRefererResponse/refererConfiguration/refererList.php new file mode 100644 index 00000000..a5aa2dd2 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketRefererResponse/refererConfiguration/refererList.php @@ -0,0 +1,51 @@ + 'Referer', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->referer) { + $res['Referer'] = $this->referer; + } + + return $res; + } + + /** + * @param array $map + * + * @return refererList + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Referer'])) { + if (!empty($map['Referer'])) { + $model->referer = $map['Referer']; + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketRequest.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketRequest.php new file mode 100644 index 00000000..16ef25f0 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketRequest.php @@ -0,0 +1,66 @@ + 'BucketName', + 'filter' => 'Filter', + ]; + + public function validate() + { + Model::validateRequired('bucketName', $this->bucketName, true); + Model::validatePattern('bucketName', $this->bucketName, '[a-zA-Z0-9-_]+'); + } + + public function toMap() + { + $res = []; + if (null !== $this->bucketName) { + $res['BucketName'] = $this->bucketName; + } + if (null !== $this->filter) { + $res['Filter'] = null !== $this->filter ? $this->filter->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return GetBucketRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['BucketName'])) { + $model->bucketName = $map['BucketName']; + } + if (isset($map['Filter'])) { + $model->filter = filter::fromMap($map['Filter']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketRequest/filter.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketRequest/filter.php new file mode 100644 index 00000000..a7b8017c --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketRequest/filter.php @@ -0,0 +1,105 @@ + 'delimiter', + 'marker' => 'marker', + 'maxKeys' => 'max-keys', + 'prefix' => 'prefix', + 'encodingType' => 'encoding-type', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->delimiter) { + $res['delimiter'] = $this->delimiter; + } + if (null !== $this->marker) { + $res['marker'] = $this->marker; + } + if (null !== $this->maxKeys) { + $res['max-keys'] = $this->maxKeys; + } + if (null !== $this->prefix) { + $res['prefix'] = $this->prefix; + } + if (null !== $this->encodingType) { + $res['encoding-type'] = $this->encodingType; + } + + return $res; + } + + /** + * @param array $map + * + * @return filter + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['delimiter'])) { + $model->delimiter = $map['delimiter']; + } + if (isset($map['marker'])) { + $model->marker = $map['marker']; + } + if (isset($map['max-keys'])) { + $model->maxKeys = $map['max-keys']; + } + if (isset($map['prefix'])) { + $model->prefix = $map['prefix']; + } + if (isset($map['encoding-type'])) { + $model->encodingType = $map['encoding-type']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketRequestPaymentRequest.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketRequestPaymentRequest.php new file mode 100644 index 00000000..45a04423 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketRequestPaymentRequest.php @@ -0,0 +1,51 @@ + 'BucketName', + ]; + + public function validate() + { + Model::validateRequired('bucketName', $this->bucketName, true); + Model::validatePattern('bucketName', $this->bucketName, '[a-zA-Z0-9-_]+'); + } + + public function toMap() + { + $res = []; + if (null !== $this->bucketName) { + $res['BucketName'] = $this->bucketName; + } + + return $res; + } + + /** + * @param array $map + * + * @return GetBucketRequestPaymentRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['BucketName'])) { + $model->bucketName = $map['BucketName']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketRequestPaymentResponse.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketRequestPaymentResponse.php new file mode 100644 index 00000000..822fd45f --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketRequestPaymentResponse.php @@ -0,0 +1,66 @@ + 'x-oss-request-id', + 'requestPaymentConfiguration' => 'RequestPaymentConfiguration', + ]; + + public function validate() + { + Model::validateRequired('requestId', $this->requestId, true); + Model::validateRequired('requestPaymentConfiguration', $this->requestPaymentConfiguration, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['x-oss-request-id'] = $this->requestId; + } + if (null !== $this->requestPaymentConfiguration) { + $res['RequestPaymentConfiguration'] = null !== $this->requestPaymentConfiguration ? $this->requestPaymentConfiguration->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return GetBucketRequestPaymentResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['x-oss-request-id'])) { + $model->requestId = $map['x-oss-request-id']; + } + if (isset($map['RequestPaymentConfiguration'])) { + $model->requestPaymentConfiguration = requestPaymentConfiguration::fromMap($map['RequestPaymentConfiguration']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketRequestPaymentResponse/requestPaymentConfiguration.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketRequestPaymentResponse/requestPaymentConfiguration.php new file mode 100644 index 00000000..53ebd92c --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketRequestPaymentResponse/requestPaymentConfiguration.php @@ -0,0 +1,49 @@ + 'Payer', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->payer) { + $res['Payer'] = $this->payer; + } + + return $res; + } + + /** + * @param array $map + * + * @return requestPaymentConfiguration + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Payer'])) { + $model->payer = $map['Payer']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketResponse.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketResponse.php new file mode 100644 index 00000000..2c190fbb --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketResponse.php @@ -0,0 +1,66 @@ + 'x-oss-request-id', + 'listBucketResult' => 'ListBucketResult', + ]; + + public function validate() + { + Model::validateRequired('requestId', $this->requestId, true); + Model::validateRequired('listBucketResult', $this->listBucketResult, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['x-oss-request-id'] = $this->requestId; + } + if (null !== $this->listBucketResult) { + $res['ListBucketResult'] = null !== $this->listBucketResult ? $this->listBucketResult->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return GetBucketResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['x-oss-request-id'])) { + $model->requestId = $map['x-oss-request-id']; + } + if (isset($map['ListBucketResult'])) { + $model->listBucketResult = listBucketResult::fromMap($map['ListBucketResult']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketResponse/listBucketResult.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketResponse/listBucketResult.php new file mode 100644 index 00000000..be82a552 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketResponse/listBucketResult.php @@ -0,0 +1,174 @@ + 'Name', + 'prefix' => 'Prefix', + 'marker' => 'Marker', + 'maxKeys' => 'MaxKeys', + 'delimiter' => 'Delimiter', + 'isTruncated' => 'IsTruncated', + 'encodingType' => 'EncodingType', + 'commonPrefixes' => 'CommonPrefixes', + 'contents' => 'Contents', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->name) { + $res['Name'] = $this->name; + } + if (null !== $this->prefix) { + $res['Prefix'] = $this->prefix; + } + if (null !== $this->marker) { + $res['Marker'] = $this->marker; + } + if (null !== $this->maxKeys) { + $res['MaxKeys'] = $this->maxKeys; + } + if (null !== $this->delimiter) { + $res['Delimiter'] = $this->delimiter; + } + if (null !== $this->isTruncated) { + $res['IsTruncated'] = $this->isTruncated; + } + if (null !== $this->encodingType) { + $res['EncodingType'] = $this->encodingType; + } + if (null !== $this->commonPrefixes) { + $res['CommonPrefixes'] = $this->commonPrefixes; + } + if (null !== $this->contents) { + $res['Contents'] = []; + if (null !== $this->contents && \is_array($this->contents)) { + $n = 0; + foreach ($this->contents as $item) { + $res['Contents'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return listBucketResult + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Name'])) { + $model->name = $map['Name']; + } + if (isset($map['Prefix'])) { + $model->prefix = $map['Prefix']; + } + if (isset($map['Marker'])) { + $model->marker = $map['Marker']; + } + if (isset($map['MaxKeys'])) { + $model->maxKeys = $map['MaxKeys']; + } + if (isset($map['Delimiter'])) { + $model->delimiter = $map['Delimiter']; + } + if (isset($map['IsTruncated'])) { + $model->isTruncated = $map['IsTruncated']; + } + if (isset($map['EncodingType'])) { + $model->encodingType = $map['EncodingType']; + } + if (isset($map['CommonPrefixes'])) { + $model->commonPrefixes = $map['CommonPrefixes']; + } + if (isset($map['Contents'])) { + if (!empty($map['Contents'])) { + $model->contents = []; + $n = 0; + foreach ($map['Contents'] as $item) { + $model->contents[$n++] = null !== $item ? contents::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketResponse/listBucketResult/contents.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketResponse/listBucketResult/contents.php new file mode 100644 index 00000000..adc61cd3 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketResponse/listBucketResult/contents.php @@ -0,0 +1,121 @@ + 'Key', + 'eTag' => 'ETag', + 'lastModified' => 'LastModified', + 'size' => 'Size', + 'storageClass' => 'StorageClass', + 'owner' => 'Owner', + ]; + + public function validate() + { + Model::validateRequired('owner', $this->owner, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->key) { + $res['Key'] = $this->key; + } + if (null !== $this->eTag) { + $res['ETag'] = $this->eTag; + } + if (null !== $this->lastModified) { + $res['LastModified'] = $this->lastModified; + } + if (null !== $this->size) { + $res['Size'] = $this->size; + } + if (null !== $this->storageClass) { + $res['StorageClass'] = $this->storageClass; + } + if (null !== $this->owner) { + $res['Owner'] = null !== $this->owner ? $this->owner->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return contents + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Key'])) { + $model->key = $map['Key']; + } + if (isset($map['ETag'])) { + $model->eTag = $map['ETag']; + } + if (isset($map['LastModified'])) { + $model->lastModified = $map['LastModified']; + } + if (isset($map['Size'])) { + $model->size = $map['Size']; + } + if (isset($map['StorageClass'])) { + $model->storageClass = $map['StorageClass']; + } + if (isset($map['Owner'])) { + $model->owner = owner::fromMap($map['Owner']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketResponse/listBucketResult/contents/owner.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketResponse/listBucketResult/contents/owner.php new file mode 100644 index 00000000..a478e6a0 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketResponse/listBucketResult/contents/owner.php @@ -0,0 +1,63 @@ + 'ID', + 'displayName' => 'DisplayName', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->iD) { + $res['ID'] = $this->iD; + } + if (null !== $this->displayName) { + $res['DisplayName'] = $this->displayName; + } + + return $res; + } + + /** + * @param array $map + * + * @return owner + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['ID'])) { + $model->iD = $map['ID']; + } + if (isset($map['DisplayName'])) { + $model->displayName = $map['DisplayName']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketTagsRequest.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketTagsRequest.php new file mode 100644 index 00000000..a74fff56 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketTagsRequest.php @@ -0,0 +1,51 @@ + 'BucketName', + ]; + + public function validate() + { + Model::validateRequired('bucketName', $this->bucketName, true); + Model::validatePattern('bucketName', $this->bucketName, '[a-zA-Z0-9-_]+'); + } + + public function toMap() + { + $res = []; + if (null !== $this->bucketName) { + $res['BucketName'] = $this->bucketName; + } + + return $res; + } + + /** + * @param array $map + * + * @return GetBucketTagsRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['BucketName'])) { + $model->bucketName = $map['BucketName']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketTagsResponse.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketTagsResponse.php new file mode 100644 index 00000000..7e1a3651 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketTagsResponse.php @@ -0,0 +1,66 @@ + 'x-oss-request-id', + 'tagging' => 'Tagging', + ]; + + public function validate() + { + Model::validateRequired('requestId', $this->requestId, true); + Model::validateRequired('tagging', $this->tagging, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['x-oss-request-id'] = $this->requestId; + } + if (null !== $this->tagging) { + $res['Tagging'] = null !== $this->tagging ? $this->tagging->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return GetBucketTagsResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['x-oss-request-id'])) { + $model->requestId = $map['x-oss-request-id']; + } + if (isset($map['Tagging'])) { + $model->tagging = tagging::fromMap($map['Tagging']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketTagsResponse/tagging.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketTagsResponse/tagging.php new file mode 100644 index 00000000..560f964a --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketTagsResponse/tagging.php @@ -0,0 +1,51 @@ + 'TagSet', + ]; + + public function validate() + { + Model::validateRequired('tagSet', $this->tagSet, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->tagSet) { + $res['TagSet'] = null !== $this->tagSet ? $this->tagSet->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return tagging + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['TagSet'])) { + $model->tagSet = tagSet::fromMap($map['TagSet']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketTagsResponse/tagging/tagSet.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketTagsResponse/tagging/tagSet.php new file mode 100644 index 00000000..55c6fe03 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketTagsResponse/tagging/tagSet.php @@ -0,0 +1,62 @@ + 'Tag', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->tag) { + $res['Tag'] = []; + if (null !== $this->tag && \is_array($this->tag)) { + $n = 0; + foreach ($this->tag as $item) { + $res['Tag'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return tagSet + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Tag'])) { + if (!empty($map['Tag'])) { + $model->tag = []; + $n = 0; + foreach ($map['Tag'] as $item) { + $model->tag[$n++] = null !== $item ? tag::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketTagsResponse/tagging/tagSet/tag.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketTagsResponse/tagging/tagSet/tag.php new file mode 100644 index 00000000..fefc7f6e --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketTagsResponse/tagging/tagSet/tag.php @@ -0,0 +1,63 @@ + 'Key', + 'value' => 'Value', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->key) { + $res['Key'] = $this->key; + } + if (null !== $this->value) { + $res['Value'] = $this->value; + } + + return $res; + } + + /** + * @param array $map + * + * @return tag + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Key'])) { + $model->key = $map['Key']; + } + if (isset($map['Value'])) { + $model->value = $map['Value']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketWebsiteRequest.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketWebsiteRequest.php new file mode 100644 index 00000000..fd597c28 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketWebsiteRequest.php @@ -0,0 +1,51 @@ + 'BucketName', + ]; + + public function validate() + { + Model::validateRequired('bucketName', $this->bucketName, true); + Model::validatePattern('bucketName', $this->bucketName, '[a-zA-Z0-9-_]+'); + } + + public function toMap() + { + $res = []; + if (null !== $this->bucketName) { + $res['BucketName'] = $this->bucketName; + } + + return $res; + } + + /** + * @param array $map + * + * @return GetBucketWebsiteRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['BucketName'])) { + $model->bucketName = $map['BucketName']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketWebsiteResponse.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketWebsiteResponse.php new file mode 100644 index 00000000..d6e47e83 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketWebsiteResponse.php @@ -0,0 +1,66 @@ + 'x-oss-request-id', + 'websiteConfiguration' => 'WebsiteConfiguration', + ]; + + public function validate() + { + Model::validateRequired('requestId', $this->requestId, true); + Model::validateRequired('websiteConfiguration', $this->websiteConfiguration, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['x-oss-request-id'] = $this->requestId; + } + if (null !== $this->websiteConfiguration) { + $res['WebsiteConfiguration'] = null !== $this->websiteConfiguration ? $this->websiteConfiguration->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return GetBucketWebsiteResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['x-oss-request-id'])) { + $model->requestId = $map['x-oss-request-id']; + } + if (isset($map['WebsiteConfiguration'])) { + $model->websiteConfiguration = websiteConfiguration::fromMap($map['WebsiteConfiguration']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketWebsiteResponse/websiteConfiguration.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketWebsiteResponse/websiteConfiguration.php new file mode 100644 index 00000000..388f7ac6 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketWebsiteResponse/websiteConfiguration.php @@ -0,0 +1,83 @@ + 'IndexDocument', + 'errorDocument' => 'ErrorDocument', + 'routingRules' => 'RoutingRules', + ]; + + public function validate() + { + Model::validateRequired('indexDocument', $this->indexDocument, true); + Model::validateRequired('errorDocument', $this->errorDocument, true); + Model::validateRequired('routingRules', $this->routingRules, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->indexDocument) { + $res['IndexDocument'] = null !== $this->indexDocument ? $this->indexDocument->toMap() : null; + } + if (null !== $this->errorDocument) { + $res['ErrorDocument'] = null !== $this->errorDocument ? $this->errorDocument->toMap() : null; + } + if (null !== $this->routingRules) { + $res['RoutingRules'] = null !== $this->routingRules ? $this->routingRules->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return websiteConfiguration + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['IndexDocument'])) { + $model->indexDocument = indexDocument::fromMap($map['IndexDocument']); + } + if (isset($map['ErrorDocument'])) { + $model->errorDocument = errorDocument::fromMap($map['ErrorDocument']); + } + if (isset($map['RoutingRules'])) { + $model->routingRules = routingRules::fromMap($map['RoutingRules']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketWebsiteResponse/websiteConfiguration/errorDocument.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketWebsiteResponse/websiteConfiguration/errorDocument.php new file mode 100644 index 00000000..252ab02c --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketWebsiteResponse/websiteConfiguration/errorDocument.php @@ -0,0 +1,49 @@ + 'Key', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->key) { + $res['Key'] = $this->key; + } + + return $res; + } + + /** + * @param array $map + * + * @return errorDocument + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Key'])) { + $model->key = $map['Key']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketWebsiteResponse/websiteConfiguration/indexDocument.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketWebsiteResponse/websiteConfiguration/indexDocument.php new file mode 100644 index 00000000..a6fab03e --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketWebsiteResponse/websiteConfiguration/indexDocument.php @@ -0,0 +1,49 @@ + 'Suffix', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->suffix) { + $res['Suffix'] = $this->suffix; + } + + return $res; + } + + /** + * @param array $map + * + * @return indexDocument + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Suffix'])) { + $model->suffix = $map['Suffix']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketWebsiteResponse/websiteConfiguration/routingRules.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketWebsiteResponse/websiteConfiguration/routingRules.php new file mode 100644 index 00000000..91daa034 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketWebsiteResponse/websiteConfiguration/routingRules.php @@ -0,0 +1,62 @@ + 'RoutingRule', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->routingRule) { + $res['RoutingRule'] = []; + if (null !== $this->routingRule && \is_array($this->routingRule)) { + $n = 0; + foreach ($this->routingRule as $item) { + $res['RoutingRule'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return routingRules + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RoutingRule'])) { + if (!empty($map['RoutingRule'])) { + $model->routingRule = []; + $n = 0; + foreach ($map['RoutingRule'] as $item) { + $model->routingRule[$n++] = null !== $item ? routingRule::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketWebsiteResponse/websiteConfiguration/routingRules/routingRule.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketWebsiteResponse/websiteConfiguration/routingRules/routingRule.php new file mode 100644 index 00000000..f80f90d8 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketWebsiteResponse/websiteConfiguration/routingRules/routingRule.php @@ -0,0 +1,81 @@ + 'RuleNumber', + 'condition' => 'Condition', + 'redirect' => 'Redirect', + ]; + + public function validate() + { + Model::validateRequired('condition', $this->condition, true); + Model::validateRequired('redirect', $this->redirect, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->ruleNumber) { + $res['RuleNumber'] = $this->ruleNumber; + } + if (null !== $this->condition) { + $res['Condition'] = null !== $this->condition ? $this->condition->toMap() : null; + } + if (null !== $this->redirect) { + $res['Redirect'] = null !== $this->redirect ? $this->redirect->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return routingRule + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RuleNumber'])) { + $model->ruleNumber = $map['RuleNumber']; + } + if (isset($map['Condition'])) { + $model->condition = condition::fromMap($map['Condition']); + } + if (isset($map['Redirect'])) { + $model->redirect = redirect::fromMap($map['Redirect']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketWebsiteResponse/websiteConfiguration/routingRules/routingRule/condition.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketWebsiteResponse/websiteConfiguration/routingRules/routingRule/condition.php new file mode 100644 index 00000000..fbabd934 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketWebsiteResponse/websiteConfiguration/routingRules/routingRule/condition.php @@ -0,0 +1,79 @@ + 'KeyPrefixEquals', + 'httpErrorCodeReturnedEquals' => 'HttpErrorCodeReturnedEquals', + 'includeHeader' => 'IncludeHeader', + ]; + + public function validate() + { + Model::validateRequired('includeHeader', $this->includeHeader, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->keyPrefixEquals) { + $res['KeyPrefixEquals'] = $this->keyPrefixEquals; + } + if (null !== $this->httpErrorCodeReturnedEquals) { + $res['HttpErrorCodeReturnedEquals'] = $this->httpErrorCodeReturnedEquals; + } + if (null !== $this->includeHeader) { + $res['IncludeHeader'] = null !== $this->includeHeader ? $this->includeHeader->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return condition + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['KeyPrefixEquals'])) { + $model->keyPrefixEquals = $map['KeyPrefixEquals']; + } + if (isset($map['HttpErrorCodeReturnedEquals'])) { + $model->httpErrorCodeReturnedEquals = $map['HttpErrorCodeReturnedEquals']; + } + if (isset($map['IncludeHeader'])) { + $model->includeHeader = includeHeader::fromMap($map['IncludeHeader']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketWebsiteResponse/websiteConfiguration/routingRules/routingRule/condition/includeHeader.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketWebsiteResponse/websiteConfiguration/routingRules/routingRule/condition/includeHeader.php new file mode 100644 index 00000000..f4ef134c --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketWebsiteResponse/websiteConfiguration/routingRules/routingRule/condition/includeHeader.php @@ -0,0 +1,63 @@ + 'Key', + 'equals' => 'Equals', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->key) { + $res['Key'] = $this->key; + } + if (null !== $this->equals) { + $res['Equals'] = $this->equals; + } + + return $res; + } + + /** + * @param array $map + * + * @return includeHeader + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Key'])) { + $model->key = $map['Key']; + } + if (isset($map['Equals'])) { + $model->equals = $map['Equals']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketWebsiteResponse/websiteConfiguration/routingRules/routingRule/redirect.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketWebsiteResponse/websiteConfiguration/routingRules/routingRule/redirect.php new file mode 100644 index 00000000..a86bbb45 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketWebsiteResponse/websiteConfiguration/routingRules/routingRule/redirect.php @@ -0,0 +1,205 @@ + 'RedirectType', + 'passQueryString' => 'PassQueryString', + 'mirrorURL' => 'MirrorURL', + 'mirrorPassQueryString' => 'MirrorPassQueryString', + 'mirrorFollowRedirect' => 'MirrorFollowRedirect', + 'mirrorCheckMd5' => 'MirrorCheckMd5', + 'protocol' => 'Protocol', + 'hostName' => 'HostName', + 'httpRedirectCode' => 'HttpRedirectCode', + 'replaceKeyPrefixWith' => 'ReplaceKeyPrefixWith', + 'replaceKeyWith' => 'ReplaceKeyWith', + 'mirrorHeaders' => 'MirrorHeaders', + ]; + + public function validate() + { + Model::validateRequired('mirrorHeaders', $this->mirrorHeaders, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->redirectType) { + $res['RedirectType'] = $this->redirectType; + } + if (null !== $this->passQueryString) { + $res['PassQueryString'] = $this->passQueryString; + } + if (null !== $this->mirrorURL) { + $res['MirrorURL'] = $this->mirrorURL; + } + if (null !== $this->mirrorPassQueryString) { + $res['MirrorPassQueryString'] = $this->mirrorPassQueryString; + } + if (null !== $this->mirrorFollowRedirect) { + $res['MirrorFollowRedirect'] = $this->mirrorFollowRedirect; + } + if (null !== $this->mirrorCheckMd5) { + $res['MirrorCheckMd5'] = $this->mirrorCheckMd5; + } + if (null !== $this->protocol) { + $res['Protocol'] = $this->protocol; + } + if (null !== $this->hostName) { + $res['HostName'] = $this->hostName; + } + if (null !== $this->httpRedirectCode) { + $res['HttpRedirectCode'] = $this->httpRedirectCode; + } + if (null !== $this->replaceKeyPrefixWith) { + $res['ReplaceKeyPrefixWith'] = $this->replaceKeyPrefixWith; + } + if (null !== $this->replaceKeyWith) { + $res['ReplaceKeyWith'] = $this->replaceKeyWith; + } + if (null !== $this->mirrorHeaders) { + $res['MirrorHeaders'] = null !== $this->mirrorHeaders ? $this->mirrorHeaders->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return redirect + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RedirectType'])) { + $model->redirectType = $map['RedirectType']; + } + if (isset($map['PassQueryString'])) { + $model->passQueryString = $map['PassQueryString']; + } + if (isset($map['MirrorURL'])) { + $model->mirrorURL = $map['MirrorURL']; + } + if (isset($map['MirrorPassQueryString'])) { + $model->mirrorPassQueryString = $map['MirrorPassQueryString']; + } + if (isset($map['MirrorFollowRedirect'])) { + $model->mirrorFollowRedirect = $map['MirrorFollowRedirect']; + } + if (isset($map['MirrorCheckMd5'])) { + $model->mirrorCheckMd5 = $map['MirrorCheckMd5']; + } + if (isset($map['Protocol'])) { + $model->protocol = $map['Protocol']; + } + if (isset($map['HostName'])) { + $model->hostName = $map['HostName']; + } + if (isset($map['HttpRedirectCode'])) { + $model->httpRedirectCode = $map['HttpRedirectCode']; + } + if (isset($map['ReplaceKeyPrefixWith'])) { + $model->replaceKeyPrefixWith = $map['ReplaceKeyPrefixWith']; + } + if (isset($map['ReplaceKeyWith'])) { + $model->replaceKeyWith = $map['ReplaceKeyWith']; + } + if (isset($map['MirrorHeaders'])) { + $model->mirrorHeaders = mirrorHeaders::fromMap($map['MirrorHeaders']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketWebsiteResponse/websiteConfiguration/routingRules/routingRule/redirect/mirrorHeaders.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketWebsiteResponse/websiteConfiguration/routingRules/routingRule/redirect/mirrorHeaders.php new file mode 100644 index 00000000..170d3567 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketWebsiteResponse/websiteConfiguration/routingRules/routingRule/redirect/mirrorHeaders.php @@ -0,0 +1,93 @@ + 'PassAll', + 'pass' => 'Pass', + 'remove' => 'Remove', + 'set' => 'Set', + ]; + + public function validate() + { + Model::validateRequired('set', $this->set, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->passAll) { + $res['PassAll'] = $this->passAll; + } + if (null !== $this->pass) { + $res['Pass'] = $this->pass; + } + if (null !== $this->remove) { + $res['Remove'] = $this->remove; + } + if (null !== $this->set) { + $res['Set'] = null !== $this->set ? $this->set->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return mirrorHeaders + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['PassAll'])) { + $model->passAll = $map['PassAll']; + } + if (isset($map['Pass'])) { + $model->pass = $map['Pass']; + } + if (isset($map['Remove'])) { + $model->remove = $map['Remove']; + } + if (isset($map['Set'])) { + $model->set = set::fromMap($map['Set']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketWebsiteResponse/websiteConfiguration/routingRules/routingRule/redirect/mirrorHeaders/set.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketWebsiteResponse/websiteConfiguration/routingRules/routingRule/redirect/mirrorHeaders/set.php new file mode 100644 index 00000000..b13d6597 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetBucketWebsiteResponse/websiteConfiguration/routingRules/routingRule/redirect/mirrorHeaders/set.php @@ -0,0 +1,63 @@ + 'Key', + 'value' => 'Value', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->key) { + $res['Key'] = $this->key; + } + if (null !== $this->value) { + $res['Value'] = $this->value; + } + + return $res; + } + + /** + * @param array $map + * + * @return set + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Key'])) { + $model->key = $map['Key']; + } + if (isset($map['Value'])) { + $model->value = $map['Value']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetLiveChannelHistoryRequest.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetLiveChannelHistoryRequest.php new file mode 100644 index 00000000..71185f6c --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetLiveChannelHistoryRequest.php @@ -0,0 +1,81 @@ + 'BucketName', + 'channelName' => 'ChannelName', + 'filter' => 'Filter', + ]; + + public function validate() + { + Model::validateRequired('bucketName', $this->bucketName, true); + Model::validateRequired('channelName', $this->channelName, true); + Model::validatePattern('bucketName', $this->bucketName, '[a-zA-Z0-9-_]+'); + } + + public function toMap() + { + $res = []; + if (null !== $this->bucketName) { + $res['BucketName'] = $this->bucketName; + } + if (null !== $this->channelName) { + $res['ChannelName'] = $this->channelName; + } + if (null !== $this->filter) { + $res['Filter'] = null !== $this->filter ? $this->filter->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return GetLiveChannelHistoryRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['BucketName'])) { + $model->bucketName = $map['BucketName']; + } + if (isset($map['ChannelName'])) { + $model->channelName = $map['ChannelName']; + } + if (isset($map['Filter'])) { + $model->filter = filter::fromMap($map['Filter']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetLiveChannelHistoryRequest/filter.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetLiveChannelHistoryRequest/filter.php new file mode 100644 index 00000000..0a4dce28 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetLiveChannelHistoryRequest/filter.php @@ -0,0 +1,49 @@ + 'comp', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->comp) { + $res['comp'] = $this->comp; + } + + return $res; + } + + /** + * @param array $map + * + * @return filter + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['comp'])) { + $model->comp = $map['comp']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetLiveChannelHistoryResponse.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetLiveChannelHistoryResponse.php new file mode 100644 index 00000000..6058c03a --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetLiveChannelHistoryResponse.php @@ -0,0 +1,66 @@ + 'x-oss-request-id', + 'liveChannelHistory' => 'LiveChannelHistory', + ]; + + public function validate() + { + Model::validateRequired('requestId', $this->requestId, true); + Model::validateRequired('liveChannelHistory', $this->liveChannelHistory, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['x-oss-request-id'] = $this->requestId; + } + if (null !== $this->liveChannelHistory) { + $res['LiveChannelHistory'] = null !== $this->liveChannelHistory ? $this->liveChannelHistory->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return GetLiveChannelHistoryResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['x-oss-request-id'])) { + $model->requestId = $map['x-oss-request-id']; + } + if (isset($map['LiveChannelHistory'])) { + $model->liveChannelHistory = liveChannelHistory::fromMap($map['LiveChannelHistory']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetLiveChannelHistoryResponse/liveChannelHistory.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetLiveChannelHistoryResponse/liveChannelHistory.php new file mode 100644 index 00000000..511a4a84 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetLiveChannelHistoryResponse/liveChannelHistory.php @@ -0,0 +1,62 @@ + 'LiveRecord', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->liveRecord) { + $res['LiveRecord'] = []; + if (null !== $this->liveRecord && \is_array($this->liveRecord)) { + $n = 0; + foreach ($this->liveRecord as $item) { + $res['LiveRecord'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return liveChannelHistory + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['LiveRecord'])) { + if (!empty($map['LiveRecord'])) { + $model->liveRecord = []; + $n = 0; + foreach ($map['LiveRecord'] as $item) { + $model->liveRecord[$n++] = null !== $item ? liveRecord::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetLiveChannelHistoryResponse/liveChannelHistory/liveRecord.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetLiveChannelHistoryResponse/liveChannelHistory/liveRecord.php new file mode 100644 index 00000000..c7c0d483 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetLiveChannelHistoryResponse/liveChannelHistory/liveRecord.php @@ -0,0 +1,77 @@ + 'StartTime', + 'endTime' => 'EndTime', + 'remoteAddr' => 'RemoteAddr', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->startTime) { + $res['StartTime'] = $this->startTime; + } + if (null !== $this->endTime) { + $res['EndTime'] = $this->endTime; + } + if (null !== $this->remoteAddr) { + $res['RemoteAddr'] = $this->remoteAddr; + } + + return $res; + } + + /** + * @param array $map + * + * @return liveRecord + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['StartTime'])) { + $model->startTime = $map['StartTime']; + } + if (isset($map['EndTime'])) { + $model->endTime = $map['EndTime']; + } + if (isset($map['RemoteAddr'])) { + $model->remoteAddr = $map['RemoteAddr']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetLiveChannelInfoRequest.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetLiveChannelInfoRequest.php new file mode 100644 index 00000000..51a4e746 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetLiveChannelInfoRequest.php @@ -0,0 +1,66 @@ + 'BucketName', + 'channelName' => 'ChannelName', + ]; + + public function validate() + { + Model::validateRequired('bucketName', $this->bucketName, true); + Model::validateRequired('channelName', $this->channelName, true); + Model::validatePattern('bucketName', $this->bucketName, '[a-zA-Z0-9-_]+'); + } + + public function toMap() + { + $res = []; + if (null !== $this->bucketName) { + $res['BucketName'] = $this->bucketName; + } + if (null !== $this->channelName) { + $res['ChannelName'] = $this->channelName; + } + + return $res; + } + + /** + * @param array $map + * + * @return GetLiveChannelInfoRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['BucketName'])) { + $model->bucketName = $map['BucketName']; + } + if (isset($map['ChannelName'])) { + $model->channelName = $map['ChannelName']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetLiveChannelInfoResponse.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetLiveChannelInfoResponse.php new file mode 100644 index 00000000..956b8f54 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetLiveChannelInfoResponse.php @@ -0,0 +1,66 @@ + 'x-oss-request-id', + 'liveChannelConfiguration' => 'LiveChannelConfiguration', + ]; + + public function validate() + { + Model::validateRequired('requestId', $this->requestId, true); + Model::validateRequired('liveChannelConfiguration', $this->liveChannelConfiguration, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['x-oss-request-id'] = $this->requestId; + } + if (null !== $this->liveChannelConfiguration) { + $res['LiveChannelConfiguration'] = null !== $this->liveChannelConfiguration ? $this->liveChannelConfiguration->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return GetLiveChannelInfoResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['x-oss-request-id'])) { + $model->requestId = $map['x-oss-request-id']; + } + if (isset($map['LiveChannelConfiguration'])) { + $model->liveChannelConfiguration = liveChannelConfiguration::fromMap($map['LiveChannelConfiguration']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetLiveChannelInfoResponse/liveChannelConfiguration.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetLiveChannelInfoResponse/liveChannelConfiguration.php new file mode 100644 index 00000000..3e0b4fb2 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetLiveChannelInfoResponse/liveChannelConfiguration.php @@ -0,0 +1,79 @@ + 'Description', + 'status' => 'Status', + 'target' => 'Target', + ]; + + public function validate() + { + Model::validateRequired('target', $this->target, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->description) { + $res['Description'] = $this->description; + } + if (null !== $this->status) { + $res['Status'] = $this->status; + } + if (null !== $this->target) { + $res['Target'] = null !== $this->target ? $this->target->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return liveChannelConfiguration + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Description'])) { + $model->description = $map['Description']; + } + if (isset($map['Status'])) { + $model->status = $map['Status']; + } + if (isset($map['Target'])) { + $model->target = target::fromMap($map['Target']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetLiveChannelInfoResponse/liveChannelConfiguration/target.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetLiveChannelInfoResponse/liveChannelConfiguration/target.php new file mode 100644 index 00000000..d3bf8771 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetLiveChannelInfoResponse/liveChannelConfiguration/target.php @@ -0,0 +1,91 @@ + 'Type', + 'fragDuration' => 'FragDuration', + 'fragCount' => 'FragCount', + 'playlistName' => 'PlaylistName', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->type) { + $res['Type'] = $this->type; + } + if (null !== $this->fragDuration) { + $res['FragDuration'] = $this->fragDuration; + } + if (null !== $this->fragCount) { + $res['FragCount'] = $this->fragCount; + } + if (null !== $this->playlistName) { + $res['PlaylistName'] = $this->playlistName; + } + + return $res; + } + + /** + * @param array $map + * + * @return target + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Type'])) { + $model->type = $map['Type']; + } + if (isset($map['FragDuration'])) { + $model->fragDuration = $map['FragDuration']; + } + if (isset($map['FragCount'])) { + $model->fragCount = $map['FragCount']; + } + if (isset($map['PlaylistName'])) { + $model->playlistName = $map['PlaylistName']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetLiveChannelStatRequest.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetLiveChannelStatRequest.php new file mode 100644 index 00000000..5ed41c88 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetLiveChannelStatRequest.php @@ -0,0 +1,81 @@ + 'BucketName', + 'channelName' => 'ChannelName', + 'filter' => 'Filter', + ]; + + public function validate() + { + Model::validateRequired('bucketName', $this->bucketName, true); + Model::validateRequired('channelName', $this->channelName, true); + Model::validatePattern('bucketName', $this->bucketName, '[a-zA-Z0-9-_]+'); + } + + public function toMap() + { + $res = []; + if (null !== $this->bucketName) { + $res['BucketName'] = $this->bucketName; + } + if (null !== $this->channelName) { + $res['ChannelName'] = $this->channelName; + } + if (null !== $this->filter) { + $res['Filter'] = null !== $this->filter ? $this->filter->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return GetLiveChannelStatRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['BucketName'])) { + $model->bucketName = $map['BucketName']; + } + if (isset($map['ChannelName'])) { + $model->channelName = $map['ChannelName']; + } + if (isset($map['Filter'])) { + $model->filter = filter::fromMap($map['Filter']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetLiveChannelStatRequest/filter.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetLiveChannelStatRequest/filter.php new file mode 100644 index 00000000..891501be --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetLiveChannelStatRequest/filter.php @@ -0,0 +1,49 @@ + 'comp', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->comp) { + $res['comp'] = $this->comp; + } + + return $res; + } + + /** + * @param array $map + * + * @return filter + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['comp'])) { + $model->comp = $map['comp']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetLiveChannelStatResponse.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetLiveChannelStatResponse.php new file mode 100644 index 00000000..f74f4ddf --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetLiveChannelStatResponse.php @@ -0,0 +1,66 @@ + 'x-oss-request-id', + 'liveChannelStat' => 'LiveChannelStat', + ]; + + public function validate() + { + Model::validateRequired('requestId', $this->requestId, true); + Model::validateRequired('liveChannelStat', $this->liveChannelStat, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['x-oss-request-id'] = $this->requestId; + } + if (null !== $this->liveChannelStat) { + $res['LiveChannelStat'] = null !== $this->liveChannelStat ? $this->liveChannelStat->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return GetLiveChannelStatResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['x-oss-request-id'])) { + $model->requestId = $map['x-oss-request-id']; + } + if (isset($map['LiveChannelStat'])) { + $model->liveChannelStat = liveChannelStat::fromMap($map['LiveChannelStat']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetLiveChannelStatResponse/liveChannelStat.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetLiveChannelStatResponse/liveChannelStat.php new file mode 100644 index 00000000..0e0b0d37 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetLiveChannelStatResponse/liveChannelStat.php @@ -0,0 +1,109 @@ + 'Status', + 'connectedTime' => 'ConnectedTime', + 'remoteAddr' => 'RemoteAddr', + 'video' => 'Video', + 'audio' => 'Audio', + ]; + + public function validate() + { + Model::validateRequired('video', $this->video, true); + Model::validateRequired('audio', $this->audio, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->status) { + $res['Status'] = $this->status; + } + if (null !== $this->connectedTime) { + $res['ConnectedTime'] = $this->connectedTime; + } + if (null !== $this->remoteAddr) { + $res['RemoteAddr'] = $this->remoteAddr; + } + if (null !== $this->video) { + $res['Video'] = null !== $this->video ? $this->video->toMap() : null; + } + if (null !== $this->audio) { + $res['Audio'] = null !== $this->audio ? $this->audio->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return liveChannelStat + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Status'])) { + $model->status = $map['Status']; + } + if (isset($map['ConnectedTime'])) { + $model->connectedTime = $map['ConnectedTime']; + } + if (isset($map['RemoteAddr'])) { + $model->remoteAddr = $map['RemoteAddr']; + } + if (isset($map['Video'])) { + $model->video = video::fromMap($map['Video']); + } + if (isset($map['Audio'])) { + $model->audio = audio::fromMap($map['Audio']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetLiveChannelStatResponse/liveChannelStat/audio.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetLiveChannelStatResponse/liveChannelStat/audio.php new file mode 100644 index 00000000..ac8bd10b --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetLiveChannelStatResponse/liveChannelStat/audio.php @@ -0,0 +1,77 @@ + 'Bandwidth', + 'sampleRate' => 'SampleRate', + 'codec' => 'Codec', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->bandwidth) { + $res['Bandwidth'] = $this->bandwidth; + } + if (null !== $this->sampleRate) { + $res['SampleRate'] = $this->sampleRate; + } + if (null !== $this->codec) { + $res['Codec'] = $this->codec; + } + + return $res; + } + + /** + * @param array $map + * + * @return audio + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Bandwidth'])) { + $model->bandwidth = $map['Bandwidth']; + } + if (isset($map['SampleRate'])) { + $model->sampleRate = $map['SampleRate']; + } + if (isset($map['Codec'])) { + $model->codec = $map['Codec']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetLiveChannelStatResponse/liveChannelStat/video.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetLiveChannelStatResponse/liveChannelStat/video.php new file mode 100644 index 00000000..d3a14046 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetLiveChannelStatResponse/liveChannelStat/video.php @@ -0,0 +1,105 @@ + 'Width', + 'height' => 'Height', + 'frameRate' => 'FrameRate', + 'bandwidth' => 'Bandwidth', + 'codec' => 'Codec', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->width) { + $res['Width'] = $this->width; + } + if (null !== $this->height) { + $res['Height'] = $this->height; + } + if (null !== $this->frameRate) { + $res['FrameRate'] = $this->frameRate; + } + if (null !== $this->bandwidth) { + $res['Bandwidth'] = $this->bandwidth; + } + if (null !== $this->codec) { + $res['Codec'] = $this->codec; + } + + return $res; + } + + /** + * @param array $map + * + * @return video + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Width'])) { + $model->width = $map['Width']; + } + if (isset($map['Height'])) { + $model->height = $map['Height']; + } + if (isset($map['FrameRate'])) { + $model->frameRate = $map['FrameRate']; + } + if (isset($map['Bandwidth'])) { + $model->bandwidth = $map['Bandwidth']; + } + if (isset($map['Codec'])) { + $model->codec = $map['Codec']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetObjectAclRequest.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetObjectAclRequest.php new file mode 100644 index 00000000..af67dccc --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetObjectAclRequest.php @@ -0,0 +1,66 @@ + 'BucketName', + 'objectName' => 'ObjectName', + ]; + + public function validate() + { + Model::validateRequired('bucketName', $this->bucketName, true); + Model::validateRequired('objectName', $this->objectName, true); + Model::validatePattern('bucketName', $this->bucketName, '[a-zA-Z0-9-_]+'); + } + + public function toMap() + { + $res = []; + if (null !== $this->bucketName) { + $res['BucketName'] = $this->bucketName; + } + if (null !== $this->objectName) { + $res['ObjectName'] = $this->objectName; + } + + return $res; + } + + /** + * @param array $map + * + * @return GetObjectAclRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['BucketName'])) { + $model->bucketName = $map['BucketName']; + } + if (isset($map['ObjectName'])) { + $model->objectName = $map['ObjectName']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetObjectAclResponse.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetObjectAclResponse.php new file mode 100644 index 00000000..372da0f1 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetObjectAclResponse.php @@ -0,0 +1,66 @@ + 'x-oss-request-id', + 'accessControlPolicy' => 'AccessControlPolicy', + ]; + + public function validate() + { + Model::validateRequired('requestId', $this->requestId, true); + Model::validateRequired('accessControlPolicy', $this->accessControlPolicy, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['x-oss-request-id'] = $this->requestId; + } + if (null !== $this->accessControlPolicy) { + $res['AccessControlPolicy'] = null !== $this->accessControlPolicy ? $this->accessControlPolicy->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return GetObjectAclResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['x-oss-request-id'])) { + $model->requestId = $map['x-oss-request-id']; + } + if (isset($map['AccessControlPolicy'])) { + $model->accessControlPolicy = accessControlPolicy::fromMap($map['AccessControlPolicy']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetObjectAclResponse/accessControlPolicy.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetObjectAclResponse/accessControlPolicy.php new file mode 100644 index 00000000..6623ceb3 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetObjectAclResponse/accessControlPolicy.php @@ -0,0 +1,67 @@ + 'Owner', + 'accessControlList' => 'AccessControlList', + ]; + + public function validate() + { + Model::validateRequired('owner', $this->owner, true); + Model::validateRequired('accessControlList', $this->accessControlList, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->owner) { + $res['Owner'] = null !== $this->owner ? $this->owner->toMap() : null; + } + if (null !== $this->accessControlList) { + $res['AccessControlList'] = null !== $this->accessControlList ? $this->accessControlList->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return accessControlPolicy + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Owner'])) { + $model->owner = owner::fromMap($map['Owner']); + } + if (isset($map['AccessControlList'])) { + $model->accessControlList = accessControlList::fromMap($map['AccessControlList']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetObjectAclResponse/accessControlPolicy/accessControlList.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetObjectAclResponse/accessControlPolicy/accessControlList.php new file mode 100644 index 00000000..25fd2e52 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetObjectAclResponse/accessControlPolicy/accessControlList.php @@ -0,0 +1,49 @@ + 'Grant', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->grant) { + $res['Grant'] = $this->grant; + } + + return $res; + } + + /** + * @param array $map + * + * @return accessControlList + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Grant'])) { + $model->grant = $map['Grant']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetObjectAclResponse/accessControlPolicy/owner.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetObjectAclResponse/accessControlPolicy/owner.php new file mode 100644 index 00000000..f6dff8ae --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetObjectAclResponse/accessControlPolicy/owner.php @@ -0,0 +1,63 @@ + 'ID', + 'displayName' => 'DisplayName', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->iD) { + $res['ID'] = $this->iD; + } + if (null !== $this->displayName) { + $res['DisplayName'] = $this->displayName; + } + + return $res; + } + + /** + * @param array $map + * + * @return owner + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['ID'])) { + $model->iD = $map['ID']; + } + if (isset($map['DisplayName'])) { + $model->displayName = $map['DisplayName']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetObjectMetaRequest.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetObjectMetaRequest.php new file mode 100644 index 00000000..63ecb266 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetObjectMetaRequest.php @@ -0,0 +1,66 @@ + 'BucketName', + 'objectName' => 'ObjectName', + ]; + + public function validate() + { + Model::validateRequired('bucketName', $this->bucketName, true); + Model::validateRequired('objectName', $this->objectName, true); + Model::validatePattern('bucketName', $this->bucketName, '[a-zA-Z0-9-_]+'); + } + + public function toMap() + { + $res = []; + if (null !== $this->bucketName) { + $res['BucketName'] = $this->bucketName; + } + if (null !== $this->objectName) { + $res['ObjectName'] = $this->objectName; + } + + return $res; + } + + /** + * @param array $map + * + * @return GetObjectMetaRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['BucketName'])) { + $model->bucketName = $map['BucketName']; + } + if (isset($map['ObjectName'])) { + $model->objectName = $map['ObjectName']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetObjectMetaResponse.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetObjectMetaResponse.php new file mode 100644 index 00000000..92a0bfeb --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetObjectMetaResponse.php @@ -0,0 +1,95 @@ + 'x-oss-request-id', + 'eTag' => 'etag', + 'contentLength' => 'content-length', + 'lastModified' => 'last-modified', + ]; + + public function validate() + { + Model::validateRequired('requestId', $this->requestId, true); + Model::validateRequired('eTag', $this->eTag, true); + Model::validateRequired('contentLength', $this->contentLength, true); + Model::validateRequired('lastModified', $this->lastModified, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['x-oss-request-id'] = $this->requestId; + } + if (null !== $this->eTag) { + $res['etag'] = $this->eTag; + } + if (null !== $this->contentLength) { + $res['content-length'] = $this->contentLength; + } + if (null !== $this->lastModified) { + $res['last-modified'] = $this->lastModified; + } + + return $res; + } + + /** + * @param array $map + * + * @return GetObjectMetaResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['x-oss-request-id'])) { + $model->requestId = $map['x-oss-request-id']; + } + if (isset($map['etag'])) { + $model->eTag = $map['etag']; + } + if (isset($map['content-length'])) { + $model->contentLength = $map['content-length']; + } + if (isset($map['last-modified'])) { + $model->lastModified = $map['last-modified']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetObjectRequest.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetObjectRequest.php new file mode 100644 index 00000000..f61ca2f9 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetObjectRequest.php @@ -0,0 +1,81 @@ + 'BucketName', + 'objectName' => 'ObjectName', + 'header' => 'Header', + ]; + + public function validate() + { + Model::validateRequired('bucketName', $this->bucketName, true); + Model::validateRequired('objectName', $this->objectName, true); + Model::validatePattern('bucketName', $this->bucketName, '[a-zA-Z0-9-_]+'); + } + + public function toMap() + { + $res = []; + if (null !== $this->bucketName) { + $res['BucketName'] = $this->bucketName; + } + if (null !== $this->objectName) { + $res['ObjectName'] = $this->objectName; + } + if (null !== $this->header) { + $res['Header'] = null !== $this->header ? $this->header->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return GetObjectRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['BucketName'])) { + $model->bucketName = $map['BucketName']; + } + if (isset($map['ObjectName'])) { + $model->objectName = $map['ObjectName']; + } + if (isset($map['Header'])) { + $model->header = header::fromMap($map['Header']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetObjectRequest/header.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetObjectRequest/header.php new file mode 100644 index 00000000..0653a6f6 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetObjectRequest/header.php @@ -0,0 +1,203 @@ + 'response-content-type', + 'responseContentLanguage' => 'response-content-language', + 'responseExpires' => 'response-expires', + 'responseCacheControl' => 'response-cache-control', + 'responseContentDisposition' => 'response-content-disposition', + 'responseContentEncoding' => 'response-content-encoding', + 'range' => 'Range', + 'ifModifiedSince' => 'If-Modified-Since', + 'ifUnmodifiedSince' => 'If-Unmodified-Since', + 'ifMatch' => 'If-Match', + 'ifNoneMatch' => 'If-None-Match', + 'acceptEncoding' => 'Accept-Encoding', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->responseContentType) { + $res['response-content-type'] = $this->responseContentType; + } + if (null !== $this->responseContentLanguage) { + $res['response-content-language'] = $this->responseContentLanguage; + } + if (null !== $this->responseExpires) { + $res['response-expires'] = $this->responseExpires; + } + if (null !== $this->responseCacheControl) { + $res['response-cache-control'] = $this->responseCacheControl; + } + if (null !== $this->responseContentDisposition) { + $res['response-content-disposition'] = $this->responseContentDisposition; + } + if (null !== $this->responseContentEncoding) { + $res['response-content-encoding'] = $this->responseContentEncoding; + } + if (null !== $this->range) { + $res['Range'] = $this->range; + } + if (null !== $this->ifModifiedSince) { + $res['If-Modified-Since'] = $this->ifModifiedSince; + } + if (null !== $this->ifUnmodifiedSince) { + $res['If-Unmodified-Since'] = $this->ifUnmodifiedSince; + } + if (null !== $this->ifMatch) { + $res['If-Match'] = $this->ifMatch; + } + if (null !== $this->ifNoneMatch) { + $res['If-None-Match'] = $this->ifNoneMatch; + } + if (null !== $this->acceptEncoding) { + $res['Accept-Encoding'] = $this->acceptEncoding; + } + + return $res; + } + + /** + * @param array $map + * + * @return header + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['response-content-type'])) { + $model->responseContentType = $map['response-content-type']; + } + if (isset($map['response-content-language'])) { + $model->responseContentLanguage = $map['response-content-language']; + } + if (isset($map['response-expires'])) { + $model->responseExpires = $map['response-expires']; + } + if (isset($map['response-cache-control'])) { + $model->responseCacheControl = $map['response-cache-control']; + } + if (isset($map['response-content-disposition'])) { + $model->responseContentDisposition = $map['response-content-disposition']; + } + if (isset($map['response-content-encoding'])) { + $model->responseContentEncoding = $map['response-content-encoding']; + } + if (isset($map['Range'])) { + $model->range = $map['Range']; + } + if (isset($map['If-Modified-Since'])) { + $model->ifModifiedSince = $map['If-Modified-Since']; + } + if (isset($map['If-Unmodified-Since'])) { + $model->ifUnmodifiedSince = $map['If-Unmodified-Since']; + } + if (isset($map['If-Match'])) { + $model->ifMatch = $map['If-Match']; + } + if (isset($map['If-None-Match'])) { + $model->ifNoneMatch = $map['If-None-Match']; + } + if (isset($map['Accept-Encoding'])) { + $model->acceptEncoding = $map['Accept-Encoding']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetObjectResponse.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetObjectResponse.php new file mode 100644 index 00000000..0be4e1f3 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetObjectResponse.php @@ -0,0 +1,126 @@ + 'x-oss-request-id', + 'objectType' => 'x-oss-object-type', + 'serverSideEncryption' => 'x-oss-server-side-encryption', + 'taggingCount' => 'x-oss-tagging-count', + 'restore' => 'x-oss-restore', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('requestId', $this->requestId, true); + Model::validateRequired('objectType', $this->objectType, true); + Model::validateRequired('serverSideEncryption', $this->serverSideEncryption, true); + Model::validateRequired('taggingCount', $this->taggingCount, true); + Model::validateRequired('restore', $this->restore, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['x-oss-request-id'] = $this->requestId; + } + if (null !== $this->objectType) { + $res['x-oss-object-type'] = $this->objectType; + } + if (null !== $this->serverSideEncryption) { + $res['x-oss-server-side-encryption'] = $this->serverSideEncryption; + } + if (null !== $this->taggingCount) { + $res['x-oss-tagging-count'] = $this->taggingCount; + } + if (null !== $this->restore) { + $res['x-oss-restore'] = $this->restore; + } + if (null !== $this->body) { + $res['body'] = $this->body; + } + + return $res; + } + + /** + * @param array $map + * + * @return GetObjectResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['x-oss-request-id'])) { + $model->requestId = $map['x-oss-request-id']; + } + if (isset($map['x-oss-object-type'])) { + $model->objectType = $map['x-oss-object-type']; + } + if (isset($map['x-oss-server-side-encryption'])) { + $model->serverSideEncryption = $map['x-oss-server-side-encryption']; + } + if (isset($map['x-oss-tagging-count'])) { + $model->taggingCount = $map['x-oss-tagging-count']; + } + if (isset($map['x-oss-restore'])) { + $model->restore = $map['x-oss-restore']; + } + if (isset($map['body'])) { + $model->body = $map['body']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetObjectTaggingRequest.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetObjectTaggingRequest.php new file mode 100644 index 00000000..beeab3df --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetObjectTaggingRequest.php @@ -0,0 +1,66 @@ + 'BucketName', + 'objectName' => 'ObjectName', + ]; + + public function validate() + { + Model::validateRequired('bucketName', $this->bucketName, true); + Model::validateRequired('objectName', $this->objectName, true); + Model::validatePattern('bucketName', $this->bucketName, '[a-zA-Z0-9-_]+'); + } + + public function toMap() + { + $res = []; + if (null !== $this->bucketName) { + $res['BucketName'] = $this->bucketName; + } + if (null !== $this->objectName) { + $res['ObjectName'] = $this->objectName; + } + + return $res; + } + + /** + * @param array $map + * + * @return GetObjectTaggingRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['BucketName'])) { + $model->bucketName = $map['BucketName']; + } + if (isset($map['ObjectName'])) { + $model->objectName = $map['ObjectName']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetObjectTaggingResponse.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetObjectTaggingResponse.php new file mode 100644 index 00000000..97735d9a --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetObjectTaggingResponse.php @@ -0,0 +1,66 @@ + 'x-oss-request-id', + 'tagging' => 'Tagging', + ]; + + public function validate() + { + Model::validateRequired('requestId', $this->requestId, true); + Model::validateRequired('tagging', $this->tagging, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['x-oss-request-id'] = $this->requestId; + } + if (null !== $this->tagging) { + $res['Tagging'] = null !== $this->tagging ? $this->tagging->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return GetObjectTaggingResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['x-oss-request-id'])) { + $model->requestId = $map['x-oss-request-id']; + } + if (isset($map['Tagging'])) { + $model->tagging = tagging::fromMap($map['Tagging']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetObjectTaggingResponse/tagging.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetObjectTaggingResponse/tagging.php new file mode 100644 index 00000000..f66b289a --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetObjectTaggingResponse/tagging.php @@ -0,0 +1,51 @@ + 'TagSet', + ]; + + public function validate() + { + Model::validateRequired('tagSet', $this->tagSet, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->tagSet) { + $res['TagSet'] = null !== $this->tagSet ? $this->tagSet->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return tagging + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['TagSet'])) { + $model->tagSet = tagSet::fromMap($map['TagSet']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetObjectTaggingResponse/tagging/tagSet.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetObjectTaggingResponse/tagging/tagSet.php new file mode 100644 index 00000000..7bffcbe5 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetObjectTaggingResponse/tagging/tagSet.php @@ -0,0 +1,62 @@ + 'Tag', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->tag) { + $res['Tag'] = []; + if (null !== $this->tag && \is_array($this->tag)) { + $n = 0; + foreach ($this->tag as $item) { + $res['Tag'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return tagSet + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Tag'])) { + if (!empty($map['Tag'])) { + $model->tag = []; + $n = 0; + foreach ($map['Tag'] as $item) { + $model->tag[$n++] = null !== $item ? tag::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetObjectTaggingResponse/tagging/tagSet/tag.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetObjectTaggingResponse/tagging/tagSet/tag.php new file mode 100644 index 00000000..c836ce9e --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetObjectTaggingResponse/tagging/tagSet/tag.php @@ -0,0 +1,63 @@ + 'Key', + 'value' => 'Value', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->key) { + $res['Key'] = $this->key; + } + if (null !== $this->value) { + $res['Value'] = $this->value; + } + + return $res; + } + + /** + * @param array $map + * + * @return tag + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Key'])) { + $model->key = $map['Key']; + } + if (isset($map['Value'])) { + $model->value = $map['Value']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetServiceRequest.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetServiceRequest.php new file mode 100644 index 00000000..990e20a8 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetServiceRequest.php @@ -0,0 +1,50 @@ + 'Filter', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->filter) { + $res['Filter'] = null !== $this->filter ? $this->filter->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return GetServiceRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Filter'])) { + $model->filter = filter::fromMap($map['Filter']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetServiceRequest/filter.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetServiceRequest/filter.php new file mode 100644 index 00000000..668cddad --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetServiceRequest/filter.php @@ -0,0 +1,77 @@ + 'prefix', + 'marker' => 'marker', + 'maxKeys' => 'max-keys', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->prefix) { + $res['prefix'] = $this->prefix; + } + if (null !== $this->marker) { + $res['marker'] = $this->marker; + } + if (null !== $this->maxKeys) { + $res['max-keys'] = $this->maxKeys; + } + + return $res; + } + + /** + * @param array $map + * + * @return filter + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['prefix'])) { + $model->prefix = $map['prefix']; + } + if (isset($map['marker'])) { + $model->marker = $map['marker']; + } + if (isset($map['max-keys'])) { + $model->maxKeys = $map['max-keys']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetServiceResponse.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetServiceResponse.php new file mode 100644 index 00000000..e63cad86 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetServiceResponse.php @@ -0,0 +1,66 @@ + 'x-oss-request-id', + 'listAllMyBucketsResult' => 'ListAllMyBucketsResult', + ]; + + public function validate() + { + Model::validateRequired('requestId', $this->requestId, true); + Model::validateRequired('listAllMyBucketsResult', $this->listAllMyBucketsResult, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['x-oss-request-id'] = $this->requestId; + } + if (null !== $this->listAllMyBucketsResult) { + $res['ListAllMyBucketsResult'] = null !== $this->listAllMyBucketsResult ? $this->listAllMyBucketsResult->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return GetServiceResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['x-oss-request-id'])) { + $model->requestId = $map['x-oss-request-id']; + } + if (isset($map['ListAllMyBucketsResult'])) { + $model->listAllMyBucketsResult = listAllMyBucketsResult::fromMap($map['ListAllMyBucketsResult']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetServiceResponse/listAllMyBucketsResult.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetServiceResponse/listAllMyBucketsResult.php new file mode 100644 index 00000000..bbc38470 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetServiceResponse/listAllMyBucketsResult.php @@ -0,0 +1,137 @@ + 'Prefix', + 'marker' => 'Marker', + 'maxKeys' => 'MaxKeys', + 'isTruncated' => 'IsTruncated', + 'nextMarker' => 'NextMarker', + 'owner' => 'Owner', + 'buckets' => 'Buckets', + ]; + + public function validate() + { + Model::validateRequired('owner', $this->owner, true); + Model::validateRequired('buckets', $this->buckets, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->prefix) { + $res['Prefix'] = $this->prefix; + } + if (null !== $this->marker) { + $res['Marker'] = $this->marker; + } + if (null !== $this->maxKeys) { + $res['MaxKeys'] = $this->maxKeys; + } + if (null !== $this->isTruncated) { + $res['IsTruncated'] = $this->isTruncated; + } + if (null !== $this->nextMarker) { + $res['NextMarker'] = $this->nextMarker; + } + if (null !== $this->owner) { + $res['Owner'] = null !== $this->owner ? $this->owner->toMap() : null; + } + if (null !== $this->buckets) { + $res['Buckets'] = null !== $this->buckets ? $this->buckets->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return listAllMyBucketsResult + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Prefix'])) { + $model->prefix = $map['Prefix']; + } + if (isset($map['Marker'])) { + $model->marker = $map['Marker']; + } + if (isset($map['MaxKeys'])) { + $model->maxKeys = $map['MaxKeys']; + } + if (isset($map['IsTruncated'])) { + $model->isTruncated = $map['IsTruncated']; + } + if (isset($map['NextMarker'])) { + $model->nextMarker = $map['NextMarker']; + } + if (isset($map['Owner'])) { + $model->owner = owner::fromMap($map['Owner']); + } + if (isset($map['Buckets'])) { + $model->buckets = buckets::fromMap($map['Buckets']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetServiceResponse/listAllMyBucketsResult/buckets.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetServiceResponse/listAllMyBucketsResult/buckets.php new file mode 100644 index 00000000..8f5f8078 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetServiceResponse/listAllMyBucketsResult/buckets.php @@ -0,0 +1,62 @@ + 'Bucket', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->bucket) { + $res['Bucket'] = []; + if (null !== $this->bucket && \is_array($this->bucket)) { + $n = 0; + foreach ($this->bucket as $item) { + $res['Bucket'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return buckets + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Bucket'])) { + if (!empty($map['Bucket'])) { + $model->bucket = []; + $n = 0; + foreach ($map['Bucket'] as $item) { + $model->bucket[$n++] = null !== $item ? bucket::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetServiceResponse/listAllMyBucketsResult/buckets/bucket.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetServiceResponse/listAllMyBucketsResult/buckets/bucket.php new file mode 100644 index 00000000..ca7a5d5c --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetServiceResponse/listAllMyBucketsResult/buckets/bucket.php @@ -0,0 +1,119 @@ + 'Name', + 'createDate' => 'CreateDate', + 'location' => 'Location', + 'extranetEndpoint' => 'ExtranetEndpoint', + 'intranetEndpoint' => 'IntranetEndpoint', + 'storageClass' => 'StorageClass', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->name) { + $res['Name'] = $this->name; + } + if (null !== $this->createDate) { + $res['CreateDate'] = $this->createDate; + } + if (null !== $this->location) { + $res['Location'] = $this->location; + } + if (null !== $this->extranetEndpoint) { + $res['ExtranetEndpoint'] = $this->extranetEndpoint; + } + if (null !== $this->intranetEndpoint) { + $res['IntranetEndpoint'] = $this->intranetEndpoint; + } + if (null !== $this->storageClass) { + $res['StorageClass'] = $this->storageClass; + } + + return $res; + } + + /** + * @param array $map + * + * @return bucket + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Name'])) { + $model->name = $map['Name']; + } + if (isset($map['CreateDate'])) { + $model->createDate = $map['CreateDate']; + } + if (isset($map['Location'])) { + $model->location = $map['Location']; + } + if (isset($map['ExtranetEndpoint'])) { + $model->extranetEndpoint = $map['ExtranetEndpoint']; + } + if (isset($map['IntranetEndpoint'])) { + $model->intranetEndpoint = $map['IntranetEndpoint']; + } + if (isset($map['StorageClass'])) { + $model->storageClass = $map['StorageClass']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetServiceResponse/listAllMyBucketsResult/owner.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetServiceResponse/listAllMyBucketsResult/owner.php new file mode 100644 index 00000000..24fb51e8 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetServiceResponse/listAllMyBucketsResult/owner.php @@ -0,0 +1,63 @@ + 'ID', + 'displayName' => 'DisplayName', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->iD) { + $res['ID'] = $this->iD; + } + if (null !== $this->displayName) { + $res['DisplayName'] = $this->displayName; + } + + return $res; + } + + /** + * @param array $map + * + * @return owner + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['ID'])) { + $model->iD = $map['ID']; + } + if (isset($map['DisplayName'])) { + $model->displayName = $map['DisplayName']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetSymlinkRequest.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetSymlinkRequest.php new file mode 100644 index 00000000..efe1b341 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetSymlinkRequest.php @@ -0,0 +1,66 @@ + 'BucketName', + 'objectName' => 'ObjectName', + ]; + + public function validate() + { + Model::validateRequired('bucketName', $this->bucketName, true); + Model::validateRequired('objectName', $this->objectName, true); + Model::validatePattern('bucketName', $this->bucketName, '[a-zA-Z0-9-_]+'); + } + + public function toMap() + { + $res = []; + if (null !== $this->bucketName) { + $res['BucketName'] = $this->bucketName; + } + if (null !== $this->objectName) { + $res['ObjectName'] = $this->objectName; + } + + return $res; + } + + /** + * @param array $map + * + * @return GetSymlinkRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['BucketName'])) { + $model->bucketName = $map['BucketName']; + } + if (isset($map['ObjectName'])) { + $model->objectName = $map['ObjectName']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetSymlinkResponse.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetSymlinkResponse.php new file mode 100644 index 00000000..59f5c632 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetSymlinkResponse.php @@ -0,0 +1,65 @@ + 'x-oss-request-id', + 'symlinkTarget' => 'x-oss-symlink-target', + ]; + + public function validate() + { + Model::validateRequired('requestId', $this->requestId, true); + Model::validateRequired('symlinkTarget', $this->symlinkTarget, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['x-oss-request-id'] = $this->requestId; + } + if (null !== $this->symlinkTarget) { + $res['x-oss-symlink-target'] = $this->symlinkTarget; + } + + return $res; + } + + /** + * @param array $map + * + * @return GetSymlinkResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['x-oss-request-id'])) { + $model->requestId = $map['x-oss-request-id']; + } + if (isset($map['x-oss-symlink-target'])) { + $model->symlinkTarget = $map['x-oss-symlink-target']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetVodPlaylistRequest.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetVodPlaylistRequest.php new file mode 100644 index 00000000..4a1ce59f --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetVodPlaylistRequest.php @@ -0,0 +1,82 @@ + 'BucketName', + 'channelName' => 'ChannelName', + 'filter' => 'Filter', + ]; + + public function validate() + { + Model::validateRequired('bucketName', $this->bucketName, true); + Model::validateRequired('channelName', $this->channelName, true); + Model::validateRequired('filter', $this->filter, true); + Model::validatePattern('bucketName', $this->bucketName, '[a-zA-Z0-9-_]+'); + } + + public function toMap() + { + $res = []; + if (null !== $this->bucketName) { + $res['BucketName'] = $this->bucketName; + } + if (null !== $this->channelName) { + $res['ChannelName'] = $this->channelName; + } + if (null !== $this->filter) { + $res['Filter'] = null !== $this->filter ? $this->filter->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return GetVodPlaylistRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['BucketName'])) { + $model->bucketName = $map['BucketName']; + } + if (isset($map['ChannelName'])) { + $model->channelName = $map['ChannelName']; + } + if (isset($map['Filter'])) { + $model->filter = filter::fromMap($map['Filter']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetVodPlaylistRequest/filter.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetVodPlaylistRequest/filter.php new file mode 100644 index 00000000..8f86a473 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetVodPlaylistRequest/filter.php @@ -0,0 +1,65 @@ + 'endTime', + 'startTime' => 'startTime', + ]; + + public function validate() + { + Model::validateRequired('endTime', $this->endTime, true); + Model::validateRequired('startTime', $this->startTime, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->endTime) { + $res['endTime'] = $this->endTime; + } + if (null !== $this->startTime) { + $res['startTime'] = $this->startTime; + } + + return $res; + } + + /** + * @param array $map + * + * @return filter + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['endTime'])) { + $model->endTime = $map['endTime']; + } + if (isset($map['startTime'])) { + $model->startTime = $map['startTime']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetVodPlaylistResponse.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetVodPlaylistResponse.php new file mode 100644 index 00000000..be235e19 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/GetVodPlaylistResponse.php @@ -0,0 +1,50 @@ + 'x-oss-request-id', + ]; + + public function validate() + { + Model::validateRequired('requestId', $this->requestId, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['x-oss-request-id'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return GetVodPlaylistResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['x-oss-request-id'])) { + $model->requestId = $map['x-oss-request-id']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/HeadObjectRequest.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/HeadObjectRequest.php new file mode 100644 index 00000000..525b2988 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/HeadObjectRequest.php @@ -0,0 +1,81 @@ + 'BucketName', + 'objectName' => 'ObjectName', + 'header' => 'Header', + ]; + + public function validate() + { + Model::validateRequired('bucketName', $this->bucketName, true); + Model::validateRequired('objectName', $this->objectName, true); + Model::validatePattern('bucketName', $this->bucketName, '[a-zA-Z0-9-_]+'); + } + + public function toMap() + { + $res = []; + if (null !== $this->bucketName) { + $res['BucketName'] = $this->bucketName; + } + if (null !== $this->objectName) { + $res['ObjectName'] = $this->objectName; + } + if (null !== $this->header) { + $res['Header'] = null !== $this->header ? $this->header->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return HeadObjectRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['BucketName'])) { + $model->bucketName = $map['BucketName']; + } + if (isset($map['ObjectName'])) { + $model->objectName = $map['ObjectName']; + } + if (isset($map['Header'])) { + $model->header = header::fromMap($map['Header']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/HeadObjectRequest/header.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/HeadObjectRequest/header.php new file mode 100644 index 00000000..dc9a50bb --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/HeadObjectRequest/header.php @@ -0,0 +1,91 @@ + 'If-Modified-Since', + 'ifUnmodifiedSince' => 'If-Unmodified-Since', + 'ifMatch' => 'If-Match', + 'ifNoneMatch' => 'If-None-Match', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->ifModifiedSince) { + $res['If-Modified-Since'] = $this->ifModifiedSince; + } + if (null !== $this->ifUnmodifiedSince) { + $res['If-Unmodified-Since'] = $this->ifUnmodifiedSince; + } + if (null !== $this->ifMatch) { + $res['If-Match'] = $this->ifMatch; + } + if (null !== $this->ifNoneMatch) { + $res['If-None-Match'] = $this->ifNoneMatch; + } + + return $res; + } + + /** + * @param array $map + * + * @return header + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['If-Modified-Since'])) { + $model->ifModifiedSince = $map['If-Modified-Since']; + } + if (isset($map['If-Unmodified-Since'])) { + $model->ifUnmodifiedSince = $map['If-Unmodified-Since']; + } + if (isset($map['If-Match'])) { + $model->ifMatch = $map['If-Match']; + } + if (isset($map['If-None-Match'])) { + $model->ifNoneMatch = $map['If-None-Match']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/HeadObjectResponse.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/HeadObjectResponse.php new file mode 100644 index 00000000..7179fafb --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/HeadObjectResponse.php @@ -0,0 +1,335 @@ + 'x-oss-request-id', + 'userMeta' => 'usermeta', + 'serverSideEncryption' => 'x-oss-server-side-encryption', + 'serverSideEncryptionKeyId' => 'x-oss-server-side-encryption-key-id', + 'storageClass' => 'x-oss-storage-class', + 'objectType' => 'x-oss-object-type', + 'nextAppendPosition' => 'x-oss-next-append-position', + 'hashCrc64ecma' => 'x-oss-hash-crc64ecma', + 'expiration' => 'x-oss-expiration', + 'restore' => 'x-oss-restore', + 'processStatus' => 'x-oss-process-status', + 'requestCharged' => 'x-oss-request-charged', + 'contentMd5' => 'content-md5', + 'lastModified' => 'last-modified', + 'accessControlAllowOrigin' => 'access-control-allow-origin', + 'accessControlAllowMethods' => 'access-control-allow-methods', + 'accessControlMaxAge' => 'access-control-max-age', + 'accessControlAllowHeaders' => 'access-control-allow-headers', + 'accessControlExposeHeaders' => 'access-control-expose-headers', + 'taggingCount' => 'x-oss-tagging-count', + ]; + + public function validate() + { + Model::validateRequired('requestId', $this->requestId, true); + Model::validateRequired('userMeta', $this->userMeta, true); + Model::validateRequired('serverSideEncryption', $this->serverSideEncryption, true); + Model::validateRequired('serverSideEncryptionKeyId', $this->serverSideEncryptionKeyId, true); + Model::validateRequired('storageClass', $this->storageClass, true); + Model::validateRequired('objectType', $this->objectType, true); + Model::validateRequired('nextAppendPosition', $this->nextAppendPosition, true); + Model::validateRequired('hashCrc64ecma', $this->hashCrc64ecma, true); + Model::validateRequired('expiration', $this->expiration, true); + Model::validateRequired('restore', $this->restore, true); + Model::validateRequired('processStatus', $this->processStatus, true); + Model::validateRequired('requestCharged', $this->requestCharged, true); + Model::validateRequired('contentMd5', $this->contentMd5, true); + Model::validateRequired('lastModified', $this->lastModified, true); + Model::validateRequired('accessControlAllowOrigin', $this->accessControlAllowOrigin, true); + Model::validateRequired('accessControlAllowMethods', $this->accessControlAllowMethods, true); + Model::validateRequired('accessControlMaxAge', $this->accessControlMaxAge, true); + Model::validateRequired('accessControlAllowHeaders', $this->accessControlAllowHeaders, true); + Model::validateRequired('accessControlExposeHeaders', $this->accessControlExposeHeaders, true); + Model::validateRequired('taggingCount', $this->taggingCount, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['x-oss-request-id'] = $this->requestId; + } + if (null !== $this->userMeta) { + $res['usermeta'] = $this->userMeta; + } + if (null !== $this->serverSideEncryption) { + $res['x-oss-server-side-encryption'] = $this->serverSideEncryption; + } + if (null !== $this->serverSideEncryptionKeyId) { + $res['x-oss-server-side-encryption-key-id'] = $this->serverSideEncryptionKeyId; + } + if (null !== $this->storageClass) { + $res['x-oss-storage-class'] = $this->storageClass; + } + if (null !== $this->objectType) { + $res['x-oss-object-type'] = $this->objectType; + } + if (null !== $this->nextAppendPosition) { + $res['x-oss-next-append-position'] = $this->nextAppendPosition; + } + if (null !== $this->hashCrc64ecma) { + $res['x-oss-hash-crc64ecma'] = $this->hashCrc64ecma; + } + if (null !== $this->expiration) { + $res['x-oss-expiration'] = $this->expiration; + } + if (null !== $this->restore) { + $res['x-oss-restore'] = $this->restore; + } + if (null !== $this->processStatus) { + $res['x-oss-process-status'] = $this->processStatus; + } + if (null !== $this->requestCharged) { + $res['x-oss-request-charged'] = $this->requestCharged; + } + if (null !== $this->contentMd5) { + $res['content-md5'] = $this->contentMd5; + } + if (null !== $this->lastModified) { + $res['last-modified'] = $this->lastModified; + } + if (null !== $this->accessControlAllowOrigin) { + $res['access-control-allow-origin'] = $this->accessControlAllowOrigin; + } + if (null !== $this->accessControlAllowMethods) { + $res['access-control-allow-methods'] = $this->accessControlAllowMethods; + } + if (null !== $this->accessControlMaxAge) { + $res['access-control-max-age'] = $this->accessControlMaxAge; + } + if (null !== $this->accessControlAllowHeaders) { + $res['access-control-allow-headers'] = $this->accessControlAllowHeaders; + } + if (null !== $this->accessControlExposeHeaders) { + $res['access-control-expose-headers'] = $this->accessControlExposeHeaders; + } + if (null !== $this->taggingCount) { + $res['x-oss-tagging-count'] = $this->taggingCount; + } + + return $res; + } + + /** + * @param array $map + * + * @return HeadObjectResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['x-oss-request-id'])) { + $model->requestId = $map['x-oss-request-id']; + } + if (isset($map['usermeta'])) { + $model->userMeta = $map['usermeta']; + } + if (isset($map['x-oss-server-side-encryption'])) { + $model->serverSideEncryption = $map['x-oss-server-side-encryption']; + } + if (isset($map['x-oss-server-side-encryption-key-id'])) { + $model->serverSideEncryptionKeyId = $map['x-oss-server-side-encryption-key-id']; + } + if (isset($map['x-oss-storage-class'])) { + $model->storageClass = $map['x-oss-storage-class']; + } + if (isset($map['x-oss-object-type'])) { + $model->objectType = $map['x-oss-object-type']; + } + if (isset($map['x-oss-next-append-position'])) { + $model->nextAppendPosition = $map['x-oss-next-append-position']; + } + if (isset($map['x-oss-hash-crc64ecma'])) { + $model->hashCrc64ecma = $map['x-oss-hash-crc64ecma']; + } + if (isset($map['x-oss-expiration'])) { + $model->expiration = $map['x-oss-expiration']; + } + if (isset($map['x-oss-restore'])) { + $model->restore = $map['x-oss-restore']; + } + if (isset($map['x-oss-process-status'])) { + $model->processStatus = $map['x-oss-process-status']; + } + if (isset($map['x-oss-request-charged'])) { + $model->requestCharged = $map['x-oss-request-charged']; + } + if (isset($map['content-md5'])) { + $model->contentMd5 = $map['content-md5']; + } + if (isset($map['last-modified'])) { + $model->lastModified = $map['last-modified']; + } + if (isset($map['access-control-allow-origin'])) { + $model->accessControlAllowOrigin = $map['access-control-allow-origin']; + } + if (isset($map['access-control-allow-methods'])) { + $model->accessControlAllowMethods = $map['access-control-allow-methods']; + } + if (isset($map['access-control-max-age'])) { + $model->accessControlMaxAge = $map['access-control-max-age']; + } + if (isset($map['access-control-allow-headers'])) { + $model->accessControlAllowHeaders = $map['access-control-allow-headers']; + } + if (isset($map['access-control-expose-headers'])) { + $model->accessControlExposeHeaders = $map['access-control-expose-headers']; + } + if (isset($map['x-oss-tagging-count'])) { + $model->taggingCount = $map['x-oss-tagging-count']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/InitiateMultipartUploadRequest.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/InitiateMultipartUploadRequest.php new file mode 100644 index 00000000..c2e5a3a3 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/InitiateMultipartUploadRequest.php @@ -0,0 +1,96 @@ + 'BucketName', + 'objectName' => 'ObjectName', + 'filter' => 'Filter', + 'header' => 'Header', + ]; + + public function validate() + { + Model::validateRequired('bucketName', $this->bucketName, true); + Model::validateRequired('objectName', $this->objectName, true); + Model::validatePattern('bucketName', $this->bucketName, '[a-zA-Z0-9-_]+'); + } + + public function toMap() + { + $res = []; + if (null !== $this->bucketName) { + $res['BucketName'] = $this->bucketName; + } + if (null !== $this->objectName) { + $res['ObjectName'] = $this->objectName; + } + if (null !== $this->filter) { + $res['Filter'] = null !== $this->filter ? $this->filter->toMap() : null; + } + if (null !== $this->header) { + $res['Header'] = null !== $this->header ? $this->header->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return InitiateMultipartUploadRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['BucketName'])) { + $model->bucketName = $map['BucketName']; + } + if (isset($map['ObjectName'])) { + $model->objectName = $map['ObjectName']; + } + if (isset($map['Filter'])) { + $model->filter = filter::fromMap($map['Filter']); + } + if (isset($map['Header'])) { + $model->header = header::fromMap($map['Header']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/InitiateMultipartUploadRequest/filter.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/InitiateMultipartUploadRequest/filter.php new file mode 100644 index 00000000..76c29306 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/InitiateMultipartUploadRequest/filter.php @@ -0,0 +1,49 @@ + 'encoding-type', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->encodingType) { + $res['encoding-type'] = $this->encodingType; + } + + return $res; + } + + /** + * @param array $map + * + * @return filter + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['encoding-type'])) { + $model->encodingType = $map['encoding-type']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/InitiateMultipartUploadRequest/header.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/InitiateMultipartUploadRequest/header.php new file mode 100644 index 00000000..cf876f81 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/InitiateMultipartUploadRequest/header.php @@ -0,0 +1,161 @@ + 'Cache-Control', + 'contentDisposition' => 'Content-Disposition', + 'contentEncoding' => 'Content-Encoding', + 'expires' => 'Expires', + 'serverSideEncryption' => 'x-oss-server-side-encryption', + 'serverSideEncryptionKeyId' => 'x-oss-server-side-encryption-key-id', + 'storageClass' => 'x-oss-storage-class', + 'tagging' => 'x-oss-tagging', + 'contentType' => 'content-type', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->cacheControl) { + $res['Cache-Control'] = $this->cacheControl; + } + if (null !== $this->contentDisposition) { + $res['Content-Disposition'] = $this->contentDisposition; + } + if (null !== $this->contentEncoding) { + $res['Content-Encoding'] = $this->contentEncoding; + } + if (null !== $this->expires) { + $res['Expires'] = $this->expires; + } + if (null !== $this->serverSideEncryption) { + $res['x-oss-server-side-encryption'] = $this->serverSideEncryption; + } + if (null !== $this->serverSideEncryptionKeyId) { + $res['x-oss-server-side-encryption-key-id'] = $this->serverSideEncryptionKeyId; + } + if (null !== $this->storageClass) { + $res['x-oss-storage-class'] = $this->storageClass; + } + if (null !== $this->tagging) { + $res['x-oss-tagging'] = $this->tagging; + } + if (null !== $this->contentType) { + $res['content-type'] = $this->contentType; + } + + return $res; + } + + /** + * @param array $map + * + * @return header + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Cache-Control'])) { + $model->cacheControl = $map['Cache-Control']; + } + if (isset($map['Content-Disposition'])) { + $model->contentDisposition = $map['Content-Disposition']; + } + if (isset($map['Content-Encoding'])) { + $model->contentEncoding = $map['Content-Encoding']; + } + if (isset($map['Expires'])) { + $model->expires = $map['Expires']; + } + if (isset($map['x-oss-server-side-encryption'])) { + $model->serverSideEncryption = $map['x-oss-server-side-encryption']; + } + if (isset($map['x-oss-server-side-encryption-key-id'])) { + $model->serverSideEncryptionKeyId = $map['x-oss-server-side-encryption-key-id']; + } + if (isset($map['x-oss-storage-class'])) { + $model->storageClass = $map['x-oss-storage-class']; + } + if (isset($map['x-oss-tagging'])) { + $model->tagging = $map['x-oss-tagging']; + } + if (isset($map['content-type'])) { + $model->contentType = $map['content-type']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/InitiateMultipartUploadResponse.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/InitiateMultipartUploadResponse.php new file mode 100644 index 00000000..9833478c --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/InitiateMultipartUploadResponse.php @@ -0,0 +1,66 @@ + 'x-oss-request-id', + 'initiateMultipartUploadResult' => 'InitiateMultipartUploadResult', + ]; + + public function validate() + { + Model::validateRequired('requestId', $this->requestId, true); + Model::validateRequired('initiateMultipartUploadResult', $this->initiateMultipartUploadResult, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['x-oss-request-id'] = $this->requestId; + } + if (null !== $this->initiateMultipartUploadResult) { + $res['InitiateMultipartUploadResult'] = null !== $this->initiateMultipartUploadResult ? $this->initiateMultipartUploadResult->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return InitiateMultipartUploadResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['x-oss-request-id'])) { + $model->requestId = $map['x-oss-request-id']; + } + if (isset($map['InitiateMultipartUploadResult'])) { + $model->initiateMultipartUploadResult = initiateMultipartUploadResult::fromMap($map['InitiateMultipartUploadResult']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/InitiateMultipartUploadResponse/initiateMultipartUploadResult.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/InitiateMultipartUploadResponse/initiateMultipartUploadResult.php new file mode 100644 index 00000000..9ff151b5 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/InitiateMultipartUploadResponse/initiateMultipartUploadResult.php @@ -0,0 +1,77 @@ + 'Bucket', + 'key' => 'Key', + 'uploadId' => 'UploadId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->bucket) { + $res['Bucket'] = $this->bucket; + } + if (null !== $this->key) { + $res['Key'] = $this->key; + } + if (null !== $this->uploadId) { + $res['UploadId'] = $this->uploadId; + } + + return $res; + } + + /** + * @param array $map + * + * @return initiateMultipartUploadResult + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Bucket'])) { + $model->bucket = $map['Bucket']; + } + if (isset($map['Key'])) { + $model->key = $map['Key']; + } + if (isset($map['UploadId'])) { + $model->uploadId = $map['UploadId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/ListLiveChannelRequest.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/ListLiveChannelRequest.php new file mode 100644 index 00000000..13f14aae --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/ListLiveChannelRequest.php @@ -0,0 +1,66 @@ + 'BucketName', + 'filter' => 'Filter', + ]; + + public function validate() + { + Model::validateRequired('bucketName', $this->bucketName, true); + Model::validatePattern('bucketName', $this->bucketName, '[a-zA-Z0-9-_]+'); + } + + public function toMap() + { + $res = []; + if (null !== $this->bucketName) { + $res['BucketName'] = $this->bucketName; + } + if (null !== $this->filter) { + $res['Filter'] = null !== $this->filter ? $this->filter->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return ListLiveChannelRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['BucketName'])) { + $model->bucketName = $map['BucketName']; + } + if (isset($map['Filter'])) { + $model->filter = filter::fromMap($map['Filter']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/ListLiveChannelRequest/filter.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/ListLiveChannelRequest/filter.php new file mode 100644 index 00000000..3be7f008 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/ListLiveChannelRequest/filter.php @@ -0,0 +1,77 @@ + 'marker', + 'maxKeys' => 'max-keys', + 'prefix' => 'prefix', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->marker) { + $res['marker'] = $this->marker; + } + if (null !== $this->maxKeys) { + $res['max-keys'] = $this->maxKeys; + } + if (null !== $this->prefix) { + $res['prefix'] = $this->prefix; + } + + return $res; + } + + /** + * @param array $map + * + * @return filter + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['marker'])) { + $model->marker = $map['marker']; + } + if (isset($map['max-keys'])) { + $model->maxKeys = $map['max-keys']; + } + if (isset($map['prefix'])) { + $model->prefix = $map['prefix']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/ListLiveChannelResponse.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/ListLiveChannelResponse.php new file mode 100644 index 00000000..cd1a7d79 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/ListLiveChannelResponse.php @@ -0,0 +1,66 @@ + 'x-oss-request-id', + 'listLiveChannelResult' => 'ListLiveChannelResult', + ]; + + public function validate() + { + Model::validateRequired('requestId', $this->requestId, true); + Model::validateRequired('listLiveChannelResult', $this->listLiveChannelResult, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['x-oss-request-id'] = $this->requestId; + } + if (null !== $this->listLiveChannelResult) { + $res['ListLiveChannelResult'] = null !== $this->listLiveChannelResult ? $this->listLiveChannelResult->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return ListLiveChannelResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['x-oss-request-id'])) { + $model->requestId = $map['x-oss-request-id']; + } + if (isset($map['ListLiveChannelResult'])) { + $model->listLiveChannelResult = listLiveChannelResult::fromMap($map['ListLiveChannelResult']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/ListLiveChannelResponse/listLiveChannelResult.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/ListLiveChannelResponse/listLiveChannelResult.php new file mode 100644 index 00000000..7c026ffa --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/ListLiveChannelResponse/listLiveChannelResult.php @@ -0,0 +1,121 @@ + 'Prefix', + 'marker' => 'Marker', + 'maxKeys' => 'MaxKeys', + 'isTruncated' => 'IsTruncated', + 'nextMarker' => 'NextMarker', + 'liveChannel' => 'LiveChannel', + ]; + + public function validate() + { + Model::validateRequired('liveChannel', $this->liveChannel, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->prefix) { + $res['Prefix'] = $this->prefix; + } + if (null !== $this->marker) { + $res['Marker'] = $this->marker; + } + if (null !== $this->maxKeys) { + $res['MaxKeys'] = $this->maxKeys; + } + if (null !== $this->isTruncated) { + $res['IsTruncated'] = $this->isTruncated; + } + if (null !== $this->nextMarker) { + $res['NextMarker'] = $this->nextMarker; + } + if (null !== $this->liveChannel) { + $res['LiveChannel'] = null !== $this->liveChannel ? $this->liveChannel->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return listLiveChannelResult + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Prefix'])) { + $model->prefix = $map['Prefix']; + } + if (isset($map['Marker'])) { + $model->marker = $map['Marker']; + } + if (isset($map['MaxKeys'])) { + $model->maxKeys = $map['MaxKeys']; + } + if (isset($map['IsTruncated'])) { + $model->isTruncated = $map['IsTruncated']; + } + if (isset($map['NextMarker'])) { + $model->nextMarker = $map['NextMarker']; + } + if (isset($map['LiveChannel'])) { + $model->liveChannel = liveChannel::fromMap($map['LiveChannel']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/ListLiveChannelResponse/listLiveChannelResult/liveChannel.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/ListLiveChannelResponse/listLiveChannelResult/liveChannel.php new file mode 100644 index 00000000..8c7729ff --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/ListLiveChannelResponse/listLiveChannelResult/liveChannel.php @@ -0,0 +1,123 @@ + 'Name', + 'description' => 'Description', + 'status' => 'Status', + 'lastModified' => 'LastModified', + 'publishUrls' => 'PublishUrls', + 'playUrls' => 'PlayUrls', + ]; + + public function validate() + { + Model::validateRequired('publishUrls', $this->publishUrls, true); + Model::validateRequired('playUrls', $this->playUrls, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->name) { + $res['Name'] = $this->name; + } + if (null !== $this->description) { + $res['Description'] = $this->description; + } + if (null !== $this->status) { + $res['Status'] = $this->status; + } + if (null !== $this->lastModified) { + $res['LastModified'] = $this->lastModified; + } + if (null !== $this->publishUrls) { + $res['PublishUrls'] = null !== $this->publishUrls ? $this->publishUrls->toMap() : null; + } + if (null !== $this->playUrls) { + $res['PlayUrls'] = null !== $this->playUrls ? $this->playUrls->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return liveChannel + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Name'])) { + $model->name = $map['Name']; + } + if (isset($map['Description'])) { + $model->description = $map['Description']; + } + if (isset($map['Status'])) { + $model->status = $map['Status']; + } + if (isset($map['LastModified'])) { + $model->lastModified = $map['LastModified']; + } + if (isset($map['PublishUrls'])) { + $model->publishUrls = publishUrls::fromMap($map['PublishUrls']); + } + if (isset($map['PlayUrls'])) { + $model->playUrls = playUrls::fromMap($map['PlayUrls']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/ListLiveChannelResponse/listLiveChannelResult/liveChannel/playUrls.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/ListLiveChannelResponse/listLiveChannelResult/liveChannel/playUrls.php new file mode 100644 index 00000000..b8b70391 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/ListLiveChannelResponse/listLiveChannelResult/liveChannel/playUrls.php @@ -0,0 +1,49 @@ + 'Url', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->url) { + $res['Url'] = $this->url; + } + + return $res; + } + + /** + * @param array $map + * + * @return playUrls + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Url'])) { + $model->url = $map['Url']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/ListLiveChannelResponse/listLiveChannelResult/liveChannel/publishUrls.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/ListLiveChannelResponse/listLiveChannelResult/liveChannel/publishUrls.php new file mode 100644 index 00000000..d5fd4e0a --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/ListLiveChannelResponse/listLiveChannelResult/liveChannel/publishUrls.php @@ -0,0 +1,49 @@ + 'Url', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->url) { + $res['Url'] = $this->url; + } + + return $res; + } + + /** + * @param array $map + * + * @return publishUrls + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Url'])) { + $model->url = $map['Url']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/ListMultipartUploadsRequest.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/ListMultipartUploadsRequest.php new file mode 100644 index 00000000..a9ce058d --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/ListMultipartUploadsRequest.php @@ -0,0 +1,66 @@ + 'BucketName', + 'filter' => 'Filter', + ]; + + public function validate() + { + Model::validateRequired('bucketName', $this->bucketName, true); + Model::validatePattern('bucketName', $this->bucketName, '[a-zA-Z0-9-_]+'); + } + + public function toMap() + { + $res = []; + if (null !== $this->bucketName) { + $res['BucketName'] = $this->bucketName; + } + if (null !== $this->filter) { + $res['Filter'] = null !== $this->filter ? $this->filter->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return ListMultipartUploadsRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['BucketName'])) { + $model->bucketName = $map['BucketName']; + } + if (isset($map['Filter'])) { + $model->filter = filter::fromMap($map['Filter']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/ListMultipartUploadsRequest/filter.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/ListMultipartUploadsRequest/filter.php new file mode 100644 index 00000000..8c5d0a0e --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/ListMultipartUploadsRequest/filter.php @@ -0,0 +1,119 @@ + 'delimiter', + 'maxUploads' => 'max-uploads', + 'keyMarker' => 'key-marker', + 'prefix' => 'prefix', + 'uploadIdMarker' => 'upload-id-marker', + 'encodingType' => 'encoding-type', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->delimiter) { + $res['delimiter'] = $this->delimiter; + } + if (null !== $this->maxUploads) { + $res['max-uploads'] = $this->maxUploads; + } + if (null !== $this->keyMarker) { + $res['key-marker'] = $this->keyMarker; + } + if (null !== $this->prefix) { + $res['prefix'] = $this->prefix; + } + if (null !== $this->uploadIdMarker) { + $res['upload-id-marker'] = $this->uploadIdMarker; + } + if (null !== $this->encodingType) { + $res['encoding-type'] = $this->encodingType; + } + + return $res; + } + + /** + * @param array $map + * + * @return filter + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['delimiter'])) { + $model->delimiter = $map['delimiter']; + } + if (isset($map['max-uploads'])) { + $model->maxUploads = $map['max-uploads']; + } + if (isset($map['key-marker'])) { + $model->keyMarker = $map['key-marker']; + } + if (isset($map['prefix'])) { + $model->prefix = $map['prefix']; + } + if (isset($map['upload-id-marker'])) { + $model->uploadIdMarker = $map['upload-id-marker']; + } + if (isset($map['encoding-type'])) { + $model->encodingType = $map['encoding-type']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/ListMultipartUploadsResponse.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/ListMultipartUploadsResponse.php new file mode 100644 index 00000000..f6cf9533 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/ListMultipartUploadsResponse.php @@ -0,0 +1,66 @@ + 'x-oss-request-id', + 'listMultipartUploadsResult' => 'ListMultipartUploadsResult', + ]; + + public function validate() + { + Model::validateRequired('requestId', $this->requestId, true); + Model::validateRequired('listMultipartUploadsResult', $this->listMultipartUploadsResult, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['x-oss-request-id'] = $this->requestId; + } + if (null !== $this->listMultipartUploadsResult) { + $res['ListMultipartUploadsResult'] = null !== $this->listMultipartUploadsResult ? $this->listMultipartUploadsResult->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return ListMultipartUploadsResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['x-oss-request-id'])) { + $model->requestId = $map['x-oss-request-id']; + } + if (isset($map['ListMultipartUploadsResult'])) { + $model->listMultipartUploadsResult = listMultipartUploadsResult::fromMap($map['ListMultipartUploadsResult']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/ListMultipartUploadsResponse/listMultipartUploadsResult.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/ListMultipartUploadsResponse/listMultipartUploadsResult.php new file mode 100644 index 00000000..a3eb0dfa --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/ListMultipartUploadsResponse/listMultipartUploadsResult.php @@ -0,0 +1,188 @@ + 'Bucket', + 'encodingType' => 'EncodingType', + 'keyMarker' => 'KeyMarker', + 'uploadIdMarker' => 'UploadIdMarker', + 'nextKeyMarker' => 'NextKeyMarker', + 'nextUploadIdMarker' => 'NextUploadIdMarker', + 'delimiter' => 'Delimiter', + 'maxUploads' => 'MaxUploads', + 'isTruncated' => 'IsTruncated', + 'upload' => 'Upload', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->bucket) { + $res['Bucket'] = $this->bucket; + } + if (null !== $this->encodingType) { + $res['EncodingType'] = $this->encodingType; + } + if (null !== $this->keyMarker) { + $res['KeyMarker'] = $this->keyMarker; + } + if (null !== $this->uploadIdMarker) { + $res['UploadIdMarker'] = $this->uploadIdMarker; + } + if (null !== $this->nextKeyMarker) { + $res['NextKeyMarker'] = $this->nextKeyMarker; + } + if (null !== $this->nextUploadIdMarker) { + $res['NextUploadIdMarker'] = $this->nextUploadIdMarker; + } + if (null !== $this->delimiter) { + $res['Delimiter'] = $this->delimiter; + } + if (null !== $this->maxUploads) { + $res['MaxUploads'] = $this->maxUploads; + } + if (null !== $this->isTruncated) { + $res['IsTruncated'] = $this->isTruncated; + } + if (null !== $this->upload) { + $res['Upload'] = []; + if (null !== $this->upload && \is_array($this->upload)) { + $n = 0; + foreach ($this->upload as $item) { + $res['Upload'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return listMultipartUploadsResult + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Bucket'])) { + $model->bucket = $map['Bucket']; + } + if (isset($map['EncodingType'])) { + $model->encodingType = $map['EncodingType']; + } + if (isset($map['KeyMarker'])) { + $model->keyMarker = $map['KeyMarker']; + } + if (isset($map['UploadIdMarker'])) { + $model->uploadIdMarker = $map['UploadIdMarker']; + } + if (isset($map['NextKeyMarker'])) { + $model->nextKeyMarker = $map['NextKeyMarker']; + } + if (isset($map['NextUploadIdMarker'])) { + $model->nextUploadIdMarker = $map['NextUploadIdMarker']; + } + if (isset($map['Delimiter'])) { + $model->delimiter = $map['Delimiter']; + } + if (isset($map['MaxUploads'])) { + $model->maxUploads = $map['MaxUploads']; + } + if (isset($map['IsTruncated'])) { + $model->isTruncated = $map['IsTruncated']; + } + if (isset($map['Upload'])) { + if (!empty($map['Upload'])) { + $model->upload = []; + $n = 0; + foreach ($map['Upload'] as $item) { + $model->upload[$n++] = null !== $item ? upload::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/ListMultipartUploadsResponse/listMultipartUploadsResult/upload.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/ListMultipartUploadsResponse/listMultipartUploadsResult/upload.php new file mode 100644 index 00000000..1601097b --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/ListMultipartUploadsResponse/listMultipartUploadsResult/upload.php @@ -0,0 +1,77 @@ + 'Key', + 'uploadId' => 'UploadId', + 'initiated' => 'Initiated', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->key) { + $res['Key'] = $this->key; + } + if (null !== $this->uploadId) { + $res['UploadId'] = $this->uploadId; + } + if (null !== $this->initiated) { + $res['Initiated'] = $this->initiated; + } + + return $res; + } + + /** + * @param array $map + * + * @return upload + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Key'])) { + $model->key = $map['Key']; + } + if (isset($map['UploadId'])) { + $model->uploadId = $map['UploadId']; + } + if (isset($map['Initiated'])) { + $model->initiated = $map['Initiated']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/ListPartsRequest.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/ListPartsRequest.php new file mode 100644 index 00000000..37b8fc0b --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/ListPartsRequest.php @@ -0,0 +1,82 @@ + 'BucketName', + 'objectName' => 'ObjectName', + 'filter' => 'Filter', + ]; + + public function validate() + { + Model::validateRequired('bucketName', $this->bucketName, true); + Model::validateRequired('objectName', $this->objectName, true); + Model::validateRequired('filter', $this->filter, true); + Model::validatePattern('bucketName', $this->bucketName, '[a-zA-Z0-9-_]+'); + } + + public function toMap() + { + $res = []; + if (null !== $this->bucketName) { + $res['BucketName'] = $this->bucketName; + } + if (null !== $this->objectName) { + $res['ObjectName'] = $this->objectName; + } + if (null !== $this->filter) { + $res['Filter'] = null !== $this->filter ? $this->filter->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return ListPartsRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['BucketName'])) { + $model->bucketName = $map['BucketName']; + } + if (isset($map['ObjectName'])) { + $model->objectName = $map['ObjectName']; + } + if (isset($map['Filter'])) { + $model->filter = filter::fromMap($map['Filter']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/ListPartsRequest/filter.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/ListPartsRequest/filter.php new file mode 100644 index 00000000..818dc830 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/ListPartsRequest/filter.php @@ -0,0 +1,92 @@ + 'uploadId', + 'maxParts' => 'max-parts', + 'partNumberMarker' => 'part-number-marker', + 'encodingType' => 'Encoding-type', + ]; + + public function validate() + { + Model::validateRequired('uploadId', $this->uploadId, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->uploadId) { + $res['uploadId'] = $this->uploadId; + } + if (null !== $this->maxParts) { + $res['max-parts'] = $this->maxParts; + } + if (null !== $this->partNumberMarker) { + $res['part-number-marker'] = $this->partNumberMarker; + } + if (null !== $this->encodingType) { + $res['Encoding-type'] = $this->encodingType; + } + + return $res; + } + + /** + * @param array $map + * + * @return filter + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['uploadId'])) { + $model->uploadId = $map['uploadId']; + } + if (isset($map['max-parts'])) { + $model->maxParts = $map['max-parts']; + } + if (isset($map['part-number-marker'])) { + $model->partNumberMarker = $map['part-number-marker']; + } + if (isset($map['Encoding-type'])) { + $model->encodingType = $map['Encoding-type']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/ListPartsResponse.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/ListPartsResponse.php new file mode 100644 index 00000000..54a7809d --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/ListPartsResponse.php @@ -0,0 +1,66 @@ + 'x-oss-request-id', + 'listPartsResult' => 'ListPartsResult', + ]; + + public function validate() + { + Model::validateRequired('requestId', $this->requestId, true); + Model::validateRequired('listPartsResult', $this->listPartsResult, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['x-oss-request-id'] = $this->requestId; + } + if (null !== $this->listPartsResult) { + $res['ListPartsResult'] = null !== $this->listPartsResult ? $this->listPartsResult->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return ListPartsResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['x-oss-request-id'])) { + $model->requestId = $map['x-oss-request-id']; + } + if (isset($map['ListPartsResult'])) { + $model->listPartsResult = listPartsResult::fromMap($map['ListPartsResult']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/ListPartsResponse/listPartsResult.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/ListPartsResponse/listPartsResult.php new file mode 100644 index 00000000..a5c626d2 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/ListPartsResponse/listPartsResult.php @@ -0,0 +1,174 @@ + 'Bucket', + 'encodingType' => 'EncodingType', + 'key' => 'Key', + 'uploadId' => 'UploadId', + 'partNumberMarker' => 'PartNumberMarker', + 'nextPartNumberMarker' => 'NextPartNumberMarker', + 'maxParts' => 'MaxParts', + 'isTruncated' => 'IsTruncated', + 'part' => 'Part', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->bucket) { + $res['Bucket'] = $this->bucket; + } + if (null !== $this->encodingType) { + $res['EncodingType'] = $this->encodingType; + } + if (null !== $this->key) { + $res['Key'] = $this->key; + } + if (null !== $this->uploadId) { + $res['UploadId'] = $this->uploadId; + } + if (null !== $this->partNumberMarker) { + $res['PartNumberMarker'] = $this->partNumberMarker; + } + if (null !== $this->nextPartNumberMarker) { + $res['NextPartNumberMarker'] = $this->nextPartNumberMarker; + } + if (null !== $this->maxParts) { + $res['MaxParts'] = $this->maxParts; + } + if (null !== $this->isTruncated) { + $res['IsTruncated'] = $this->isTruncated; + } + if (null !== $this->part) { + $res['Part'] = []; + if (null !== $this->part && \is_array($this->part)) { + $n = 0; + foreach ($this->part as $item) { + $res['Part'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return listPartsResult + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Bucket'])) { + $model->bucket = $map['Bucket']; + } + if (isset($map['EncodingType'])) { + $model->encodingType = $map['EncodingType']; + } + if (isset($map['Key'])) { + $model->key = $map['Key']; + } + if (isset($map['UploadId'])) { + $model->uploadId = $map['UploadId']; + } + if (isset($map['PartNumberMarker'])) { + $model->partNumberMarker = $map['PartNumberMarker']; + } + if (isset($map['NextPartNumberMarker'])) { + $model->nextPartNumberMarker = $map['NextPartNumberMarker']; + } + if (isset($map['MaxParts'])) { + $model->maxParts = $map['MaxParts']; + } + if (isset($map['IsTruncated'])) { + $model->isTruncated = $map['IsTruncated']; + } + if (isset($map['Part'])) { + if (!empty($map['Part'])) { + $model->part = []; + $n = 0; + foreach ($map['Part'] as $item) { + $model->part[$n++] = null !== $item ? part::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/ListPartsResponse/listPartsResult/part.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/ListPartsResponse/listPartsResult/part.php new file mode 100644 index 00000000..c5994905 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/ListPartsResponse/listPartsResult/part.php @@ -0,0 +1,91 @@ + 'PartNumber', + 'lastModified' => 'LastModified', + 'eTag' => 'ETag', + 'size' => 'Size', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->partNumber) { + $res['PartNumber'] = $this->partNumber; + } + if (null !== $this->lastModified) { + $res['LastModified'] = $this->lastModified; + } + if (null !== $this->eTag) { + $res['ETag'] = $this->eTag; + } + if (null !== $this->size) { + $res['Size'] = $this->size; + } + + return $res; + } + + /** + * @param array $map + * + * @return part + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['PartNumber'])) { + $model->partNumber = $map['PartNumber']; + } + if (isset($map['LastModified'])) { + $model->lastModified = $map['LastModified']; + } + if (isset($map['ETag'])) { + $model->eTag = $map['ETag']; + } + if (isset($map['Size'])) { + $model->size = $map['Size']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/OptionObjectRequest.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/OptionObjectRequest.php new file mode 100644 index 00000000..ec5e5ad5 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/OptionObjectRequest.php @@ -0,0 +1,82 @@ + 'BucketName', + 'objectName' => 'ObjectName', + 'header' => 'Header', + ]; + + public function validate() + { + Model::validateRequired('bucketName', $this->bucketName, true); + Model::validateRequired('objectName', $this->objectName, true); + Model::validateRequired('header', $this->header, true); + Model::validatePattern('bucketName', $this->bucketName, '[a-zA-Z0-9-_]+'); + } + + public function toMap() + { + $res = []; + if (null !== $this->bucketName) { + $res['BucketName'] = $this->bucketName; + } + if (null !== $this->objectName) { + $res['ObjectName'] = $this->objectName; + } + if (null !== $this->header) { + $res['Header'] = null !== $this->header ? $this->header->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return OptionObjectRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['BucketName'])) { + $model->bucketName = $map['BucketName']; + } + if (isset($map['ObjectName'])) { + $model->objectName = $map['ObjectName']; + } + if (isset($map['Header'])) { + $model->header = header::fromMap($map['Header']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/OptionObjectRequest/header.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/OptionObjectRequest/header.php new file mode 100644 index 00000000..885b7f6d --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/OptionObjectRequest/header.php @@ -0,0 +1,80 @@ + 'Origin', + 'accessControlRequestMethod' => 'Access-Control-Request-Method', + 'accessControlRequestHeaders' => 'Access-Control-Request-Headers', + ]; + + public function validate() + { + Model::validateRequired('origin', $this->origin, true); + Model::validateRequired('accessControlRequestMethod', $this->accessControlRequestMethod, true); + Model::validateRequired('accessControlRequestHeaders', $this->accessControlRequestHeaders, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->origin) { + $res['Origin'] = $this->origin; + } + if (null !== $this->accessControlRequestMethod) { + $res['Access-Control-Request-Method'] = $this->accessControlRequestMethod; + } + if (null !== $this->accessControlRequestHeaders) { + $res['Access-Control-Request-Headers'] = $this->accessControlRequestHeaders; + } + + return $res; + } + + /** + * @param array $map + * + * @return header + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Origin'])) { + $model->origin = $map['Origin']; + } + if (isset($map['Access-Control-Request-Method'])) { + $model->accessControlRequestMethod = $map['Access-Control-Request-Method']; + } + if (isset($map['Access-Control-Request-Headers'])) { + $model->accessControlRequestHeaders = $map['Access-Control-Request-Headers']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/OptionObjectResponse.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/OptionObjectResponse.php new file mode 100644 index 00000000..aa30fb47 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/OptionObjectResponse.php @@ -0,0 +1,125 @@ + 'x-oss-request-id', + 'accessControlAllowOrigin' => 'access-control-allow-origin', + 'accessControlAllowMethods' => 'access-control-allow-methods', + 'accessControlAllowHeaders' => 'access-control-allow-headers', + 'accessControlExposeHeaders' => 'access-control-expose-headers', + 'accessControlMaxAge' => 'access-control-max-age', + ]; + + public function validate() + { + Model::validateRequired('requestId', $this->requestId, true); + Model::validateRequired('accessControlAllowOrigin', $this->accessControlAllowOrigin, true); + Model::validateRequired('accessControlAllowMethods', $this->accessControlAllowMethods, true); + Model::validateRequired('accessControlAllowHeaders', $this->accessControlAllowHeaders, true); + Model::validateRequired('accessControlExposeHeaders', $this->accessControlExposeHeaders, true); + Model::validateRequired('accessControlMaxAge', $this->accessControlMaxAge, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['x-oss-request-id'] = $this->requestId; + } + if (null !== $this->accessControlAllowOrigin) { + $res['access-control-allow-origin'] = $this->accessControlAllowOrigin; + } + if (null !== $this->accessControlAllowMethods) { + $res['access-control-allow-methods'] = $this->accessControlAllowMethods; + } + if (null !== $this->accessControlAllowHeaders) { + $res['access-control-allow-headers'] = $this->accessControlAllowHeaders; + } + if (null !== $this->accessControlExposeHeaders) { + $res['access-control-expose-headers'] = $this->accessControlExposeHeaders; + } + if (null !== $this->accessControlMaxAge) { + $res['access-control-max-age'] = $this->accessControlMaxAge; + } + + return $res; + } + + /** + * @param array $map + * + * @return OptionObjectResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['x-oss-request-id'])) { + $model->requestId = $map['x-oss-request-id']; + } + if (isset($map['access-control-allow-origin'])) { + $model->accessControlAllowOrigin = $map['access-control-allow-origin']; + } + if (isset($map['access-control-allow-methods'])) { + $model->accessControlAllowMethods = $map['access-control-allow-methods']; + } + if (isset($map['access-control-allow-headers'])) { + $model->accessControlAllowHeaders = $map['access-control-allow-headers']; + } + if (isset($map['access-control-expose-headers'])) { + $model->accessControlExposeHeaders = $map['access-control-expose-headers']; + } + if (isset($map['access-control-max-age'])) { + $model->accessControlMaxAge = $map['access-control-max-age']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/PostObjectRequest.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PostObjectRequest.php new file mode 100644 index 00000000..cd600409 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PostObjectRequest.php @@ -0,0 +1,67 @@ + 'BucketName', + 'header' => 'header', + ]; + + public function validate() + { + Model::validateRequired('bucketName', $this->bucketName, true); + Model::validateRequired('header', $this->header, true); + Model::validatePattern('bucketName', $this->bucketName, '[a-zA-Z0-9-_]+'); + } + + public function toMap() + { + $res = []; + if (null !== $this->bucketName) { + $res['BucketName'] = $this->bucketName; + } + if (null !== $this->header) { + $res['header'] = null !== $this->header ? $this->header->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return PostObjectRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['BucketName'])) { + $model->bucketName = $map['BucketName']; + } + if (isset($map['header'])) { + $model->header = header::fromMap($map['header']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/PostObjectRequest/header.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PostObjectRequest/header.php new file mode 100644 index 00000000..e14d56cd --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PostObjectRequest/header.php @@ -0,0 +1,136 @@ + 'OSSAccessKeyId', + 'policy' => 'policy', + 'signature' => 'Signature', + 'successActionStatus' => 'success_action_status', + 'key' => 'key', + 'userMeta' => 'UserMeta', + ]; + + public function validate() + { + Model::validateRequired('accessKeyId', $this->accessKeyId, true); + Model::validateRequired('policy', $this->policy, true); + Model::validateRequired('signature', $this->signature, true); + Model::validateRequired('file', $this->file, true); + Model::validateRequired('key', $this->key, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->accessKeyId) { + $res['OSSAccessKeyId'] = $this->accessKeyId; + } + if (null !== $this->policy) { + $res['policy'] = $this->policy; + } + if (null !== $this->signature) { + $res['Signature'] = $this->signature; + } + if (null !== $this->successActionStatus) { + $res['success_action_status'] = $this->successActionStatus; + } + if (null !== $this->file) { + $res['file'] = null !== $this->file ? $this->file->toMap() : null; + } + if (null !== $this->key) { + $res['key'] = $this->key; + } + if (null !== $this->userMeta) { + $res['UserMeta'] = $this->userMeta; + } + + return $res; + } + + /** + * @param array $map + * + * @return header + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['OSSAccessKeyId'])) { + $model->accessKeyId = $map['OSSAccessKeyId']; + } + if (isset($map['policy'])) { + $model->policy = $map['policy']; + } + if (isset($map['Signature'])) { + $model->signature = $map['Signature']; + } + if (isset($map['success_action_status'])) { + $model->successActionStatus = $map['success_action_status']; + } + if (isset($map['file'])) { + $model->file = FileField::fromMap($map['file']); + } + if (isset($map['key'])) { + $model->key = $map['key']; + } + if (isset($map['UserMeta'])) { + $model->userMeta = $map['UserMeta']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/PostObjectResponse.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PostObjectResponse.php new file mode 100644 index 00000000..8f6a2d33 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PostObjectResponse.php @@ -0,0 +1,51 @@ + 'PostResponse', + ]; + + public function validate() + { + Model::validateRequired('postResponse', $this->postResponse, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->postResponse) { + $res['PostResponse'] = null !== $this->postResponse ? $this->postResponse->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return PostObjectResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['PostResponse'])) { + $model->postResponse = postResponse::fromMap($map['PostResponse']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/PostObjectResponse/postResponse.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PostObjectResponse/postResponse.php new file mode 100644 index 00000000..be4c5da0 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PostObjectResponse/postResponse.php @@ -0,0 +1,80 @@ + 'Bucket', + 'eTag' => 'ETag', + 'location' => 'Location', + ]; + + public function validate() + { + Model::validateRequired('bucket', $this->bucket, true); + Model::validateRequired('eTag', $this->eTag, true); + Model::validateRequired('location', $this->location, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->bucket) { + $res['Bucket'] = $this->bucket; + } + if (null !== $this->eTag) { + $res['ETag'] = $this->eTag; + } + if (null !== $this->location) { + $res['Location'] = $this->location; + } + + return $res; + } + + /** + * @param array $map + * + * @return postResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Bucket'])) { + $model->bucket = $map['Bucket']; + } + if (isset($map['ETag'])) { + $model->eTag = $map['ETag']; + } + if (isset($map['Location'])) { + $model->location = $map['Location']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/PostVodPlaylistRequest.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PostVodPlaylistRequest.php new file mode 100644 index 00000000..a57e5e24 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PostVodPlaylistRequest.php @@ -0,0 +1,97 @@ + 'BucketName', + 'channelName' => 'ChannelName', + 'playlistName' => 'PlaylistName', + 'filter' => 'Filter', + ]; + + public function validate() + { + Model::validateRequired('bucketName', $this->bucketName, true); + Model::validateRequired('channelName', $this->channelName, true); + Model::validateRequired('playlistName', $this->playlistName, true); + Model::validateRequired('filter', $this->filter, true); + Model::validatePattern('bucketName', $this->bucketName, '[a-zA-Z0-9-_]+'); + } + + public function toMap() + { + $res = []; + if (null !== $this->bucketName) { + $res['BucketName'] = $this->bucketName; + } + if (null !== $this->channelName) { + $res['ChannelName'] = $this->channelName; + } + if (null !== $this->playlistName) { + $res['PlaylistName'] = $this->playlistName; + } + if (null !== $this->filter) { + $res['Filter'] = null !== $this->filter ? $this->filter->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return PostVodPlaylistRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['BucketName'])) { + $model->bucketName = $map['BucketName']; + } + if (isset($map['ChannelName'])) { + $model->channelName = $map['ChannelName']; + } + if (isset($map['PlaylistName'])) { + $model->playlistName = $map['PlaylistName']; + } + if (isset($map['Filter'])) { + $model->filter = filter::fromMap($map['Filter']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/PostVodPlaylistRequest/filter.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PostVodPlaylistRequest/filter.php new file mode 100644 index 00000000..eb121096 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PostVodPlaylistRequest/filter.php @@ -0,0 +1,65 @@ + 'endTime', + 'startTime' => 'startTime', + ]; + + public function validate() + { + Model::validateRequired('endTime', $this->endTime, true); + Model::validateRequired('startTime', $this->startTime, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->endTime) { + $res['endTime'] = $this->endTime; + } + if (null !== $this->startTime) { + $res['startTime'] = $this->startTime; + } + + return $res; + } + + /** + * @param array $map + * + * @return filter + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['endTime'])) { + $model->endTime = $map['endTime']; + } + if (isset($map['startTime'])) { + $model->startTime = $map['startTime']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/PostVodPlaylistResponse.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PostVodPlaylistResponse.php new file mode 100644 index 00000000..7879b499 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PostVodPlaylistResponse.php @@ -0,0 +1,50 @@ + 'x-oss-request-id', + ]; + + public function validate() + { + Model::validateRequired('requestId', $this->requestId, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['x-oss-request-id'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return PostVodPlaylistResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['x-oss-request-id'])) { + $model->requestId = $map['x-oss-request-id']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketAclRequest.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketAclRequest.php new file mode 100644 index 00000000..05871b89 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketAclRequest.php @@ -0,0 +1,67 @@ + 'BucketName', + 'header' => 'Header', + ]; + + public function validate() + { + Model::validateRequired('bucketName', $this->bucketName, true); + Model::validateRequired('header', $this->header, true); + Model::validatePattern('bucketName', $this->bucketName, '[a-zA-Z0-9-_]+'); + } + + public function toMap() + { + $res = []; + if (null !== $this->bucketName) { + $res['BucketName'] = $this->bucketName; + } + if (null !== $this->header) { + $res['Header'] = null !== $this->header ? $this->header->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return PutBucketAclRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['BucketName'])) { + $model->bucketName = $map['BucketName']; + } + if (isset($map['Header'])) { + $model->header = header::fromMap($map['Header']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketAclRequest/header.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketAclRequest/header.php new file mode 100644 index 00000000..f7ead95b --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketAclRequest/header.php @@ -0,0 +1,50 @@ + 'x-oss-acl', + ]; + + public function validate() + { + Model::validateRequired('acl', $this->acl, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->acl) { + $res['x-oss-acl'] = $this->acl; + } + + return $res; + } + + /** + * @param array $map + * + * @return header + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['x-oss-acl'])) { + $model->acl = $map['x-oss-acl']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketAclResponse.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketAclResponse.php new file mode 100644 index 00000000..ac93348d --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketAclResponse.php @@ -0,0 +1,50 @@ + 'x-oss-request-id', + ]; + + public function validate() + { + Model::validateRequired('requestId', $this->requestId, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['x-oss-request-id'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return PutBucketAclResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['x-oss-request-id'])) { + $model->requestId = $map['x-oss-request-id']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketCORSRequest.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketCORSRequest.php new file mode 100644 index 00000000..8d0130f2 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketCORSRequest.php @@ -0,0 +1,66 @@ + 'BucketName', + 'body' => 'Body', + ]; + + public function validate() + { + Model::validateRequired('bucketName', $this->bucketName, true); + Model::validatePattern('bucketName', $this->bucketName, '[a-zA-Z0-9-_]+'); + } + + public function toMap() + { + $res = []; + if (null !== $this->bucketName) { + $res['BucketName'] = $this->bucketName; + } + if (null !== $this->body) { + $res['Body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return PutBucketCORSRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['BucketName'])) { + $model->bucketName = $map['BucketName']; + } + if (isset($map['Body'])) { + $model->body = body::fromMap($map['Body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketCORSRequest/body.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketCORSRequest/body.php new file mode 100644 index 00000000..dd5120cb --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketCORSRequest/body.php @@ -0,0 +1,51 @@ + 'CORSConfiguration', + ]; + + public function validate() + { + Model::validateRequired('cORSConfiguration', $this->cORSConfiguration, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->cORSConfiguration) { + $res['CORSConfiguration'] = null !== $this->cORSConfiguration ? $this->cORSConfiguration->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return body + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CORSConfiguration'])) { + $model->cORSConfiguration = cORSConfiguration::fromMap($map['CORSConfiguration']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketCORSRequest/body/cORSConfiguration.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketCORSRequest/body/cORSConfiguration.php new file mode 100644 index 00000000..f3cfd47e --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketCORSRequest/body/cORSConfiguration.php @@ -0,0 +1,62 @@ + 'CORSRule', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->cORSRule) { + $res['CORSRule'] = []; + if (null !== $this->cORSRule && \is_array($this->cORSRule)) { + $n = 0; + foreach ($this->cORSRule as $item) { + $res['CORSRule'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return cORSConfiguration + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CORSRule'])) { + if (!empty($map['CORSRule'])) { + $model->cORSRule = []; + $n = 0; + foreach ($map['CORSRule'] as $item) { + $model->cORSRule[$n++] = null !== $item ? cORSRule::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketCORSRequest/body/cORSConfiguration/cORSRule.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketCORSRequest/body/cORSConfiguration/cORSRule.php new file mode 100644 index 00000000..89936ebb --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketCORSRequest/body/cORSConfiguration/cORSRule.php @@ -0,0 +1,113 @@ + 'AllowedOrigin', + 'allowedMethod' => 'AllowedMethod', + 'allowedHeader' => 'AllowedHeader', + 'exposeHeader' => 'ExposeHeader', + 'maxAgeSeconds' => 'MaxAgeSeconds', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->allowedOrigin) { + $res['AllowedOrigin'] = $this->allowedOrigin; + } + if (null !== $this->allowedMethod) { + $res['AllowedMethod'] = $this->allowedMethod; + } + if (null !== $this->allowedHeader) { + $res['AllowedHeader'] = $this->allowedHeader; + } + if (null !== $this->exposeHeader) { + $res['ExposeHeader'] = $this->exposeHeader; + } + if (null !== $this->maxAgeSeconds) { + $res['MaxAgeSeconds'] = $this->maxAgeSeconds; + } + + return $res; + } + + /** + * @param array $map + * + * @return cORSRule + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AllowedOrigin'])) { + if (!empty($map['AllowedOrigin'])) { + $model->allowedOrigin = $map['AllowedOrigin']; + } + } + if (isset($map['AllowedMethod'])) { + if (!empty($map['AllowedMethod'])) { + $model->allowedMethod = $map['AllowedMethod']; + } + } + if (isset($map['AllowedHeader'])) { + if (!empty($map['AllowedHeader'])) { + $model->allowedHeader = $map['AllowedHeader']; + } + } + if (isset($map['ExposeHeader'])) { + if (!empty($map['ExposeHeader'])) { + $model->exposeHeader = $map['ExposeHeader']; + } + } + if (isset($map['MaxAgeSeconds'])) { + $model->maxAgeSeconds = $map['MaxAgeSeconds']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketCORSResponse.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketCORSResponse.php new file mode 100644 index 00000000..1674666f --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketCORSResponse.php @@ -0,0 +1,50 @@ + 'x-oss-request-id', + ]; + + public function validate() + { + Model::validateRequired('requestId', $this->requestId, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['x-oss-request-id'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return PutBucketCORSResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['x-oss-request-id'])) { + $model->requestId = $map['x-oss-request-id']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketEncryptionRequest.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketEncryptionRequest.php new file mode 100644 index 00000000..bc0c3056 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketEncryptionRequest.php @@ -0,0 +1,66 @@ + 'BucketName', + 'body' => 'Body', + ]; + + public function validate() + { + Model::validateRequired('bucketName', $this->bucketName, true); + Model::validatePattern('bucketName', $this->bucketName, '[a-zA-Z0-9-_]+'); + } + + public function toMap() + { + $res = []; + if (null !== $this->bucketName) { + $res['BucketName'] = $this->bucketName; + } + if (null !== $this->body) { + $res['Body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return PutBucketEncryptionRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['BucketName'])) { + $model->bucketName = $map['BucketName']; + } + if (isset($map['Body'])) { + $model->body = body::fromMap($map['Body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketEncryptionRequest/body.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketEncryptionRequest/body.php new file mode 100644 index 00000000..869accf8 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketEncryptionRequest/body.php @@ -0,0 +1,51 @@ + 'ServerSideEncryptionRule', + ]; + + public function validate() + { + Model::validateRequired('serverSideEncryptionRule', $this->serverSideEncryptionRule, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->serverSideEncryptionRule) { + $res['ServerSideEncryptionRule'] = null !== $this->serverSideEncryptionRule ? $this->serverSideEncryptionRule->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return body + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['ServerSideEncryptionRule'])) { + $model->serverSideEncryptionRule = serverSideEncryptionRule::fromMap($map['ServerSideEncryptionRule']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketEncryptionRequest/body/serverSideEncryptionRule.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketEncryptionRequest/body/serverSideEncryptionRule.php new file mode 100644 index 00000000..5e94b269 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketEncryptionRequest/body/serverSideEncryptionRule.php @@ -0,0 +1,50 @@ + 'ApplyServerSideEncryptionByDefault', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->applyServerSideEncryptionByDefault) { + $res['ApplyServerSideEncryptionByDefault'] = null !== $this->applyServerSideEncryptionByDefault ? $this->applyServerSideEncryptionByDefault->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return serverSideEncryptionRule + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['ApplyServerSideEncryptionByDefault'])) { + $model->applyServerSideEncryptionByDefault = applyServerSideEncryptionByDefault::fromMap($map['ApplyServerSideEncryptionByDefault']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketEncryptionRequest/body/serverSideEncryptionRule/applyServerSideEncryptionByDefault.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketEncryptionRequest/body/serverSideEncryptionRule/applyServerSideEncryptionByDefault.php new file mode 100644 index 00000000..8efce108 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketEncryptionRequest/body/serverSideEncryptionRule/applyServerSideEncryptionByDefault.php @@ -0,0 +1,63 @@ + 'SSEAlgorithm', + 'kMSMasterKeyID' => 'KMSMasterKeyID', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->sSEAlgorithm) { + $res['SSEAlgorithm'] = $this->sSEAlgorithm; + } + if (null !== $this->kMSMasterKeyID) { + $res['KMSMasterKeyID'] = $this->kMSMasterKeyID; + } + + return $res; + } + + /** + * @param array $map + * + * @return applyServerSideEncryptionByDefault + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['SSEAlgorithm'])) { + $model->sSEAlgorithm = $map['SSEAlgorithm']; + } + if (isset($map['KMSMasterKeyID'])) { + $model->kMSMasterKeyID = $map['KMSMasterKeyID']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketEncryptionResponse.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketEncryptionResponse.php new file mode 100644 index 00000000..c8b828dd --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketEncryptionResponse.php @@ -0,0 +1,50 @@ + 'x-oss-request-id', + ]; + + public function validate() + { + Model::validateRequired('requestId', $this->requestId, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['x-oss-request-id'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return PutBucketEncryptionResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['x-oss-request-id'])) { + $model->requestId = $map['x-oss-request-id']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketLifecycleRequest.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketLifecycleRequest.php new file mode 100644 index 00000000..6a06001a --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketLifecycleRequest.php @@ -0,0 +1,66 @@ + 'BucketName', + 'body' => 'Body', + ]; + + public function validate() + { + Model::validateRequired('bucketName', $this->bucketName, true); + Model::validatePattern('bucketName', $this->bucketName, '[a-zA-Z0-9-_]+'); + } + + public function toMap() + { + $res = []; + if (null !== $this->bucketName) { + $res['BucketName'] = $this->bucketName; + } + if (null !== $this->body) { + $res['Body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return PutBucketLifecycleRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['BucketName'])) { + $model->bucketName = $map['BucketName']; + } + if (isset($map['Body'])) { + $model->body = body::fromMap($map['Body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketLifecycleRequest/body.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketLifecycleRequest/body.php new file mode 100644 index 00000000..4051a7ac --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketLifecycleRequest/body.php @@ -0,0 +1,51 @@ + 'LifecycleConfiguration', + ]; + + public function validate() + { + Model::validateRequired('lifecycleConfiguration', $this->lifecycleConfiguration, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->lifecycleConfiguration) { + $res['LifecycleConfiguration'] = null !== $this->lifecycleConfiguration ? $this->lifecycleConfiguration->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return body + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['LifecycleConfiguration'])) { + $model->lifecycleConfiguration = lifecycleConfiguration::fromMap($map['LifecycleConfiguration']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketLifecycleRequest/body/lifecycleConfiguration.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketLifecycleRequest/body/lifecycleConfiguration.php new file mode 100644 index 00000000..cfbe7768 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketLifecycleRequest/body/lifecycleConfiguration.php @@ -0,0 +1,62 @@ + 'Rule', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->rule) { + $res['Rule'] = []; + if (null !== $this->rule && \is_array($this->rule)) { + $n = 0; + foreach ($this->rule as $item) { + $res['Rule'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return lifecycleConfiguration + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Rule'])) { + if (!empty($map['Rule'])) { + $model->rule = []; + $n = 0; + foreach ($map['Rule'] as $item) { + $model->rule[$n++] = null !== $item ? rule::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketLifecycleRequest/body/lifecycleConfiguration/rule.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketLifecycleRequest/body/lifecycleConfiguration/rule.php new file mode 100644 index 00000000..4489cfb1 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketLifecycleRequest/body/lifecycleConfiguration/rule.php @@ -0,0 +1,137 @@ + 'Expiration', + 'transition' => 'Transition', + 'abortMultipartUpload' => 'AbortMultipartUpload', + 'tag' => 'Tag', + 'iD' => 'ID', + 'prefix' => 'Prefix', + 'status' => 'Status', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->expiration) { + $res['Expiration'] = null !== $this->expiration ? $this->expiration->toMap() : null; + } + if (null !== $this->transition) { + $res['Transition'] = null !== $this->transition ? $this->transition->toMap() : null; + } + if (null !== $this->abortMultipartUpload) { + $res['AbortMultipartUpload'] = null !== $this->abortMultipartUpload ? $this->abortMultipartUpload->toMap() : null; + } + if (null !== $this->tag) { + $res['Tag'] = null !== $this->tag ? $this->tag->toMap() : null; + } + if (null !== $this->iD) { + $res['ID'] = $this->iD; + } + if (null !== $this->prefix) { + $res['Prefix'] = $this->prefix; + } + if (null !== $this->status) { + $res['Status'] = $this->status; + } + + return $res; + } + + /** + * @param array $map + * + * @return rule + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Expiration'])) { + $model->expiration = expiration::fromMap($map['Expiration']); + } + if (isset($map['Transition'])) { + $model->transition = transition::fromMap($map['Transition']); + } + if (isset($map['AbortMultipartUpload'])) { + $model->abortMultipartUpload = abortMultipartUpload::fromMap($map['AbortMultipartUpload']); + } + if (isset($map['Tag'])) { + $model->tag = tag::fromMap($map['Tag']); + } + if (isset($map['ID'])) { + $model->iD = $map['ID']; + } + if (isset($map['Prefix'])) { + $model->prefix = $map['Prefix']; + } + if (isset($map['Status'])) { + $model->status = $map['Status']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketLifecycleRequest/body/lifecycleConfiguration/rule/abortMultipartUpload.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketLifecycleRequest/body/lifecycleConfiguration/rule/abortMultipartUpload.php new file mode 100644 index 00000000..c12afbf0 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketLifecycleRequest/body/lifecycleConfiguration/rule/abortMultipartUpload.php @@ -0,0 +1,63 @@ + 'Days', + 'createdBeforeDate' => 'CreatedBeforeDate', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->days) { + $res['Days'] = $this->days; + } + if (null !== $this->createdBeforeDate) { + $res['CreatedBeforeDate'] = $this->createdBeforeDate; + } + + return $res; + } + + /** + * @param array $map + * + * @return abortMultipartUpload + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Days'])) { + $model->days = $map['Days']; + } + if (isset($map['CreatedBeforeDate'])) { + $model->createdBeforeDate = $map['CreatedBeforeDate']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketLifecycleRequest/body/lifecycleConfiguration/rule/expiration.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketLifecycleRequest/body/lifecycleConfiguration/rule/expiration.php new file mode 100644 index 00000000..82367dd9 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketLifecycleRequest/body/lifecycleConfiguration/rule/expiration.php @@ -0,0 +1,63 @@ + 'Days', + 'createdBeforeDate' => 'CreatedBeforeDate', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->days) { + $res['Days'] = $this->days; + } + if (null !== $this->createdBeforeDate) { + $res['CreatedBeforeDate'] = $this->createdBeforeDate; + } + + return $res; + } + + /** + * @param array $map + * + * @return expiration + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Days'])) { + $model->days = $map['Days']; + } + if (isset($map['CreatedBeforeDate'])) { + $model->createdBeforeDate = $map['CreatedBeforeDate']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketLifecycleRequest/body/lifecycleConfiguration/rule/tag.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketLifecycleRequest/body/lifecycleConfiguration/rule/tag.php new file mode 100644 index 00000000..5e687998 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketLifecycleRequest/body/lifecycleConfiguration/rule/tag.php @@ -0,0 +1,63 @@ + 'Key', + 'value' => 'Value', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->key) { + $res['Key'] = $this->key; + } + if (null !== $this->value) { + $res['Value'] = $this->value; + } + + return $res; + } + + /** + * @param array $map + * + * @return tag + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Key'])) { + $model->key = $map['Key']; + } + if (isset($map['Value'])) { + $model->value = $map['Value']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketLifecycleRequest/body/lifecycleConfiguration/rule/transition.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketLifecycleRequest/body/lifecycleConfiguration/rule/transition.php new file mode 100644 index 00000000..50fac63a --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketLifecycleRequest/body/lifecycleConfiguration/rule/transition.php @@ -0,0 +1,63 @@ + 'Days', + 'storageClass' => 'StorageClass', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->days) { + $res['Days'] = $this->days; + } + if (null !== $this->storageClass) { + $res['StorageClass'] = $this->storageClass; + } + + return $res; + } + + /** + * @param array $map + * + * @return transition + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Days'])) { + $model->days = $map['Days']; + } + if (isset($map['StorageClass'])) { + $model->storageClass = $map['StorageClass']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketLifecycleResponse.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketLifecycleResponse.php new file mode 100644 index 00000000..b3e0f5c4 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketLifecycleResponse.php @@ -0,0 +1,50 @@ + 'x-oss-request-id', + ]; + + public function validate() + { + Model::validateRequired('requestId', $this->requestId, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['x-oss-request-id'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return PutBucketLifecycleResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['x-oss-request-id'])) { + $model->requestId = $map['x-oss-request-id']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketLoggingRequest.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketLoggingRequest.php new file mode 100644 index 00000000..8c07567f --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketLoggingRequest.php @@ -0,0 +1,66 @@ + 'BucketName', + 'body' => 'Body', + ]; + + public function validate() + { + Model::validateRequired('bucketName', $this->bucketName, true); + Model::validatePattern('bucketName', $this->bucketName, '[a-zA-Z0-9-_]+'); + } + + public function toMap() + { + $res = []; + if (null !== $this->bucketName) { + $res['BucketName'] = $this->bucketName; + } + if (null !== $this->body) { + $res['Body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return PutBucketLoggingRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['BucketName'])) { + $model->bucketName = $map['BucketName']; + } + if (isset($map['Body'])) { + $model->body = body::fromMap($map['Body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketLoggingRequest/body.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketLoggingRequest/body.php new file mode 100644 index 00000000..52860160 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketLoggingRequest/body.php @@ -0,0 +1,51 @@ + 'BucketLoggingStatus', + ]; + + public function validate() + { + Model::validateRequired('bucketLoggingStatus', $this->bucketLoggingStatus, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->bucketLoggingStatus) { + $res['BucketLoggingStatus'] = null !== $this->bucketLoggingStatus ? $this->bucketLoggingStatus->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return body + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['BucketLoggingStatus'])) { + $model->bucketLoggingStatus = bucketLoggingStatus::fromMap($map['BucketLoggingStatus']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketLoggingRequest/body/bucketLoggingStatus.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketLoggingRequest/body/bucketLoggingStatus.php new file mode 100644 index 00000000..24d44048 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketLoggingRequest/body/bucketLoggingStatus.php @@ -0,0 +1,50 @@ + 'LoggingEnabled', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->loggingEnabled) { + $res['LoggingEnabled'] = null !== $this->loggingEnabled ? $this->loggingEnabled->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return bucketLoggingStatus + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['LoggingEnabled'])) { + $model->loggingEnabled = loggingEnabled::fromMap($map['LoggingEnabled']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketLoggingRequest/body/bucketLoggingStatus/loggingEnabled.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketLoggingRequest/body/bucketLoggingStatus/loggingEnabled.php new file mode 100644 index 00000000..25668b6e --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketLoggingRequest/body/bucketLoggingStatus/loggingEnabled.php @@ -0,0 +1,63 @@ + 'TargetBucket', + 'targetPrefix' => 'TargetPrefix', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->targetBucket) { + $res['TargetBucket'] = $this->targetBucket; + } + if (null !== $this->targetPrefix) { + $res['TargetPrefix'] = $this->targetPrefix; + } + + return $res; + } + + /** + * @param array $map + * + * @return loggingEnabled + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['TargetBucket'])) { + $model->targetBucket = $map['TargetBucket']; + } + if (isset($map['TargetPrefix'])) { + $model->targetPrefix = $map['TargetPrefix']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketLoggingResponse.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketLoggingResponse.php new file mode 100644 index 00000000..1346bb99 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketLoggingResponse.php @@ -0,0 +1,50 @@ + 'x-oss-request-id', + ]; + + public function validate() + { + Model::validateRequired('requestId', $this->requestId, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['x-oss-request-id'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return PutBucketLoggingResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['x-oss-request-id'])) { + $model->requestId = $map['x-oss-request-id']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketRefererRequest.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketRefererRequest.php new file mode 100644 index 00000000..4db9e656 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketRefererRequest.php @@ -0,0 +1,66 @@ + 'BucketName', + 'body' => 'Body', + ]; + + public function validate() + { + Model::validateRequired('bucketName', $this->bucketName, true); + Model::validatePattern('bucketName', $this->bucketName, '[a-zA-Z0-9-_]+'); + } + + public function toMap() + { + $res = []; + if (null !== $this->bucketName) { + $res['BucketName'] = $this->bucketName; + } + if (null !== $this->body) { + $res['Body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return PutBucketRefererRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['BucketName'])) { + $model->bucketName = $map['BucketName']; + } + if (isset($map['Body'])) { + $model->body = body::fromMap($map['Body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketRefererRequest/body.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketRefererRequest/body.php new file mode 100644 index 00000000..ce9da902 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketRefererRequest/body.php @@ -0,0 +1,51 @@ + 'RefererConfiguration', + ]; + + public function validate() + { + Model::validateRequired('refererConfiguration', $this->refererConfiguration, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->refererConfiguration) { + $res['RefererConfiguration'] = null !== $this->refererConfiguration ? $this->refererConfiguration->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return body + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RefererConfiguration'])) { + $model->refererConfiguration = refererConfiguration::fromMap($map['RefererConfiguration']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketRefererRequest/body/refererConfiguration.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketRefererRequest/body/refererConfiguration.php new file mode 100644 index 00000000..83832e22 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketRefererRequest/body/refererConfiguration.php @@ -0,0 +1,64 @@ + 'RefererList', + 'allowEmptyReferer' => 'AllowEmptyReferer', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->refererList) { + $res['RefererList'] = null !== $this->refererList ? $this->refererList->toMap() : null; + } + if (null !== $this->allowEmptyReferer) { + $res['AllowEmptyReferer'] = $this->allowEmptyReferer; + } + + return $res; + } + + /** + * @param array $map + * + * @return refererConfiguration + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RefererList'])) { + $model->refererList = refererList::fromMap($map['RefererList']); + } + if (isset($map['AllowEmptyReferer'])) { + $model->allowEmptyReferer = $map['AllowEmptyReferer']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketRefererRequest/body/refererConfiguration/refererList.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketRefererRequest/body/refererConfiguration/refererList.php new file mode 100644 index 00000000..44082d02 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketRefererRequest/body/refererConfiguration/refererList.php @@ -0,0 +1,51 @@ + 'Referer', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->referer) { + $res['Referer'] = $this->referer; + } + + return $res; + } + + /** + * @param array $map + * + * @return refererList + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Referer'])) { + if (!empty($map['Referer'])) { + $model->referer = $map['Referer']; + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketRefererResponse.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketRefererResponse.php new file mode 100644 index 00000000..b5af5ae5 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketRefererResponse.php @@ -0,0 +1,50 @@ + 'x-oss-request-id', + ]; + + public function validate() + { + Model::validateRequired('requestId', $this->requestId, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['x-oss-request-id'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return PutBucketRefererResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['x-oss-request-id'])) { + $model->requestId = $map['x-oss-request-id']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketRequest.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketRequest.php new file mode 100644 index 00000000..ab93e754 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketRequest.php @@ -0,0 +1,81 @@ + 'BucketName', + 'body' => 'Body', + 'header' => 'Header', + ]; + + public function validate() + { + Model::validateRequired('bucketName', $this->bucketName, true); + Model::validatePattern('bucketName', $this->bucketName, '[a-zA-Z0-9-_]+'); + } + + public function toMap() + { + $res = []; + if (null !== $this->bucketName) { + $res['BucketName'] = $this->bucketName; + } + if (null !== $this->body) { + $res['Body'] = null !== $this->body ? $this->body->toMap() : null; + } + if (null !== $this->header) { + $res['Header'] = null !== $this->header ? $this->header->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return PutBucketRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['BucketName'])) { + $model->bucketName = $map['BucketName']; + } + if (isset($map['Body'])) { + $model->body = body::fromMap($map['Body']); + } + if (isset($map['Header'])) { + $model->header = header::fromMap($map['Header']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketRequest/body.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketRequest/body.php new file mode 100644 index 00000000..e3854933 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketRequest/body.php @@ -0,0 +1,51 @@ + 'CreateBucketConfiguration', + ]; + + public function validate() + { + Model::validateRequired('createBucketConfiguration', $this->createBucketConfiguration, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->createBucketConfiguration) { + $res['CreateBucketConfiguration'] = null !== $this->createBucketConfiguration ? $this->createBucketConfiguration->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return body + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CreateBucketConfiguration'])) { + $model->createBucketConfiguration = createBucketConfiguration::fromMap($map['CreateBucketConfiguration']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketRequest/body/createBucketConfiguration.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketRequest/body/createBucketConfiguration.php new file mode 100644 index 00000000..577c6d39 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketRequest/body/createBucketConfiguration.php @@ -0,0 +1,63 @@ + 'StorageClass', + 'dataRedundancyType' => 'DataRedundancyType', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->storageClass) { + $res['StorageClass'] = $this->storageClass; + } + if (null !== $this->dataRedundancyType) { + $res['DataRedundancyType'] = $this->dataRedundancyType; + } + + return $res; + } + + /** + * @param array $map + * + * @return createBucketConfiguration + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['StorageClass'])) { + $model->storageClass = $map['StorageClass']; + } + if (isset($map['DataRedundancyType'])) { + $model->dataRedundancyType = $map['DataRedundancyType']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketRequest/header.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketRequest/header.php new file mode 100644 index 00000000..ed6bbb0c --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketRequest/header.php @@ -0,0 +1,49 @@ + 'x-oss-acl', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->acl) { + $res['x-oss-acl'] = $this->acl; + } + + return $res; + } + + /** + * @param array $map + * + * @return header + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['x-oss-acl'])) { + $model->acl = $map['x-oss-acl']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketRequestPaymentRequest.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketRequestPaymentRequest.php new file mode 100644 index 00000000..e9d10b9d --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketRequestPaymentRequest.php @@ -0,0 +1,66 @@ + 'BucketName', + 'body' => 'Body', + ]; + + public function validate() + { + Model::validateRequired('bucketName', $this->bucketName, true); + Model::validatePattern('bucketName', $this->bucketName, '[a-zA-Z0-9-_]+'); + } + + public function toMap() + { + $res = []; + if (null !== $this->bucketName) { + $res['BucketName'] = $this->bucketName; + } + if (null !== $this->body) { + $res['Body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return PutBucketRequestPaymentRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['BucketName'])) { + $model->bucketName = $map['BucketName']; + } + if (isset($map['Body'])) { + $model->body = body::fromMap($map['Body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketRequestPaymentRequest/body.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketRequestPaymentRequest/body.php new file mode 100644 index 00000000..10cc296a --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketRequestPaymentRequest/body.php @@ -0,0 +1,51 @@ + 'RequestPaymentConfiguration', + ]; + + public function validate() + { + Model::validateRequired('requestPaymentConfiguration', $this->requestPaymentConfiguration, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->requestPaymentConfiguration) { + $res['RequestPaymentConfiguration'] = null !== $this->requestPaymentConfiguration ? $this->requestPaymentConfiguration->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return body + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestPaymentConfiguration'])) { + $model->requestPaymentConfiguration = requestPaymentConfiguration::fromMap($map['RequestPaymentConfiguration']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketRequestPaymentRequest/body/requestPaymentConfiguration.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketRequestPaymentRequest/body/requestPaymentConfiguration.php new file mode 100644 index 00000000..2759946a --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketRequestPaymentRequest/body/requestPaymentConfiguration.php @@ -0,0 +1,49 @@ + 'Payer', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->payer) { + $res['Payer'] = $this->payer; + } + + return $res; + } + + /** + * @param array $map + * + * @return requestPaymentConfiguration + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Payer'])) { + $model->payer = $map['Payer']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketRequestPaymentResponse.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketRequestPaymentResponse.php new file mode 100644 index 00000000..c29669e8 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketRequestPaymentResponse.php @@ -0,0 +1,50 @@ + 'x-oss-request-id', + ]; + + public function validate() + { + Model::validateRequired('requestId', $this->requestId, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['x-oss-request-id'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return PutBucketRequestPaymentResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['x-oss-request-id'])) { + $model->requestId = $map['x-oss-request-id']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketResponse.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketResponse.php new file mode 100644 index 00000000..2c612cb2 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketResponse.php @@ -0,0 +1,50 @@ + 'x-oss-request-id', + ]; + + public function validate() + { + Model::validateRequired('requestId', $this->requestId, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['x-oss-request-id'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return PutBucketResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['x-oss-request-id'])) { + $model->requestId = $map['x-oss-request-id']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketTagsRequest.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketTagsRequest.php new file mode 100644 index 00000000..215d8942 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketTagsRequest.php @@ -0,0 +1,66 @@ + 'BucketName', + 'body' => 'Body', + ]; + + public function validate() + { + Model::validateRequired('bucketName', $this->bucketName, true); + Model::validatePattern('bucketName', $this->bucketName, '[a-zA-Z0-9-_]+'); + } + + public function toMap() + { + $res = []; + if (null !== $this->bucketName) { + $res['BucketName'] = $this->bucketName; + } + if (null !== $this->body) { + $res['Body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return PutBucketTagsRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['BucketName'])) { + $model->bucketName = $map['BucketName']; + } + if (isset($map['Body'])) { + $model->body = body::fromMap($map['Body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketTagsRequest/body.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketTagsRequest/body.php new file mode 100644 index 00000000..93388e1f --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketTagsRequest/body.php @@ -0,0 +1,51 @@ + 'Tagging', + ]; + + public function validate() + { + Model::validateRequired('tagging', $this->tagging, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->tagging) { + $res['Tagging'] = null !== $this->tagging ? $this->tagging->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return body + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Tagging'])) { + $model->tagging = tagging::fromMap($map['Tagging']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketTagsRequest/body/tagging.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketTagsRequest/body/tagging.php new file mode 100644 index 00000000..5a1def83 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketTagsRequest/body/tagging.php @@ -0,0 +1,50 @@ + 'TagSet', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->tagSet) { + $res['TagSet'] = null !== $this->tagSet ? $this->tagSet->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return tagging + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['TagSet'])) { + $model->tagSet = tagSet::fromMap($map['TagSet']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketTagsRequest/body/tagging/tagSet.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketTagsRequest/body/tagging/tagSet.php new file mode 100644 index 00000000..e21df4f7 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketTagsRequest/body/tagging/tagSet.php @@ -0,0 +1,62 @@ + 'Tag', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->tag) { + $res['Tag'] = []; + if (null !== $this->tag && \is_array($this->tag)) { + $n = 0; + foreach ($this->tag as $item) { + $res['Tag'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return tagSet + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Tag'])) { + if (!empty($map['Tag'])) { + $model->tag = []; + $n = 0; + foreach ($map['Tag'] as $item) { + $model->tag[$n++] = null !== $item ? tag::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketTagsRequest/body/tagging/tagSet/tag.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketTagsRequest/body/tagging/tagSet/tag.php new file mode 100644 index 00000000..4716ad42 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketTagsRequest/body/tagging/tagSet/tag.php @@ -0,0 +1,63 @@ + 'Key', + 'value' => 'Value', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->key) { + $res['Key'] = $this->key; + } + if (null !== $this->value) { + $res['Value'] = $this->value; + } + + return $res; + } + + /** + * @param array $map + * + * @return tag + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Key'])) { + $model->key = $map['Key']; + } + if (isset($map['Value'])) { + $model->value = $map['Value']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketTagsResponse.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketTagsResponse.php new file mode 100644 index 00000000..7ae58fe0 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketTagsResponse.php @@ -0,0 +1,50 @@ + 'x-oss-request-id', + ]; + + public function validate() + { + Model::validateRequired('requestId', $this->requestId, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['x-oss-request-id'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return PutBucketTagsResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['x-oss-request-id'])) { + $model->requestId = $map['x-oss-request-id']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketWebsiteRequest.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketWebsiteRequest.php new file mode 100644 index 00000000..e4663a5d --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketWebsiteRequest.php @@ -0,0 +1,66 @@ + 'BucketName', + 'body' => 'Body', + ]; + + public function validate() + { + Model::validateRequired('bucketName', $this->bucketName, true); + Model::validatePattern('bucketName', $this->bucketName, '[a-zA-Z0-9-_]+'); + } + + public function toMap() + { + $res = []; + if (null !== $this->bucketName) { + $res['BucketName'] = $this->bucketName; + } + if (null !== $this->body) { + $res['Body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return PutBucketWebsiteRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['BucketName'])) { + $model->bucketName = $map['BucketName']; + } + if (isset($map['Body'])) { + $model->body = body::fromMap($map['Body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketWebsiteRequest/body.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketWebsiteRequest/body.php new file mode 100644 index 00000000..aff7e152 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketWebsiteRequest/body.php @@ -0,0 +1,51 @@ + 'WebsiteConfiguration', + ]; + + public function validate() + { + Model::validateRequired('websiteConfiguration', $this->websiteConfiguration, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->websiteConfiguration) { + $res['WebsiteConfiguration'] = null !== $this->websiteConfiguration ? $this->websiteConfiguration->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return body + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['WebsiteConfiguration'])) { + $model->websiteConfiguration = websiteConfiguration::fromMap($map['WebsiteConfiguration']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketWebsiteRequest/body/websiteConfiguration.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketWebsiteRequest/body/websiteConfiguration.php new file mode 100644 index 00000000..c0d0ff97 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketWebsiteRequest/body/websiteConfiguration.php @@ -0,0 +1,80 @@ + 'IndexDocument', + 'errorDocument' => 'ErrorDocument', + 'routingRules' => 'RoutingRules', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->indexDocument) { + $res['IndexDocument'] = null !== $this->indexDocument ? $this->indexDocument->toMap() : null; + } + if (null !== $this->errorDocument) { + $res['ErrorDocument'] = null !== $this->errorDocument ? $this->errorDocument->toMap() : null; + } + if (null !== $this->routingRules) { + $res['RoutingRules'] = null !== $this->routingRules ? $this->routingRules->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return websiteConfiguration + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['IndexDocument'])) { + $model->indexDocument = indexDocument::fromMap($map['IndexDocument']); + } + if (isset($map['ErrorDocument'])) { + $model->errorDocument = errorDocument::fromMap($map['ErrorDocument']); + } + if (isset($map['RoutingRules'])) { + $model->routingRules = routingRules::fromMap($map['RoutingRules']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketWebsiteRequest/body/websiteConfiguration/errorDocument.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketWebsiteRequest/body/websiteConfiguration/errorDocument.php new file mode 100644 index 00000000..1a4b7843 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketWebsiteRequest/body/websiteConfiguration/errorDocument.php @@ -0,0 +1,49 @@ + 'Key', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->key) { + $res['Key'] = $this->key; + } + + return $res; + } + + /** + * @param array $map + * + * @return errorDocument + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Key'])) { + $model->key = $map['Key']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketWebsiteRequest/body/websiteConfiguration/indexDocument.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketWebsiteRequest/body/websiteConfiguration/indexDocument.php new file mode 100644 index 00000000..b0f6d001 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketWebsiteRequest/body/websiteConfiguration/indexDocument.php @@ -0,0 +1,49 @@ + 'Suffix', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->suffix) { + $res['Suffix'] = $this->suffix; + } + + return $res; + } + + /** + * @param array $map + * + * @return indexDocument + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Suffix'])) { + $model->suffix = $map['Suffix']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketWebsiteRequest/body/websiteConfiguration/routingRules.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketWebsiteRequest/body/websiteConfiguration/routingRules.php new file mode 100644 index 00000000..8ac3b013 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketWebsiteRequest/body/websiteConfiguration/routingRules.php @@ -0,0 +1,62 @@ + 'RoutingRule', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->routingRule) { + $res['RoutingRule'] = []; + if (null !== $this->routingRule && \is_array($this->routingRule)) { + $n = 0; + foreach ($this->routingRule as $item) { + $res['RoutingRule'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return routingRules + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RoutingRule'])) { + if (!empty($map['RoutingRule'])) { + $model->routingRule = []; + $n = 0; + foreach ($map['RoutingRule'] as $item) { + $model->routingRule[$n++] = null !== $item ? routingRule::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketWebsiteRequest/body/websiteConfiguration/routingRules/routingRule.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketWebsiteRequest/body/websiteConfiguration/routingRules/routingRule.php new file mode 100644 index 00000000..f03494e2 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketWebsiteRequest/body/websiteConfiguration/routingRules/routingRule.php @@ -0,0 +1,79 @@ + 'Condition', + 'redirect' => 'Redirect', + 'ruleNumber' => 'RuleNumber', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->condition) { + $res['Condition'] = null !== $this->condition ? $this->condition->toMap() : null; + } + if (null !== $this->redirect) { + $res['Redirect'] = null !== $this->redirect ? $this->redirect->toMap() : null; + } + if (null !== $this->ruleNumber) { + $res['RuleNumber'] = $this->ruleNumber; + } + + return $res; + } + + /** + * @param array $map + * + * @return routingRule + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Condition'])) { + $model->condition = condition::fromMap($map['Condition']); + } + if (isset($map['Redirect'])) { + $model->redirect = redirect::fromMap($map['Redirect']); + } + if (isset($map['RuleNumber'])) { + $model->ruleNumber = $map['RuleNumber']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketWebsiteRequest/body/websiteConfiguration/routingRules/routingRule/condition.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketWebsiteRequest/body/websiteConfiguration/routingRules/routingRule/condition.php new file mode 100644 index 00000000..8ecd13bf --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketWebsiteRequest/body/websiteConfiguration/routingRules/routingRule/condition.php @@ -0,0 +1,78 @@ + 'IncludeHeader', + 'keyPrefixEquals' => 'KeyPrefixEquals', + 'httpErrorCodeReturnedEquals' => 'HttpErrorCodeReturnedEquals', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->includeHeader) { + $res['IncludeHeader'] = null !== $this->includeHeader ? $this->includeHeader->toMap() : null; + } + if (null !== $this->keyPrefixEquals) { + $res['KeyPrefixEquals'] = $this->keyPrefixEquals; + } + if (null !== $this->httpErrorCodeReturnedEquals) { + $res['HttpErrorCodeReturnedEquals'] = $this->httpErrorCodeReturnedEquals; + } + + return $res; + } + + /** + * @param array $map + * + * @return condition + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['IncludeHeader'])) { + $model->includeHeader = includeHeader::fromMap($map['IncludeHeader']); + } + if (isset($map['KeyPrefixEquals'])) { + $model->keyPrefixEquals = $map['KeyPrefixEquals']; + } + if (isset($map['HttpErrorCodeReturnedEquals'])) { + $model->httpErrorCodeReturnedEquals = $map['HttpErrorCodeReturnedEquals']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketWebsiteRequest/body/websiteConfiguration/routingRules/routingRule/condition/includeHeader.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketWebsiteRequest/body/websiteConfiguration/routingRules/routingRule/condition/includeHeader.php new file mode 100644 index 00000000..7959ffe9 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketWebsiteRequest/body/websiteConfiguration/routingRules/routingRule/condition/includeHeader.php @@ -0,0 +1,63 @@ + 'Key', + 'equals' => 'Equals', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->key) { + $res['Key'] = $this->key; + } + if (null !== $this->equals) { + $res['Equals'] = $this->equals; + } + + return $res; + } + + /** + * @param array $map + * + * @return includeHeader + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Key'])) { + $model->key = $map['Key']; + } + if (isset($map['Equals'])) { + $model->equals = $map['Equals']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketWebsiteRequest/body/websiteConfiguration/routingRules/routingRule/redirect.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketWebsiteRequest/body/websiteConfiguration/routingRules/routingRule/redirect.php new file mode 100644 index 00000000..5e4c0ca8 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketWebsiteRequest/body/websiteConfiguration/routingRules/routingRule/redirect.php @@ -0,0 +1,204 @@ + 'MirrorHeaders', + 'redirectType' => 'RedirectType', + 'passQueryString' => 'PassQueryString', + 'mirrorURL' => 'MirrorURL', + 'mirrorPassQueryString' => 'MirrorPassQueryString', + 'mirrorFollowRedirect' => 'MirrorFollowRedirect', + 'mirrorCheckMd5' => 'MirrorCheckMd5', + 'protocol' => 'Protocol', + 'hostName' => 'HostName', + 'httpRedirectCode' => 'HttpRedirectCode', + 'replaceKeyPrefixWith' => 'ReplaceKeyPrefixWith', + 'replaceKeyWith' => 'ReplaceKeyWith', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->mirrorHeaders) { + $res['MirrorHeaders'] = null !== $this->mirrorHeaders ? $this->mirrorHeaders->toMap() : null; + } + if (null !== $this->redirectType) { + $res['RedirectType'] = $this->redirectType; + } + if (null !== $this->passQueryString) { + $res['PassQueryString'] = $this->passQueryString; + } + if (null !== $this->mirrorURL) { + $res['MirrorURL'] = $this->mirrorURL; + } + if (null !== $this->mirrorPassQueryString) { + $res['MirrorPassQueryString'] = $this->mirrorPassQueryString; + } + if (null !== $this->mirrorFollowRedirect) { + $res['MirrorFollowRedirect'] = $this->mirrorFollowRedirect; + } + if (null !== $this->mirrorCheckMd5) { + $res['MirrorCheckMd5'] = $this->mirrorCheckMd5; + } + if (null !== $this->protocol) { + $res['Protocol'] = $this->protocol; + } + if (null !== $this->hostName) { + $res['HostName'] = $this->hostName; + } + if (null !== $this->httpRedirectCode) { + $res['HttpRedirectCode'] = $this->httpRedirectCode; + } + if (null !== $this->replaceKeyPrefixWith) { + $res['ReplaceKeyPrefixWith'] = $this->replaceKeyPrefixWith; + } + if (null !== $this->replaceKeyWith) { + $res['ReplaceKeyWith'] = $this->replaceKeyWith; + } + + return $res; + } + + /** + * @param array $map + * + * @return redirect + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['MirrorHeaders'])) { + $model->mirrorHeaders = mirrorHeaders::fromMap($map['MirrorHeaders']); + } + if (isset($map['RedirectType'])) { + $model->redirectType = $map['RedirectType']; + } + if (isset($map['PassQueryString'])) { + $model->passQueryString = $map['PassQueryString']; + } + if (isset($map['MirrorURL'])) { + $model->mirrorURL = $map['MirrorURL']; + } + if (isset($map['MirrorPassQueryString'])) { + $model->mirrorPassQueryString = $map['MirrorPassQueryString']; + } + if (isset($map['MirrorFollowRedirect'])) { + $model->mirrorFollowRedirect = $map['MirrorFollowRedirect']; + } + if (isset($map['MirrorCheckMd5'])) { + $model->mirrorCheckMd5 = $map['MirrorCheckMd5']; + } + if (isset($map['Protocol'])) { + $model->protocol = $map['Protocol']; + } + if (isset($map['HostName'])) { + $model->hostName = $map['HostName']; + } + if (isset($map['HttpRedirectCode'])) { + $model->httpRedirectCode = $map['HttpRedirectCode']; + } + if (isset($map['ReplaceKeyPrefixWith'])) { + $model->replaceKeyPrefixWith = $map['ReplaceKeyPrefixWith']; + } + if (isset($map['ReplaceKeyWith'])) { + $model->replaceKeyWith = $map['ReplaceKeyWith']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketWebsiteRequest/body/websiteConfiguration/routingRules/routingRule/redirect/mirrorHeaders.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketWebsiteRequest/body/websiteConfiguration/routingRules/routingRule/redirect/mirrorHeaders.php new file mode 100644 index 00000000..3b1ca5b7 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketWebsiteRequest/body/websiteConfiguration/routingRules/routingRule/redirect/mirrorHeaders.php @@ -0,0 +1,92 @@ + 'Set', + 'passAll' => 'PassAll', + 'pass' => 'Pass', + 'remove' => 'Remove', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->set) { + $res['Set'] = null !== $this->set ? $this->set->toMap() : null; + } + if (null !== $this->passAll) { + $res['PassAll'] = $this->passAll; + } + if (null !== $this->pass) { + $res['Pass'] = $this->pass; + } + if (null !== $this->remove) { + $res['Remove'] = $this->remove; + } + + return $res; + } + + /** + * @param array $map + * + * @return mirrorHeaders + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Set'])) { + $model->set = set::fromMap($map['Set']); + } + if (isset($map['PassAll'])) { + $model->passAll = $map['PassAll']; + } + if (isset($map['Pass'])) { + $model->pass = $map['Pass']; + } + if (isset($map['Remove'])) { + $model->remove = $map['Remove']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketWebsiteRequest/body/websiteConfiguration/routingRules/routingRule/redirect/mirrorHeaders/set.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketWebsiteRequest/body/websiteConfiguration/routingRules/routingRule/redirect/mirrorHeaders/set.php new file mode 100644 index 00000000..824aa87a --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketWebsiteRequest/body/websiteConfiguration/routingRules/routingRule/redirect/mirrorHeaders/set.php @@ -0,0 +1,63 @@ + 'Key', + 'value' => 'Value', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->key) { + $res['Key'] = $this->key; + } + if (null !== $this->value) { + $res['Value'] = $this->value; + } + + return $res; + } + + /** + * @param array $map + * + * @return set + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Key'])) { + $model->key = $map['Key']; + } + if (isset($map['Value'])) { + $model->value = $map['Value']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketWebsiteResponse.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketWebsiteResponse.php new file mode 100644 index 00000000..a29d6bc3 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutBucketWebsiteResponse.php @@ -0,0 +1,50 @@ + 'x-oss-request-id', + ]; + + public function validate() + { + Model::validateRequired('requestId', $this->requestId, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['x-oss-request-id'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return PutBucketWebsiteResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['x-oss-request-id'])) { + $model->requestId = $map['x-oss-request-id']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutLiveChannelRequest.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutLiveChannelRequest.php new file mode 100644 index 00000000..0f8ac505 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutLiveChannelRequest.php @@ -0,0 +1,81 @@ + 'BucketName', + 'channelName' => 'ChannelName', + 'body' => 'Body', + ]; + + public function validate() + { + Model::validateRequired('bucketName', $this->bucketName, true); + Model::validateRequired('channelName', $this->channelName, true); + Model::validatePattern('bucketName', $this->bucketName, '[a-zA-Z0-9-_]+'); + } + + public function toMap() + { + $res = []; + if (null !== $this->bucketName) { + $res['BucketName'] = $this->bucketName; + } + if (null !== $this->channelName) { + $res['ChannelName'] = $this->channelName; + } + if (null !== $this->body) { + $res['Body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return PutLiveChannelRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['BucketName'])) { + $model->bucketName = $map['BucketName']; + } + if (isset($map['ChannelName'])) { + $model->channelName = $map['ChannelName']; + } + if (isset($map['Body'])) { + $model->body = body::fromMap($map['Body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutLiveChannelRequest/body.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutLiveChannelRequest/body.php new file mode 100644 index 00000000..adc7b9ca --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutLiveChannelRequest/body.php @@ -0,0 +1,51 @@ + 'LiveChannelConfiguration', + ]; + + public function validate() + { + Model::validateRequired('liveChannelConfiguration', $this->liveChannelConfiguration, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->liveChannelConfiguration) { + $res['LiveChannelConfiguration'] = null !== $this->liveChannelConfiguration ? $this->liveChannelConfiguration->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return body + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['LiveChannelConfiguration'])) { + $model->liveChannelConfiguration = liveChannelConfiguration::fromMap($map['LiveChannelConfiguration']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutLiveChannelRequest/body/liveChannelConfiguration.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutLiveChannelRequest/body/liveChannelConfiguration.php new file mode 100644 index 00000000..9c72cdfa --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutLiveChannelRequest/body/liveChannelConfiguration.php @@ -0,0 +1,93 @@ + 'Target', + 'snapshot' => 'Snapshot', + 'description' => 'Description', + 'status' => 'Status', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->target) { + $res['Target'] = null !== $this->target ? $this->target->toMap() : null; + } + if (null !== $this->snapshot) { + $res['Snapshot'] = null !== $this->snapshot ? $this->snapshot->toMap() : null; + } + if (null !== $this->description) { + $res['Description'] = $this->description; + } + if (null !== $this->status) { + $res['Status'] = $this->status; + } + + return $res; + } + + /** + * @param array $map + * + * @return liveChannelConfiguration + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Target'])) { + $model->target = target::fromMap($map['Target']); + } + if (isset($map['Snapshot'])) { + $model->snapshot = snapshot::fromMap($map['Snapshot']); + } + if (isset($map['Description'])) { + $model->description = $map['Description']; + } + if (isset($map['Status'])) { + $model->status = $map['Status']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutLiveChannelRequest/body/liveChannelConfiguration/snapshot.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutLiveChannelRequest/body/liveChannelConfiguration/snapshot.php new file mode 100644 index 00000000..595ce908 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutLiveChannelRequest/body/liveChannelConfiguration/snapshot.php @@ -0,0 +1,91 @@ + 'RoleName', + 'destBucket' => 'DestBucket', + 'notifyTopic' => 'NotifyTopic', + 'interval' => 'Interval', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->roleName) { + $res['RoleName'] = $this->roleName; + } + if (null !== $this->destBucket) { + $res['DestBucket'] = $this->destBucket; + } + if (null !== $this->notifyTopic) { + $res['NotifyTopic'] = $this->notifyTopic; + } + if (null !== $this->interval) { + $res['Interval'] = $this->interval; + } + + return $res; + } + + /** + * @param array $map + * + * @return snapshot + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RoleName'])) { + $model->roleName = $map['RoleName']; + } + if (isset($map['DestBucket'])) { + $model->destBucket = $map['DestBucket']; + } + if (isset($map['NotifyTopic'])) { + $model->notifyTopic = $map['NotifyTopic']; + } + if (isset($map['Interval'])) { + $model->interval = $map['Interval']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutLiveChannelRequest/body/liveChannelConfiguration/target.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutLiveChannelRequest/body/liveChannelConfiguration/target.php new file mode 100644 index 00000000..bb78dd46 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutLiveChannelRequest/body/liveChannelConfiguration/target.php @@ -0,0 +1,91 @@ + 'Type', + 'fragDuration' => 'FragDuration', + 'fragCount' => 'FragCount', + 'playlistName' => 'PlaylistName', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->type) { + $res['Type'] = $this->type; + } + if (null !== $this->fragDuration) { + $res['FragDuration'] = $this->fragDuration; + } + if (null !== $this->fragCount) { + $res['FragCount'] = $this->fragCount; + } + if (null !== $this->playlistName) { + $res['PlaylistName'] = $this->playlistName; + } + + return $res; + } + + /** + * @param array $map + * + * @return target + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Type'])) { + $model->type = $map['Type']; + } + if (isset($map['FragDuration'])) { + $model->fragDuration = $map['FragDuration']; + } + if (isset($map['FragCount'])) { + $model->fragCount = $map['FragCount']; + } + if (isset($map['PlaylistName'])) { + $model->playlistName = $map['PlaylistName']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutLiveChannelResponse.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutLiveChannelResponse.php new file mode 100644 index 00000000..7f1838c7 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutLiveChannelResponse.php @@ -0,0 +1,66 @@ + 'x-oss-request-id', + 'createLiveChannelResult' => 'CreateLiveChannelResult', + ]; + + public function validate() + { + Model::validateRequired('requestId', $this->requestId, true); + Model::validateRequired('createLiveChannelResult', $this->createLiveChannelResult, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['x-oss-request-id'] = $this->requestId; + } + if (null !== $this->createLiveChannelResult) { + $res['CreateLiveChannelResult'] = null !== $this->createLiveChannelResult ? $this->createLiveChannelResult->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return PutLiveChannelResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['x-oss-request-id'])) { + $model->requestId = $map['x-oss-request-id']; + } + if (isset($map['CreateLiveChannelResult'])) { + $model->createLiveChannelResult = createLiveChannelResult::fromMap($map['CreateLiveChannelResult']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutLiveChannelResponse/createLiveChannelResult.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutLiveChannelResponse/createLiveChannelResult.php new file mode 100644 index 00000000..56196cb8 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutLiveChannelResponse/createLiveChannelResult.php @@ -0,0 +1,67 @@ + 'PublishUrls', + 'playUrls' => 'PlayUrls', + ]; + + public function validate() + { + Model::validateRequired('publishUrls', $this->publishUrls, true); + Model::validateRequired('playUrls', $this->playUrls, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->publishUrls) { + $res['PublishUrls'] = null !== $this->publishUrls ? $this->publishUrls->toMap() : null; + } + if (null !== $this->playUrls) { + $res['PlayUrls'] = null !== $this->playUrls ? $this->playUrls->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return createLiveChannelResult + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['PublishUrls'])) { + $model->publishUrls = publishUrls::fromMap($map['PublishUrls']); + } + if (isset($map['PlayUrls'])) { + $model->playUrls = playUrls::fromMap($map['PlayUrls']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutLiveChannelResponse/createLiveChannelResult/playUrls.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutLiveChannelResponse/createLiveChannelResult/playUrls.php new file mode 100644 index 00000000..dd2280fa --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutLiveChannelResponse/createLiveChannelResult/playUrls.php @@ -0,0 +1,49 @@ + 'Url', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->url) { + $res['Url'] = $this->url; + } + + return $res; + } + + /** + * @param array $map + * + * @return playUrls + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Url'])) { + $model->url = $map['Url']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutLiveChannelResponse/createLiveChannelResult/publishUrls.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutLiveChannelResponse/createLiveChannelResult/publishUrls.php new file mode 100644 index 00000000..6303ca4e --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutLiveChannelResponse/createLiveChannelResult/publishUrls.php @@ -0,0 +1,49 @@ + 'Url', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->url) { + $res['Url'] = $this->url; + } + + return $res; + } + + /** + * @param array $map + * + * @return publishUrls + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Url'])) { + $model->url = $map['Url']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutLiveChannelStatusRequest.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutLiveChannelStatusRequest.php new file mode 100644 index 00000000..4cf22197 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutLiveChannelStatusRequest.php @@ -0,0 +1,82 @@ + 'BucketName', + 'channelName' => 'ChannelName', + 'filter' => 'Filter', + ]; + + public function validate() + { + Model::validateRequired('bucketName', $this->bucketName, true); + Model::validateRequired('channelName', $this->channelName, true); + Model::validateRequired('filter', $this->filter, true); + Model::validatePattern('bucketName', $this->bucketName, '[a-zA-Z0-9-_]+'); + } + + public function toMap() + { + $res = []; + if (null !== $this->bucketName) { + $res['BucketName'] = $this->bucketName; + } + if (null !== $this->channelName) { + $res['ChannelName'] = $this->channelName; + } + if (null !== $this->filter) { + $res['Filter'] = null !== $this->filter ? $this->filter->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return PutLiveChannelStatusRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['BucketName'])) { + $model->bucketName = $map['BucketName']; + } + if (isset($map['ChannelName'])) { + $model->channelName = $map['ChannelName']; + } + if (isset($map['Filter'])) { + $model->filter = filter::fromMap($map['Filter']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutLiveChannelStatusRequest/filter.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutLiveChannelStatusRequest/filter.php new file mode 100644 index 00000000..84e3c3a1 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutLiveChannelStatusRequest/filter.php @@ -0,0 +1,50 @@ + 'status', + ]; + + public function validate() + { + Model::validateRequired('status', $this->status, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->status) { + $res['status'] = $this->status; + } + + return $res; + } + + /** + * @param array $map + * + * @return filter + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['status'])) { + $model->status = $map['status']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutLiveChannelStatusResponse.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutLiveChannelStatusResponse.php new file mode 100644 index 00000000..1992f04e --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutLiveChannelStatusResponse.php @@ -0,0 +1,50 @@ + 'x-oss-request-id', + ]; + + public function validate() + { + Model::validateRequired('requestId', $this->requestId, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['x-oss-request-id'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return PutLiveChannelStatusResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['x-oss-request-id'])) { + $model->requestId = $map['x-oss-request-id']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutObjectAclRequest.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutObjectAclRequest.php new file mode 100644 index 00000000..a18526f9 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutObjectAclRequest.php @@ -0,0 +1,82 @@ + 'BucketName', + 'objectName' => 'ObjectName', + 'header' => 'Header', + ]; + + public function validate() + { + Model::validateRequired('bucketName', $this->bucketName, true); + Model::validateRequired('objectName', $this->objectName, true); + Model::validateRequired('header', $this->header, true); + Model::validatePattern('bucketName', $this->bucketName, '[a-zA-Z0-9-_]+'); + } + + public function toMap() + { + $res = []; + if (null !== $this->bucketName) { + $res['BucketName'] = $this->bucketName; + } + if (null !== $this->objectName) { + $res['ObjectName'] = $this->objectName; + } + if (null !== $this->header) { + $res['Header'] = null !== $this->header ? $this->header->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return PutObjectAclRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['BucketName'])) { + $model->bucketName = $map['BucketName']; + } + if (isset($map['ObjectName'])) { + $model->objectName = $map['ObjectName']; + } + if (isset($map['Header'])) { + $model->header = header::fromMap($map['Header']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutObjectAclRequest/header.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutObjectAclRequest/header.php new file mode 100644 index 00000000..a44b167c --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutObjectAclRequest/header.php @@ -0,0 +1,50 @@ + 'x-oss-object-acl', + ]; + + public function validate() + { + Model::validateRequired('objectAcl', $this->objectAcl, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->objectAcl) { + $res['x-oss-object-acl'] = $this->objectAcl; + } + + return $res; + } + + /** + * @param array $map + * + * @return header + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['x-oss-object-acl'])) { + $model->objectAcl = $map['x-oss-object-acl']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutObjectAclResponse.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutObjectAclResponse.php new file mode 100644 index 00000000..af29ef64 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutObjectAclResponse.php @@ -0,0 +1,50 @@ + 'x-oss-request-id', + ]; + + public function validate() + { + Model::validateRequired('requestId', $this->requestId, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['x-oss-request-id'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return PutObjectAclResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['x-oss-request-id'])) { + $model->requestId = $map['x-oss-request-id']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutObjectRequest.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutObjectRequest.php new file mode 100644 index 00000000..f8ee7b6b --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutObjectRequest.php @@ -0,0 +1,110 @@ + 'BucketName', + 'objectName' => 'ObjectName', + 'userMeta' => 'UserMeta', + 'body' => 'body', + 'header' => 'Header', + ]; + + public function validate() + { + Model::validateRequired('bucketName', $this->bucketName, true); + Model::validateRequired('objectName', $this->objectName, true); + Model::validatePattern('bucketName', $this->bucketName, '[a-zA-Z0-9-_]+'); + } + + public function toMap() + { + $res = []; + if (null !== $this->bucketName) { + $res['BucketName'] = $this->bucketName; + } + if (null !== $this->objectName) { + $res['ObjectName'] = $this->objectName; + } + if (null !== $this->userMeta) { + $res['UserMeta'] = $this->userMeta; + } + if (null !== $this->body) { + $res['body'] = $this->body; + } + if (null !== $this->header) { + $res['Header'] = null !== $this->header ? $this->header->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return PutObjectRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['BucketName'])) { + $model->bucketName = $map['BucketName']; + } + if (isset($map['ObjectName'])) { + $model->objectName = $map['ObjectName']; + } + if (isset($map['UserMeta'])) { + $model->userMeta = $map['UserMeta']; + } + if (isset($map['body'])) { + $model->body = $map['body']; + } + if (isset($map['Header'])) { + $model->header = header::fromMap($map['Header']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutObjectRequest/header.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutObjectRequest/header.php new file mode 100644 index 00000000..f3d03b7f --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutObjectRequest/header.php @@ -0,0 +1,231 @@ + 'Authorization', + 'cacheControl' => 'Cache-Control', + 'contentDisposition' => 'Content-Disposition', + 'contentEncoding' => 'Content-Encoding', + 'contentMD5' => 'Content-MD5', + 'contentLength' => 'Content-Length', + 'eTag' => 'CETag', + 'expires' => 'Expires', + 'serverSideEncryption' => 'x-oss-server-side-encryption', + 'serverSideEncryptionKeyId' => 'x-oss-server-side-encryption-key-id', + 'objectAcl' => 'x-oss-object-acl', + 'storageClass' => 'x-oss-storage-class', + 'tagging' => 'x-oss-tagging', + 'contentType' => 'content-type', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->authorization) { + $res['Authorization'] = $this->authorization; + } + if (null !== $this->cacheControl) { + $res['Cache-Control'] = $this->cacheControl; + } + if (null !== $this->contentDisposition) { + $res['Content-Disposition'] = $this->contentDisposition; + } + if (null !== $this->contentEncoding) { + $res['Content-Encoding'] = $this->contentEncoding; + } + if (null !== $this->contentMD5) { + $res['Content-MD5'] = $this->contentMD5; + } + if (null !== $this->contentLength) { + $res['Content-Length'] = $this->contentLength; + } + if (null !== $this->eTag) { + $res['CETag'] = $this->eTag; + } + if (null !== $this->expires) { + $res['Expires'] = $this->expires; + } + if (null !== $this->serverSideEncryption) { + $res['x-oss-server-side-encryption'] = $this->serverSideEncryption; + } + if (null !== $this->serverSideEncryptionKeyId) { + $res['x-oss-server-side-encryption-key-id'] = $this->serverSideEncryptionKeyId; + } + if (null !== $this->objectAcl) { + $res['x-oss-object-acl'] = $this->objectAcl; + } + if (null !== $this->storageClass) { + $res['x-oss-storage-class'] = $this->storageClass; + } + if (null !== $this->tagging) { + $res['x-oss-tagging'] = $this->tagging; + } + if (null !== $this->contentType) { + $res['content-type'] = $this->contentType; + } + + return $res; + } + + /** + * @param array $map + * + * @return header + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Authorization'])) { + $model->authorization = $map['Authorization']; + } + if (isset($map['Cache-Control'])) { + $model->cacheControl = $map['Cache-Control']; + } + if (isset($map['Content-Disposition'])) { + $model->contentDisposition = $map['Content-Disposition']; + } + if (isset($map['Content-Encoding'])) { + $model->contentEncoding = $map['Content-Encoding']; + } + if (isset($map['Content-MD5'])) { + $model->contentMD5 = $map['Content-MD5']; + } + if (isset($map['Content-Length'])) { + $model->contentLength = $map['Content-Length']; + } + if (isset($map['CETag'])) { + $model->eTag = $map['CETag']; + } + if (isset($map['Expires'])) { + $model->expires = $map['Expires']; + } + if (isset($map['x-oss-server-side-encryption'])) { + $model->serverSideEncryption = $map['x-oss-server-side-encryption']; + } + if (isset($map['x-oss-server-side-encryption-key-id'])) { + $model->serverSideEncryptionKeyId = $map['x-oss-server-side-encryption-key-id']; + } + if (isset($map['x-oss-object-acl'])) { + $model->objectAcl = $map['x-oss-object-acl']; + } + if (isset($map['x-oss-storage-class'])) { + $model->storageClass = $map['x-oss-storage-class']; + } + if (isset($map['x-oss-tagging'])) { + $model->tagging = $map['x-oss-tagging']; + } + if (isset($map['content-type'])) { + $model->contentType = $map['content-type']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutObjectResponse.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutObjectResponse.php new file mode 100644 index 00000000..ec3b87b8 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutObjectResponse.php @@ -0,0 +1,95 @@ + 'x-oss-request-id', + 'hashCrc64ecma' => 'x-oss-hash-crc64ecma', + 'serverTime' => 'x-oss-server-time', + 'bucketVersion' => 'x-oss-bucket-version', + ]; + + public function validate() + { + Model::validateRequired('requestId', $this->requestId, true); + Model::validateRequired('hashCrc64ecma', $this->hashCrc64ecma, true); + Model::validateRequired('serverTime', $this->serverTime, true); + Model::validateRequired('bucketVersion', $this->bucketVersion, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['x-oss-request-id'] = $this->requestId; + } + if (null !== $this->hashCrc64ecma) { + $res['x-oss-hash-crc64ecma'] = $this->hashCrc64ecma; + } + if (null !== $this->serverTime) { + $res['x-oss-server-time'] = $this->serverTime; + } + if (null !== $this->bucketVersion) { + $res['x-oss-bucket-version'] = $this->bucketVersion; + } + + return $res; + } + + /** + * @param array $map + * + * @return PutObjectResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['x-oss-request-id'])) { + $model->requestId = $map['x-oss-request-id']; + } + if (isset($map['x-oss-hash-crc64ecma'])) { + $model->hashCrc64ecma = $map['x-oss-hash-crc64ecma']; + } + if (isset($map['x-oss-server-time'])) { + $model->serverTime = $map['x-oss-server-time']; + } + if (isset($map['x-oss-bucket-version'])) { + $model->bucketVersion = $map['x-oss-bucket-version']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutObjectTaggingRequest.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutObjectTaggingRequest.php new file mode 100644 index 00000000..f6dbdac3 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutObjectTaggingRequest.php @@ -0,0 +1,81 @@ + 'BucketName', + 'objectName' => 'ObjectName', + 'body' => 'Body', + ]; + + public function validate() + { + Model::validateRequired('bucketName', $this->bucketName, true); + Model::validateRequired('objectName', $this->objectName, true); + Model::validatePattern('bucketName', $this->bucketName, '[a-zA-Z0-9-_]+'); + } + + public function toMap() + { + $res = []; + if (null !== $this->bucketName) { + $res['BucketName'] = $this->bucketName; + } + if (null !== $this->objectName) { + $res['ObjectName'] = $this->objectName; + } + if (null !== $this->body) { + $res['Body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return PutObjectTaggingRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['BucketName'])) { + $model->bucketName = $map['BucketName']; + } + if (isset($map['ObjectName'])) { + $model->objectName = $map['ObjectName']; + } + if (isset($map['Body'])) { + $model->body = body::fromMap($map['Body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutObjectTaggingRequest/body.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutObjectTaggingRequest/body.php new file mode 100644 index 00000000..8837d1b3 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutObjectTaggingRequest/body.php @@ -0,0 +1,51 @@ + 'Tagging', + ]; + + public function validate() + { + Model::validateRequired('tagging', $this->tagging, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->tagging) { + $res['Tagging'] = null !== $this->tagging ? $this->tagging->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return body + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Tagging'])) { + $model->tagging = tagging::fromMap($map['Tagging']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutObjectTaggingRequest/body/tagging.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutObjectTaggingRequest/body/tagging.php new file mode 100644 index 00000000..5ab28fac --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutObjectTaggingRequest/body/tagging.php @@ -0,0 +1,50 @@ + 'TagSet', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->tagSet) { + $res['TagSet'] = null !== $this->tagSet ? $this->tagSet->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return tagging + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['TagSet'])) { + $model->tagSet = tagSet::fromMap($map['TagSet']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutObjectTaggingRequest/body/tagging/tagSet.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutObjectTaggingRequest/body/tagging/tagSet.php new file mode 100644 index 00000000..56fdda76 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutObjectTaggingRequest/body/tagging/tagSet.php @@ -0,0 +1,62 @@ + 'Tag', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->tag) { + $res['Tag'] = []; + if (null !== $this->tag && \is_array($this->tag)) { + $n = 0; + foreach ($this->tag as $item) { + $res['Tag'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return tagSet + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Tag'])) { + if (!empty($map['Tag'])) { + $model->tag = []; + $n = 0; + foreach ($map['Tag'] as $item) { + $model->tag[$n++] = null !== $item ? tag::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutObjectTaggingRequest/body/tagging/tagSet/tag.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutObjectTaggingRequest/body/tagging/tagSet/tag.php new file mode 100644 index 00000000..e1c6b904 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutObjectTaggingRequest/body/tagging/tagSet/tag.php @@ -0,0 +1,63 @@ + 'Key', + 'value' => 'Value', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->key) { + $res['Key'] = $this->key; + } + if (null !== $this->value) { + $res['Value'] = $this->value; + } + + return $res; + } + + /** + * @param array $map + * + * @return tag + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Key'])) { + $model->key = $map['Key']; + } + if (isset($map['Value'])) { + $model->value = $map['Value']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutObjectTaggingResponse.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutObjectTaggingResponse.php new file mode 100644 index 00000000..1f9a6bc9 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutObjectTaggingResponse.php @@ -0,0 +1,50 @@ + 'x-oss-request-id', + ]; + + public function validate() + { + Model::validateRequired('requestId', $this->requestId, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['x-oss-request-id'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return PutObjectTaggingResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['x-oss-request-id'])) { + $model->requestId = $map['x-oss-request-id']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutSymlinkRequest.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutSymlinkRequest.php new file mode 100644 index 00000000..de058d2c --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutSymlinkRequest.php @@ -0,0 +1,82 @@ + 'BucketName', + 'objectName' => 'ObjectName', + 'header' => 'Header', + ]; + + public function validate() + { + Model::validateRequired('bucketName', $this->bucketName, true); + Model::validateRequired('objectName', $this->objectName, true); + Model::validateRequired('header', $this->header, true); + Model::validatePattern('bucketName', $this->bucketName, '[a-zA-Z0-9-_]+'); + } + + public function toMap() + { + $res = []; + if (null !== $this->bucketName) { + $res['BucketName'] = $this->bucketName; + } + if (null !== $this->objectName) { + $res['ObjectName'] = $this->objectName; + } + if (null !== $this->header) { + $res['Header'] = null !== $this->header ? $this->header->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return PutSymlinkRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['BucketName'])) { + $model->bucketName = $map['BucketName']; + } + if (isset($map['ObjectName'])) { + $model->objectName = $map['ObjectName']; + } + if (isset($map['Header'])) { + $model->header = header::fromMap($map['Header']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutSymlinkRequest/header.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutSymlinkRequest/header.php new file mode 100644 index 00000000..e6aa5a09 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutSymlinkRequest/header.php @@ -0,0 +1,64 @@ + 'x-oss-symlink-target', + 'storageClass' => 'x-oss-storage-class', + ]; + + public function validate() + { + Model::validateRequired('symlinkTarget', $this->symlinkTarget, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->symlinkTarget) { + $res['x-oss-symlink-target'] = $this->symlinkTarget; + } + if (null !== $this->storageClass) { + $res['x-oss-storage-class'] = $this->storageClass; + } + + return $res; + } + + /** + * @param array $map + * + * @return header + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['x-oss-symlink-target'])) { + $model->symlinkTarget = $map['x-oss-symlink-target']; + } + if (isset($map['x-oss-storage-class'])) { + $model->storageClass = $map['x-oss-storage-class']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutSymlinkResponse.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutSymlinkResponse.php new file mode 100644 index 00000000..d6bbe132 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/PutSymlinkResponse.php @@ -0,0 +1,50 @@ + 'x-oss-request-id', + ]; + + public function validate() + { + Model::validateRequired('requestId', $this->requestId, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['x-oss-request-id'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return PutSymlinkResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['x-oss-request-id'])) { + $model->requestId = $map['x-oss-request-id']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/RestoreObjectRequest.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/RestoreObjectRequest.php new file mode 100644 index 00000000..fa8dc4fe --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/RestoreObjectRequest.php @@ -0,0 +1,66 @@ + 'BucketName', + 'objectName' => 'ObjectName', + ]; + + public function validate() + { + Model::validateRequired('bucketName', $this->bucketName, true); + Model::validateRequired('objectName', $this->objectName, true); + Model::validatePattern('bucketName', $this->bucketName, '[a-zA-Z0-9-_]+'); + } + + public function toMap() + { + $res = []; + if (null !== $this->bucketName) { + $res['BucketName'] = $this->bucketName; + } + if (null !== $this->objectName) { + $res['ObjectName'] = $this->objectName; + } + + return $res; + } + + /** + * @param array $map + * + * @return RestoreObjectRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['BucketName'])) { + $model->bucketName = $map['BucketName']; + } + if (isset($map['ObjectName'])) { + $model->objectName = $map['ObjectName']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/RestoreObjectResponse.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/RestoreObjectResponse.php new file mode 100644 index 00000000..f2aa03d3 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/RestoreObjectResponse.php @@ -0,0 +1,50 @@ + 'x-oss-request-id', + ]; + + public function validate() + { + Model::validateRequired('requestId', $this->requestId, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['x-oss-request-id'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return RestoreObjectResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['x-oss-request-id'])) { + $model->requestId = $map['x-oss-request-id']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/SelectObjectRequest.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/SelectObjectRequest.php new file mode 100644 index 00000000..8241ece8 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/SelectObjectRequest.php @@ -0,0 +1,97 @@ + 'BucketName', + 'objectName' => 'ObjectName', + 'filter' => 'Filter', + 'body' => 'Body', + ]; + + public function validate() + { + Model::validateRequired('bucketName', $this->bucketName, true); + Model::validateRequired('objectName', $this->objectName, true); + Model::validateRequired('filter', $this->filter, true); + Model::validatePattern('bucketName', $this->bucketName, '[a-zA-Z0-9-_]+'); + } + + public function toMap() + { + $res = []; + if (null !== $this->bucketName) { + $res['BucketName'] = $this->bucketName; + } + if (null !== $this->objectName) { + $res['ObjectName'] = $this->objectName; + } + if (null !== $this->filter) { + $res['Filter'] = null !== $this->filter ? $this->filter->toMap() : null; + } + if (null !== $this->body) { + $res['Body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return SelectObjectRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['BucketName'])) { + $model->bucketName = $map['BucketName']; + } + if (isset($map['ObjectName'])) { + $model->objectName = $map['ObjectName']; + } + if (isset($map['Filter'])) { + $model->filter = filter::fromMap($map['Filter']); + } + if (isset($map['Body'])) { + $model->body = body::fromMap($map['Body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/SelectObjectRequest/body.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/SelectObjectRequest/body.php new file mode 100644 index 00000000..21f28042 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/SelectObjectRequest/body.php @@ -0,0 +1,51 @@ + 'SelectRequest', + ]; + + public function validate() + { + Model::validateRequired('selectRequest', $this->selectRequest, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->selectRequest) { + $res['SelectRequest'] = null !== $this->selectRequest ? $this->selectRequest->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return body + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['SelectRequest'])) { + $model->selectRequest = selectRequest::fromMap($map['SelectRequest']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/SelectObjectRequest/body/selectRequest.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/SelectObjectRequest/body/selectRequest.php new file mode 100644 index 00000000..b2ed62b0 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/SelectObjectRequest/body/selectRequest.php @@ -0,0 +1,94 @@ + 'InputSerialization', + 'outputSerialization' => 'OutputSerialization', + 'options' => 'Options', + 'expression' => 'Expression', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->inputSerialization) { + $res['InputSerialization'] = null !== $this->inputSerialization ? $this->inputSerialization->toMap() : null; + } + if (null !== $this->outputSerialization) { + $res['OutputSerialization'] = null !== $this->outputSerialization ? $this->outputSerialization->toMap() : null; + } + if (null !== $this->options) { + $res['Options'] = null !== $this->options ? $this->options->toMap() : null; + } + if (null !== $this->expression) { + $res['Expression'] = $this->expression; + } + + return $res; + } + + /** + * @param array $map + * + * @return selectRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['InputSerialization'])) { + $model->inputSerialization = inputSerialization::fromMap($map['InputSerialization']); + } + if (isset($map['OutputSerialization'])) { + $model->outputSerialization = outputSerialization::fromMap($map['OutputSerialization']); + } + if (isset($map['Options'])) { + $model->options = options::fromMap($map['Options']); + } + if (isset($map['Expression'])) { + $model->expression = $map['Expression']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/SelectObjectRequest/body/selectRequest/inputSerialization.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/SelectObjectRequest/body/selectRequest/inputSerialization.php new file mode 100644 index 00000000..333efbab --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/SelectObjectRequest/body/selectRequest/inputSerialization.php @@ -0,0 +1,64 @@ + 'CSV', + 'compressionType' => 'CompressionType', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->cSV) { + $res['CSV'] = null !== $this->cSV ? $this->cSV->toMap() : null; + } + if (null !== $this->compressionType) { + $res['CompressionType'] = $this->compressionType; + } + + return $res; + } + + /** + * @param array $map + * + * @return inputSerialization + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CSV'])) { + $model->cSV = cSV::fromMap($map['CSV']); + } + if (isset($map['CompressionType'])) { + $model->compressionType = $map['CompressionType']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/SelectObjectRequest/body/selectRequest/inputSerialization/cSV.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/SelectObjectRequest/body/selectRequest/inputSerialization/cSV.php new file mode 100644 index 00000000..7435c71a --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/SelectObjectRequest/body/selectRequest/inputSerialization/cSV.php @@ -0,0 +1,119 @@ + 'FileHeaderInfo', + 'recordDelimiter' => 'RecordDelimiter', + 'fieldDelimiter' => 'FieldDelimiter', + 'quoteCharacter' => 'QuoteCharacter', + 'commentCharacter' => 'CommentCharacter', + 'range' => 'Range', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->fileHeaderInfo) { + $res['FileHeaderInfo'] = $this->fileHeaderInfo; + } + if (null !== $this->recordDelimiter) { + $res['RecordDelimiter'] = $this->recordDelimiter; + } + if (null !== $this->fieldDelimiter) { + $res['FieldDelimiter'] = $this->fieldDelimiter; + } + if (null !== $this->quoteCharacter) { + $res['QuoteCharacter'] = $this->quoteCharacter; + } + if (null !== $this->commentCharacter) { + $res['CommentCharacter'] = $this->commentCharacter; + } + if (null !== $this->range) { + $res['Range'] = $this->range; + } + + return $res; + } + + /** + * @param array $map + * + * @return cSV + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['FileHeaderInfo'])) { + $model->fileHeaderInfo = $map['FileHeaderInfo']; + } + if (isset($map['RecordDelimiter'])) { + $model->recordDelimiter = $map['RecordDelimiter']; + } + if (isset($map['FieldDelimiter'])) { + $model->fieldDelimiter = $map['FieldDelimiter']; + } + if (isset($map['QuoteCharacter'])) { + $model->quoteCharacter = $map['QuoteCharacter']; + } + if (isset($map['CommentCharacter'])) { + $model->commentCharacter = $map['CommentCharacter']; + } + if (isset($map['Range'])) { + $model->range = $map['Range']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/SelectObjectRequest/body/selectRequest/options.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/SelectObjectRequest/body/selectRequest/options.php new file mode 100644 index 00000000..b7445136 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/SelectObjectRequest/body/selectRequest/options.php @@ -0,0 +1,63 @@ + 'SkipPartialDataRecord', + 'maxSkippedRecordsAllowed' => 'MaxSkippedRecordsAllowed', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->skipPartialDataRecord) { + $res['SkipPartialDataRecord'] = $this->skipPartialDataRecord; + } + if (null !== $this->maxSkippedRecordsAllowed) { + $res['MaxSkippedRecordsAllowed'] = $this->maxSkippedRecordsAllowed; + } + + return $res; + } + + /** + * @param array $map + * + * @return options + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['SkipPartialDataRecord'])) { + $model->skipPartialDataRecord = $map['SkipPartialDataRecord']; + } + if (isset($map['MaxSkippedRecordsAllowed'])) { + $model->maxSkippedRecordsAllowed = $map['MaxSkippedRecordsAllowed']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/SelectObjectRequest/body/selectRequest/outputSerialization.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/SelectObjectRequest/body/selectRequest/outputSerialization.php new file mode 100644 index 00000000..28407b9d --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/SelectObjectRequest/body/selectRequest/outputSerialization.php @@ -0,0 +1,106 @@ + 'CSV', + 'keepAllColumns' => 'KeepAllColumns', + 'outputRawData' => 'OutputRawData', + 'enablePayloadCrc' => 'EnablePayloadCrc', + 'outputHeader' => 'OutputHeader', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->cSV) { + $res['CSV'] = null !== $this->cSV ? $this->cSV->toMap() : null; + } + if (null !== $this->keepAllColumns) { + $res['KeepAllColumns'] = $this->keepAllColumns; + } + if (null !== $this->outputRawData) { + $res['OutputRawData'] = $this->outputRawData; + } + if (null !== $this->enablePayloadCrc) { + $res['EnablePayloadCrc'] = $this->enablePayloadCrc; + } + if (null !== $this->outputHeader) { + $res['OutputHeader'] = $this->outputHeader; + } + + return $res; + } + + /** + * @param array $map + * + * @return outputSerialization + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CSV'])) { + $model->cSV = cSV::fromMap($map['CSV']); + } + if (isset($map['KeepAllColumns'])) { + $model->keepAllColumns = $map['KeepAllColumns']; + } + if (isset($map['OutputRawData'])) { + $model->outputRawData = $map['OutputRawData']; + } + if (isset($map['EnablePayloadCrc'])) { + $model->enablePayloadCrc = $map['EnablePayloadCrc']; + } + if (isset($map['OutputHeader'])) { + $model->outputHeader = $map['OutputHeader']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/SelectObjectRequest/body/selectRequest/outputSerialization/cSV.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/SelectObjectRequest/body/selectRequest/outputSerialization/cSV.php new file mode 100644 index 00000000..d68ff88a --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/SelectObjectRequest/body/selectRequest/outputSerialization/cSV.php @@ -0,0 +1,63 @@ + 'RecordDelimiter', + 'fieldDelimiter' => 'FieldDelimiter', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->recordDelimiter) { + $res['RecordDelimiter'] = $this->recordDelimiter; + } + if (null !== $this->fieldDelimiter) { + $res['FieldDelimiter'] = $this->fieldDelimiter; + } + + return $res; + } + + /** + * @param array $map + * + * @return cSV + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RecordDelimiter'])) { + $model->recordDelimiter = $map['RecordDelimiter']; + } + if (isset($map['FieldDelimiter'])) { + $model->fieldDelimiter = $map['FieldDelimiter']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/SelectObjectRequest/filter.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/SelectObjectRequest/filter.php new file mode 100644 index 00000000..c295a673 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/SelectObjectRequest/filter.php @@ -0,0 +1,50 @@ + 'x-oss-process', + ]; + + public function validate() + { + Model::validateRequired('porcess', $this->porcess, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->porcess) { + $res['x-oss-process'] = $this->porcess; + } + + return $res; + } + + /** + * @param array $map + * + * @return filter + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['x-oss-process'])) { + $model->porcess = $map['x-oss-process']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/SelectObjectResponse.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/SelectObjectResponse.php new file mode 100644 index 00000000..0701c504 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/SelectObjectResponse.php @@ -0,0 +1,50 @@ + 'x-oss-request-id', + ]; + + public function validate() + { + Model::validateRequired('requestId', $this->requestId, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['x-oss-request-id'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return SelectObjectResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['x-oss-request-id'])) { + $model->requestId = $map['x-oss-request-id']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/UploadPartCopyRequest.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/UploadPartCopyRequest.php new file mode 100644 index 00000000..3f632aee --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/UploadPartCopyRequest.php @@ -0,0 +1,98 @@ + 'BucketName', + 'objectName' => 'ObjectName', + 'filter' => 'Filter', + 'header' => 'Header', + ]; + + public function validate() + { + Model::validateRequired('bucketName', $this->bucketName, true); + Model::validateRequired('objectName', $this->objectName, true); + Model::validateRequired('filter', $this->filter, true); + Model::validateRequired('header', $this->header, true); + Model::validatePattern('bucketName', $this->bucketName, '[a-zA-Z0-9-_]+'); + } + + public function toMap() + { + $res = []; + if (null !== $this->bucketName) { + $res['BucketName'] = $this->bucketName; + } + if (null !== $this->objectName) { + $res['ObjectName'] = $this->objectName; + } + if (null !== $this->filter) { + $res['Filter'] = null !== $this->filter ? $this->filter->toMap() : null; + } + if (null !== $this->header) { + $res['Header'] = null !== $this->header ? $this->header->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return UploadPartCopyRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['BucketName'])) { + $model->bucketName = $map['BucketName']; + } + if (isset($map['ObjectName'])) { + $model->objectName = $map['ObjectName']; + } + if (isset($map['Filter'])) { + $model->filter = filter::fromMap($map['Filter']); + } + if (isset($map['Header'])) { + $model->header = header::fromMap($map['Header']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/UploadPartCopyRequest/filter.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/UploadPartCopyRequest/filter.php new file mode 100644 index 00000000..04b81ea6 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/UploadPartCopyRequest/filter.php @@ -0,0 +1,65 @@ + 'partNumber', + 'uploadId' => 'uploadId', + ]; + + public function validate() + { + Model::validateRequired('partNumber', $this->partNumber, true); + Model::validateRequired('uploadId', $this->uploadId, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->partNumber) { + $res['partNumber'] = $this->partNumber; + } + if (null !== $this->uploadId) { + $res['uploadId'] = $this->uploadId; + } + + return $res; + } + + /** + * @param array $map + * + * @return filter + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['partNumber'])) { + $model->partNumber = $map['partNumber']; + } + if (isset($map['uploadId'])) { + $model->uploadId = $map['uploadId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/UploadPartCopyRequest/header.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/UploadPartCopyRequest/header.php new file mode 100644 index 00000000..c12ccdaf --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/UploadPartCopyRequest/header.php @@ -0,0 +1,121 @@ + 'x-oss-copy-source', + 'copySourceRange' => 'x-oss-copy-source-range', + 'copySourceIfMatch' => 'x-oss-copy-source-if-match', + 'copySourceIfNoneMatch' => 'x-oss-copy-source-if-none-match', + 'copySourceIfUnmodifiedSince' => 'x-oss-copy-source-if-unmodified-since', + 'copySourceIfModifiedSince' => 'x-oss-copy-source-if-modified-since', + ]; + + public function validate() + { + Model::validateRequired('copySource', $this->copySource, true); + Model::validateRequired('copySourceRange', $this->copySourceRange, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->copySource) { + $res['x-oss-copy-source'] = $this->copySource; + } + if (null !== $this->copySourceRange) { + $res['x-oss-copy-source-range'] = $this->copySourceRange; + } + if (null !== $this->copySourceIfMatch) { + $res['x-oss-copy-source-if-match'] = $this->copySourceIfMatch; + } + if (null !== $this->copySourceIfNoneMatch) { + $res['x-oss-copy-source-if-none-match'] = $this->copySourceIfNoneMatch; + } + if (null !== $this->copySourceIfUnmodifiedSince) { + $res['x-oss-copy-source-if-unmodified-since'] = $this->copySourceIfUnmodifiedSince; + } + if (null !== $this->copySourceIfModifiedSince) { + $res['x-oss-copy-source-if-modified-since'] = $this->copySourceIfModifiedSince; + } + + return $res; + } + + /** + * @param array $map + * + * @return header + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['x-oss-copy-source'])) { + $model->copySource = $map['x-oss-copy-source']; + } + if (isset($map['x-oss-copy-source-range'])) { + $model->copySourceRange = $map['x-oss-copy-source-range']; + } + if (isset($map['x-oss-copy-source-if-match'])) { + $model->copySourceIfMatch = $map['x-oss-copy-source-if-match']; + } + if (isset($map['x-oss-copy-source-if-none-match'])) { + $model->copySourceIfNoneMatch = $map['x-oss-copy-source-if-none-match']; + } + if (isset($map['x-oss-copy-source-if-unmodified-since'])) { + $model->copySourceIfUnmodifiedSince = $map['x-oss-copy-source-if-unmodified-since']; + } + if (isset($map['x-oss-copy-source-if-modified-since'])) { + $model->copySourceIfModifiedSince = $map['x-oss-copy-source-if-modified-since']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/UploadPartCopyResponse.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/UploadPartCopyResponse.php new file mode 100644 index 00000000..41508f6c --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/UploadPartCopyResponse.php @@ -0,0 +1,66 @@ + 'x-oss-request-id', + 'copyPartResult' => 'CopyPartResult', + ]; + + public function validate() + { + Model::validateRequired('requestId', $this->requestId, true); + Model::validateRequired('copyPartResult', $this->copyPartResult, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['x-oss-request-id'] = $this->requestId; + } + if (null !== $this->copyPartResult) { + $res['CopyPartResult'] = null !== $this->copyPartResult ? $this->copyPartResult->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return UploadPartCopyResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['x-oss-request-id'])) { + $model->requestId = $map['x-oss-request-id']; + } + if (isset($map['CopyPartResult'])) { + $model->copyPartResult = copyPartResult::fromMap($map['CopyPartResult']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/UploadPartCopyResponse/copyPartResult.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/UploadPartCopyResponse/copyPartResult.php new file mode 100644 index 00000000..25440769 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/UploadPartCopyResponse/copyPartResult.php @@ -0,0 +1,63 @@ + 'LastModified', + 'eTag' => 'ETag', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->lastModified) { + $res['LastModified'] = $this->lastModified; + } + if (null !== $this->eTag) { + $res['ETag'] = $this->eTag; + } + + return $res; + } + + /** + * @param array $map + * + * @return copyPartResult + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['LastModified'])) { + $model->lastModified = $map['LastModified']; + } + if (isset($map['ETag'])) { + $model->eTag = $map['ETag']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/UploadPartRequest.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/UploadPartRequest.php new file mode 100644 index 00000000..dafe3dd9 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/UploadPartRequest.php @@ -0,0 +1,97 @@ + 'BucketName', + 'objectName' => 'ObjectName', + 'body' => 'body', + 'filter' => 'Filter', + ]; + + public function validate() + { + Model::validateRequired('bucketName', $this->bucketName, true); + Model::validateRequired('objectName', $this->objectName, true); + Model::validateRequired('filter', $this->filter, true); + Model::validatePattern('bucketName', $this->bucketName, '[a-zA-Z0-9-_]+'); + } + + public function toMap() + { + $res = []; + if (null !== $this->bucketName) { + $res['BucketName'] = $this->bucketName; + } + if (null !== $this->objectName) { + $res['ObjectName'] = $this->objectName; + } + if (null !== $this->body) { + $res['body'] = $this->body; + } + if (null !== $this->filter) { + $res['Filter'] = null !== $this->filter ? $this->filter->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return UploadPartRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['BucketName'])) { + $model->bucketName = $map['BucketName']; + } + if (isset($map['ObjectName'])) { + $model->objectName = $map['ObjectName']; + } + if (isset($map['body'])) { + $model->body = $map['body']; + } + if (isset($map['Filter'])) { + $model->filter = filter::fromMap($map['Filter']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/UploadPartRequest/filter.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/UploadPartRequest/filter.php new file mode 100644 index 00000000..eec576b8 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/UploadPartRequest/filter.php @@ -0,0 +1,65 @@ + 'partNumber', + 'uploadId' => 'uploadId', + ]; + + public function validate() + { + Model::validateRequired('partNumber', $this->partNumber, true); + Model::validateRequired('uploadId', $this->uploadId, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->partNumber) { + $res['partNumber'] = $this->partNumber; + } + if (null !== $this->uploadId) { + $res['uploadId'] = $this->uploadId; + } + + return $res; + } + + /** + * @param array $map + * + * @return filter + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['partNumber'])) { + $model->partNumber = $map['partNumber']; + } + if (isset($map['uploadId'])) { + $model->uploadId = $map['uploadId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-sdk/src/OSS/UploadPartResponse.php b/vendor/alibabacloud/tea-oss-sdk/src/OSS/UploadPartResponse.php new file mode 100644 index 00000000..5fb65f89 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-sdk/src/OSS/UploadPartResponse.php @@ -0,0 +1,50 @@ + 'x-oss-request-id', + ]; + + public function validate() + { + Model::validateRequired('requestId', $this->requestId, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['x-oss-request-id'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return UploadPartResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['x-oss-request-id'])) { + $model->requestId = $map['x-oss-request-id']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea-oss-utils/.gitignore b/vendor/alibabacloud/tea-oss-utils/.gitignore new file mode 100644 index 00000000..84837df3 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-utils/.gitignore @@ -0,0 +1,12 @@ +composer.phar +/vendor/ + +# Commit your application's lock file https://getcomposer.org/doc/01-basic-usage.md#commit-your-composer-lock-file-to-version-control +# You may choose to ignore a library lock file http://getcomposer.org/doc/02-libraries.md#lock-file +composer.lock + +.idea +.DS_Store + +cache/ +*.cache diff --git a/vendor/alibabacloud/tea-oss-utils/.php_cs.dist b/vendor/alibabacloud/tea-oss-utils/.php_cs.dist new file mode 100644 index 00000000..8617ec2f --- /dev/null +++ b/vendor/alibabacloud/tea-oss-utils/.php_cs.dist @@ -0,0 +1,65 @@ +setRiskyAllowed(true) + ->setIndent(' ') + ->setRules([ + '@PSR2' => true, + '@PhpCsFixer' => true, + '@Symfony:risky' => true, + 'concat_space' => ['spacing' => 'one'], + 'array_syntax' => ['syntax' => 'short'], + 'array_indentation' => true, + 'combine_consecutive_unsets' => true, + 'method_separation' => true, + 'single_quote' => true, + 'declare_equal_normalize' => true, + 'function_typehint_space' => true, + 'hash_to_slash_comment' => true, + 'include' => true, + 'lowercase_cast' => true, + 'no_multiline_whitespace_before_semicolons' => true, + 'no_leading_import_slash' => true, + 'no_multiline_whitespace_around_double_arrow' => true, + 'no_spaces_around_offset' => true, + 'no_unneeded_control_parentheses' => true, + 'no_unused_imports' => true, + 'no_whitespace_before_comma_in_array' => true, + 'no_whitespace_in_blank_line' => true, + 'object_operator_without_whitespace' => true, + 'single_blank_line_before_namespace' => true, + 'single_class_element_per_statement' => true, + 'space_after_semicolon' => true, + 'standardize_not_equals' => true, + 'ternary_operator_spaces' => true, + 'trailing_comma_in_multiline_array' => true, + 'trim_array_spaces' => true, + 'unary_operator_spaces' => true, + 'whitespace_after_comma_in_array' => true, + 'no_extra_consecutive_blank_lines' => [ + 'curly_brace_block', + 'extra', + 'parenthesis_brace_block', + 'square_brace_block', + 'throw', + 'use', + ], + 'binary_operator_spaces' => [ + 'align_double_arrow' => true, + 'align_equals' => true, + ], + 'braces' => [ + 'allow_single_line_closure' => true, + ], + ]) + ->setFinder( + PhpCsFixer\Finder::create() + ->exclude('vendor') + ->exclude('tests') + ->in(__DIR__) + ); diff --git a/vendor/alibabacloud/tea-oss-utils/README-CN.md b/vendor/alibabacloud/tea-oss-utils/README-CN.md new file mode 100644 index 00000000..a0d2af2b --- /dev/null +++ b/vendor/alibabacloud/tea-oss-utils/README-CN.md @@ -0,0 +1,31 @@ +English | [简体中文](README-CN.md) + +![](https://aliyunsdk-pages.alicdn.com/icons/AlibabaCloud.svg) + +## Alibaba Cloud Tea OSS Utils Library for PHP + +## Installation + +### Composer + +```bash +composer require alibabacloud/tea-oss-utils +``` + +## Issues + +[Opening an Issue](https://github.com/aliyun/alibabacloud-oss-sdk/issues/new), Issues not conforming to the guidelines may be closed immediately. + +## Changelog + +Detailed changes for each release are documented in the [release notes](./ChangeLog.txt). + +## References + +* [Latest Release](https://github.com/aliyun/alibabacloud-oss-sdk) + +## License + +[Apache-2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Copyright (c) 2009-present, Alibaba Cloud All rights reserved. diff --git a/vendor/alibabacloud/tea-oss-utils/README.md b/vendor/alibabacloud/tea-oss-utils/README.md new file mode 100644 index 00000000..bb433cbe --- /dev/null +++ b/vendor/alibabacloud/tea-oss-utils/README.md @@ -0,0 +1,31 @@ +[English](README.md) | 简体中文 + +![](https://aliyunsdk-pages.alicdn.com/icons/AlibabaCloud.svg) + +## Alibaba Cloud Tea OSS Utils Library for PHP + +## 安装 + +### Composer + +```bash +composer require alibabacloud/tea-oss-utils +``` + +## 问题 + +[提交 Issue](https://github.com/aliyun/alibabacloud-oss-sdk/issues/new),不符合指南的问题可能会立即关闭。 + +## 发行说明 + +每个版本的详细更改记录在[发行说明](./ChangeLog.txt)中。 + +## 相关 + +* [最新源码](https://github.com/aliyun/alibabacloud-oss-sdk) + +## 许可证 + +[Apache-2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Copyright (c) 2009-present, Alibaba Cloud All rights reserved. diff --git a/vendor/alibabacloud/tea-oss-utils/composer.json b/vendor/alibabacloud/tea-oss-utils/composer.json new file mode 100644 index 00000000..1c69d19b --- /dev/null +++ b/vendor/alibabacloud/tea-oss-utils/composer.json @@ -0,0 +1,45 @@ +{ + "name": "alibabacloud/tea-oss-utils", + "description": "Alibaba Cloud Tea OSS Utils Library for PHP", + "type": "library", + "license": "Apache-2.0", + "authors": [ + { + "name": "Alibaba Cloud SDK", + "email": "sdk-team@alibabacloud.com" + } + ], + "require": { + "php": ">5.5", + "alibabacloud/tea": "^3.0", + "guzzlehttp/psr7": "^1.0" + }, + "require-dev": { + "phpunit/phpunit": "^4.8.35|^5.4.3|^9.4" + }, + "autoload": { + "psr-4": { + "AlibabaCloud\\Tea\\OSSUtils\\": "src" + } + }, + "autoload-dev": { + "psr-4": { + "AlibabaCloud\\Tea\\OSSUtils\\Tests\\": "tests" + } + }, + "scripts": { + "fixer": "php-cs-fixer fix ./", + "test": [ + "@clearCache", + "./vendor/bin/phpunit --colors=always" + ], + "clearCache": "rm -rf cache/*" + }, + "config": { + "sort-packages": true, + "preferred-install": "dist", + "optimize-autoloader": true + }, + "prefer-stable": true, + "minimum-stability": "dev" +} diff --git a/vendor/alibabacloud/tea-oss-utils/mime.types.php b/vendor/alibabacloud/tea-oss-utils/mime.types.php new file mode 100644 index 00000000..27eaabfd --- /dev/null +++ b/vendor/alibabacloud/tea-oss-utils/mime.types.php @@ -0,0 +1,7299 @@ + + array ( + 'wof' => + array ( + 0 => 'application/font-woff', + ), + 'php' => + array ( + 0 => 'application/php', + 1 => 'application/x-httpd-php', + 2 => 'application/x-httpd-php-source', + 3 => 'application/x-php', + 4 => 'text/php', + 5 => 'text/x-php', + ), + 'otf' => + array ( + 0 => 'application/x-font-otf', + 1 => 'font/otf', + ), + 'ttf' => + array ( + 0 => 'application/x-font-ttf', + 1 => 'font/ttf', + ), + 'ttc' => + array ( + 0 => 'application/x-font-ttf', + 1 => 'font/collection', + ), + 'zip' => + array ( + 0 => 'application/x-gzip', + 1 => 'application/zip', + ), + 'amr' => + array ( + 0 => 'audio/amr', + ), + 'mp3' => + array ( + 0 => 'audio/mpeg', + ), + 'mpga' => + array ( + 0 => 'audio/mpeg', + ), + 'mp2' => + array ( + 0 => 'audio/mpeg', + ), + 'mp2a' => + array ( + 0 => 'audio/mpeg', + ), + 'm2a' => + array ( + 0 => 'audio/mpeg', + ), + 'm3a' => + array ( + 0 => 'audio/mpeg', + ), + 'jpg' => + array ( + 0 => 'image/jpeg', + ), + 'jpeg' => + array ( + 0 => 'image/jpeg', + ), + 'jpe' => + array ( + 0 => 'image/jpeg', + ), + 'bmp' => + array ( + 0 => 'image/x-ms-bmp', + 1 => 'image/bmp', + ), + 'ez' => + array ( + 0 => 'application/andrew-inset', + ), + 'aw' => + array ( + 0 => 'application/applixware', + ), + 'atom' => + array ( + 0 => 'application/atom+xml', + ), + 'atomcat' => + array ( + 0 => 'application/atomcat+xml', + ), + 'atomsvc' => + array ( + 0 => 'application/atomsvc+xml', + ), + 'ccxml' => + array ( + 0 => 'application/ccxml+xml', + ), + 'cdmia' => + array ( + 0 => 'application/cdmi-capability', + ), + 'cdmic' => + array ( + 0 => 'application/cdmi-container', + ), + 'cdmid' => + array ( + 0 => 'application/cdmi-domain', + ), + 'cdmio' => + array ( + 0 => 'application/cdmi-object', + ), + 'cdmiq' => + array ( + 0 => 'application/cdmi-queue', + ), + 'cu' => + array ( + 0 => 'application/cu-seeme', + ), + 'davmount' => + array ( + 0 => 'application/davmount+xml', + ), + 'dbk' => + array ( + 0 => 'application/docbook+xml', + ), + 'dssc' => + array ( + 0 => 'application/dssc+der', + ), + 'xdssc' => + array ( + 0 => 'application/dssc+xml', + ), + 'ecma' => + array ( + 0 => 'application/ecmascript', + ), + 'emma' => + array ( + 0 => 'application/emma+xml', + ), + 'epub' => + array ( + 0 => 'application/epub+zip', + ), + 'exi' => + array ( + 0 => 'application/exi', + ), + 'pfr' => + array ( + 0 => 'application/font-tdpfr', + ), + 'gml' => + array ( + 0 => 'application/gml+xml', + ), + 'gpx' => + array ( + 0 => 'application/gpx+xml', + ), + 'gxf' => + array ( + 0 => 'application/gxf', + ), + 'stk' => + array ( + 0 => 'application/hyperstudio', + ), + 'ink' => + array ( + 0 => 'application/inkml+xml', + ), + 'inkml' => + array ( + 0 => 'application/inkml+xml', + ), + 'ipfix' => + array ( + 0 => 'application/ipfix', + ), + 'jar' => + array ( + 0 => 'application/java-archive', + ), + 'ser' => + array ( + 0 => 'application/java-serialized-object', + ), + 'class' => + array ( + 0 => 'application/java-vm', + ), + 'js' => + array ( + 0 => 'application/javascript', + ), + 'json' => + array ( + 0 => 'application/json', + ), + 'jsonml' => + array ( + 0 => 'application/jsonml+json', + ), + 'lostxml' => + array ( + 0 => 'application/lost+xml', + ), + 'hqx' => + array ( + 0 => 'application/mac-binhex40', + ), + 'cpt' => + array ( + 0 => 'application/mac-compactpro', + ), + 'mads' => + array ( + 0 => 'application/mads+xml', + ), + 'mrc' => + array ( + 0 => 'application/marc', + ), + 'mrcx' => + array ( + 0 => 'application/marcxml+xml', + ), + 'ma' => + array ( + 0 => 'application/mathematica', + ), + 'nb' => + array ( + 0 => 'application/mathematica', + ), + 'mb' => + array ( + 0 => 'application/mathematica', + ), + 'mathml' => + array ( + 0 => 'application/mathml+xml', + ), + 'mbox' => + array ( + 0 => 'application/mbox', + ), + 'mscml' => + array ( + 0 => 'application/mediaservercontrol+xml', + ), + 'metalink' => + array ( + 0 => 'application/metalink+xml', + ), + 'meta4' => + array ( + 0 => 'application/metalink4+xml', + ), + 'mets' => + array ( + 0 => 'application/mets+xml', + ), + 'mods' => + array ( + 0 => 'application/mods+xml', + ), + 'm21' => + array ( + 0 => 'application/mp21', + ), + 'mp21' => + array ( + 0 => 'application/mp21', + ), + 'mp4s' => + array ( + 0 => 'application/mp4', + ), + 'doc' => + array ( + 0 => 'application/msword', + ), + 'dot' => + array ( + 0 => 'application/msword', + ), + 'mxf' => + array ( + 0 => 'application/mxf', + ), + 'bin' => + array ( + 0 => 'application/octet-stream', + ), + 'dms' => + array ( + 0 => 'application/octet-stream', + ), + 'lrf' => + array ( + 0 => 'application/octet-stream', + ), + 'mar' => + array ( + 0 => 'application/octet-stream', + ), + 'so' => + array ( + 0 => 'application/octet-stream', + ), + 'dist' => + array ( + 0 => 'application/octet-stream', + ), + 'distz' => + array ( + 0 => 'application/octet-stream', + ), + 'pkg' => + array ( + 0 => 'application/octet-stream', + ), + 'bpk' => + array ( + 0 => 'application/octet-stream', + ), + 'dump' => + array ( + 0 => 'application/octet-stream', + ), + 'elc' => + array ( + 0 => 'application/octet-stream', + ), + 'deploy' => + array ( + 0 => 'application/octet-stream', + ), + 'oda' => + array ( + 0 => 'application/oda', + ), + 'opf' => + array ( + 0 => 'application/oebps-package+xml', + ), + 'ogx' => + array ( + 0 => 'application/ogg', + ), + 'omdoc' => + array ( + 0 => 'application/omdoc+xml', + ), + 'onetoc' => + array ( + 0 => 'application/onenote', + ), + 'onetoc2' => + array ( + 0 => 'application/onenote', + ), + 'onetmp' => + array ( + 0 => 'application/onenote', + ), + 'onepkg' => + array ( + 0 => 'application/onenote', + ), + 'oxps' => + array ( + 0 => 'application/oxps', + ), + 'xer' => + array ( + 0 => 'application/patch-ops-error+xml', + ), + 'pdf' => + array ( + 0 => 'application/pdf', + ), + 'pgp' => + array ( + 0 => 'application/pgp-encrypted', + ), + 'asc' => + array ( + 0 => 'application/pgp-signature', + ), + 'sig' => + array ( + 0 => 'application/pgp-signature', + ), + 'prf' => + array ( + 0 => 'application/pics-rules', + ), + 'p10' => + array ( + 0 => 'application/pkcs10', + ), + 'p7m' => + array ( + 0 => 'application/pkcs7-mime', + ), + 'p7c' => + array ( + 0 => 'application/pkcs7-mime', + ), + 'p7s' => + array ( + 0 => 'application/pkcs7-signature', + ), + 'p8' => + array ( + 0 => 'application/pkcs8', + ), + 'ac' => + array ( + 0 => 'application/pkix-attr-cert', + ), + 'cer' => + array ( + 0 => 'application/pkix-cert', + ), + 'crl' => + array ( + 0 => 'application/pkix-crl', + ), + 'pkipath' => + array ( + 0 => 'application/pkix-pkipath', + ), + 'pki' => + array ( + 0 => 'application/pkixcmp', + ), + 'pls' => + array ( + 0 => 'application/pls+xml', + ), + 'ai' => + array ( + 0 => 'application/postscript', + ), + 'eps' => + array ( + 0 => 'application/postscript', + ), + 'ps' => + array ( + 0 => 'application/postscript', + ), + 'cww' => + array ( + 0 => 'application/prs.cww', + ), + 'pskcxml' => + array ( + 0 => 'application/pskc+xml', + ), + 'rdf' => + array ( + 0 => 'application/rdf+xml', + ), + 'rif' => + array ( + 0 => 'application/reginfo+xml', + ), + 'rnc' => + array ( + 0 => 'application/relax-ng-compact-syntax', + ), + 'rl' => + array ( + 0 => 'application/resource-lists+xml', + ), + 'rld' => + array ( + 0 => 'application/resource-lists-diff+xml', + ), + 'rs' => + array ( + 0 => 'application/rls-services+xml', + ), + 'gbr' => + array ( + 0 => 'application/rpki-ghostbusters', + ), + 'mft' => + array ( + 0 => 'application/rpki-manifest', + ), + 'roa' => + array ( + 0 => 'application/rpki-roa', + ), + 'rsd' => + array ( + 0 => 'application/rsd+xml', + ), + 'rss' => + array ( + 0 => 'application/rss+xml', + ), + 'rtf' => + array ( + 0 => 'application/rtf', + ), + 'sbml' => + array ( + 0 => 'application/sbml+xml', + ), + 'scq' => + array ( + 0 => 'application/scvp-cv-request', + ), + 'scs' => + array ( + 0 => 'application/scvp-cv-response', + ), + 'spq' => + array ( + 0 => 'application/scvp-vp-request', + ), + 'spp' => + array ( + 0 => 'application/scvp-vp-response', + ), + 'sdp' => + array ( + 0 => 'application/sdp', + ), + 'setpay' => + array ( + 0 => 'application/set-payment-initiation', + ), + 'setreg' => + array ( + 0 => 'application/set-registration-initiation', + ), + 'shf' => + array ( + 0 => 'application/shf+xml', + ), + 'smi' => + array ( + 0 => 'application/smil+xml', + ), + 'smil' => + array ( + 0 => 'application/smil+xml', + ), + 'rq' => + array ( + 0 => 'application/sparql-query', + ), + 'srx' => + array ( + 0 => 'application/sparql-results+xml', + ), + 'gram' => + array ( + 0 => 'application/srgs', + ), + 'grxml' => + array ( + 0 => 'application/srgs+xml', + ), + 'sru' => + array ( + 0 => 'application/sru+xml', + ), + 'ssdl' => + array ( + 0 => 'application/ssdl+xml', + ), + 'ssml' => + array ( + 0 => 'application/ssml+xml', + ), + 'tei' => + array ( + 0 => 'application/tei+xml', + ), + 'teicorpus' => + array ( + 0 => 'application/tei+xml', + ), + 'tfi' => + array ( + 0 => 'application/thraud+xml', + ), + 'tsd' => + array ( + 0 => 'application/timestamped-data', + ), + 'plb' => + array ( + 0 => 'application/vnd.3gpp.pic-bw-large', + ), + 'psb' => + array ( + 0 => 'application/vnd.3gpp.pic-bw-small', + ), + 'pvb' => + array ( + 0 => 'application/vnd.3gpp.pic-bw-var', + ), + 'tcap' => + array ( + 0 => 'application/vnd.3gpp2.tcap', + ), + 'pwn' => + array ( + 0 => 'application/vnd.3m.post-it-notes', + ), + 'aso' => + array ( + 0 => 'application/vnd.accpac.simply.aso', + ), + 'imp' => + array ( + 0 => 'application/vnd.accpac.simply.imp', + ), + 'acu' => + array ( + 0 => 'application/vnd.acucobol', + ), + 'atc' => + array ( + 0 => 'application/vnd.acucorp', + ), + 'acutc' => + array ( + 0 => 'application/vnd.acucorp', + ), + 'air' => + array ( + 0 => 'application/vnd.adobe.air-application-installer-package+zip', + ), + 'fcdt' => + array ( + 0 => 'application/vnd.adobe.formscentral.fcdt', + ), + 'fxp' => + array ( + 0 => 'application/vnd.adobe.fxp', + ), + 'fxpl' => + array ( + 0 => 'application/vnd.adobe.fxp', + ), + 'xdp' => + array ( + 0 => 'application/vnd.adobe.xdp+xml', + ), + 'xfdf' => + array ( + 0 => 'application/vnd.adobe.xfdf', + ), + 'ahead' => + array ( + 0 => 'application/vnd.ahead.space', + ), + 'azf' => + array ( + 0 => 'application/vnd.airzip.filesecure.azf', + ), + 'azs' => + array ( + 0 => 'application/vnd.airzip.filesecure.azs', + ), + 'azw' => + array ( + 0 => 'application/vnd.amazon.ebook', + ), + 'acc' => + array ( + 0 => 'application/vnd.americandynamics.acc', + ), + 'ami' => + array ( + 0 => 'application/vnd.amiga.ami', + ), + 'apk' => + array ( + 0 => 'application/vnd.android.package-archive', + ), + 'cii' => + array ( + 0 => 'application/vnd.anser-web-certificate-issue-initiation', + ), + 'fti' => + array ( + 0 => 'application/vnd.anser-web-funds-transfer-initiation', + ), + 'atx' => + array ( + 0 => 'application/vnd.antix.game-component', + ), + 'mpkg' => + array ( + 0 => 'application/vnd.apple.installer+xml', + ), + 'm3u8' => + array ( + 0 => 'application/vnd.apple.mpegurl', + ), + 'swi' => + array ( + 0 => 'application/vnd.aristanetworks.swi', + ), + 'iota' => + array ( + 0 => 'application/vnd.astraea-software.iota', + ), + 'aep' => + array ( + 0 => 'application/vnd.audiograph', + ), + 'mpm' => + array ( + 0 => 'application/vnd.blueice.multipass', + ), + 'bmi' => + array ( + 0 => 'application/vnd.bmi', + ), + 'rep' => + array ( + 0 => 'application/vnd.businessobjects', + ), + 'cdxml' => + array ( + 0 => 'application/vnd.chemdraw+xml', + ), + 'mmd' => + array ( + 0 => 'application/vnd.chipnuts.karaoke-mmd', + ), + 'cdy' => + array ( + 0 => 'application/vnd.cinderella', + ), + 'cla' => + array ( + 0 => 'application/vnd.claymore', + ), + 'rp9' => + array ( + 0 => 'application/vnd.cloanto.rp9', + ), + 'c4g' => + array ( + 0 => 'application/vnd.clonk.c4group', + ), + 'c4d' => + array ( + 0 => 'application/vnd.clonk.c4group', + ), + 'c4f' => + array ( + 0 => 'application/vnd.clonk.c4group', + ), + 'c4p' => + array ( + 0 => 'application/vnd.clonk.c4group', + ), + 'c4u' => + array ( + 0 => 'application/vnd.clonk.c4group', + ), + 'c11amc' => + array ( + 0 => 'application/vnd.cluetrust.cartomobile-config', + ), + 'c11amz' => + array ( + 0 => 'application/vnd.cluetrust.cartomobile-config-pkg', + ), + 'csp' => + array ( + 0 => 'application/vnd.commonspace', + ), + 'cdbcmsg' => + array ( + 0 => 'application/vnd.contact.cmsg', + ), + 'cmc' => + array ( + 0 => 'application/vnd.cosmocaller', + ), + 'clkx' => + array ( + 0 => 'application/vnd.crick.clicker', + ), + 'clkk' => + array ( + 0 => 'application/vnd.crick.clicker.keyboard', + ), + 'clkp' => + array ( + 0 => 'application/vnd.crick.clicker.palette', + ), + 'clkt' => + array ( + 0 => 'application/vnd.crick.clicker.template', + ), + 'clkw' => + array ( + 0 => 'application/vnd.crick.clicker.wordbank', + ), + 'wbs' => + array ( + 0 => 'application/vnd.criticaltools.wbs+xml', + ), + 'pml' => + array ( + 0 => 'application/vnd.ctc-posml', + ), + 'ppd' => + array ( + 0 => 'application/vnd.cups-ppd', + ), + 'car' => + array ( + 0 => 'application/vnd.curl.car', + ), + 'pcurl' => + array ( + 0 => 'application/vnd.curl.pcurl', + ), + 'dart' => + array ( + 0 => 'application/vnd.dart', + ), + 'rdz' => + array ( + 0 => 'application/vnd.data-vision.rdz', + ), + 'uvf' => + array ( + 0 => 'application/vnd.dece.data', + ), + 'uvvf' => + array ( + 0 => 'application/vnd.dece.data', + ), + 'uvd' => + array ( + 0 => 'application/vnd.dece.data', + ), + 'uvvd' => + array ( + 0 => 'application/vnd.dece.data', + ), + 'uvt' => + array ( + 0 => 'application/vnd.dece.ttml+xml', + ), + 'uvvt' => + array ( + 0 => 'application/vnd.dece.ttml+xml', + ), + 'uvx' => + array ( + 0 => 'application/vnd.dece.unspecified', + ), + 'uvvx' => + array ( + 0 => 'application/vnd.dece.unspecified', + ), + 'uvz' => + array ( + 0 => 'application/vnd.dece.zip', + ), + 'uvvz' => + array ( + 0 => 'application/vnd.dece.zip', + ), + 'fe_launch' => + array ( + 0 => 'application/vnd.denovo.fcselayout-link', + ), + 'dna' => + array ( + 0 => 'application/vnd.dna', + ), + 'mlp' => + array ( + 0 => 'application/vnd.dolby.mlp', + ), + 'dpg' => + array ( + 0 => 'application/vnd.dpgraph', + ), + 'dfac' => + array ( + 0 => 'application/vnd.dreamfactory', + ), + 'kpxx' => + array ( + 0 => 'application/vnd.ds-keypoint', + ), + 'ait' => + array ( + 0 => 'application/vnd.dvb.ait', + ), + 'svc' => + array ( + 0 => 'application/vnd.dvb.service', + ), + 'geo' => + array ( + 0 => 'application/vnd.dynageo', + ), + 'mag' => + array ( + 0 => 'application/vnd.ecowin.chart', + ), + 'nml' => + array ( + 0 => 'application/vnd.enliven', + ), + 'esf' => + array ( + 0 => 'application/vnd.epson.esf', + ), + 'msf' => + array ( + 0 => 'application/vnd.epson.msf', + ), + 'qam' => + array ( + 0 => 'application/vnd.epson.quickanime', + ), + 'slt' => + array ( + 0 => 'application/vnd.epson.salt', + ), + 'ssf' => + array ( + 0 => 'application/vnd.epson.ssf', + ), + 'es3' => + array ( + 0 => 'application/vnd.eszigno3+xml', + ), + 'et3' => + array ( + 0 => 'application/vnd.eszigno3+xml', + ), + 'ez2' => + array ( + 0 => 'application/vnd.ezpix-album', + ), + 'ez3' => + array ( + 0 => 'application/vnd.ezpix-package', + ), + 'fdf' => + array ( + 0 => 'application/vnd.fdf', + ), + 'mseed' => + array ( + 0 => 'application/vnd.fdsn.mseed', + ), + 'seed' => + array ( + 0 => 'application/vnd.fdsn.seed', + ), + 'dataless' => + array ( + 0 => 'application/vnd.fdsn.seed', + ), + 'gph' => + array ( + 0 => 'application/vnd.flographit', + ), + 'ftc' => + array ( + 0 => 'application/vnd.fluxtime.clip', + ), + 'fm' => + array ( + 0 => 'application/vnd.framemaker', + ), + 'frame' => + array ( + 0 => 'application/vnd.framemaker', + ), + 'maker' => + array ( + 0 => 'application/vnd.framemaker', + ), + 'book' => + array ( + 0 => 'application/vnd.framemaker', + ), + 'fnc' => + array ( + 0 => 'application/vnd.frogans.fnc', + ), + 'ltf' => + array ( + 0 => 'application/vnd.frogans.ltf', + ), + 'fsc' => + array ( + 0 => 'application/vnd.fsc.weblaunch', + ), + 'oas' => + array ( + 0 => 'application/vnd.fujitsu.oasys', + ), + 'oa2' => + array ( + 0 => 'application/vnd.fujitsu.oasys2', + ), + 'oa3' => + array ( + 0 => 'application/vnd.fujitsu.oasys3', + ), + 'fg5' => + array ( + 0 => 'application/vnd.fujitsu.oasysgp', + ), + 'bh2' => + array ( + 0 => 'application/vnd.fujitsu.oasysprs', + ), + 'ddd' => + array ( + 0 => 'application/vnd.fujixerox.ddd', + ), + 'xdw' => + array ( + 0 => 'application/vnd.fujixerox.docuworks', + ), + 'xbd' => + array ( + 0 => 'application/vnd.fujixerox.docuworks.binder', + ), + 'fzs' => + array ( + 0 => 'application/vnd.fuzzysheet', + ), + 'txd' => + array ( + 0 => 'application/vnd.genomatix.tuxedo', + ), + 'ggb' => + array ( + 0 => 'application/vnd.geogebra.file', + ), + 'ggt' => + array ( + 0 => 'application/vnd.geogebra.tool', + ), + 'gex' => + array ( + 0 => 'application/vnd.geometry-explorer', + ), + 'gre' => + array ( + 0 => 'application/vnd.geometry-explorer', + ), + 'gxt' => + array ( + 0 => 'application/vnd.geonext', + ), + 'g2w' => + array ( + 0 => 'application/vnd.geoplan', + ), + 'g3w' => + array ( + 0 => 'application/vnd.geospace', + ), + 'gmx' => + array ( + 0 => 'application/vnd.gmx', + ), + 'kml' => + array ( + 0 => 'application/vnd.google-earth.kml+xml', + ), + 'kmz' => + array ( + 0 => 'application/vnd.google-earth.kmz', + ), + 'gqf' => + array ( + 0 => 'application/vnd.grafeq', + ), + 'gqs' => + array ( + 0 => 'application/vnd.grafeq', + ), + 'gac' => + array ( + 0 => 'application/vnd.groove-account', + ), + 'ghf' => + array ( + 0 => 'application/vnd.groove-help', + ), + 'gim' => + array ( + 0 => 'application/vnd.groove-identity-message', + ), + 'grv' => + array ( + 0 => 'application/vnd.groove-injector', + ), + 'gtm' => + array ( + 0 => 'application/vnd.groove-tool-message', + ), + 'tpl' => + array ( + 0 => 'application/vnd.groove-tool-template', + ), + 'vcg' => + array ( + 0 => 'application/vnd.groove-vcard', + ), + 'hal' => + array ( + 0 => 'application/vnd.hal+xml', + ), + 'zmm' => + array ( + 0 => 'application/vnd.handheld-entertainment+xml', + ), + 'hbci' => + array ( + 0 => 'application/vnd.hbci', + ), + 'les' => + array ( + 0 => 'application/vnd.hhe.lesson-player', + ), + 'hpgl' => + array ( + 0 => 'application/vnd.hp-hpgl', + ), + 'hpid' => + array ( + 0 => 'application/vnd.hp-hpid', + ), + 'hps' => + array ( + 0 => 'application/vnd.hp-hps', + ), + 'jlt' => + array ( + 0 => 'application/vnd.hp-jlyt', + ), + 'pcl' => + array ( + 0 => 'application/vnd.hp-pcl', + ), + 'pclxl' => + array ( + 0 => 'application/vnd.hp-pclxl', + ), + 'sfd-hdstx' => + array ( + 0 => 'application/vnd.hydrostatix.sof-data', + ), + 'mpy' => + array ( + 0 => 'application/vnd.ibm.minipay', + ), + 'afp' => + array ( + 0 => 'application/vnd.ibm.modcap', + ), + 'listafp' => + array ( + 0 => 'application/vnd.ibm.modcap', + ), + 'list3820' => + array ( + 0 => 'application/vnd.ibm.modcap', + ), + 'irm' => + array ( + 0 => 'application/vnd.ibm.rights-management', + ), + 'sc' => + array ( + 0 => 'application/vnd.ibm.secure-container', + ), + 'icc' => + array ( + 0 => 'application/vnd.iccprofile', + ), + 'icm' => + array ( + 0 => 'application/vnd.iccprofile', + ), + 'igl' => + array ( + 0 => 'application/vnd.igloader', + ), + 'ivp' => + array ( + 0 => 'application/vnd.immervision-ivp', + ), + 'ivu' => + array ( + 0 => 'application/vnd.immervision-ivu', + ), + 'igm' => + array ( + 0 => 'application/vnd.insors.igm', + ), + 'xpw' => + array ( + 0 => 'application/vnd.intercon.formnet', + ), + 'xpx' => + array ( + 0 => 'application/vnd.intercon.formnet', + ), + 'i2g' => + array ( + 0 => 'application/vnd.intergeo', + ), + 'qbo' => + array ( + 0 => 'application/vnd.intu.qbo', + ), + 'qfx' => + array ( + 0 => 'application/vnd.intu.qfx', + ), + 'rcprofile' => + array ( + 0 => 'application/vnd.ipunplugged.rcprofile', + ), + 'irp' => + array ( + 0 => 'application/vnd.irepository.package+xml', + ), + 'xpr' => + array ( + 0 => 'application/vnd.is-xpr', + ), + 'fcs' => + array ( + 0 => 'application/vnd.isac.fcs', + ), + 'jam' => + array ( + 0 => 'application/vnd.jam', + ), + 'rms' => + array ( + 0 => 'application/vnd.jcp.javame.midlet-rms', + ), + 'jisp' => + array ( + 0 => 'application/vnd.jisp', + ), + 'joda' => + array ( + 0 => 'application/vnd.joost.joda-archive', + ), + 'ktz' => + array ( + 0 => 'application/vnd.kahootz', + ), + 'ktr' => + array ( + 0 => 'application/vnd.kahootz', + ), + 'karbon' => + array ( + 0 => 'application/vnd.kde.karbon', + ), + 'chrt' => + array ( + 0 => 'application/vnd.kde.kchart', + ), + 'kfo' => + array ( + 0 => 'application/vnd.kde.kformula', + ), + 'flw' => + array ( + 0 => 'application/vnd.kde.kivio', + ), + 'kon' => + array ( + 0 => 'application/vnd.kde.kontour', + ), + 'kpr' => + array ( + 0 => 'application/vnd.kde.kpresenter', + ), + 'kpt' => + array ( + 0 => 'application/vnd.kde.kpresenter', + ), + 'ksp' => + array ( + 0 => 'application/vnd.kde.kspread', + ), + 'kwd' => + array ( + 0 => 'application/vnd.kde.kword', + ), + 'kwt' => + array ( + 0 => 'application/vnd.kde.kword', + ), + 'htke' => + array ( + 0 => 'application/vnd.kenameaapp', + ), + 'kia' => + array ( + 0 => 'application/vnd.kidspiration', + ), + 'kne' => + array ( + 0 => 'application/vnd.kinar', + ), + 'knp' => + array ( + 0 => 'application/vnd.kinar', + ), + 'skp' => + array ( + 0 => 'application/vnd.koan', + ), + 'skd' => + array ( + 0 => 'application/vnd.koan', + ), + 'skt' => + array ( + 0 => 'application/vnd.koan', + ), + 'skm' => + array ( + 0 => 'application/vnd.koan', + ), + 'sse' => + array ( + 0 => 'application/vnd.kodak-descriptor', + ), + 'lasxml' => + array ( + 0 => 'application/vnd.las.las+xml', + ), + 'lbd' => + array ( + 0 => 'application/vnd.llamagraphics.life-balance.desktop', + ), + 'lbe' => + array ( + 0 => 'application/vnd.llamagraphics.life-balance.exchange+xml', + ), + 123 => + array ( + 0 => 'application/vnd.lotus-1-2-3', + ), + 'apr' => + array ( + 0 => 'application/vnd.lotus-approach', + ), + 'pre' => + array ( + 0 => 'application/vnd.lotus-freelance', + ), + 'nsf' => + array ( + 0 => 'application/vnd.lotus-notes', + ), + 'org' => + array ( + 0 => 'application/vnd.lotus-organizer', + ), + 'scm' => + array ( + 0 => 'application/vnd.lotus-screencam', + ), + 'lwp' => + array ( + 0 => 'application/vnd.lotus-wordpro', + ), + 'portpkg' => + array ( + 0 => 'application/vnd.macports.portpkg', + ), + 'mcd' => + array ( + 0 => 'application/vnd.mcd', + ), + 'mc1' => + array ( + 0 => 'application/vnd.medcalcdata', + ), + 'cdkey' => + array ( + 0 => 'application/vnd.mediastation.cdkey', + ), + 'mwf' => + array ( + 0 => 'application/vnd.mfer', + ), + 'mfm' => + array ( + 0 => 'application/vnd.mfmp', + ), + 'flo' => + array ( + 0 => 'application/vnd.micrografx.flo', + ), + 'igx' => + array ( + 0 => 'application/vnd.micrografx.igx', + ), + 'mif' => + array ( + 0 => 'application/vnd.mif', + ), + 'daf' => + array ( + 0 => 'application/vnd.mobius.daf', + ), + 'dis' => + array ( + 0 => 'application/vnd.mobius.dis', + ), + 'mbk' => + array ( + 0 => 'application/vnd.mobius.mbk', + ), + 'mqy' => + array ( + 0 => 'application/vnd.mobius.mqy', + ), + 'msl' => + array ( + 0 => 'application/vnd.mobius.msl', + ), + 'plc' => + array ( + 0 => 'application/vnd.mobius.plc', + ), + 'txf' => + array ( + 0 => 'application/vnd.mobius.txf', + ), + 'mpn' => + array ( + 0 => 'application/vnd.mophun.application', + ), + 'mpc' => + array ( + 0 => 'application/vnd.mophun.certificate', + ), + 'xul' => + array ( + 0 => 'application/vnd.mozilla.xul+xml', + ), + 'cil' => + array ( + 0 => 'application/vnd.ms-artgalry', + ), + 'cab' => + array ( + 0 => 'application/vnd.ms-cab-compressed', + ), + 'xls' => + array ( + 0 => 'application/vnd.ms-excel', + ), + 'xlm' => + array ( + 0 => 'application/vnd.ms-excel', + ), + 'xla' => + array ( + 0 => 'application/vnd.ms-excel', + ), + 'xlc' => + array ( + 0 => 'application/vnd.ms-excel', + ), + 'xlt' => + array ( + 0 => 'application/vnd.ms-excel', + ), + 'xlw' => + array ( + 0 => 'application/vnd.ms-excel', + ), + 'xlam' => + array ( + 0 => 'application/vnd.ms-excel.addin.macroenabled.12', + ), + 'xlsb' => + array ( + 0 => 'application/vnd.ms-excel.sheet.binary.macroenabled.12', + ), + 'xlsm' => + array ( + 0 => 'application/vnd.ms-excel.sheet.macroenabled.12', + ), + 'xltm' => + array ( + 0 => 'application/vnd.ms-excel.template.macroenabled.12', + ), + 'eot' => + array ( + 0 => 'application/vnd.ms-fontobject', + ), + 'chm' => + array ( + 0 => 'application/vnd.ms-htmlhelp', + ), + 'ims' => + array ( + 0 => 'application/vnd.ms-ims', + ), + 'lrm' => + array ( + 0 => 'application/vnd.ms-lrm', + ), + 'thmx' => + array ( + 0 => 'application/vnd.ms-officetheme', + ), + 'cat' => + array ( + 0 => 'application/vnd.ms-pki.seccat', + ), + 'stl' => + array ( + 0 => 'application/vnd.ms-pki.stl', + ), + 'ppt' => + array ( + 0 => 'application/vnd.ms-powerpoint', + ), + 'pps' => + array ( + 0 => 'application/vnd.ms-powerpoint', + ), + 'pot' => + array ( + 0 => 'application/vnd.ms-powerpoint', + ), + 'ppam' => + array ( + 0 => 'application/vnd.ms-powerpoint.addin.macroenabled.12', + ), + 'pptm' => + array ( + 0 => 'application/vnd.ms-powerpoint.presentation.macroenabled.12', + ), + 'sldm' => + array ( + 0 => 'application/vnd.ms-powerpoint.slide.macroenabled.12', + ), + 'ppsm' => + array ( + 0 => 'application/vnd.ms-powerpoint.slideshow.macroenabled.12', + ), + 'potm' => + array ( + 0 => 'application/vnd.ms-powerpoint.template.macroenabled.12', + ), + 'mpp' => + array ( + 0 => 'application/vnd.ms-project', + ), + 'mpt' => + array ( + 0 => 'application/vnd.ms-project', + ), + 'docm' => + array ( + 0 => 'application/vnd.ms-word.document.macroenabled.12', + ), + 'dotm' => + array ( + 0 => 'application/vnd.ms-word.template.macroenabled.12', + ), + 'wps' => + array ( + 0 => 'application/vnd.ms-works', + ), + 'wks' => + array ( + 0 => 'application/vnd.ms-works', + ), + 'wcm' => + array ( + 0 => 'application/vnd.ms-works', + ), + 'wdb' => + array ( + 0 => 'application/vnd.ms-works', + ), + 'wpl' => + array ( + 0 => 'application/vnd.ms-wpl', + ), + 'xps' => + array ( + 0 => 'application/vnd.ms-xpsdocument', + ), + 'mseq' => + array ( + 0 => 'application/vnd.mseq', + ), + 'mus' => + array ( + 0 => 'application/vnd.musician', + ), + 'msty' => + array ( + 0 => 'application/vnd.muvee.style', + ), + 'taglet' => + array ( + 0 => 'application/vnd.mynfc', + ), + 'nlu' => + array ( + 0 => 'application/vnd.neurolanguage.nlu', + ), + 'ntf' => + array ( + 0 => 'application/vnd.nitf', + ), + 'nitf' => + array ( + 0 => 'application/vnd.nitf', + ), + 'nnd' => + array ( + 0 => 'application/vnd.noblenet-directory', + ), + 'nns' => + array ( + 0 => 'application/vnd.noblenet-sealer', + ), + 'nnw' => + array ( + 0 => 'application/vnd.noblenet-web', + ), + 'ngdat' => + array ( + 0 => 'application/vnd.nokia.n-gage.data', + ), + 'n-gage' => + array ( + 0 => 'application/vnd.nokia.n-gage.symbian.install', + ), + 'rpst' => + array ( + 0 => 'application/vnd.nokia.radio-preset', + ), + 'rpss' => + array ( + 0 => 'application/vnd.nokia.radio-presets', + ), + 'edm' => + array ( + 0 => 'application/vnd.novadigm.edm', + ), + 'edx' => + array ( + 0 => 'application/vnd.novadigm.edx', + ), + 'ext' => + array ( + 0 => 'application/vnd.novadigm.ext', + ), + 'odc' => + array ( + 0 => 'application/vnd.oasis.opendocument.chart', + ), + 'otc' => + array ( + 0 => 'application/vnd.oasis.opendocument.chart-template', + ), + 'odb' => + array ( + 0 => 'application/vnd.oasis.opendocument.database', + ), + 'odf' => + array ( + 0 => 'application/vnd.oasis.opendocument.formula', + ), + 'odft' => + array ( + 0 => 'application/vnd.oasis.opendocument.formula-template', + ), + 'odg' => + array ( + 0 => 'application/vnd.oasis.opendocument.graphics', + ), + 'otg' => + array ( + 0 => 'application/vnd.oasis.opendocument.graphics-template', + ), + 'odi' => + array ( + 0 => 'application/vnd.oasis.opendocument.image', + ), + 'oti' => + array ( + 0 => 'application/vnd.oasis.opendocument.image-template', + ), + 'odp' => + array ( + 0 => 'application/vnd.oasis.opendocument.presentation', + ), + 'otp' => + array ( + 0 => 'application/vnd.oasis.opendocument.presentation-template', + ), + 'ods' => + array ( + 0 => 'application/vnd.oasis.opendocument.spreadsheet', + ), + 'ots' => + array ( + 0 => 'application/vnd.oasis.opendocument.spreadsheet-template', + ), + 'odt' => + array ( + 0 => 'application/vnd.oasis.opendocument.text', + ), + 'odm' => + array ( + 0 => 'application/vnd.oasis.opendocument.text-master', + ), + 'ott' => + array ( + 0 => 'application/vnd.oasis.opendocument.text-template', + ), + 'oth' => + array ( + 0 => 'application/vnd.oasis.opendocument.text-web', + ), + 'xo' => + array ( + 0 => 'application/vnd.olpc-sugar', + ), + 'dd2' => + array ( + 0 => 'application/vnd.oma.dd2+xml', + ), + 'oxt' => + array ( + 0 => 'application/vnd.openofficeorg.extension', + ), + 'pptx' => + array ( + 0 => 'application/vnd.openxmlformats-officedocument.presentationml.presentation', + ), + 'sldx' => + array ( + 0 => 'application/vnd.openxmlformats-officedocument.presentationml.slide', + ), + 'ppsx' => + array ( + 0 => 'application/vnd.openxmlformats-officedocument.presentationml.slideshow', + ), + 'potx' => + array ( + 0 => 'application/vnd.openxmlformats-officedocument.presentationml.template', + ), + 'xlsx' => + array ( + 0 => 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet', + ), + 'xltx' => + array ( + 0 => 'application/vnd.openxmlformats-officedocument.spreadsheetml.template', + ), + 'docx' => + array ( + 0 => 'application/vnd.openxmlformats-officedocument.wordprocessingml.document', + ), + 'dotx' => + array ( + 0 => 'application/vnd.openxmlformats-officedocument.wordprocessingml.template', + ), + 'mgp' => + array ( + 0 => 'application/vnd.osgeo.mapguide.package', + ), + 'dp' => + array ( + 0 => 'application/vnd.osgi.dp', + ), + 'esa' => + array ( + 0 => 'application/vnd.osgi.subsystem', + ), + 'pdb' => + array ( + 0 => 'application/vnd.palm', + ), + 'pqa' => + array ( + 0 => 'application/vnd.palm', + ), + 'oprc' => + array ( + 0 => 'application/vnd.palm', + ), + 'paw' => + array ( + 0 => 'application/vnd.pawaafile', + ), + 'str' => + array ( + 0 => 'application/vnd.pg.format', + ), + 'ei6' => + array ( + 0 => 'application/vnd.pg.osasli', + ), + 'efif' => + array ( + 0 => 'application/vnd.picsel', + ), + 'wg' => + array ( + 0 => 'application/vnd.pmi.widget', + ), + 'plf' => + array ( + 0 => 'application/vnd.pocketlearn', + ), + 'pbd' => + array ( + 0 => 'application/vnd.powerbuilder6', + ), + 'box' => + array ( + 0 => 'application/vnd.previewsystems.box', + ), + 'mgz' => + array ( + 0 => 'application/vnd.proteus.magazine', + ), + 'qps' => + array ( + 0 => 'application/vnd.publishare-delta-tree', + ), + 'ptid' => + array ( + 0 => 'application/vnd.pvi.ptid1', + ), + 'qxd' => + array ( + 0 => 'application/vnd.quark.quarkxpress', + ), + 'qxt' => + array ( + 0 => 'application/vnd.quark.quarkxpress', + ), + 'qwd' => + array ( + 0 => 'application/vnd.quark.quarkxpress', + ), + 'qwt' => + array ( + 0 => 'application/vnd.quark.quarkxpress', + ), + 'qxl' => + array ( + 0 => 'application/vnd.quark.quarkxpress', + ), + 'qxb' => + array ( + 0 => 'application/vnd.quark.quarkxpress', + ), + 'bed' => + array ( + 0 => 'application/vnd.realvnc.bed', + ), + 'mxl' => + array ( + 0 => 'application/vnd.recordare.musicxml', + ), + 'musicxml' => + array ( + 0 => 'application/vnd.recordare.musicxml+xml', + ), + 'cryptonote' => + array ( + 0 => 'application/vnd.rig.cryptonote', + ), + 'cod' => + array ( + 0 => 'application/vnd.rim.cod', + ), + 'rm' => + array ( + 0 => 'application/vnd.rn-realmedia', + ), + 'rmvb' => + array ( + 0 => 'application/vnd.rn-realmedia-vbr', + ), + 'link66' => + array ( + 0 => 'application/vnd.route66.link66+xml', + ), + 'st' => + array ( + 0 => 'application/vnd.sailingtracker.track', + ), + 'see' => + array ( + 0 => 'application/vnd.seemail', + ), + 'sema' => + array ( + 0 => 'application/vnd.sema', + ), + 'semd' => + array ( + 0 => 'application/vnd.semd', + ), + 'semf' => + array ( + 0 => 'application/vnd.semf', + ), + 'ifm' => + array ( + 0 => 'application/vnd.shana.informed.formdata', + ), + 'itp' => + array ( + 0 => 'application/vnd.shana.informed.formtemplate', + ), + 'iif' => + array ( + 0 => 'application/vnd.shana.informed.interchange', + ), + 'ipk' => + array ( + 0 => 'application/vnd.shana.informed.package', + ), + 'twd' => + array ( + 0 => 'application/vnd.simtech-mindmapper', + ), + 'twds' => + array ( + 0 => 'application/vnd.simtech-mindmapper', + ), + 'mmf' => + array ( + 0 => 'application/vnd.smaf', + ), + 'teacher' => + array ( + 0 => 'application/vnd.smart.teacher', + ), + 'sdkm' => + array ( + 0 => 'application/vnd.solent.sdkm+xml', + ), + 'sdkd' => + array ( + 0 => 'application/vnd.solent.sdkm+xml', + ), + 'dxp' => + array ( + 0 => 'application/vnd.spotfire.dxp', + ), + 'sfs' => + array ( + 0 => 'application/vnd.spotfire.sfs', + ), + 'sdc' => + array ( + 0 => 'application/vnd.stardivision.calc', + ), + 'sda' => + array ( + 0 => 'application/vnd.stardivision.draw', + ), + 'sdd' => + array ( + 0 => 'application/vnd.stardivision.impress', + ), + 'smf' => + array ( + 0 => 'application/vnd.stardivision.math', + ), + 'sdw' => + array ( + 0 => 'application/vnd.stardivision.writer', + ), + 'vor' => + array ( + 0 => 'application/vnd.stardivision.writer', + ), + 'sgl' => + array ( + 0 => 'application/vnd.stardivision.writer-global', + ), + 'smzip' => + array ( + 0 => 'application/vnd.stepmania.package', + ), + 'sm' => + array ( + 0 => 'application/vnd.stepmania.stepchart', + ), + 'sxc' => + array ( + 0 => 'application/vnd.sun.xml.calc', + ), + 'stc' => + array ( + 0 => 'application/vnd.sun.xml.calc.template', + ), + 'sxd' => + array ( + 0 => 'application/vnd.sun.xml.draw', + ), + 'std' => + array ( + 0 => 'application/vnd.sun.xml.draw.template', + ), + 'sxi' => + array ( + 0 => 'application/vnd.sun.xml.impress', + ), + 'sti' => + array ( + 0 => 'application/vnd.sun.xml.impress.template', + ), + 'sxm' => + array ( + 0 => 'application/vnd.sun.xml.math', + ), + 'sxw' => + array ( + 0 => 'application/vnd.sun.xml.writer', + ), + 'sxg' => + array ( + 0 => 'application/vnd.sun.xml.writer.global', + ), + 'stw' => + array ( + 0 => 'application/vnd.sun.xml.writer.template', + ), + 'sus' => + array ( + 0 => 'application/vnd.sus-calendar', + ), + 'susp' => + array ( + 0 => 'application/vnd.sus-calendar', + ), + 'svd' => + array ( + 0 => 'application/vnd.svd', + ), + 'sis' => + array ( + 0 => 'application/vnd.symbian.install', + ), + 'sisx' => + array ( + 0 => 'application/vnd.symbian.install', + ), + 'xsm' => + array ( + 0 => 'application/vnd.syncml+xml', + ), + 'bdm' => + array ( + 0 => 'application/vnd.syncml.dm+wbxml', + ), + 'xdm' => + array ( + 0 => 'application/vnd.syncml.dm+xml', + ), + 'tao' => + array ( + 0 => 'application/vnd.tao.intent-module-archive', + ), + 'pcap' => + array ( + 0 => 'application/vnd.tcpdump.pcap', + ), + 'cap' => + array ( + 0 => 'application/vnd.tcpdump.pcap', + ), + 'dmp' => + array ( + 0 => 'application/vnd.tcpdump.pcap', + ), + 'tmo' => + array ( + 0 => 'application/vnd.tmobile-livetv', + ), + 'tpt' => + array ( + 0 => 'application/vnd.trid.tpt', + ), + 'mxs' => + array ( + 0 => 'application/vnd.triscape.mxs', + ), + 'tra' => + array ( + 0 => 'application/vnd.trueapp', + ), + 'ufd' => + array ( + 0 => 'application/vnd.ufdl', + ), + 'ufdl' => + array ( + 0 => 'application/vnd.ufdl', + ), + 'utz' => + array ( + 0 => 'application/vnd.uiq.theme', + ), + 'umj' => + array ( + 0 => 'application/vnd.umajin', + ), + 'unityweb' => + array ( + 0 => 'application/vnd.unity', + ), + 'uoml' => + array ( + 0 => 'application/vnd.uoml+xml', + ), + 'vcx' => + array ( + 0 => 'application/vnd.vcx', + ), + 'vsd' => + array ( + 0 => 'application/vnd.visio', + ), + 'vst' => + array ( + 0 => 'application/vnd.visio', + ), + 'vss' => + array ( + 0 => 'application/vnd.visio', + ), + 'vsw' => + array ( + 0 => 'application/vnd.visio', + ), + 'vis' => + array ( + 0 => 'application/vnd.visionary', + ), + 'vsf' => + array ( + 0 => 'application/vnd.vsf', + ), + 'wbxml' => + array ( + 0 => 'application/vnd.wap.wbxml', + ), + 'wmlc' => + array ( + 0 => 'application/vnd.wap.wmlc', + ), + 'wmlsc' => + array ( + 0 => 'application/vnd.wap.wmlscriptc', + ), + 'wtb' => + array ( + 0 => 'application/vnd.webturbo', + ), + 'nbp' => + array ( + 0 => 'application/vnd.wolfram.player', + ), + 'wpd' => + array ( + 0 => 'application/vnd.wordperfect', + ), + 'wqd' => + array ( + 0 => 'application/vnd.wqd', + ), + 'stf' => + array ( + 0 => 'application/vnd.wt.stf', + ), + 'xar' => + array ( + 0 => 'application/vnd.xara', + ), + 'xfdl' => + array ( + 0 => 'application/vnd.xfdl', + ), + 'hvd' => + array ( + 0 => 'application/vnd.yamaha.hv-dic', + ), + 'hvs' => + array ( + 0 => 'application/vnd.yamaha.hv-script', + ), + 'hvp' => + array ( + 0 => 'application/vnd.yamaha.hv-voice', + ), + 'osf' => + array ( + 0 => 'application/vnd.yamaha.openscoreformat', + ), + 'osfpvg' => + array ( + 0 => 'application/vnd.yamaha.openscoreformat.osfpvg+xml', + ), + 'saf' => + array ( + 0 => 'application/vnd.yamaha.smaf-audio', + ), + 'spf' => + array ( + 0 => 'application/vnd.yamaha.smaf-phrase', + ), + 'cmp' => + array ( + 0 => 'application/vnd.yellowriver-custom-menu', + ), + 'zir' => + array ( + 0 => 'application/vnd.zul', + ), + 'zirz' => + array ( + 0 => 'application/vnd.zul', + ), + 'zaz' => + array ( + 0 => 'application/vnd.zzazz.deck+xml', + ), + 'vxml' => + array ( + 0 => 'application/voicexml+xml', + ), + 'wgt' => + array ( + 0 => 'application/widget', + ), + 'hlp' => + array ( + 0 => 'application/winhlp', + ), + 'wsdl' => + array ( + 0 => 'application/wsdl+xml', + ), + 'wspolicy' => + array ( + 0 => 'application/wspolicy+xml', + ), + '7z' => + array ( + 0 => 'application/x-7z-compressed', + ), + 'abw' => + array ( + 0 => 'application/x-abiword', + ), + 'ace' => + array ( + 0 => 'application/x-ace-compressed', + ), + 'dmg' => + array ( + 0 => 'application/x-apple-diskimage', + ), + 'aab' => + array ( + 0 => 'application/x-authorware-bin', + ), + 'x32' => + array ( + 0 => 'application/x-authorware-bin', + ), + 'u32' => + array ( + 0 => 'application/x-authorware-bin', + ), + 'vox' => + array ( + 0 => 'application/x-authorware-bin', + ), + 'aam' => + array ( + 0 => 'application/x-authorware-map', + ), + 'aas' => + array ( + 0 => 'application/x-authorware-seg', + ), + 'bcpio' => + array ( + 0 => 'application/x-bcpio', + ), + 'torrent' => + array ( + 0 => 'application/x-bittorrent', + ), + 'blb' => + array ( + 0 => 'application/x-blorb', + ), + 'blorb' => + array ( + 0 => 'application/x-blorb', + ), + 'bz' => + array ( + 0 => 'application/x-bzip', + ), + 'bz2' => + array ( + 0 => 'application/x-bzip2', + ), + 'boz' => + array ( + 0 => 'application/x-bzip2', + ), + 'cbr' => + array ( + 0 => 'application/x-cbr', + ), + 'cba' => + array ( + 0 => 'application/x-cbr', + ), + 'cbt' => + array ( + 0 => 'application/x-cbr', + ), + 'cbz' => + array ( + 0 => 'application/x-cbr', + ), + 'cb7' => + array ( + 0 => 'application/x-cbr', + ), + 'vcd' => + array ( + 0 => 'application/x-cdlink', + ), + 'cfs' => + array ( + 0 => 'application/x-cfs-compressed', + ), + 'chat' => + array ( + 0 => 'application/x-chat', + ), + 'pgn' => + array ( + 0 => 'application/x-chess-pgn', + ), + 'nsc' => + array ( + 0 => 'application/x-conference', + ), + 'cpio' => + array ( + 0 => 'application/x-cpio', + ), + 'csh' => + array ( + 0 => 'application/x-csh', + ), + 'deb' => + array ( + 0 => 'application/x-debian-package', + ), + 'udeb' => + array ( + 0 => 'application/x-debian-package', + ), + 'dgc' => + array ( + 0 => 'application/x-dgc-compressed', + ), + 'dir' => + array ( + 0 => 'application/x-director', + ), + 'dcr' => + array ( + 0 => 'application/x-director', + ), + 'dxr' => + array ( + 0 => 'application/x-director', + ), + 'cst' => + array ( + 0 => 'application/x-director', + ), + 'cct' => + array ( + 0 => 'application/x-director', + ), + 'cxt' => + array ( + 0 => 'application/x-director', + ), + 'w3d' => + array ( + 0 => 'application/x-director', + ), + 'fgd' => + array ( + 0 => 'application/x-director', + ), + 'swa' => + array ( + 0 => 'application/x-director', + ), + 'wad' => + array ( + 0 => 'application/x-doom', + ), + 'ncx' => + array ( + 0 => 'application/x-dtbncx+xml', + ), + 'dtb' => + array ( + 0 => 'application/x-dtbook+xml', + ), + 'res' => + array ( + 0 => 'application/x-dtbresource+xml', + ), + 'dvi' => + array ( + 0 => 'application/x-dvi', + ), + 'evy' => + array ( + 0 => 'application/x-envoy', + ), + 'eva' => + array ( + 0 => 'application/x-eva', + ), + 'bdf' => + array ( + 0 => 'application/x-font-bdf', + ), + 'gsf' => + array ( + 0 => 'application/x-font-ghostscript', + ), + 'psf' => + array ( + 0 => 'application/x-font-linux-psf', + ), + 'pcf' => + array ( + 0 => 'application/x-font-pcf', + ), + 'snf' => + array ( + 0 => 'application/x-font-snf', + ), + 'pfa' => + array ( + 0 => 'application/x-font-type1', + ), + 'pfb' => + array ( + 0 => 'application/x-font-type1', + ), + 'pfm' => + array ( + 0 => 'application/x-font-type1', + ), + 'afm' => + array ( + 0 => 'application/x-font-type1', + ), + 'arc' => + array ( + 0 => 'application/x-freearc', + ), + 'spl' => + array ( + 0 => 'application/x-futuresplash', + ), + 'gca' => + array ( + 0 => 'application/x-gca-compressed', + ), + 'ulx' => + array ( + 0 => 'application/x-glulx', + ), + 'gnumeric' => + array ( + 0 => 'application/x-gnumeric', + ), + 'gramps' => + array ( + 0 => 'application/x-gramps-xml', + ), + 'gtar' => + array ( + 0 => 'application/x-gtar', + ), + 'hdf' => + array ( + 0 => 'application/x-hdf', + ), + 'install' => + array ( + 0 => 'application/x-install-instructions', + ), + 'iso' => + array ( + 0 => 'application/x-iso9660-image', + ), + 'jnlp' => + array ( + 0 => 'application/x-java-jnlp-file', + ), + 'latex' => + array ( + 0 => 'application/x-latex', + ), + 'lzh' => + array ( + 0 => 'application/x-lzh-compressed', + ), + 'lha' => + array ( + 0 => 'application/x-lzh-compressed', + ), + 'mie' => + array ( + 0 => 'application/x-mie', + ), + 'prc' => + array ( + 0 => 'application/x-mobipocket-ebook', + ), + 'mobi' => + array ( + 0 => 'application/x-mobipocket-ebook', + ), + 'application' => + array ( + 0 => 'application/x-ms-application', + ), + 'lnk' => + array ( + 0 => 'application/x-ms-shortcut', + ), + 'wmd' => + array ( + 0 => 'application/x-ms-wmd', + ), + 'wmz' => + array ( + 0 => 'application/x-ms-wmz', + 1 => 'application/x-msmetafile', + ), + 'xbap' => + array ( + 0 => 'application/x-ms-xbap', + ), + 'mdb' => + array ( + 0 => 'application/x-msaccess', + ), + 'obd' => + array ( + 0 => 'application/x-msbinder', + ), + 'crd' => + array ( + 0 => 'application/x-mscardfile', + ), + 'clp' => + array ( + 0 => 'application/x-msclip', + ), + 'exe' => + array ( + 0 => 'application/x-msdownload', + ), + 'dll' => + array ( + 0 => 'application/x-msdownload', + ), + 'com' => + array ( + 0 => 'application/x-msdownload', + ), + 'bat' => + array ( + 0 => 'application/x-msdownload', + ), + 'msi' => + array ( + 0 => 'application/x-msdownload', + ), + 'mvb' => + array ( + 0 => 'application/x-msmediaview', + ), + 'm13' => + array ( + 0 => 'application/x-msmediaview', + ), + 'm14' => + array ( + 0 => 'application/x-msmediaview', + ), + 'wmf' => + array ( + 0 => 'application/x-msmetafile', + ), + 'emf' => + array ( + 0 => 'application/x-msmetafile', + ), + 'emz' => + array ( + 0 => 'application/x-msmetafile', + ), + 'mny' => + array ( + 0 => 'application/x-msmoney', + ), + 'pub' => + array ( + 0 => 'application/x-mspublisher', + ), + 'scd' => + array ( + 0 => 'application/x-msschedule', + ), + 'trm' => + array ( + 0 => 'application/x-msterminal', + ), + 'wri' => + array ( + 0 => 'application/x-mswrite', + ), + 'nc' => + array ( + 0 => 'application/x-netcdf', + ), + 'cdf' => + array ( + 0 => 'application/x-netcdf', + ), + 'nzb' => + array ( + 0 => 'application/x-nzb', + ), + 'p12' => + array ( + 0 => 'application/x-pkcs12', + ), + 'pfx' => + array ( + 0 => 'application/x-pkcs12', + ), + 'p7b' => + array ( + 0 => 'application/x-pkcs7-certificates', + ), + 'spc' => + array ( + 0 => 'application/x-pkcs7-certificates', + ), + 'p7r' => + array ( + 0 => 'application/x-pkcs7-certreqresp', + ), + 'rar' => + array ( + 0 => 'application/x-rar-compressed', + ), + 'ris' => + array ( + 0 => 'application/x-research-info-systems', + ), + 'sh' => + array ( + 0 => 'application/x-sh', + ), + 'shar' => + array ( + 0 => 'application/x-shar', + ), + 'swf' => + array ( + 0 => 'application/x-shockwave-flash', + ), + 'xap' => + array ( + 0 => 'application/x-silverlight-app', + ), + 'sql' => + array ( + 0 => 'application/x-sql', + ), + 'sit' => + array ( + 0 => 'application/x-stuffit', + ), + 'sitx' => + array ( + 0 => 'application/x-stuffitx', + ), + 'srt' => + array ( + 0 => 'application/x-subrip', + ), + 'sv4cpio' => + array ( + 0 => 'application/x-sv4cpio', + ), + 'sv4crc' => + array ( + 0 => 'application/x-sv4crc', + ), + 't3' => + array ( + 0 => 'application/x-t3vm-image', + ), + 'gam' => + array ( + 0 => 'application/x-tads', + ), + 'tar' => + array ( + 0 => 'application/x-tar', + ), + 'tcl' => + array ( + 0 => 'application/x-tcl', + ), + 'tex' => + array ( + 0 => 'application/x-tex', + ), + 'tfm' => + array ( + 0 => 'application/x-tex-tfm', + ), + 'texinfo' => + array ( + 0 => 'application/x-texinfo', + ), + 'texi' => + array ( + 0 => 'application/x-texinfo', + ), + 'obj' => + array ( + 0 => 'application/x-tgif', + ), + 'ustar' => + array ( + 0 => 'application/x-ustar', + ), + 'src' => + array ( + 0 => 'application/x-wais-source', + ), + 'der' => + array ( + 0 => 'application/x-x509-ca-cert', + ), + 'crt' => + array ( + 0 => 'application/x-x509-ca-cert', + ), + 'fig' => + array ( + 0 => 'application/x-xfig', + ), + 'xlf' => + array ( + 0 => 'application/x-xliff+xml', + ), + 'xpi' => + array ( + 0 => 'application/x-xpinstall', + ), + 'xz' => + array ( + 0 => 'application/x-xz', + ), + 'z1' => + array ( + 0 => 'application/x-zmachine', + ), + 'z2' => + array ( + 0 => 'application/x-zmachine', + ), + 'z3' => + array ( + 0 => 'application/x-zmachine', + ), + 'z4' => + array ( + 0 => 'application/x-zmachine', + ), + 'z5' => + array ( + 0 => 'application/x-zmachine', + ), + 'z6' => + array ( + 0 => 'application/x-zmachine', + ), + 'z7' => + array ( + 0 => 'application/x-zmachine', + ), + 'z8' => + array ( + 0 => 'application/x-zmachine', + ), + 'xaml' => + array ( + 0 => 'application/xaml+xml', + ), + 'xdf' => + array ( + 0 => 'application/xcap-diff+xml', + ), + 'xenc' => + array ( + 0 => 'application/xenc+xml', + ), + 'xhtml' => + array ( + 0 => 'application/xhtml+xml', + ), + 'xht' => + array ( + 0 => 'application/xhtml+xml', + ), + 'xml' => + array ( + 0 => 'application/xml', + ), + 'xsl' => + array ( + 0 => 'application/xml', + ), + 'dtd' => + array ( + 0 => 'application/xml-dtd', + ), + 'xop' => + array ( + 0 => 'application/xop+xml', + ), + 'xpl' => + array ( + 0 => 'application/xproc+xml', + ), + 'xslt' => + array ( + 0 => 'application/xslt+xml', + ), + 'xspf' => + array ( + 0 => 'application/xspf+xml', + ), + 'mxml' => + array ( + 0 => 'application/xv+xml', + ), + 'xhvml' => + array ( + 0 => 'application/xv+xml', + ), + 'xvml' => + array ( + 0 => 'application/xv+xml', + ), + 'xvm' => + array ( + 0 => 'application/xv+xml', + ), + 'yang' => + array ( + 0 => 'application/yang', + ), + 'yin' => + array ( + 0 => 'application/yin+xml', + ), + 'adp' => + array ( + 0 => 'audio/adpcm', + ), + 'au' => + array ( + 0 => 'audio/basic', + ), + 'snd' => + array ( + 0 => 'audio/basic', + ), + 'mid' => + array ( + 0 => 'audio/midi', + ), + 'midi' => + array ( + 0 => 'audio/midi', + ), + 'kar' => + array ( + 0 => 'audio/midi', + ), + 'rmi' => + array ( + 0 => 'audio/midi', + ), + 'm4a' => + array ( + 0 => 'audio/mp4', + ), + 'mp4a' => + array ( + 0 => 'audio/mp4', + ), + 'oga' => + array ( + 0 => 'audio/ogg', + ), + 'ogg' => + array ( + 0 => 'audio/ogg', + ), + 'spx' => + array ( + 0 => 'audio/ogg', + ), + 's3m' => + array ( + 0 => 'audio/s3m', + ), + 'sil' => + array ( + 0 => 'audio/silk', + ), + 'uva' => + array ( + 0 => 'audio/vnd.dece.audio', + ), + 'uvva' => + array ( + 0 => 'audio/vnd.dece.audio', + ), + 'eol' => + array ( + 0 => 'audio/vnd.digital-winds', + ), + 'dra' => + array ( + 0 => 'audio/vnd.dra', + ), + 'dts' => + array ( + 0 => 'audio/vnd.dts', + ), + 'dtshd' => + array ( + 0 => 'audio/vnd.dts.hd', + ), + 'lvp' => + array ( + 0 => 'audio/vnd.lucent.voice', + ), + 'pya' => + array ( + 0 => 'audio/vnd.ms-playready.media.pya', + ), + 'ecelp4800' => + array ( + 0 => 'audio/vnd.nuera.ecelp4800', + ), + 'ecelp7470' => + array ( + 0 => 'audio/vnd.nuera.ecelp7470', + ), + 'ecelp9600' => + array ( + 0 => 'audio/vnd.nuera.ecelp9600', + ), + 'rip' => + array ( + 0 => 'audio/vnd.rip', + ), + 'weba' => + array ( + 0 => 'audio/webm', + ), + 'aac' => + array ( + 0 => 'audio/x-aac', + ), + 'aif' => + array ( + 0 => 'audio/x-aiff', + ), + 'aiff' => + array ( + 0 => 'audio/x-aiff', + ), + 'aifc' => + array ( + 0 => 'audio/x-aiff', + ), + 'caf' => + array ( + 0 => 'audio/x-caf', + ), + 'flac' => + array ( + 0 => 'audio/x-flac', + ), + 'mka' => + array ( + 0 => 'audio/x-matroska', + ), + 'm3u' => + array ( + 0 => 'audio/x-mpegurl', + ), + 'wax' => + array ( + 0 => 'audio/x-ms-wax', + ), + 'wma' => + array ( + 0 => 'audio/x-ms-wma', + ), + 'ram' => + array ( + 0 => 'audio/x-pn-realaudio', + ), + 'ra' => + array ( + 0 => 'audio/x-pn-realaudio', + ), + 'rmp' => + array ( + 0 => 'audio/x-pn-realaudio-plugin', + ), + 'wav' => + array ( + 0 => 'audio/x-wav', + ), + 'xm' => + array ( + 0 => 'audio/xm', + ), + 'cdx' => + array ( + 0 => 'chemical/x-cdx', + ), + 'cif' => + array ( + 0 => 'chemical/x-cif', + ), + 'cmdf' => + array ( + 0 => 'chemical/x-cmdf', + ), + 'cml' => + array ( + 0 => 'chemical/x-cml', + ), + 'csml' => + array ( + 0 => 'chemical/x-csml', + ), + 'xyz' => + array ( + 0 => 'chemical/x-xyz', + ), + 'woff' => + array ( + 0 => 'font/woff', + ), + 'woff2' => + array ( + 0 => 'font/woff2', + ), + 'cgm' => + array ( + 0 => 'image/cgm', + ), + 'g3' => + array ( + 0 => 'image/g3fax', + ), + 'gif' => + array ( + 0 => 'image/gif', + ), + 'ief' => + array ( + 0 => 'image/ief', + ), + 'ktx' => + array ( + 0 => 'image/ktx', + ), + 'png' => + array ( + 0 => 'image/png', + ), + 'btif' => + array ( + 0 => 'image/prs.btif', + ), + 'sgi' => + array ( + 0 => 'image/sgi', + ), + 'svg' => + array ( + 0 => 'image/svg+xml', + ), + 'svgz' => + array ( + 0 => 'image/svg+xml', + ), + 'tiff' => + array ( + 0 => 'image/tiff', + ), + 'tif' => + array ( + 0 => 'image/tiff', + ), + 'psd' => + array ( + 0 => 'image/vnd.adobe.photoshop', + ), + 'uvi' => + array ( + 0 => 'image/vnd.dece.graphic', + ), + 'uvvi' => + array ( + 0 => 'image/vnd.dece.graphic', + ), + 'uvg' => + array ( + 0 => 'image/vnd.dece.graphic', + ), + 'uvvg' => + array ( + 0 => 'image/vnd.dece.graphic', + ), + 'djvu' => + array ( + 0 => 'image/vnd.djvu', + ), + 'djv' => + array ( + 0 => 'image/vnd.djvu', + ), + 'sub' => + array ( + 0 => 'image/vnd.dvb.subtitle', + 1 => 'text/vnd.dvb.subtitle', + ), + 'dwg' => + array ( + 0 => 'image/vnd.dwg', + ), + 'dxf' => + array ( + 0 => 'image/vnd.dxf', + ), + 'fbs' => + array ( + 0 => 'image/vnd.fastbidsheet', + ), + 'fpx' => + array ( + 0 => 'image/vnd.fpx', + ), + 'fst' => + array ( + 0 => 'image/vnd.fst', + ), + 'mmr' => + array ( + 0 => 'image/vnd.fujixerox.edmics-mmr', + ), + 'rlc' => + array ( + 0 => 'image/vnd.fujixerox.edmics-rlc', + ), + 'mdi' => + array ( + 0 => 'image/vnd.ms-modi', + ), + 'wdp' => + array ( + 0 => 'image/vnd.ms-photo', + ), + 'npx' => + array ( + 0 => 'image/vnd.net-fpx', + ), + 'wbmp' => + array ( + 0 => 'image/vnd.wap.wbmp', + ), + 'xif' => + array ( + 0 => 'image/vnd.xiff', + ), + 'webp' => + array ( + 0 => 'image/webp', + ), + '3ds' => + array ( + 0 => 'image/x-3ds', + ), + 'ras' => + array ( + 0 => 'image/x-cmu-raster', + ), + 'cmx' => + array ( + 0 => 'image/x-cmx', + ), + 'fh' => + array ( + 0 => 'image/x-freehand', + ), + 'fhc' => + array ( + 0 => 'image/x-freehand', + ), + 'fh4' => + array ( + 0 => 'image/x-freehand', + ), + 'fh5' => + array ( + 0 => 'image/x-freehand', + ), + 'fh7' => + array ( + 0 => 'image/x-freehand', + ), + 'ico' => + array ( + 0 => 'image/x-icon', + ), + 'sid' => + array ( + 0 => 'image/x-mrsid-image', + ), + 'pcx' => + array ( + 0 => 'image/x-pcx', + ), + 'pic' => + array ( + 0 => 'image/x-pict', + ), + 'pct' => + array ( + 0 => 'image/x-pict', + ), + 'pnm' => + array ( + 0 => 'image/x-portable-anymap', + ), + 'pbm' => + array ( + 0 => 'image/x-portable-bitmap', + ), + 'pgm' => + array ( + 0 => 'image/x-portable-graymap', + ), + 'ppm' => + array ( + 0 => 'image/x-portable-pixmap', + ), + 'rgb' => + array ( + 0 => 'image/x-rgb', + ), + 'tga' => + array ( + 0 => 'image/x-tga', + ), + 'xbm' => + array ( + 0 => 'image/x-xbitmap', + ), + 'xpm' => + array ( + 0 => 'image/x-xpixmap', + ), + 'xwd' => + array ( + 0 => 'image/x-xwindowdump', + ), + 'eml' => + array ( + 0 => 'message/rfc822', + ), + 'mime' => + array ( + 0 => 'message/rfc822', + ), + 'igs' => + array ( + 0 => 'model/iges', + ), + 'iges' => + array ( + 0 => 'model/iges', + ), + 'msh' => + array ( + 0 => 'model/mesh', + ), + 'mesh' => + array ( + 0 => 'model/mesh', + ), + 'silo' => + array ( + 0 => 'model/mesh', + ), + 'dae' => + array ( + 0 => 'model/vnd.collada+xml', + ), + 'dwf' => + array ( + 0 => 'model/vnd.dwf', + ), + 'gdl' => + array ( + 0 => 'model/vnd.gdl', + ), + 'gtw' => + array ( + 0 => 'model/vnd.gtw', + ), + 'mts' => + array ( + 0 => 'model/vnd.mts', + ), + 'vtu' => + array ( + 0 => 'model/vnd.vtu', + ), + 'wrl' => + array ( + 0 => 'model/vrml', + ), + 'vrml' => + array ( + 0 => 'model/vrml', + ), + 'x3db' => + array ( + 0 => 'model/x3d+binary', + ), + 'x3dbz' => + array ( + 0 => 'model/x3d+binary', + ), + 'x3dv' => + array ( + 0 => 'model/x3d+vrml', + ), + 'x3dvz' => + array ( + 0 => 'model/x3d+vrml', + ), + 'x3d' => + array ( + 0 => 'model/x3d+xml', + ), + 'x3dz' => + array ( + 0 => 'model/x3d+xml', + ), + 'appcache' => + array ( + 0 => 'text/cache-manifest', + ), + 'ics' => + array ( + 0 => 'text/calendar', + ), + 'ifb' => + array ( + 0 => 'text/calendar', + ), + 'css' => + array ( + 0 => 'text/css', + ), + 'csv' => + array ( + 0 => 'text/csv', + ), + 'html' => + array ( + 0 => 'text/html', + ), + 'htm' => + array ( + 0 => 'text/html', + ), + 'n3' => + array ( + 0 => 'text/n3', + ), + 'txt' => + array ( + 0 => 'text/plain', + ), + 'text' => + array ( + 0 => 'text/plain', + ), + 'conf' => + array ( + 0 => 'text/plain', + ), + 'def' => + array ( + 0 => 'text/plain', + ), + 'list' => + array ( + 0 => 'text/plain', + ), + 'log' => + array ( + 0 => 'text/plain', + ), + 'in' => + array ( + 0 => 'text/plain', + ), + 'dsc' => + array ( + 0 => 'text/prs.lines.tag', + ), + 'rtx' => + array ( + 0 => 'text/richtext', + ), + 'sgml' => + array ( + 0 => 'text/sgml', + ), + 'sgm' => + array ( + 0 => 'text/sgml', + ), + 'tsv' => + array ( + 0 => 'text/tab-separated-values', + ), + 't' => + array ( + 0 => 'text/troff', + ), + 'tr' => + array ( + 0 => 'text/troff', + ), + 'roff' => + array ( + 0 => 'text/troff', + ), + 'man' => + array ( + 0 => 'text/troff', + ), + 'me' => + array ( + 0 => 'text/troff', + ), + 'ms' => + array ( + 0 => 'text/troff', + ), + 'ttl' => + array ( + 0 => 'text/turtle', + ), + 'uri' => + array ( + 0 => 'text/uri-list', + ), + 'uris' => + array ( + 0 => 'text/uri-list', + ), + 'urls' => + array ( + 0 => 'text/uri-list', + ), + 'vcard' => + array ( + 0 => 'text/vcard', + ), + 'curl' => + array ( + 0 => 'text/vnd.curl', + ), + 'dcurl' => + array ( + 0 => 'text/vnd.curl.dcurl', + ), + 'mcurl' => + array ( + 0 => 'text/vnd.curl.mcurl', + ), + 'scurl' => + array ( + 0 => 'text/vnd.curl.scurl', + ), + 'fly' => + array ( + 0 => 'text/vnd.fly', + ), + 'flx' => + array ( + 0 => 'text/vnd.fmi.flexstor', + ), + 'gv' => + array ( + 0 => 'text/vnd.graphviz', + ), + '3dml' => + array ( + 0 => 'text/vnd.in3d.3dml', + ), + 'spot' => + array ( + 0 => 'text/vnd.in3d.spot', + ), + 'jad' => + array ( + 0 => 'text/vnd.sun.j2me.app-descriptor', + ), + 'wml' => + array ( + 0 => 'text/vnd.wap.wml', + ), + 'wmls' => + array ( + 0 => 'text/vnd.wap.wmlscript', + ), + 's' => + array ( + 0 => 'text/x-asm', + ), + 'asm' => + array ( + 0 => 'text/x-asm', + ), + 'c' => + array ( + 0 => 'text/x-c', + ), + 'cc' => + array ( + 0 => 'text/x-c', + ), + 'cxx' => + array ( + 0 => 'text/x-c', + ), + 'cpp' => + array ( + 0 => 'text/x-c', + ), + 'h' => + array ( + 0 => 'text/x-c', + ), + 'hh' => + array ( + 0 => 'text/x-c', + ), + 'dic' => + array ( + 0 => 'text/x-c', + ), + 'f' => + array ( + 0 => 'text/x-fortran', + ), + 'for' => + array ( + 0 => 'text/x-fortran', + ), + 'f77' => + array ( + 0 => 'text/x-fortran', + ), + 'f90' => + array ( + 0 => 'text/x-fortran', + ), + 'java' => + array ( + 0 => 'text/x-java-source', + ), + 'nfo' => + array ( + 0 => 'text/x-nfo', + ), + 'opml' => + array ( + 0 => 'text/x-opml', + ), + 'p' => + array ( + 0 => 'text/x-pascal', + ), + 'pas' => + array ( + 0 => 'text/x-pascal', + ), + 'etx' => + array ( + 0 => 'text/x-setext', + ), + 'sfv' => + array ( + 0 => 'text/x-sfv', + ), + 'uu' => + array ( + 0 => 'text/x-uuencode', + ), + 'vcs' => + array ( + 0 => 'text/x-vcalendar', + ), + 'vcf' => + array ( + 0 => 'text/x-vcard', + ), + '3gp' => + array ( + 0 => 'video/3gpp', + ), + '3g2' => + array ( + 0 => 'video/3gpp2', + ), + 'h261' => + array ( + 0 => 'video/h261', + ), + 'h263' => + array ( + 0 => 'video/h263', + ), + 'h264' => + array ( + 0 => 'video/h264', + ), + 'jpgv' => + array ( + 0 => 'video/jpeg', + ), + 'jpm' => + array ( + 0 => 'video/jpm', + ), + 'jpgm' => + array ( + 0 => 'video/jpm', + ), + 'mj2' => + array ( + 0 => 'video/mj2', + ), + 'mjp2' => + array ( + 0 => 'video/mj2', + ), + 'mp4' => + array ( + 0 => 'video/mp4', + ), + 'mp4v' => + array ( + 0 => 'video/mp4', + ), + 'mpg4' => + array ( + 0 => 'video/mp4', + ), + 'mpeg' => + array ( + 0 => 'video/mpeg', + ), + 'mpg' => + array ( + 0 => 'video/mpeg', + ), + 'mpe' => + array ( + 0 => 'video/mpeg', + ), + 'm1v' => + array ( + 0 => 'video/mpeg', + ), + 'm2v' => + array ( + 0 => 'video/mpeg', + ), + 'ogv' => + array ( + 0 => 'video/ogg', + ), + 'qt' => + array ( + 0 => 'video/quicktime', + ), + 'mov' => + array ( + 0 => 'video/quicktime', + ), + 'uvh' => + array ( + 0 => 'video/vnd.dece.hd', + ), + 'uvvh' => + array ( + 0 => 'video/vnd.dece.hd', + ), + 'uvm' => + array ( + 0 => 'video/vnd.dece.mobile', + ), + 'uvvm' => + array ( + 0 => 'video/vnd.dece.mobile', + ), + 'uvp' => + array ( + 0 => 'video/vnd.dece.pd', + ), + 'uvvp' => + array ( + 0 => 'video/vnd.dece.pd', + ), + 'uvs' => + array ( + 0 => 'video/vnd.dece.sd', + ), + 'uvvs' => + array ( + 0 => 'video/vnd.dece.sd', + ), + 'uvv' => + array ( + 0 => 'video/vnd.dece.video', + ), + 'uvvv' => + array ( + 0 => 'video/vnd.dece.video', + ), + 'dvb' => + array ( + 0 => 'video/vnd.dvb.file', + ), + 'fvt' => + array ( + 0 => 'video/vnd.fvt', + ), + 'mxu' => + array ( + 0 => 'video/vnd.mpegurl', + ), + 'm4u' => + array ( + 0 => 'video/vnd.mpegurl', + ), + 'pyv' => + array ( + 0 => 'video/vnd.ms-playready.media.pyv', + ), + 'uvu' => + array ( + 0 => 'video/vnd.uvvu.mp4', + ), + 'uvvu' => + array ( + 0 => 'video/vnd.uvvu.mp4', + ), + 'viv' => + array ( + 0 => 'video/vnd.vivo', + ), + 'webm' => + array ( + 0 => 'video/webm', + ), + 'f4v' => + array ( + 0 => 'video/x-f4v', + ), + 'fli' => + array ( + 0 => 'video/x-fli', + ), + 'flv' => + array ( + 0 => 'video/x-flv', + ), + 'm4v' => + array ( + 0 => 'video/x-m4v', + ), + 'mkv' => + array ( + 0 => 'video/x-matroska', + ), + 'mk3d' => + array ( + 0 => 'video/x-matroska', + ), + 'mks' => + array ( + 0 => 'video/x-matroska', + ), + 'mng' => + array ( + 0 => 'video/x-mng', + ), + 'asf' => + array ( + 0 => 'video/x-ms-asf', + ), + 'asx' => + array ( + 0 => 'video/x-ms-asf', + ), + 'vob' => + array ( + 0 => 'video/x-ms-vob', + ), + 'wm' => + array ( + 0 => 'video/x-ms-wm', + ), + 'wmv' => + array ( + 0 => 'video/x-ms-wmv', + ), + 'wmx' => + array ( + 0 => 'video/x-ms-wmx', + ), + 'wvx' => + array ( + 0 => 'video/x-ms-wvx', + ), + 'avi' => + array ( + 0 => 'video/x-msvideo', + ), + 'movie' => + array ( + 0 => 'video/x-sgi-movie', + ), + 'smv' => + array ( + 0 => 'video/x-smv', + ), + 'ice' => + array ( + 0 => 'x-conference/x-cooltalk', + ), + ), + 'extensions' => + array ( + 'application/font-woff' => + array ( + 0 => 'wof', + ), + 'application/php' => + array ( + 0 => 'php', + ), + 'application/x-font-otf' => + array ( + 0 => 'otf', + ), + 'application/x-font-ttf' => + array ( + 0 => 'ttf', + 1 => 'ttc', + ), + 'application/x-gzip' => + array ( + 0 => 'zip', + ), + 'application/x-httpd-php' => + array ( + 0 => 'php', + ), + 'application/x-httpd-php-source' => + array ( + 0 => 'php', + ), + 'application/x-php' => + array ( + 0 => 'php', + ), + 'audio/amr' => + array ( + 0 => 'amr', + ), + 'audio/mpeg' => + array ( + 0 => 'mp3', + 1 => 'mpga', + 2 => 'mp2', + 3 => 'mp2a', + 4 => 'm2a', + 5 => 'm3a', + ), + 'image/jpeg' => + array ( + 0 => 'jpg', + 1 => 'jpeg', + 2 => 'jpe', + ), + 'image/x-ms-bmp' => + array ( + 0 => 'bmp', + ), + 'text/php' => + array ( + 0 => 'php', + ), + 'text/x-php' => + array ( + 0 => 'php', + ), + 'application/andrew-inset' => + array ( + 0 => 'ez', + ), + 'application/applixware' => + array ( + 0 => 'aw', + ), + 'application/atom+xml' => + array ( + 0 => 'atom', + ), + 'application/atomcat+xml' => + array ( + 0 => 'atomcat', + ), + 'application/atomsvc+xml' => + array ( + 0 => 'atomsvc', + ), + 'application/ccxml+xml' => + array ( + 0 => 'ccxml', + ), + 'application/cdmi-capability' => + array ( + 0 => 'cdmia', + ), + 'application/cdmi-container' => + array ( + 0 => 'cdmic', + ), + 'application/cdmi-domain' => + array ( + 0 => 'cdmid', + ), + 'application/cdmi-object' => + array ( + 0 => 'cdmio', + ), + 'application/cdmi-queue' => + array ( + 0 => 'cdmiq', + ), + 'application/cu-seeme' => + array ( + 0 => 'cu', + ), + 'application/davmount+xml' => + array ( + 0 => 'davmount', + ), + 'application/docbook+xml' => + array ( + 0 => 'dbk', + ), + 'application/dssc+der' => + array ( + 0 => 'dssc', + ), + 'application/dssc+xml' => + array ( + 0 => 'xdssc', + ), + 'application/ecmascript' => + array ( + 0 => 'ecma', + ), + 'application/emma+xml' => + array ( + 0 => 'emma', + ), + 'application/epub+zip' => + array ( + 0 => 'epub', + ), + 'application/exi' => + array ( + 0 => 'exi', + ), + 'application/font-tdpfr' => + array ( + 0 => 'pfr', + ), + 'application/gml+xml' => + array ( + 0 => 'gml', + ), + 'application/gpx+xml' => + array ( + 0 => 'gpx', + ), + 'application/gxf' => + array ( + 0 => 'gxf', + ), + 'application/hyperstudio' => + array ( + 0 => 'stk', + ), + 'application/inkml+xml' => + array ( + 0 => 'ink', + 1 => 'inkml', + ), + 'application/ipfix' => + array ( + 0 => 'ipfix', + ), + 'application/java-archive' => + array ( + 0 => 'jar', + ), + 'application/java-serialized-object' => + array ( + 0 => 'ser', + ), + 'application/java-vm' => + array ( + 0 => 'class', + ), + 'application/javascript' => + array ( + 0 => 'js', + ), + 'application/json' => + array ( + 0 => 'json', + ), + 'application/jsonml+json' => + array ( + 0 => 'jsonml', + ), + 'application/lost+xml' => + array ( + 0 => 'lostxml', + ), + 'application/mac-binhex40' => + array ( + 0 => 'hqx', + ), + 'application/mac-compactpro' => + array ( + 0 => 'cpt', + ), + 'application/mads+xml' => + array ( + 0 => 'mads', + ), + 'application/marc' => + array ( + 0 => 'mrc', + ), + 'application/marcxml+xml' => + array ( + 0 => 'mrcx', + ), + 'application/mathematica' => + array ( + 0 => 'ma', + 1 => 'nb', + 2 => 'mb', + ), + 'application/mathml+xml' => + array ( + 0 => 'mathml', + ), + 'application/mbox' => + array ( + 0 => 'mbox', + ), + 'application/mediaservercontrol+xml' => + array ( + 0 => 'mscml', + ), + 'application/metalink+xml' => + array ( + 0 => 'metalink', + ), + 'application/metalink4+xml' => + array ( + 0 => 'meta4', + ), + 'application/mets+xml' => + array ( + 0 => 'mets', + ), + 'application/mods+xml' => + array ( + 0 => 'mods', + ), + 'application/mp21' => + array ( + 0 => 'm21', + 1 => 'mp21', + ), + 'application/mp4' => + array ( + 0 => 'mp4s', + ), + 'application/msword' => + array ( + 0 => 'doc', + 1 => 'dot', + ), + 'application/mxf' => + array ( + 0 => 'mxf', + ), + 'application/octet-stream' => + array ( + 0 => 'bin', + 1 => 'dms', + 2 => 'lrf', + 3 => 'mar', + 4 => 'so', + 5 => 'dist', + 6 => 'distz', + 7 => 'pkg', + 8 => 'bpk', + 9 => 'dump', + 10 => 'elc', + 11 => 'deploy', + ), + 'application/oda' => + array ( + 0 => 'oda', + ), + 'application/oebps-package+xml' => + array ( + 0 => 'opf', + ), + 'application/ogg' => + array ( + 0 => 'ogx', + ), + 'application/omdoc+xml' => + array ( + 0 => 'omdoc', + ), + 'application/onenote' => + array ( + 0 => 'onetoc', + 1 => 'onetoc2', + 2 => 'onetmp', + 3 => 'onepkg', + ), + 'application/oxps' => + array ( + 0 => 'oxps', + ), + 'application/patch-ops-error+xml' => + array ( + 0 => 'xer', + ), + 'application/pdf' => + array ( + 0 => 'pdf', + ), + 'application/pgp-encrypted' => + array ( + 0 => 'pgp', + ), + 'application/pgp-signature' => + array ( + 0 => 'asc', + 1 => 'sig', + ), + 'application/pics-rules' => + array ( + 0 => 'prf', + ), + 'application/pkcs10' => + array ( + 0 => 'p10', + ), + 'application/pkcs7-mime' => + array ( + 0 => 'p7m', + 1 => 'p7c', + ), + 'application/pkcs7-signature' => + array ( + 0 => 'p7s', + ), + 'application/pkcs8' => + array ( + 0 => 'p8', + ), + 'application/pkix-attr-cert' => + array ( + 0 => 'ac', + ), + 'application/pkix-cert' => + array ( + 0 => 'cer', + ), + 'application/pkix-crl' => + array ( + 0 => 'crl', + ), + 'application/pkix-pkipath' => + array ( + 0 => 'pkipath', + ), + 'application/pkixcmp' => + array ( + 0 => 'pki', + ), + 'application/pls+xml' => + array ( + 0 => 'pls', + ), + 'application/postscript' => + array ( + 0 => 'ai', + 1 => 'eps', + 2 => 'ps', + ), + 'application/prs.cww' => + array ( + 0 => 'cww', + ), + 'application/pskc+xml' => + array ( + 0 => 'pskcxml', + ), + 'application/rdf+xml' => + array ( + 0 => 'rdf', + ), + 'application/reginfo+xml' => + array ( + 0 => 'rif', + ), + 'application/relax-ng-compact-syntax' => + array ( + 0 => 'rnc', + ), + 'application/resource-lists+xml' => + array ( + 0 => 'rl', + ), + 'application/resource-lists-diff+xml' => + array ( + 0 => 'rld', + ), + 'application/rls-services+xml' => + array ( + 0 => 'rs', + ), + 'application/rpki-ghostbusters' => + array ( + 0 => 'gbr', + ), + 'application/rpki-manifest' => + array ( + 0 => 'mft', + ), + 'application/rpki-roa' => + array ( + 0 => 'roa', + ), + 'application/rsd+xml' => + array ( + 0 => 'rsd', + ), + 'application/rss+xml' => + array ( + 0 => 'rss', + ), + 'application/rtf' => + array ( + 0 => 'rtf', + ), + 'application/sbml+xml' => + array ( + 0 => 'sbml', + ), + 'application/scvp-cv-request' => + array ( + 0 => 'scq', + ), + 'application/scvp-cv-response' => + array ( + 0 => 'scs', + ), + 'application/scvp-vp-request' => + array ( + 0 => 'spq', + ), + 'application/scvp-vp-response' => + array ( + 0 => 'spp', + ), + 'application/sdp' => + array ( + 0 => 'sdp', + ), + 'application/set-payment-initiation' => + array ( + 0 => 'setpay', + ), + 'application/set-registration-initiation' => + array ( + 0 => 'setreg', + ), + 'application/shf+xml' => + array ( + 0 => 'shf', + ), + 'application/smil+xml' => + array ( + 0 => 'smi', + 1 => 'smil', + ), + 'application/sparql-query' => + array ( + 0 => 'rq', + ), + 'application/sparql-results+xml' => + array ( + 0 => 'srx', + ), + 'application/srgs' => + array ( + 0 => 'gram', + ), + 'application/srgs+xml' => + array ( + 0 => 'grxml', + ), + 'application/sru+xml' => + array ( + 0 => 'sru', + ), + 'application/ssdl+xml' => + array ( + 0 => 'ssdl', + ), + 'application/ssml+xml' => + array ( + 0 => 'ssml', + ), + 'application/tei+xml' => + array ( + 0 => 'tei', + 1 => 'teicorpus', + ), + 'application/thraud+xml' => + array ( + 0 => 'tfi', + ), + 'application/timestamped-data' => + array ( + 0 => 'tsd', + ), + 'application/vnd.3gpp.pic-bw-large' => + array ( + 0 => 'plb', + ), + 'application/vnd.3gpp.pic-bw-small' => + array ( + 0 => 'psb', + ), + 'application/vnd.3gpp.pic-bw-var' => + array ( + 0 => 'pvb', + ), + 'application/vnd.3gpp2.tcap' => + array ( + 0 => 'tcap', + ), + 'application/vnd.3m.post-it-notes' => + array ( + 0 => 'pwn', + ), + 'application/vnd.accpac.simply.aso' => + array ( + 0 => 'aso', + ), + 'application/vnd.accpac.simply.imp' => + array ( + 0 => 'imp', + ), + 'application/vnd.acucobol' => + array ( + 0 => 'acu', + ), + 'application/vnd.acucorp' => + array ( + 0 => 'atc', + 1 => 'acutc', + ), + 'application/vnd.adobe.air-application-installer-package+zip' => + array ( + 0 => 'air', + ), + 'application/vnd.adobe.formscentral.fcdt' => + array ( + 0 => 'fcdt', + ), + 'application/vnd.adobe.fxp' => + array ( + 0 => 'fxp', + 1 => 'fxpl', + ), + 'application/vnd.adobe.xdp+xml' => + array ( + 0 => 'xdp', + ), + 'application/vnd.adobe.xfdf' => + array ( + 0 => 'xfdf', + ), + 'application/vnd.ahead.space' => + array ( + 0 => 'ahead', + ), + 'application/vnd.airzip.filesecure.azf' => + array ( + 0 => 'azf', + ), + 'application/vnd.airzip.filesecure.azs' => + array ( + 0 => 'azs', + ), + 'application/vnd.amazon.ebook' => + array ( + 0 => 'azw', + ), + 'application/vnd.americandynamics.acc' => + array ( + 0 => 'acc', + ), + 'application/vnd.amiga.ami' => + array ( + 0 => 'ami', + ), + 'application/vnd.android.package-archive' => + array ( + 0 => 'apk', + ), + 'application/vnd.anser-web-certificate-issue-initiation' => + array ( + 0 => 'cii', + ), + 'application/vnd.anser-web-funds-transfer-initiation' => + array ( + 0 => 'fti', + ), + 'application/vnd.antix.game-component' => + array ( + 0 => 'atx', + ), + 'application/vnd.apple.installer+xml' => + array ( + 0 => 'mpkg', + ), + 'application/vnd.apple.mpegurl' => + array ( + 0 => 'm3u8', + ), + 'application/vnd.aristanetworks.swi' => + array ( + 0 => 'swi', + ), + 'application/vnd.astraea-software.iota' => + array ( + 0 => 'iota', + ), + 'application/vnd.audiograph' => + array ( + 0 => 'aep', + ), + 'application/vnd.blueice.multipass' => + array ( + 0 => 'mpm', + ), + 'application/vnd.bmi' => + array ( + 0 => 'bmi', + ), + 'application/vnd.businessobjects' => + array ( + 0 => 'rep', + ), + 'application/vnd.chemdraw+xml' => + array ( + 0 => 'cdxml', + ), + 'application/vnd.chipnuts.karaoke-mmd' => + array ( + 0 => 'mmd', + ), + 'application/vnd.cinderella' => + array ( + 0 => 'cdy', + ), + 'application/vnd.claymore' => + array ( + 0 => 'cla', + ), + 'application/vnd.cloanto.rp9' => + array ( + 0 => 'rp9', + ), + 'application/vnd.clonk.c4group' => + array ( + 0 => 'c4g', + 1 => 'c4d', + 2 => 'c4f', + 3 => 'c4p', + 4 => 'c4u', + ), + 'application/vnd.cluetrust.cartomobile-config' => + array ( + 0 => 'c11amc', + ), + 'application/vnd.cluetrust.cartomobile-config-pkg' => + array ( + 0 => 'c11amz', + ), + 'application/vnd.commonspace' => + array ( + 0 => 'csp', + ), + 'application/vnd.contact.cmsg' => + array ( + 0 => 'cdbcmsg', + ), + 'application/vnd.cosmocaller' => + array ( + 0 => 'cmc', + ), + 'application/vnd.crick.clicker' => + array ( + 0 => 'clkx', + ), + 'application/vnd.crick.clicker.keyboard' => + array ( + 0 => 'clkk', + ), + 'application/vnd.crick.clicker.palette' => + array ( + 0 => 'clkp', + ), + 'application/vnd.crick.clicker.template' => + array ( + 0 => 'clkt', + ), + 'application/vnd.crick.clicker.wordbank' => + array ( + 0 => 'clkw', + ), + 'application/vnd.criticaltools.wbs+xml' => + array ( + 0 => 'wbs', + ), + 'application/vnd.ctc-posml' => + array ( + 0 => 'pml', + ), + 'application/vnd.cups-ppd' => + array ( + 0 => 'ppd', + ), + 'application/vnd.curl.car' => + array ( + 0 => 'car', + ), + 'application/vnd.curl.pcurl' => + array ( + 0 => 'pcurl', + ), + 'application/vnd.dart' => + array ( + 0 => 'dart', + ), + 'application/vnd.data-vision.rdz' => + array ( + 0 => 'rdz', + ), + 'application/vnd.dece.data' => + array ( + 0 => 'uvf', + 1 => 'uvvf', + 2 => 'uvd', + 3 => 'uvvd', + ), + 'application/vnd.dece.ttml+xml' => + array ( + 0 => 'uvt', + 1 => 'uvvt', + ), + 'application/vnd.dece.unspecified' => + array ( + 0 => 'uvx', + 1 => 'uvvx', + ), + 'application/vnd.dece.zip' => + array ( + 0 => 'uvz', + 1 => 'uvvz', + ), + 'application/vnd.denovo.fcselayout-link' => + array ( + 0 => 'fe_launch', + ), + 'application/vnd.dna' => + array ( + 0 => 'dna', + ), + 'application/vnd.dolby.mlp' => + array ( + 0 => 'mlp', + ), + 'application/vnd.dpgraph' => + array ( + 0 => 'dpg', + ), + 'application/vnd.dreamfactory' => + array ( + 0 => 'dfac', + ), + 'application/vnd.ds-keypoint' => + array ( + 0 => 'kpxx', + ), + 'application/vnd.dvb.ait' => + array ( + 0 => 'ait', + ), + 'application/vnd.dvb.service' => + array ( + 0 => 'svc', + ), + 'application/vnd.dynageo' => + array ( + 0 => 'geo', + ), + 'application/vnd.ecowin.chart' => + array ( + 0 => 'mag', + ), + 'application/vnd.enliven' => + array ( + 0 => 'nml', + ), + 'application/vnd.epson.esf' => + array ( + 0 => 'esf', + ), + 'application/vnd.epson.msf' => + array ( + 0 => 'msf', + ), + 'application/vnd.epson.quickanime' => + array ( + 0 => 'qam', + ), + 'application/vnd.epson.salt' => + array ( + 0 => 'slt', + ), + 'application/vnd.epson.ssf' => + array ( + 0 => 'ssf', + ), + 'application/vnd.eszigno3+xml' => + array ( + 0 => 'es3', + 1 => 'et3', + ), + 'application/vnd.ezpix-album' => + array ( + 0 => 'ez2', + ), + 'application/vnd.ezpix-package' => + array ( + 0 => 'ez3', + ), + 'application/vnd.fdf' => + array ( + 0 => 'fdf', + ), + 'application/vnd.fdsn.mseed' => + array ( + 0 => 'mseed', + ), + 'application/vnd.fdsn.seed' => + array ( + 0 => 'seed', + 1 => 'dataless', + ), + 'application/vnd.flographit' => + array ( + 0 => 'gph', + ), + 'application/vnd.fluxtime.clip' => + array ( + 0 => 'ftc', + ), + 'application/vnd.framemaker' => + array ( + 0 => 'fm', + 1 => 'frame', + 2 => 'maker', + 3 => 'book', + ), + 'application/vnd.frogans.fnc' => + array ( + 0 => 'fnc', + ), + 'application/vnd.frogans.ltf' => + array ( + 0 => 'ltf', + ), + 'application/vnd.fsc.weblaunch' => + array ( + 0 => 'fsc', + ), + 'application/vnd.fujitsu.oasys' => + array ( + 0 => 'oas', + ), + 'application/vnd.fujitsu.oasys2' => + array ( + 0 => 'oa2', + ), + 'application/vnd.fujitsu.oasys3' => + array ( + 0 => 'oa3', + ), + 'application/vnd.fujitsu.oasysgp' => + array ( + 0 => 'fg5', + ), + 'application/vnd.fujitsu.oasysprs' => + array ( + 0 => 'bh2', + ), + 'application/vnd.fujixerox.ddd' => + array ( + 0 => 'ddd', + ), + 'application/vnd.fujixerox.docuworks' => + array ( + 0 => 'xdw', + ), + 'application/vnd.fujixerox.docuworks.binder' => + array ( + 0 => 'xbd', + ), + 'application/vnd.fuzzysheet' => + array ( + 0 => 'fzs', + ), + 'application/vnd.genomatix.tuxedo' => + array ( + 0 => 'txd', + ), + 'application/vnd.geogebra.file' => + array ( + 0 => 'ggb', + ), + 'application/vnd.geogebra.tool' => + array ( + 0 => 'ggt', + ), + 'application/vnd.geometry-explorer' => + array ( + 0 => 'gex', + 1 => 'gre', + ), + 'application/vnd.geonext' => + array ( + 0 => 'gxt', + ), + 'application/vnd.geoplan' => + array ( + 0 => 'g2w', + ), + 'application/vnd.geospace' => + array ( + 0 => 'g3w', + ), + 'application/vnd.gmx' => + array ( + 0 => 'gmx', + ), + 'application/vnd.google-earth.kml+xml' => + array ( + 0 => 'kml', + ), + 'application/vnd.google-earth.kmz' => + array ( + 0 => 'kmz', + ), + 'application/vnd.grafeq' => + array ( + 0 => 'gqf', + 1 => 'gqs', + ), + 'application/vnd.groove-account' => + array ( + 0 => 'gac', + ), + 'application/vnd.groove-help' => + array ( + 0 => 'ghf', + ), + 'application/vnd.groove-identity-message' => + array ( + 0 => 'gim', + ), + 'application/vnd.groove-injector' => + array ( + 0 => 'grv', + ), + 'application/vnd.groove-tool-message' => + array ( + 0 => 'gtm', + ), + 'application/vnd.groove-tool-template' => + array ( + 0 => 'tpl', + ), + 'application/vnd.groove-vcard' => + array ( + 0 => 'vcg', + ), + 'application/vnd.hal+xml' => + array ( + 0 => 'hal', + ), + 'application/vnd.handheld-entertainment+xml' => + array ( + 0 => 'zmm', + ), + 'application/vnd.hbci' => + array ( + 0 => 'hbci', + ), + 'application/vnd.hhe.lesson-player' => + array ( + 0 => 'les', + ), + 'application/vnd.hp-hpgl' => + array ( + 0 => 'hpgl', + ), + 'application/vnd.hp-hpid' => + array ( + 0 => 'hpid', + ), + 'application/vnd.hp-hps' => + array ( + 0 => 'hps', + ), + 'application/vnd.hp-jlyt' => + array ( + 0 => 'jlt', + ), + 'application/vnd.hp-pcl' => + array ( + 0 => 'pcl', + ), + 'application/vnd.hp-pclxl' => + array ( + 0 => 'pclxl', + ), + 'application/vnd.hydrostatix.sof-data' => + array ( + 0 => 'sfd-hdstx', + ), + 'application/vnd.ibm.minipay' => + array ( + 0 => 'mpy', + ), + 'application/vnd.ibm.modcap' => + array ( + 0 => 'afp', + 1 => 'listafp', + 2 => 'list3820', + ), + 'application/vnd.ibm.rights-management' => + array ( + 0 => 'irm', + ), + 'application/vnd.ibm.secure-container' => + array ( + 0 => 'sc', + ), + 'application/vnd.iccprofile' => + array ( + 0 => 'icc', + 1 => 'icm', + ), + 'application/vnd.igloader' => + array ( + 0 => 'igl', + ), + 'application/vnd.immervision-ivp' => + array ( + 0 => 'ivp', + ), + 'application/vnd.immervision-ivu' => + array ( + 0 => 'ivu', + ), + 'application/vnd.insors.igm' => + array ( + 0 => 'igm', + ), + 'application/vnd.intercon.formnet' => + array ( + 0 => 'xpw', + 1 => 'xpx', + ), + 'application/vnd.intergeo' => + array ( + 0 => 'i2g', + ), + 'application/vnd.intu.qbo' => + array ( + 0 => 'qbo', + ), + 'application/vnd.intu.qfx' => + array ( + 0 => 'qfx', + ), + 'application/vnd.ipunplugged.rcprofile' => + array ( + 0 => 'rcprofile', + ), + 'application/vnd.irepository.package+xml' => + array ( + 0 => 'irp', + ), + 'application/vnd.is-xpr' => + array ( + 0 => 'xpr', + ), + 'application/vnd.isac.fcs' => + array ( + 0 => 'fcs', + ), + 'application/vnd.jam' => + array ( + 0 => 'jam', + ), + 'application/vnd.jcp.javame.midlet-rms' => + array ( + 0 => 'rms', + ), + 'application/vnd.jisp' => + array ( + 0 => 'jisp', + ), + 'application/vnd.joost.joda-archive' => + array ( + 0 => 'joda', + ), + 'application/vnd.kahootz' => + array ( + 0 => 'ktz', + 1 => 'ktr', + ), + 'application/vnd.kde.karbon' => + array ( + 0 => 'karbon', + ), + 'application/vnd.kde.kchart' => + array ( + 0 => 'chrt', + ), + 'application/vnd.kde.kformula' => + array ( + 0 => 'kfo', + ), + 'application/vnd.kde.kivio' => + array ( + 0 => 'flw', + ), + 'application/vnd.kde.kontour' => + array ( + 0 => 'kon', + ), + 'application/vnd.kde.kpresenter' => + array ( + 0 => 'kpr', + 1 => 'kpt', + ), + 'application/vnd.kde.kspread' => + array ( + 0 => 'ksp', + ), + 'application/vnd.kde.kword' => + array ( + 0 => 'kwd', + 1 => 'kwt', + ), + 'application/vnd.kenameaapp' => + array ( + 0 => 'htke', + ), + 'application/vnd.kidspiration' => + array ( + 0 => 'kia', + ), + 'application/vnd.kinar' => + array ( + 0 => 'kne', + 1 => 'knp', + ), + 'application/vnd.koan' => + array ( + 0 => 'skp', + 1 => 'skd', + 2 => 'skt', + 3 => 'skm', + ), + 'application/vnd.kodak-descriptor' => + array ( + 0 => 'sse', + ), + 'application/vnd.las.las+xml' => + array ( + 0 => 'lasxml', + ), + 'application/vnd.llamagraphics.life-balance.desktop' => + array ( + 0 => 'lbd', + ), + 'application/vnd.llamagraphics.life-balance.exchange+xml' => + array ( + 0 => 'lbe', + ), + 'application/vnd.lotus-1-2-3' => + array ( + 0 => '123', + ), + 'application/vnd.lotus-approach' => + array ( + 0 => 'apr', + ), + 'application/vnd.lotus-freelance' => + array ( + 0 => 'pre', + ), + 'application/vnd.lotus-notes' => + array ( + 0 => 'nsf', + ), + 'application/vnd.lotus-organizer' => + array ( + 0 => 'org', + ), + 'application/vnd.lotus-screencam' => + array ( + 0 => 'scm', + ), + 'application/vnd.lotus-wordpro' => + array ( + 0 => 'lwp', + ), + 'application/vnd.macports.portpkg' => + array ( + 0 => 'portpkg', + ), + 'application/vnd.mcd' => + array ( + 0 => 'mcd', + ), + 'application/vnd.medcalcdata' => + array ( + 0 => 'mc1', + ), + 'application/vnd.mediastation.cdkey' => + array ( + 0 => 'cdkey', + ), + 'application/vnd.mfer' => + array ( + 0 => 'mwf', + ), + 'application/vnd.mfmp' => + array ( + 0 => 'mfm', + ), + 'application/vnd.micrografx.flo' => + array ( + 0 => 'flo', + ), + 'application/vnd.micrografx.igx' => + array ( + 0 => 'igx', + ), + 'application/vnd.mif' => + array ( + 0 => 'mif', + ), + 'application/vnd.mobius.daf' => + array ( + 0 => 'daf', + ), + 'application/vnd.mobius.dis' => + array ( + 0 => 'dis', + ), + 'application/vnd.mobius.mbk' => + array ( + 0 => 'mbk', + ), + 'application/vnd.mobius.mqy' => + array ( + 0 => 'mqy', + ), + 'application/vnd.mobius.msl' => + array ( + 0 => 'msl', + ), + 'application/vnd.mobius.plc' => + array ( + 0 => 'plc', + ), + 'application/vnd.mobius.txf' => + array ( + 0 => 'txf', + ), + 'application/vnd.mophun.application' => + array ( + 0 => 'mpn', + ), + 'application/vnd.mophun.certificate' => + array ( + 0 => 'mpc', + ), + 'application/vnd.mozilla.xul+xml' => + array ( + 0 => 'xul', + ), + 'application/vnd.ms-artgalry' => + array ( + 0 => 'cil', + ), + 'application/vnd.ms-cab-compressed' => + array ( + 0 => 'cab', + ), + 'application/vnd.ms-excel' => + array ( + 0 => 'xls', + 1 => 'xlm', + 2 => 'xla', + 3 => 'xlc', + 4 => 'xlt', + 5 => 'xlw', + ), + 'application/vnd.ms-excel.addin.macroenabled.12' => + array ( + 0 => 'xlam', + ), + 'application/vnd.ms-excel.sheet.binary.macroenabled.12' => + array ( + 0 => 'xlsb', + ), + 'application/vnd.ms-excel.sheet.macroenabled.12' => + array ( + 0 => 'xlsm', + ), + 'application/vnd.ms-excel.template.macroenabled.12' => + array ( + 0 => 'xltm', + ), + 'application/vnd.ms-fontobject' => + array ( + 0 => 'eot', + ), + 'application/vnd.ms-htmlhelp' => + array ( + 0 => 'chm', + ), + 'application/vnd.ms-ims' => + array ( + 0 => 'ims', + ), + 'application/vnd.ms-lrm' => + array ( + 0 => 'lrm', + ), + 'application/vnd.ms-officetheme' => + array ( + 0 => 'thmx', + ), + 'application/vnd.ms-pki.seccat' => + array ( + 0 => 'cat', + ), + 'application/vnd.ms-pki.stl' => + array ( + 0 => 'stl', + ), + 'application/vnd.ms-powerpoint' => + array ( + 0 => 'ppt', + 1 => 'pps', + 2 => 'pot', + ), + 'application/vnd.ms-powerpoint.addin.macroenabled.12' => + array ( + 0 => 'ppam', + ), + 'application/vnd.ms-powerpoint.presentation.macroenabled.12' => + array ( + 0 => 'pptm', + ), + 'application/vnd.ms-powerpoint.slide.macroenabled.12' => + array ( + 0 => 'sldm', + ), + 'application/vnd.ms-powerpoint.slideshow.macroenabled.12' => + array ( + 0 => 'ppsm', + ), + 'application/vnd.ms-powerpoint.template.macroenabled.12' => + array ( + 0 => 'potm', + ), + 'application/vnd.ms-project' => + array ( + 0 => 'mpp', + 1 => 'mpt', + ), + 'application/vnd.ms-word.document.macroenabled.12' => + array ( + 0 => 'docm', + ), + 'application/vnd.ms-word.template.macroenabled.12' => + array ( + 0 => 'dotm', + ), + 'application/vnd.ms-works' => + array ( + 0 => 'wps', + 1 => 'wks', + 2 => 'wcm', + 3 => 'wdb', + ), + 'application/vnd.ms-wpl' => + array ( + 0 => 'wpl', + ), + 'application/vnd.ms-xpsdocument' => + array ( + 0 => 'xps', + ), + 'application/vnd.mseq' => + array ( + 0 => 'mseq', + ), + 'application/vnd.musician' => + array ( + 0 => 'mus', + ), + 'application/vnd.muvee.style' => + array ( + 0 => 'msty', + ), + 'application/vnd.mynfc' => + array ( + 0 => 'taglet', + ), + 'application/vnd.neurolanguage.nlu' => + array ( + 0 => 'nlu', + ), + 'application/vnd.nitf' => + array ( + 0 => 'ntf', + 1 => 'nitf', + ), + 'application/vnd.noblenet-directory' => + array ( + 0 => 'nnd', + ), + 'application/vnd.noblenet-sealer' => + array ( + 0 => 'nns', + ), + 'application/vnd.noblenet-web' => + array ( + 0 => 'nnw', + ), + 'application/vnd.nokia.n-gage.data' => + array ( + 0 => 'ngdat', + ), + 'application/vnd.nokia.n-gage.symbian.install' => + array ( + 0 => 'n-gage', + ), + 'application/vnd.nokia.radio-preset' => + array ( + 0 => 'rpst', + ), + 'application/vnd.nokia.radio-presets' => + array ( + 0 => 'rpss', + ), + 'application/vnd.novadigm.edm' => + array ( + 0 => 'edm', + ), + 'application/vnd.novadigm.edx' => + array ( + 0 => 'edx', + ), + 'application/vnd.novadigm.ext' => + array ( + 0 => 'ext', + ), + 'application/vnd.oasis.opendocument.chart' => + array ( + 0 => 'odc', + ), + 'application/vnd.oasis.opendocument.chart-template' => + array ( + 0 => 'otc', + ), + 'application/vnd.oasis.opendocument.database' => + array ( + 0 => 'odb', + ), + 'application/vnd.oasis.opendocument.formula' => + array ( + 0 => 'odf', + ), + 'application/vnd.oasis.opendocument.formula-template' => + array ( + 0 => 'odft', + ), + 'application/vnd.oasis.opendocument.graphics' => + array ( + 0 => 'odg', + ), + 'application/vnd.oasis.opendocument.graphics-template' => + array ( + 0 => 'otg', + ), + 'application/vnd.oasis.opendocument.image' => + array ( + 0 => 'odi', + ), + 'application/vnd.oasis.opendocument.image-template' => + array ( + 0 => 'oti', + ), + 'application/vnd.oasis.opendocument.presentation' => + array ( + 0 => 'odp', + ), + 'application/vnd.oasis.opendocument.presentation-template' => + array ( + 0 => 'otp', + ), + 'application/vnd.oasis.opendocument.spreadsheet' => + array ( + 0 => 'ods', + ), + 'application/vnd.oasis.opendocument.spreadsheet-template' => + array ( + 0 => 'ots', + ), + 'application/vnd.oasis.opendocument.text' => + array ( + 0 => 'odt', + ), + 'application/vnd.oasis.opendocument.text-master' => + array ( + 0 => 'odm', + ), + 'application/vnd.oasis.opendocument.text-template' => + array ( + 0 => 'ott', + ), + 'application/vnd.oasis.opendocument.text-web' => + array ( + 0 => 'oth', + ), + 'application/vnd.olpc-sugar' => + array ( + 0 => 'xo', + ), + 'application/vnd.oma.dd2+xml' => + array ( + 0 => 'dd2', + ), + 'application/vnd.openofficeorg.extension' => + array ( + 0 => 'oxt', + ), + 'application/vnd.openxmlformats-officedocument.presentationml.presentation' => + array ( + 0 => 'pptx', + ), + 'application/vnd.openxmlformats-officedocument.presentationml.slide' => + array ( + 0 => 'sldx', + ), + 'application/vnd.openxmlformats-officedocument.presentationml.slideshow' => + array ( + 0 => 'ppsx', + ), + 'application/vnd.openxmlformats-officedocument.presentationml.template' => + array ( + 0 => 'potx', + ), + 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet' => + array ( + 0 => 'xlsx', + ), + 'application/vnd.openxmlformats-officedocument.spreadsheetml.template' => + array ( + 0 => 'xltx', + ), + 'application/vnd.openxmlformats-officedocument.wordprocessingml.document' => + array ( + 0 => 'docx', + ), + 'application/vnd.openxmlformats-officedocument.wordprocessingml.template' => + array ( + 0 => 'dotx', + ), + 'application/vnd.osgeo.mapguide.package' => + array ( + 0 => 'mgp', + ), + 'application/vnd.osgi.dp' => + array ( + 0 => 'dp', + ), + 'application/vnd.osgi.subsystem' => + array ( + 0 => 'esa', + ), + 'application/vnd.palm' => + array ( + 0 => 'pdb', + 1 => 'pqa', + 2 => 'oprc', + ), + 'application/vnd.pawaafile' => + array ( + 0 => 'paw', + ), + 'application/vnd.pg.format' => + array ( + 0 => 'str', + ), + 'application/vnd.pg.osasli' => + array ( + 0 => 'ei6', + ), + 'application/vnd.picsel' => + array ( + 0 => 'efif', + ), + 'application/vnd.pmi.widget' => + array ( + 0 => 'wg', + ), + 'application/vnd.pocketlearn' => + array ( + 0 => 'plf', + ), + 'application/vnd.powerbuilder6' => + array ( + 0 => 'pbd', + ), + 'application/vnd.previewsystems.box' => + array ( + 0 => 'box', + ), + 'application/vnd.proteus.magazine' => + array ( + 0 => 'mgz', + ), + 'application/vnd.publishare-delta-tree' => + array ( + 0 => 'qps', + ), + 'application/vnd.pvi.ptid1' => + array ( + 0 => 'ptid', + ), + 'application/vnd.quark.quarkxpress' => + array ( + 0 => 'qxd', + 1 => 'qxt', + 2 => 'qwd', + 3 => 'qwt', + 4 => 'qxl', + 5 => 'qxb', + ), + 'application/vnd.realvnc.bed' => + array ( + 0 => 'bed', + ), + 'application/vnd.recordare.musicxml' => + array ( + 0 => 'mxl', + ), + 'application/vnd.recordare.musicxml+xml' => + array ( + 0 => 'musicxml', + ), + 'application/vnd.rig.cryptonote' => + array ( + 0 => 'cryptonote', + ), + 'application/vnd.rim.cod' => + array ( + 0 => 'cod', + ), + 'application/vnd.rn-realmedia' => + array ( + 0 => 'rm', + ), + 'application/vnd.rn-realmedia-vbr' => + array ( + 0 => 'rmvb', + ), + 'application/vnd.route66.link66+xml' => + array ( + 0 => 'link66', + ), + 'application/vnd.sailingtracker.track' => + array ( + 0 => 'st', + ), + 'application/vnd.seemail' => + array ( + 0 => 'see', + ), + 'application/vnd.sema' => + array ( + 0 => 'sema', + ), + 'application/vnd.semd' => + array ( + 0 => 'semd', + ), + 'application/vnd.semf' => + array ( + 0 => 'semf', + ), + 'application/vnd.shana.informed.formdata' => + array ( + 0 => 'ifm', + ), + 'application/vnd.shana.informed.formtemplate' => + array ( + 0 => 'itp', + ), + 'application/vnd.shana.informed.interchange' => + array ( + 0 => 'iif', + ), + 'application/vnd.shana.informed.package' => + array ( + 0 => 'ipk', + ), + 'application/vnd.simtech-mindmapper' => + array ( + 0 => 'twd', + 1 => 'twds', + ), + 'application/vnd.smaf' => + array ( + 0 => 'mmf', + ), + 'application/vnd.smart.teacher' => + array ( + 0 => 'teacher', + ), + 'application/vnd.solent.sdkm+xml' => + array ( + 0 => 'sdkm', + 1 => 'sdkd', + ), + 'application/vnd.spotfire.dxp' => + array ( + 0 => 'dxp', + ), + 'application/vnd.spotfire.sfs' => + array ( + 0 => 'sfs', + ), + 'application/vnd.stardivision.calc' => + array ( + 0 => 'sdc', + ), + 'application/vnd.stardivision.draw' => + array ( + 0 => 'sda', + ), + 'application/vnd.stardivision.impress' => + array ( + 0 => 'sdd', + ), + 'application/vnd.stardivision.math' => + array ( + 0 => 'smf', + ), + 'application/vnd.stardivision.writer' => + array ( + 0 => 'sdw', + 1 => 'vor', + ), + 'application/vnd.stardivision.writer-global' => + array ( + 0 => 'sgl', + ), + 'application/vnd.stepmania.package' => + array ( + 0 => 'smzip', + ), + 'application/vnd.stepmania.stepchart' => + array ( + 0 => 'sm', + ), + 'application/vnd.sun.xml.calc' => + array ( + 0 => 'sxc', + ), + 'application/vnd.sun.xml.calc.template' => + array ( + 0 => 'stc', + ), + 'application/vnd.sun.xml.draw' => + array ( + 0 => 'sxd', + ), + 'application/vnd.sun.xml.draw.template' => + array ( + 0 => 'std', + ), + 'application/vnd.sun.xml.impress' => + array ( + 0 => 'sxi', + ), + 'application/vnd.sun.xml.impress.template' => + array ( + 0 => 'sti', + ), + 'application/vnd.sun.xml.math' => + array ( + 0 => 'sxm', + ), + 'application/vnd.sun.xml.writer' => + array ( + 0 => 'sxw', + ), + 'application/vnd.sun.xml.writer.global' => + array ( + 0 => 'sxg', + ), + 'application/vnd.sun.xml.writer.template' => + array ( + 0 => 'stw', + ), + 'application/vnd.sus-calendar' => + array ( + 0 => 'sus', + 1 => 'susp', + ), + 'application/vnd.svd' => + array ( + 0 => 'svd', + ), + 'application/vnd.symbian.install' => + array ( + 0 => 'sis', + 1 => 'sisx', + ), + 'application/vnd.syncml+xml' => + array ( + 0 => 'xsm', + ), + 'application/vnd.syncml.dm+wbxml' => + array ( + 0 => 'bdm', + ), + 'application/vnd.syncml.dm+xml' => + array ( + 0 => 'xdm', + ), + 'application/vnd.tao.intent-module-archive' => + array ( + 0 => 'tao', + ), + 'application/vnd.tcpdump.pcap' => + array ( + 0 => 'pcap', + 1 => 'cap', + 2 => 'dmp', + ), + 'application/vnd.tmobile-livetv' => + array ( + 0 => 'tmo', + ), + 'application/vnd.trid.tpt' => + array ( + 0 => 'tpt', + ), + 'application/vnd.triscape.mxs' => + array ( + 0 => 'mxs', + ), + 'application/vnd.trueapp' => + array ( + 0 => 'tra', + ), + 'application/vnd.ufdl' => + array ( + 0 => 'ufd', + 1 => 'ufdl', + ), + 'application/vnd.uiq.theme' => + array ( + 0 => 'utz', + ), + 'application/vnd.umajin' => + array ( + 0 => 'umj', + ), + 'application/vnd.unity' => + array ( + 0 => 'unityweb', + ), + 'application/vnd.uoml+xml' => + array ( + 0 => 'uoml', + ), + 'application/vnd.vcx' => + array ( + 0 => 'vcx', + ), + 'application/vnd.visio' => + array ( + 0 => 'vsd', + 1 => 'vst', + 2 => 'vss', + 3 => 'vsw', + ), + 'application/vnd.visionary' => + array ( + 0 => 'vis', + ), + 'application/vnd.vsf' => + array ( + 0 => 'vsf', + ), + 'application/vnd.wap.wbxml' => + array ( + 0 => 'wbxml', + ), + 'application/vnd.wap.wmlc' => + array ( + 0 => 'wmlc', + ), + 'application/vnd.wap.wmlscriptc' => + array ( + 0 => 'wmlsc', + ), + 'application/vnd.webturbo' => + array ( + 0 => 'wtb', + ), + 'application/vnd.wolfram.player' => + array ( + 0 => 'nbp', + ), + 'application/vnd.wordperfect' => + array ( + 0 => 'wpd', + ), + 'application/vnd.wqd' => + array ( + 0 => 'wqd', + ), + 'application/vnd.wt.stf' => + array ( + 0 => 'stf', + ), + 'application/vnd.xara' => + array ( + 0 => 'xar', + ), + 'application/vnd.xfdl' => + array ( + 0 => 'xfdl', + ), + 'application/vnd.yamaha.hv-dic' => + array ( + 0 => 'hvd', + ), + 'application/vnd.yamaha.hv-script' => + array ( + 0 => 'hvs', + ), + 'application/vnd.yamaha.hv-voice' => + array ( + 0 => 'hvp', + ), + 'application/vnd.yamaha.openscoreformat' => + array ( + 0 => 'osf', + ), + 'application/vnd.yamaha.openscoreformat.osfpvg+xml' => + array ( + 0 => 'osfpvg', + ), + 'application/vnd.yamaha.smaf-audio' => + array ( + 0 => 'saf', + ), + 'application/vnd.yamaha.smaf-phrase' => + array ( + 0 => 'spf', + ), + 'application/vnd.yellowriver-custom-menu' => + array ( + 0 => 'cmp', + ), + 'application/vnd.zul' => + array ( + 0 => 'zir', + 1 => 'zirz', + ), + 'application/vnd.zzazz.deck+xml' => + array ( + 0 => 'zaz', + ), + 'application/voicexml+xml' => + array ( + 0 => 'vxml', + ), + 'application/widget' => + array ( + 0 => 'wgt', + ), + 'application/winhlp' => + array ( + 0 => 'hlp', + ), + 'application/wsdl+xml' => + array ( + 0 => 'wsdl', + ), + 'application/wspolicy+xml' => + array ( + 0 => 'wspolicy', + ), + 'application/x-7z-compressed' => + array ( + 0 => '7z', + ), + 'application/x-abiword' => + array ( + 0 => 'abw', + ), + 'application/x-ace-compressed' => + array ( + 0 => 'ace', + ), + 'application/x-apple-diskimage' => + array ( + 0 => 'dmg', + ), + 'application/x-authorware-bin' => + array ( + 0 => 'aab', + 1 => 'x32', + 2 => 'u32', + 3 => 'vox', + ), + 'application/x-authorware-map' => + array ( + 0 => 'aam', + ), + 'application/x-authorware-seg' => + array ( + 0 => 'aas', + ), + 'application/x-bcpio' => + array ( + 0 => 'bcpio', + ), + 'application/x-bittorrent' => + array ( + 0 => 'torrent', + ), + 'application/x-blorb' => + array ( + 0 => 'blb', + 1 => 'blorb', + ), + 'application/x-bzip' => + array ( + 0 => 'bz', + ), + 'application/x-bzip2' => + array ( + 0 => 'bz2', + 1 => 'boz', + ), + 'application/x-cbr' => + array ( + 0 => 'cbr', + 1 => 'cba', + 2 => 'cbt', + 3 => 'cbz', + 4 => 'cb7', + ), + 'application/x-cdlink' => + array ( + 0 => 'vcd', + ), + 'application/x-cfs-compressed' => + array ( + 0 => 'cfs', + ), + 'application/x-chat' => + array ( + 0 => 'chat', + ), + 'application/x-chess-pgn' => + array ( + 0 => 'pgn', + ), + 'application/x-conference' => + array ( + 0 => 'nsc', + ), + 'application/x-cpio' => + array ( + 0 => 'cpio', + ), + 'application/x-csh' => + array ( + 0 => 'csh', + ), + 'application/x-debian-package' => + array ( + 0 => 'deb', + 1 => 'udeb', + ), + 'application/x-dgc-compressed' => + array ( + 0 => 'dgc', + ), + 'application/x-director' => + array ( + 0 => 'dir', + 1 => 'dcr', + 2 => 'dxr', + 3 => 'cst', + 4 => 'cct', + 5 => 'cxt', + 6 => 'w3d', + 7 => 'fgd', + 8 => 'swa', + ), + 'application/x-doom' => + array ( + 0 => 'wad', + ), + 'application/x-dtbncx+xml' => + array ( + 0 => 'ncx', + ), + 'application/x-dtbook+xml' => + array ( + 0 => 'dtb', + ), + 'application/x-dtbresource+xml' => + array ( + 0 => 'res', + ), + 'application/x-dvi' => + array ( + 0 => 'dvi', + ), + 'application/x-envoy' => + array ( + 0 => 'evy', + ), + 'application/x-eva' => + array ( + 0 => 'eva', + ), + 'application/x-font-bdf' => + array ( + 0 => 'bdf', + ), + 'application/x-font-ghostscript' => + array ( + 0 => 'gsf', + ), + 'application/x-font-linux-psf' => + array ( + 0 => 'psf', + ), + 'application/x-font-pcf' => + array ( + 0 => 'pcf', + ), + 'application/x-font-snf' => + array ( + 0 => 'snf', + ), + 'application/x-font-type1' => + array ( + 0 => 'pfa', + 1 => 'pfb', + 2 => 'pfm', + 3 => 'afm', + ), + 'application/x-freearc' => + array ( + 0 => 'arc', + ), + 'application/x-futuresplash' => + array ( + 0 => 'spl', + ), + 'application/x-gca-compressed' => + array ( + 0 => 'gca', + ), + 'application/x-glulx' => + array ( + 0 => 'ulx', + ), + 'application/x-gnumeric' => + array ( + 0 => 'gnumeric', + ), + 'application/x-gramps-xml' => + array ( + 0 => 'gramps', + ), + 'application/x-gtar' => + array ( + 0 => 'gtar', + ), + 'application/x-hdf' => + array ( + 0 => 'hdf', + ), + 'application/x-install-instructions' => + array ( + 0 => 'install', + ), + 'application/x-iso9660-image' => + array ( + 0 => 'iso', + ), + 'application/x-java-jnlp-file' => + array ( + 0 => 'jnlp', + ), + 'application/x-latex' => + array ( + 0 => 'latex', + ), + 'application/x-lzh-compressed' => + array ( + 0 => 'lzh', + 1 => 'lha', + ), + 'application/x-mie' => + array ( + 0 => 'mie', + ), + 'application/x-mobipocket-ebook' => + array ( + 0 => 'prc', + 1 => 'mobi', + ), + 'application/x-ms-application' => + array ( + 0 => 'application', + ), + 'application/x-ms-shortcut' => + array ( + 0 => 'lnk', + ), + 'application/x-ms-wmd' => + array ( + 0 => 'wmd', + ), + 'application/x-ms-wmz' => + array ( + 0 => 'wmz', + ), + 'application/x-ms-xbap' => + array ( + 0 => 'xbap', + ), + 'application/x-msaccess' => + array ( + 0 => 'mdb', + ), + 'application/x-msbinder' => + array ( + 0 => 'obd', + ), + 'application/x-mscardfile' => + array ( + 0 => 'crd', + ), + 'application/x-msclip' => + array ( + 0 => 'clp', + ), + 'application/x-msdownload' => + array ( + 0 => 'exe', + 1 => 'dll', + 2 => 'com', + 3 => 'bat', + 4 => 'msi', + ), + 'application/x-msmediaview' => + array ( + 0 => 'mvb', + 1 => 'm13', + 2 => 'm14', + ), + 'application/x-msmetafile' => + array ( + 0 => 'wmf', + 1 => 'wmz', + 2 => 'emf', + 3 => 'emz', + ), + 'application/x-msmoney' => + array ( + 0 => 'mny', + ), + 'application/x-mspublisher' => + array ( + 0 => 'pub', + ), + 'application/x-msschedule' => + array ( + 0 => 'scd', + ), + 'application/x-msterminal' => + array ( + 0 => 'trm', + ), + 'application/x-mswrite' => + array ( + 0 => 'wri', + ), + 'application/x-netcdf' => + array ( + 0 => 'nc', + 1 => 'cdf', + ), + 'application/x-nzb' => + array ( + 0 => 'nzb', + ), + 'application/x-pkcs12' => + array ( + 0 => 'p12', + 1 => 'pfx', + ), + 'application/x-pkcs7-certificates' => + array ( + 0 => 'p7b', + 1 => 'spc', + ), + 'application/x-pkcs7-certreqresp' => + array ( + 0 => 'p7r', + ), + 'application/x-rar-compressed' => + array ( + 0 => 'rar', + ), + 'application/x-research-info-systems' => + array ( + 0 => 'ris', + ), + 'application/x-sh' => + array ( + 0 => 'sh', + ), + 'application/x-shar' => + array ( + 0 => 'shar', + ), + 'application/x-shockwave-flash' => + array ( + 0 => 'swf', + ), + 'application/x-silverlight-app' => + array ( + 0 => 'xap', + ), + 'application/x-sql' => + array ( + 0 => 'sql', + ), + 'application/x-stuffit' => + array ( + 0 => 'sit', + ), + 'application/x-stuffitx' => + array ( + 0 => 'sitx', + ), + 'application/x-subrip' => + array ( + 0 => 'srt', + ), + 'application/x-sv4cpio' => + array ( + 0 => 'sv4cpio', + ), + 'application/x-sv4crc' => + array ( + 0 => 'sv4crc', + ), + 'application/x-t3vm-image' => + array ( + 0 => 't3', + ), + 'application/x-tads' => + array ( + 0 => 'gam', + ), + 'application/x-tar' => + array ( + 0 => 'tar', + ), + 'application/x-tcl' => + array ( + 0 => 'tcl', + ), + 'application/x-tex' => + array ( + 0 => 'tex', + ), + 'application/x-tex-tfm' => + array ( + 0 => 'tfm', + ), + 'application/x-texinfo' => + array ( + 0 => 'texinfo', + 1 => 'texi', + ), + 'application/x-tgif' => + array ( + 0 => 'obj', + ), + 'application/x-ustar' => + array ( + 0 => 'ustar', + ), + 'application/x-wais-source' => + array ( + 0 => 'src', + ), + 'application/x-x509-ca-cert' => + array ( + 0 => 'der', + 1 => 'crt', + ), + 'application/x-xfig' => + array ( + 0 => 'fig', + ), + 'application/x-xliff+xml' => + array ( + 0 => 'xlf', + ), + 'application/x-xpinstall' => + array ( + 0 => 'xpi', + ), + 'application/x-xz' => + array ( + 0 => 'xz', + ), + 'application/x-zmachine' => + array ( + 0 => 'z1', + 1 => 'z2', + 2 => 'z3', + 3 => 'z4', + 4 => 'z5', + 5 => 'z6', + 6 => 'z7', + 7 => 'z8', + ), + 'application/xaml+xml' => + array ( + 0 => 'xaml', + ), + 'application/xcap-diff+xml' => + array ( + 0 => 'xdf', + ), + 'application/xenc+xml' => + array ( + 0 => 'xenc', + ), + 'application/xhtml+xml' => + array ( + 0 => 'xhtml', + 1 => 'xht', + ), + 'application/xml' => + array ( + 0 => 'xml', + 1 => 'xsl', + ), + 'application/xml-dtd' => + array ( + 0 => 'dtd', + ), + 'application/xop+xml' => + array ( + 0 => 'xop', + ), + 'application/xproc+xml' => + array ( + 0 => 'xpl', + ), + 'application/xslt+xml' => + array ( + 0 => 'xslt', + ), + 'application/xspf+xml' => + array ( + 0 => 'xspf', + ), + 'application/xv+xml' => + array ( + 0 => 'mxml', + 1 => 'xhvml', + 2 => 'xvml', + 3 => 'xvm', + ), + 'application/yang' => + array ( + 0 => 'yang', + ), + 'application/yin+xml' => + array ( + 0 => 'yin', + ), + 'application/zip' => + array ( + 0 => 'zip', + ), + 'audio/adpcm' => + array ( + 0 => 'adp', + ), + 'audio/basic' => + array ( + 0 => 'au', + 1 => 'snd', + ), + 'audio/midi' => + array ( + 0 => 'mid', + 1 => 'midi', + 2 => 'kar', + 3 => 'rmi', + ), + 'audio/mp4' => + array ( + 0 => 'm4a', + 1 => 'mp4a', + ), + 'audio/ogg' => + array ( + 0 => 'oga', + 1 => 'ogg', + 2 => 'spx', + ), + 'audio/s3m' => + array ( + 0 => 's3m', + ), + 'audio/silk' => + array ( + 0 => 'sil', + ), + 'audio/vnd.dece.audio' => + array ( + 0 => 'uva', + 1 => 'uvva', + ), + 'audio/vnd.digital-winds' => + array ( + 0 => 'eol', + ), + 'audio/vnd.dra' => + array ( + 0 => 'dra', + ), + 'audio/vnd.dts' => + array ( + 0 => 'dts', + ), + 'audio/vnd.dts.hd' => + array ( + 0 => 'dtshd', + ), + 'audio/vnd.lucent.voice' => + array ( + 0 => 'lvp', + ), + 'audio/vnd.ms-playready.media.pya' => + array ( + 0 => 'pya', + ), + 'audio/vnd.nuera.ecelp4800' => + array ( + 0 => 'ecelp4800', + ), + 'audio/vnd.nuera.ecelp7470' => + array ( + 0 => 'ecelp7470', + ), + 'audio/vnd.nuera.ecelp9600' => + array ( + 0 => 'ecelp9600', + ), + 'audio/vnd.rip' => + array ( + 0 => 'rip', + ), + 'audio/webm' => + array ( + 0 => 'weba', + ), + 'audio/x-aac' => + array ( + 0 => 'aac', + ), + 'audio/x-aiff' => + array ( + 0 => 'aif', + 1 => 'aiff', + 2 => 'aifc', + ), + 'audio/x-caf' => + array ( + 0 => 'caf', + ), + 'audio/x-flac' => + array ( + 0 => 'flac', + ), + 'audio/x-matroska' => + array ( + 0 => 'mka', + ), + 'audio/x-mpegurl' => + array ( + 0 => 'm3u', + ), + 'audio/x-ms-wax' => + array ( + 0 => 'wax', + ), + 'audio/x-ms-wma' => + array ( + 0 => 'wma', + ), + 'audio/x-pn-realaudio' => + array ( + 0 => 'ram', + 1 => 'ra', + ), + 'audio/x-pn-realaudio-plugin' => + array ( + 0 => 'rmp', + ), + 'audio/x-wav' => + array ( + 0 => 'wav', + ), + 'audio/xm' => + array ( + 0 => 'xm', + ), + 'chemical/x-cdx' => + array ( + 0 => 'cdx', + ), + 'chemical/x-cif' => + array ( + 0 => 'cif', + ), + 'chemical/x-cmdf' => + array ( + 0 => 'cmdf', + ), + 'chemical/x-cml' => + array ( + 0 => 'cml', + ), + 'chemical/x-csml' => + array ( + 0 => 'csml', + ), + 'chemical/x-xyz' => + array ( + 0 => 'xyz', + ), + 'font/collection' => + array ( + 0 => 'ttc', + ), + 'font/otf' => + array ( + 0 => 'otf', + ), + 'font/ttf' => + array ( + 0 => 'ttf', + ), + 'font/woff' => + array ( + 0 => 'woff', + ), + 'font/woff2' => + array ( + 0 => 'woff2', + ), + 'image/bmp' => + array ( + 0 => 'bmp', + ), + 'image/cgm' => + array ( + 0 => 'cgm', + ), + 'image/g3fax' => + array ( + 0 => 'g3', + ), + 'image/gif' => + array ( + 0 => 'gif', + ), + 'image/ief' => + array ( + 0 => 'ief', + ), + 'image/ktx' => + array ( + 0 => 'ktx', + ), + 'image/png' => + array ( + 0 => 'png', + ), + 'image/prs.btif' => + array ( + 0 => 'btif', + ), + 'image/sgi' => + array ( + 0 => 'sgi', + ), + 'image/svg+xml' => + array ( + 0 => 'svg', + 1 => 'svgz', + ), + 'image/tiff' => + array ( + 0 => 'tiff', + 1 => 'tif', + ), + 'image/vnd.adobe.photoshop' => + array ( + 0 => 'psd', + ), + 'image/vnd.dece.graphic' => + array ( + 0 => 'uvi', + 1 => 'uvvi', + 2 => 'uvg', + 3 => 'uvvg', + ), + 'image/vnd.djvu' => + array ( + 0 => 'djvu', + 1 => 'djv', + ), + 'image/vnd.dvb.subtitle' => + array ( + 0 => 'sub', + ), + 'image/vnd.dwg' => + array ( + 0 => 'dwg', + ), + 'image/vnd.dxf' => + array ( + 0 => 'dxf', + ), + 'image/vnd.fastbidsheet' => + array ( + 0 => 'fbs', + ), + 'image/vnd.fpx' => + array ( + 0 => 'fpx', + ), + 'image/vnd.fst' => + array ( + 0 => 'fst', + ), + 'image/vnd.fujixerox.edmics-mmr' => + array ( + 0 => 'mmr', + ), + 'image/vnd.fujixerox.edmics-rlc' => + array ( + 0 => 'rlc', + ), + 'image/vnd.ms-modi' => + array ( + 0 => 'mdi', + ), + 'image/vnd.ms-photo' => + array ( + 0 => 'wdp', + ), + 'image/vnd.net-fpx' => + array ( + 0 => 'npx', + ), + 'image/vnd.wap.wbmp' => + array ( + 0 => 'wbmp', + ), + 'image/vnd.xiff' => + array ( + 0 => 'xif', + ), + 'image/webp' => + array ( + 0 => 'webp', + ), + 'image/x-3ds' => + array ( + 0 => '3ds', + ), + 'image/x-cmu-raster' => + array ( + 0 => 'ras', + ), + 'image/x-cmx' => + array ( + 0 => 'cmx', + ), + 'image/x-freehand' => + array ( + 0 => 'fh', + 1 => 'fhc', + 2 => 'fh4', + 3 => 'fh5', + 4 => 'fh7', + ), + 'image/x-icon' => + array ( + 0 => 'ico', + ), + 'image/x-mrsid-image' => + array ( + 0 => 'sid', + ), + 'image/x-pcx' => + array ( + 0 => 'pcx', + ), + 'image/x-pict' => + array ( + 0 => 'pic', + 1 => 'pct', + ), + 'image/x-portable-anymap' => + array ( + 0 => 'pnm', + ), + 'image/x-portable-bitmap' => + array ( + 0 => 'pbm', + ), + 'image/x-portable-graymap' => + array ( + 0 => 'pgm', + ), + 'image/x-portable-pixmap' => + array ( + 0 => 'ppm', + ), + 'image/x-rgb' => + array ( + 0 => 'rgb', + ), + 'image/x-tga' => + array ( + 0 => 'tga', + ), + 'image/x-xbitmap' => + array ( + 0 => 'xbm', + ), + 'image/x-xpixmap' => + array ( + 0 => 'xpm', + ), + 'image/x-xwindowdump' => + array ( + 0 => 'xwd', + ), + 'message/rfc822' => + array ( + 0 => 'eml', + 1 => 'mime', + ), + 'model/iges' => + array ( + 0 => 'igs', + 1 => 'iges', + ), + 'model/mesh' => + array ( + 0 => 'msh', + 1 => 'mesh', + 2 => 'silo', + ), + 'model/vnd.collada+xml' => + array ( + 0 => 'dae', + ), + 'model/vnd.dwf' => + array ( + 0 => 'dwf', + ), + 'model/vnd.gdl' => + array ( + 0 => 'gdl', + ), + 'model/vnd.gtw' => + array ( + 0 => 'gtw', + ), + 'model/vnd.mts' => + array ( + 0 => 'mts', + ), + 'model/vnd.vtu' => + array ( + 0 => 'vtu', + ), + 'model/vrml' => + array ( + 0 => 'wrl', + 1 => 'vrml', + ), + 'model/x3d+binary' => + array ( + 0 => 'x3db', + 1 => 'x3dbz', + ), + 'model/x3d+vrml' => + array ( + 0 => 'x3dv', + 1 => 'x3dvz', + ), + 'model/x3d+xml' => + array ( + 0 => 'x3d', + 1 => 'x3dz', + ), + 'text/cache-manifest' => + array ( + 0 => 'appcache', + ), + 'text/calendar' => + array ( + 0 => 'ics', + 1 => 'ifb', + ), + 'text/css' => + array ( + 0 => 'css', + ), + 'text/csv' => + array ( + 0 => 'csv', + ), + 'text/html' => + array ( + 0 => 'html', + 1 => 'htm', + ), + 'text/n3' => + array ( + 0 => 'n3', + ), + 'text/plain' => + array ( + 0 => 'txt', + 1 => 'text', + 2 => 'conf', + 3 => 'def', + 4 => 'list', + 5 => 'log', + 6 => 'in', + ), + 'text/prs.lines.tag' => + array ( + 0 => 'dsc', + ), + 'text/richtext' => + array ( + 0 => 'rtx', + ), + 'text/sgml' => + array ( + 0 => 'sgml', + 1 => 'sgm', + ), + 'text/tab-separated-values' => + array ( + 0 => 'tsv', + ), + 'text/troff' => + array ( + 0 => 't', + 1 => 'tr', + 2 => 'roff', + 3 => 'man', + 4 => 'me', + 5 => 'ms', + ), + 'text/turtle' => + array ( + 0 => 'ttl', + ), + 'text/uri-list' => + array ( + 0 => 'uri', + 1 => 'uris', + 2 => 'urls', + ), + 'text/vcard' => + array ( + 0 => 'vcard', + ), + 'text/vnd.curl' => + array ( + 0 => 'curl', + ), + 'text/vnd.curl.dcurl' => + array ( + 0 => 'dcurl', + ), + 'text/vnd.curl.mcurl' => + array ( + 0 => 'mcurl', + ), + 'text/vnd.curl.scurl' => + array ( + 0 => 'scurl', + ), + 'text/vnd.dvb.subtitle' => + array ( + 0 => 'sub', + ), + 'text/vnd.fly' => + array ( + 0 => 'fly', + ), + 'text/vnd.fmi.flexstor' => + array ( + 0 => 'flx', + ), + 'text/vnd.graphviz' => + array ( + 0 => 'gv', + ), + 'text/vnd.in3d.3dml' => + array ( + 0 => '3dml', + ), + 'text/vnd.in3d.spot' => + array ( + 0 => 'spot', + ), + 'text/vnd.sun.j2me.app-descriptor' => + array ( + 0 => 'jad', + ), + 'text/vnd.wap.wml' => + array ( + 0 => 'wml', + ), + 'text/vnd.wap.wmlscript' => + array ( + 0 => 'wmls', + ), + 'text/x-asm' => + array ( + 0 => 's', + 1 => 'asm', + ), + 'text/x-c' => + array ( + 0 => 'c', + 1 => 'cc', + 2 => 'cxx', + 3 => 'cpp', + 4 => 'h', + 5 => 'hh', + 6 => 'dic', + ), + 'text/x-fortran' => + array ( + 0 => 'f', + 1 => 'for', + 2 => 'f77', + 3 => 'f90', + ), + 'text/x-java-source' => + array ( + 0 => 'java', + ), + 'text/x-nfo' => + array ( + 0 => 'nfo', + ), + 'text/x-opml' => + array ( + 0 => 'opml', + ), + 'text/x-pascal' => + array ( + 0 => 'p', + 1 => 'pas', + ), + 'text/x-setext' => + array ( + 0 => 'etx', + ), + 'text/x-sfv' => + array ( + 0 => 'sfv', + ), + 'text/x-uuencode' => + array ( + 0 => 'uu', + ), + 'text/x-vcalendar' => + array ( + 0 => 'vcs', + ), + 'text/x-vcard' => + array ( + 0 => 'vcf', + ), + 'video/3gpp' => + array ( + 0 => '3gp', + ), + 'video/3gpp2' => + array ( + 0 => '3g2', + ), + 'video/h261' => + array ( + 0 => 'h261', + ), + 'video/h263' => + array ( + 0 => 'h263', + ), + 'video/h264' => + array ( + 0 => 'h264', + ), + 'video/jpeg' => + array ( + 0 => 'jpgv', + ), + 'video/jpm' => + array ( + 0 => 'jpm', + 1 => 'jpgm', + ), + 'video/mj2' => + array ( + 0 => 'mj2', + 1 => 'mjp2', + ), + 'video/mp4' => + array ( + 0 => 'mp4', + 1 => 'mp4v', + 2 => 'mpg4', + ), + 'video/mpeg' => + array ( + 0 => 'mpeg', + 1 => 'mpg', + 2 => 'mpe', + 3 => 'm1v', + 4 => 'm2v', + ), + 'video/ogg' => + array ( + 0 => 'ogv', + ), + 'video/quicktime' => + array ( + 0 => 'qt', + 1 => 'mov', + ), + 'video/vnd.dece.hd' => + array ( + 0 => 'uvh', + 1 => 'uvvh', + ), + 'video/vnd.dece.mobile' => + array ( + 0 => 'uvm', + 1 => 'uvvm', + ), + 'video/vnd.dece.pd' => + array ( + 0 => 'uvp', + 1 => 'uvvp', + ), + 'video/vnd.dece.sd' => + array ( + 0 => 'uvs', + 1 => 'uvvs', + ), + 'video/vnd.dece.video' => + array ( + 0 => 'uvv', + 1 => 'uvvv', + ), + 'video/vnd.dvb.file' => + array ( + 0 => 'dvb', + ), + 'video/vnd.fvt' => + array ( + 0 => 'fvt', + ), + 'video/vnd.mpegurl' => + array ( + 0 => 'mxu', + 1 => 'm4u', + ), + 'video/vnd.ms-playready.media.pyv' => + array ( + 0 => 'pyv', + ), + 'video/vnd.uvvu.mp4' => + array ( + 0 => 'uvu', + 1 => 'uvvu', + ), + 'video/vnd.vivo' => + array ( + 0 => 'viv', + ), + 'video/webm' => + array ( + 0 => 'webm', + ), + 'video/x-f4v' => + array ( + 0 => 'f4v', + ), + 'video/x-fli' => + array ( + 0 => 'fli', + ), + 'video/x-flv' => + array ( + 0 => 'flv', + ), + 'video/x-m4v' => + array ( + 0 => 'm4v', + ), + 'video/x-matroska' => + array ( + 0 => 'mkv', + 1 => 'mk3d', + 2 => 'mks', + ), + 'video/x-mng' => + array ( + 0 => 'mng', + ), + 'video/x-ms-asf' => + array ( + 0 => 'asf', + 1 => 'asx', + ), + 'video/x-ms-vob' => + array ( + 0 => 'vob', + ), + 'video/x-ms-wm' => + array ( + 0 => 'wm', + ), + 'video/x-ms-wmv' => + array ( + 0 => 'wmv', + ), + 'video/x-ms-wmx' => + array ( + 0 => 'wmx', + ), + 'video/x-ms-wvx' => + array ( + 0 => 'wvx', + ), + 'video/x-msvideo' => + array ( + 0 => 'avi', + ), + 'video/x-sgi-movie' => + array ( + 0 => 'movie', + ), + 'video/x-smv' => + array ( + 0 => 'smv', + ), + 'x-conference/x-cooltalk' => + array ( + 0 => 'ice', + ), + ), +); \ No newline at end of file diff --git a/vendor/alibabacloud/tea-oss-utils/phpunit.xml b/vendor/alibabacloud/tea-oss-utils/phpunit.xml new file mode 100644 index 00000000..d43dde9f --- /dev/null +++ b/vendor/alibabacloud/tea-oss-utils/phpunit.xml @@ -0,0 +1,32 @@ + + + + + + tests + + + ./tests + + + + + + integration + + + + + + + + + + + + ./src + + + diff --git a/vendor/alibabacloud/tea-oss-utils/src/Crc64.php b/vendor/alibabacloud/tea-oss-utils/src/Crc64.php new file mode 100644 index 00000000..7502591d --- /dev/null +++ b/vendor/alibabacloud/tea-oss-utils/src/Crc64.php @@ -0,0 +1,49 @@ +> 1) & ~(0x8 << 60) ^ $poly64rev; + } else { + $crc = ($crc >> 1) & ~(0x8 << 60); + } + } + $crc64tab[$n] = $crc; + } + self::$crc64tab = $crc64tab; + } + } + + public function append($string) + { + for ($i = 0; $i < \strlen($string); ++$i) { + $this->value = ~$this->value; + $this->value = $this->value(\ord($string[$i]), $this->value); + $this->value = ~$this->value; + } + } + + public function getValue() + { + return (string) (sprintf('%u', $this->value)); + } + + private function value($byte, $crc) + { + return self::$crc64tab[($crc ^ $byte) & 0xff] ^ (($crc >> 8) & ~(0xff << 56)); + } +} diff --git a/vendor/alibabacloud/tea-oss-utils/src/OSSUtils.php b/vendor/alibabacloud/tea-oss-utils/src/OSSUtils.php new file mode 100644 index 00000000..89d9216a --- /dev/null +++ b/vendor/alibabacloud/tea-oss-utils/src/OSSUtils.php @@ -0,0 +1,418 @@ + $v) { + $newKey = strtolower($k); + if (0 !== strpos($k, $prefix)) { + $newKey = $prefix . $newKey; + } + $res[$newKey] = $v; + } + + return $res; + } + + public static function parseMeta($val, $prefix) + { + if (empty($val)) { + return []; + } + $res = []; + foreach ($val as $k => $v) { + $newKey = strtolower($k); + if (0 === strpos($newKey, $prefix)) { + $newKey = str_replace($prefix, '', $newKey); + } + $res[$newKey] = $v; + } + + return $res; + } + + public static function getContentType($fileName) + { + $mapping = require(dirname(__DIR__) . '/mime.types.php'); + if (!empty($fileName) && !empty(trim($fileName))) { + $ext = pathinfo($fileName, PATHINFO_EXTENSION); + $ext = strtolower(trim($ext)); + + if (!empty($mapping['mimes'][$ext])) { + return $mapping['mimes'][$ext][0]; + } + } + return null; + } + + public static function getContentMD5($body, $isEnableMD5) + { + if (false === $isEnableMD5) { + return ''; + } + + return base64_encode(md5($body, true)); + } + + public static function encode($val, $encodeType) + { + $strs = explode('/', $val); + $len = \count($strs); + switch ($encodeType) { + case 'Base64': + $strs[$len - 1] = base64_encode($strs[$len - 1]); + + break; + case 'UrlEncode': + $strs[$len - 1] = rawurlencode($strs[$len - 1]); + + break; + } + + return implode('/', $strs); + } + + public static function getUserAgent($val) + { + if (empty($val)) { + return self::getDefaultUserAgent(); + } + + return self::getDefaultUserAgent() . ' ' . $val; + } + + public static function getHost($bucketName, $regionId, $endpoint, $hostModel) + { + if (empty($regionId) || empty(trim($regionId))) { + $regionId = 'cn-hangzhou'; + } + if (empty($endpoint) || empty(trim($endpoint))) { + $endpoint = 'oss-' . $regionId . '.aliyuncs.com'; + } + if (!empty($bucketName)) { + $hostModel = null === $hostModel ? '' : $hostModel; + if ('ip' === $hostModel) { + $host = $endpoint . '/' . $bucketName; + } elseif ('cname' == $hostModel) { + $host = $endpoint; + } else { + $host = $bucketName . '.' . $endpoint; + } + } else { + $host = $endpoint; + } + + return $host; + } + + /** + * @param resource $body + * @param array $res + * + * @return VerifyStream + */ + public static function inject($body, &$res) + { + return new VerifyStream($body, $res); + } + + /** + * @param Request $request + * @param string $bucketName + * @param string $accessKeyId + * @param string $accessKeySecret + * @param string $signatureVersion + * @param string[] $addtionalHeaders + * + * @return string + */ + public static function getSignature($request, $bucketName, $accessKeyId, $accessKeySecret, $signatureVersion, $addtionalHeaders) + { + $signatureVersion = strtolower($signatureVersion); + if ('v2' === $signatureVersion) { + if (empty($addtionalHeaders)) { + return 'OSS2 AccessKeyId:' . $accessKeyId . + ',Signature:' . self::getSignatureV2($request, $bucketName, $accessKeySecret, $addtionalHeaders); + } + + return 'OSS2 AccessKeyId:' . $accessKeyId . + ',AdditionalHeaders:' . implode(';', $addtionalHeaders) . + ',Signature:' . self::getSignatureV2($request, $bucketName, $accessKeySecret, $addtionalHeaders); + } + + return 'OSS ' . $accessKeyId . ':' . self::getSignatureV1($request, $bucketName, $accessKeySecret); + } + + /** + * @param string $val + * @param string $decodeType + * + * @return string + */ + public static function decode($val, $decodeType) + { + switch ($decodeType) { + case 'Base64Decode': + $res = base64_decode($val); + + return false === $res ? '' : $res; + case 'UrlDecode': + return rawurldecode($val); + } + + return $val; + } + + private static function parseXml($xmlStr) + { + if (\PHP_VERSION_ID < 80000) { + libxml_disable_entity_loader(true); + } + $xml = simplexml_load_string($xmlStr, 'SimpleXMLElement', LIBXML_NOCDATA); + $rootName = $xml->getName(); + + return [ + $rootName => json_decode( + json_encode( + $xml + ), + true + ), + ]; + } + + private static function getDefaultUserAgent() + { + if (empty(self::$defaultUserAgent)) { + self::$defaultUserAgent = 'Alibaba Cloud (' . PHP_OS . ') '; + self::$defaultUserAgent .= 'TeaCore/3'; + } + + return self::$defaultUserAgent; + } + + /** + * @param Request $request + * @param string $bucketName + * @param string $accessKeySecret + * + * @return string + */ + private static function getSignatureV1($request, $bucketName, $accessKeySecret) + { + $canonicalizeResource = ''; + if (!empty($bucketName)) { + $canonicalizeResource = '/' . $bucketName; + } + $canonicalizeResource .= $request->pathname; + + $query = $request->query; + ksort($query); + + if (!empty($query)) { + if (false === strpos($canonicalizeResource, '?')) { + $canonicalizeResource .= '?'; + } + foreach ($query as $k => $v) { + if (\in_array($k, self::SIGN_KEY_LIST) && null !== $v && '' !== $v) { + if ('?' === $canonicalizeResource[\strlen($canonicalizeResource) - 1]) { + $canonicalizeResource .= $k . '=' . $v; + } else { + $canonicalizeResource .= '&' . $k . '=' . $v; + } + } + } + } + + $headers = new Dot($request->headers); + $signString = implode("\n", [ + strtoupper($request->method), + $headers->get('content-md5', ''), + $headers->get('content-type', ''), + $headers->get('date', ''), + implode("\n", self::getCanonicalizeHeaders($request->headers)), + $canonicalizeResource, + ]); + + return base64_encode( + hash_hmac( + 'sha1', + $signString, + $accessKeySecret, + true + ) + ); + } + + /** + * @param Request $request + * @param string $bucketName + * @param string $accessKeySecret + * @param string[] $addtionalHeaders + * + * @return string + */ + private static function getSignatureV2($request, $bucketName, $accessKeySecret, $addtionalHeaders) + { + if (empty($addtionalHeaders)) { + $addtionalHeaders = []; + } + $canonicalizeResource = ''; + + $pathname = $request->pathname; + if (!empty($bucketName)) { + $pathname = '/' . $bucketName . $pathname; + } + $tmp = explode('?', $pathname); + $canonicalizeResource .= rawurlencode($tmp[0]); + $sortDict = $request->query; + if (\count($tmp) > 1 && !empty($tmp[1])) { + $sortDict[$tmp[1]] = ''; + } + ksort($sortDict); + if (\count($sortDict) > 0 && false === strpos($canonicalizeResource, '?')) { + $canonicalizeResource .= '?'; + } + + $flag = '?' === $canonicalizeResource[\strlen($canonicalizeResource) - 1]; + + foreach ($sortDict as $k => $v) { + if (!$flag) { + $canonicalizeResource .= '&'; + } else { + $flag = false; + } + if (!empty($v)) { + $canonicalizeResource .= rawurlencode($k) . '=' . rawurlencode($v); + } else { + $canonicalizeResource .= rawurlencode($k); + } + } + + $headers = []; + $headerKeys = []; + foreach ($request->headers as $k => $v) { + $key = strtolower($k); + if (0 === strpos($key, 'x-oss-')) { + $headers[$key] = $v; + } + $headerKeys[$key] = $k; + } + foreach ($addtionalHeaders as $header) { + $header = strtolower($header); + if (isset($headerKeys[$header]) && !isset($headers[$header])) { + $headers[$header] = $request->headers[$headerKeys[$header]]; + } + } + $requestHeaders = new Dot($request->headers); + $signString = implode("\n", [ + strtoupper($request->method), + $requestHeaders->get('content-md5', ''), + $requestHeaders->get('content-type', ''), + $requestHeaders->get('date', ''), + implode("\n", self::getCanonicalizeHeaders($headers)), + implode(';', $addtionalHeaders), + $canonicalizeResource, + ]); + + return base64_encode( + hash_hmac( + 'sha256', + $signString, + $accessKeySecret, + true + ) + ); + } + + /** + * @param array $headers + * + * @return array + */ + private static function getCanonicalizeHeaders($headers) + { + $canonicalizeHeaders = []; + foreach ($headers as $k => $v) { + $headerName = strtolower($k); + if (0 === strpos($headerName, 'x-oss-')) { + array_push($canonicalizeHeaders, $headerName . ':' . $v); + } + } + ksort($canonicalizeHeaders); + + return $canonicalizeHeaders; + } +} diff --git a/vendor/alibabacloud/tea-oss-utils/src/OSSUtils/RuntimeOptions.php b/vendor/alibabacloud/tea-oss-utils/src/OSSUtils/RuntimeOptions.php new file mode 100644 index 00000000..558d9ae3 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-utils/src/OSSUtils/RuntimeOptions.php @@ -0,0 +1,239 @@ + 'autoretry', + 'ignoreSSL' => 'ignoreSSL', + 'maxAttempts' => 'maxAttempts', + 'backoffPolicy' => 'backoffPolicy', + 'backoffPeriod' => 'backoffPeriod', + 'readTimeout' => 'readTimeout', + 'connectTimeout' => 'connectTimeout', + 'localAddr' => 'localAddr', + 'httpProxy' => 'httpProxy', + 'httpsProxy' => 'httpsProxy', + 'noProxy' => 'noProxy', + 'maxIdleConns' => 'maxIdleConns', + 'socks5Proxy' => 'socks5Proxy', + 'socks5NetWork' => 'socks5NetWork', + 'uploadLimitSpeed' => 'uploadLimitSpeed', + 'listener' => 'listener', + ]; + public function validate() + { + } + public function toMap() + { + $res = []; + if (null !== $this->autoretry) { + $res['autoretry'] = $this->autoretry; + } + if (null !== $this->ignoreSSL) { + $res['ignoreSSL'] = $this->ignoreSSL; + } + if (null !== $this->maxAttempts) { + $res['maxAttempts'] = $this->maxAttempts; + } + if (null !== $this->backoffPolicy) { + $res['backoffPolicy'] = $this->backoffPolicy; + } + if (null !== $this->backoffPeriod) { + $res['backoffPeriod'] = $this->backoffPeriod; + } + if (null !== $this->readTimeout) { + $res['readTimeout'] = $this->readTimeout; + } + if (null !== $this->connectTimeout) { + $res['connectTimeout'] = $this->connectTimeout; + } + if (null !== $this->localAddr) { + $res['localAddr'] = $this->localAddr; + } + if (null !== $this->httpProxy) { + $res['httpProxy'] = $this->httpProxy; + } + if (null !== $this->httpsProxy) { + $res['httpsProxy'] = $this->httpsProxy; + } + if (null !== $this->noProxy) { + $res['noProxy'] = $this->noProxy; + } + if (null !== $this->maxIdleConns) { + $res['maxIdleConns'] = $this->maxIdleConns; + } + if (null !== $this->socks5Proxy) { + $res['socks5Proxy'] = $this->socks5Proxy; + } + if (null !== $this->socks5NetWork) { + $res['socks5NetWork'] = $this->socks5NetWork; + } + if (null !== $this->uploadLimitSpeed) { + $res['uploadLimitSpeed'] = $this->uploadLimitSpeed; + } + if (null !== $this->listener) { + $res['listener'] = $this->listener; + } + return $res; + } + /** + * @param array $map + * @return RuntimeOptions + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['autoretry'])) { + $model->autoretry = $map['autoretry']; + } + if (isset($map['ignoreSSL'])) { + $model->ignoreSSL = $map['ignoreSSL']; + } + if (isset($map['maxAttempts'])) { + $model->maxAttempts = $map['maxAttempts']; + } + if (isset($map['backoffPolicy'])) { + $model->backoffPolicy = $map['backoffPolicy']; + } + if (isset($map['backoffPeriod'])) { + $model->backoffPeriod = $map['backoffPeriod']; + } + if (isset($map['readTimeout'])) { + $model->readTimeout = $map['readTimeout']; + } + if (isset($map['connectTimeout'])) { + $model->connectTimeout = $map['connectTimeout']; + } + if (isset($map['localAddr'])) { + $model->localAddr = $map['localAddr']; + } + if (isset($map['httpProxy'])) { + $model->httpProxy = $map['httpProxy']; + } + if (isset($map['httpsProxy'])) { + $model->httpsProxy = $map['httpsProxy']; + } + if (isset($map['noProxy'])) { + $model->noProxy = $map['noProxy']; + } + if (isset($map['maxIdleConns'])) { + $model->maxIdleConns = $map['maxIdleConns']; + } + if (isset($map['socks5Proxy'])) { + $model->socks5Proxy = $map['socks5Proxy']; + } + if (isset($map['socks5NetWork'])) { + $model->socks5NetWork = $map['socks5NetWork']; + } + if (isset($map['uploadLimitSpeed'])) { + $model->uploadLimitSpeed = $map['uploadLimitSpeed']; + } + if (isset($map['listener'])) { + $model->listener = $map['listener']; + } + return $model; + } + /** + * @description autoretry + * @var bool + */ + public $autoretry; + + /** + * @description ignoreSSL + * @var bool + */ + public $ignoreSSL; + + /** + * @description max attempts + * @var int + */ + public $maxAttempts; + + /** + * @description backoff policy + * @var string + */ + public $backoffPolicy; + + /** + * @description backoff period + * @var int + */ + public $backoffPeriod; + + /** + * @description read timeout + * @var int + */ + public $readTimeout; + + /** + * @description connect timeout + * @var int + */ + public $connectTimeout; + + /** + * @description local addr + * @var string + */ + public $localAddr; + + /** + * @description http proxy + * @var string + */ + public $httpProxy; + + /** + * @description https proxy + * @var string + */ + public $httpsProxy; + + /** + * @description no proxy + * @var string + */ + public $noProxy; + + /** + * @description max idle conns + * @var int + */ + public $maxIdleConns; + + /** + * @description socks5 proxy + * @var string + */ + public $socks5Proxy; + + /** + * @description socks5 NetWork + * @var string + */ + public $socks5NetWork; + + /** + * @description upload limit speed + * @var int + */ + public $uploadLimitSpeed; + + /** + * @description listener + * @var mixed + */ + public $listener; +} diff --git a/vendor/alibabacloud/tea-oss-utils/src/VerifyStream.php b/vendor/alibabacloud/tea-oss-utils/src/VerifyStream.php new file mode 100644 index 00000000..680dae00 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-utils/src/VerifyStream.php @@ -0,0 +1,49 @@ +crcRead = new Crc64(); + $this->res = &$res; + if ($stream instanceof Stream) { + $stream->rewind(); + $stream = fopen('data://text/plain;base64,' . base64_encode($stream->getContents()), 'r'); + } + parent::__construct($stream, []); + } + + public function read($length) + { + $string = parent::read($length); + if (!empty($string)) { + $this->crcRead->append($string); + $this->content .= $string; + } + + return $string; + } + + public function getVerify() + { + $this->res = [ + 'md5' => base64_encode(md5($this->content, true)), + 'crc' => $this->crcRead->getValue(), + ]; + + return $this->res; + } +} diff --git a/vendor/alibabacloud/tea-oss-utils/tests/Crc64Test.php b/vendor/alibabacloud/tea-oss-utils/tests/Crc64Test.php new file mode 100644 index 00000000..5f81489c --- /dev/null +++ b/vendor/alibabacloud/tea-oss-utils/tests/Crc64Test.php @@ -0,0 +1,27 @@ +append('test'); + $this->assertEquals('18020588380933092773', $crc->getValue()); + + $crc->append(' oss string'); + $this->assertEquals('5415765121994015315', $crc->getValue()); + + $crc = new Crc64(); + $crc->append('test oss string'); + $this->assertEquals('5415765121994015315', $crc->getValue()); + } +} diff --git a/vendor/alibabacloud/tea-oss-utils/tests/OSSUtilsTest.php b/vendor/alibabacloud/tea-oss-utils/tests/OSSUtilsTest.php new file mode 100644 index 00000000..e9d05c89 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-utils/tests/OSSUtilsTest.php @@ -0,0 +1,153 @@ +401"; + $res = OSSUtils::getErrMessage($message); + $this->assertEquals('401', $res['Code']); + } + + public function testToMeta() + { + $map = [ + 'size' => '1', + 'test.key.id' => '9527', + ]; + $res = OSSUtils::toMeta($map, 'test.key.'); + $this->assertEquals([ + 'test.key.size' => '1', + 'test.key.id' => '9527', + ], $res); + } + + public function testParseMeta() + { + $map = [ + 'size' => '1', + 'test.key.id' => '9527', + ]; + $res = OSSUtils::parseMeta($map, 'test.key.'); + $this->assertEquals([ + 'size' => '1', + 'id' => '9527', + ], $res); + } + + public function testGetContentType() + { + $this->assertEquals('image/webp', OSSUtils::getContentType('test.webp')); + $this->assertEquals('audio/mpeg', OSSUtils::getContentType('test.mp3')); + $this->assertEquals(null, OSSUtils::getContentType(null)); + $this->assertEquals(null, OSSUtils::getContentType(true)); + } + + public function testGetContentMD5() + { + $this->assertEquals('CY9rzUYh03PK3k6DJie09g==', OSSUtils::getContentMD5('test', true)); + } + + public function testEncode() + { + $value = 'test/encode/h%f'; + $this->assertEquals($value, OSSUtils::encode($value, null)); + $this->assertEquals($value, OSSUtils::encode($value, '')); + $this->assertEquals('test/encode/aCVm', OSSUtils::encode($value, 'Base64')); + $this->assertEquals('test/encode/h%25f', OSSUtils::encode($value, 'UrlEncode')); + } + + public function testGetUserAgent() + { + $userAgent = 'Custom UserAgent'; + $res = OSSUtils::getUserAgent($userAgent); + $this->assertTrue(false !== strpos($res, $userAgent)); + } + + public function testGetHost() + { + $host = OSSUtils::getHost(null, null, null, null); + $this->assertEquals('oss-cn-hangzhou.aliyuncs.com', $host); + + $host = OSSUtils::getHost('testBucket', 'region', 'endpoint', 'ip'); + $this->assertEquals('endpoint/testBucket', $host); + + $host = OSSUtils::getHost('testBucket', 'region', 'endpoint', 'cname'); + $this->assertEquals('endpoint', $host); + + $host = OSSUtils::getHost('testBucket', 'region', 'endpoint', 'test'); + $this->assertEquals('testBucket.endpoint', $host); + } + + public function testInject() + { + $stream = fopen('data://text/plain;base64,' . base64_encode('test'), 'r+'); + $verifyStream = OSSUtils::inject($stream, $res); + $verifyStream->read(4); + $verifyStream->getVerify(); + $this->assertEquals('CY9rzUYh03PK3k6DJie09g==', $res['md5']); + $this->assertEquals('18020588380933092773', $res['crc']); + } + + public function testGetSignatureV1() + { + $request = new Request(); + $request->pathname = ''; + $request->method = 'GET'; + $request->headers = [ + 'x-oss-test' => 'test', + 'content-type' => 'type', + 'content-md5' => 'md5', + ]; + $request->query = [ + 'testQuery' => 'testQuery', + 'querykey' => 'queryValue', + 'x-oss-process' => 'value', + ]; + + $sign = OSSUtils::getSignature($request, 'test', 'ak', 'sk', 'v1', null); + $this->assertEquals('OSS ak:q9lSDGVH1VmpjMTGSwUZn3tg3J4=', $sign); + } + + public function testGetSignatureV2() + { + $request = new Request(); + $request->method = 'GET'; + $request->pathname = 'test?aa'; + $request->headers = [ + 'x-oss-test' => 'test', + 'content-type' => 'type', + 'content-md5' => 'md5', + ]; + $request->query = [ + 'testQuery' => 'testQuery', + 'querykey' => 'queryValue', + 'x-oss-test' => 'test', + ]; + $signature = OSSUtils::getSignature( + $request, + 'test', + 'accessKeyId', + 'sk', + 'v2', + ['querykey'] + ); + $this->assertEquals('OSS2 AccessKeyId:accessKeyId,AdditionalHeaders:querykey,Signature:NTrErwnblTk2y8h/NJKCcPCr73iRTfcl99PEc1fCgZY=', $signature); + } + + public function testDecode() + { + $this->assertEquals('h%f', OSSUtils::decode('aCVm', 'Base64Decode')); + $this->assertEquals('h%f', OSSUtils::decode('h%25f', 'UrlDecode')); + } +} diff --git a/vendor/alibabacloud/tea-oss-utils/tests/VerifyStreamTest.php b/vendor/alibabacloud/tea-oss-utils/tests/VerifyStreamTest.php new file mode 100644 index 00000000..08606009 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-utils/tests/VerifyStreamTest.php @@ -0,0 +1,30 @@ +read(1); + $verifyStream->read(1); + $verifyStream->read(1); + $verifyStream->read(1); + + $verify = $verifyStream->getVerify(); + $this->assertEquals('CY9rzUYh03PK3k6DJie09g==', $verify['md5']); + $this->assertEquals('18020588380933092773', $verify['crc']); + } +} diff --git a/vendor/alibabacloud/tea-oss-utils/tests/bootstrap.php b/vendor/alibabacloud/tea-oss-utils/tests/bootstrap.php new file mode 100644 index 00000000..c62c4e81 --- /dev/null +++ b/vendor/alibabacloud/tea-oss-utils/tests/bootstrap.php @@ -0,0 +1,3 @@ +> - */ private $prefixLengthsPsr4 = array(); - /** - * @var array> - */ private $prefixDirsPsr4 = array(); - /** - * @var list - */ private $fallbackDirsPsr4 = array(); // PSR-0 - /** - * List of PSR-0 prefixes - * - * Structured as array('F (first letter)' => array('Foo\Bar (full prefix)' => array('path', 'path2'))) - * - * @var array>> - */ private $prefixesPsr0 = array(); - /** - * @var list - */ private $fallbackDirsPsr0 = array(); - /** @var bool */ private $useIncludePath = false; - - /** - * @var array - */ private $classMap = array(); - - /** @var bool */ private $classMapAuthoritative = false; - - /** - * @var array - */ private $missingClasses = array(); - - /** @var string|null */ private $apcuPrefix; - /** - * @var array - */ private static $registeredLoaders = array(); - /** - * @param string|null $vendorDir - */ public function __construct($vendorDir = null) { $this->vendorDir = $vendorDir; - self::initializeIncludeClosure(); } - /** - * @return array> - */ public function getPrefixes() { if (!empty($this->prefixesPsr0)) { @@ -121,42 +75,28 @@ class ClassLoader return array(); } - /** - * @return array> - */ public function getPrefixesPsr4() { return $this->prefixDirsPsr4; } - /** - * @return list - */ public function getFallbackDirs() { return $this->fallbackDirsPsr0; } - /** - * @return list - */ public function getFallbackDirsPsr4() { return $this->fallbackDirsPsr4; } - /** - * @return array Array of classname => path - */ public function getClassMap() { return $this->classMap; } /** - * @param array $classMap Class to filename map - * - * @return void + * @param array $classMap Class to filename map */ public function addClassMap(array $classMap) { @@ -171,25 +111,22 @@ class ClassLoader * Registers a set of PSR-0 directories for a given prefix, either * appending or prepending to the ones previously set for this prefix. * - * @param string $prefix The prefix - * @param list|string $paths The PSR-0 root directories - * @param bool $prepend Whether to prepend the directories - * - * @return void + * @param string $prefix The prefix + * @param array|string $paths The PSR-0 root directories + * @param bool $prepend Whether to prepend the directories */ public function add($prefix, $paths, $prepend = false) { - $paths = (array) $paths; if (!$prefix) { if ($prepend) { $this->fallbackDirsPsr0 = array_merge( - $paths, + (array) $paths, $this->fallbackDirsPsr0 ); } else { $this->fallbackDirsPsr0 = array_merge( $this->fallbackDirsPsr0, - $paths + (array) $paths ); } @@ -198,19 +135,19 @@ class ClassLoader $first = $prefix[0]; if (!isset($this->prefixesPsr0[$first][$prefix])) { - $this->prefixesPsr0[$first][$prefix] = $paths; + $this->prefixesPsr0[$first][$prefix] = (array) $paths; return; } if ($prepend) { $this->prefixesPsr0[$first][$prefix] = array_merge( - $paths, + (array) $paths, $this->prefixesPsr0[$first][$prefix] ); } else { $this->prefixesPsr0[$first][$prefix] = array_merge( $this->prefixesPsr0[$first][$prefix], - $paths + (array) $paths ); } } @@ -219,28 +156,25 @@ class ClassLoader * Registers a set of PSR-4 directories for a given namespace, either * appending or prepending to the ones previously set for this namespace. * - * @param string $prefix The prefix/namespace, with trailing '\\' - * @param list|string $paths The PSR-4 base directories - * @param bool $prepend Whether to prepend the directories + * @param string $prefix The prefix/namespace, with trailing '\\' + * @param array|string $paths The PSR-4 base directories + * @param bool $prepend Whether to prepend the directories * * @throws \InvalidArgumentException - * - * @return void */ public function addPsr4($prefix, $paths, $prepend = false) { - $paths = (array) $paths; if (!$prefix) { // Register directories for the root namespace. if ($prepend) { $this->fallbackDirsPsr4 = array_merge( - $paths, + (array) $paths, $this->fallbackDirsPsr4 ); } else { $this->fallbackDirsPsr4 = array_merge( $this->fallbackDirsPsr4, - $paths + (array) $paths ); } } elseif (!isset($this->prefixDirsPsr4[$prefix])) { @@ -250,18 +184,18 @@ class ClassLoader throw new \InvalidArgumentException("A non-empty PSR-4 prefix must end with a namespace separator."); } $this->prefixLengthsPsr4[$prefix[0]][$prefix] = $length; - $this->prefixDirsPsr4[$prefix] = $paths; + $this->prefixDirsPsr4[$prefix] = (array) $paths; } elseif ($prepend) { // Prepend directories for an already registered namespace. $this->prefixDirsPsr4[$prefix] = array_merge( - $paths, + (array) $paths, $this->prefixDirsPsr4[$prefix] ); } else { // Append directories for an already registered namespace. $this->prefixDirsPsr4[$prefix] = array_merge( $this->prefixDirsPsr4[$prefix], - $paths + (array) $paths ); } } @@ -270,10 +204,8 @@ class ClassLoader * Registers a set of PSR-0 directories for a given prefix, * replacing any others previously set for this prefix. * - * @param string $prefix The prefix - * @param list|string $paths The PSR-0 base directories - * - * @return void + * @param string $prefix The prefix + * @param array|string $paths The PSR-0 base directories */ public function set($prefix, $paths) { @@ -288,12 +220,10 @@ class ClassLoader * Registers a set of PSR-4 directories for a given namespace, * replacing any others previously set for this namespace. * - * @param string $prefix The prefix/namespace, with trailing '\\' - * @param list|string $paths The PSR-4 base directories + * @param string $prefix The prefix/namespace, with trailing '\\' + * @param array|string $paths The PSR-4 base directories * * @throws \InvalidArgumentException - * - * @return void */ public function setPsr4($prefix, $paths) { @@ -313,8 +243,6 @@ class ClassLoader * Turns on searching the include path for class files. * * @param bool $useIncludePath - * - * @return void */ public function setUseIncludePath($useIncludePath) { @@ -337,8 +265,6 @@ class ClassLoader * that have not been registered with the class map. * * @param bool $classMapAuthoritative - * - * @return void */ public function setClassMapAuthoritative($classMapAuthoritative) { @@ -359,8 +285,6 @@ class ClassLoader * APCu prefix to use to cache found/not-found classes, if the extension is enabled. * * @param string|null $apcuPrefix - * - * @return void */ public function setApcuPrefix($apcuPrefix) { @@ -381,8 +305,6 @@ class ClassLoader * Registers this instance as an autoloader. * * @param bool $prepend Whether to prepend the autoloader or not - * - * @return void */ public function register($prepend = false) { @@ -402,8 +324,6 @@ class ClassLoader /** * Unregisters this instance as an autoloader. - * - * @return void */ public function unregister() { @@ -423,8 +343,7 @@ class ClassLoader public function loadClass($class) { if ($file = $this->findFile($class)) { - $includeFile = self::$includeFile; - $includeFile($file); + includeFile($file); return true; } @@ -475,20 +394,15 @@ class ClassLoader } /** - * Returns the currently registered loaders keyed by their corresponding vendor directories. + * Returns the currently registered loaders indexed by their corresponding vendor directories. * - * @return array + * @return self[] */ public static function getRegisteredLoaders() { return self::$registeredLoaders; } - /** - * @param string $class - * @param string $ext - * @return string|false - */ private function findFileWithExtension($class, $ext) { // PSR-4 lookup @@ -554,26 +468,14 @@ class ClassLoader return false; } - - /** - * @return void - */ - private static function initializeIncludeClosure() - { - if (self::$includeFile !== null) { - return; - } - - /** - * Scope isolated include. - * - * Prevents access to $this/self from included files. - * - * @param string $file - * @return void - */ - self::$includeFile = \Closure::bind(static function($file) { - include $file; - }, null, null); - } +} + +/** + * Scope isolated include. + * + * Prevents access to $this/self from included files. + */ +function includeFile($file) +{ + include $file; } diff --git a/vendor/composer/InstalledVersions.php b/vendor/composer/InstalledVersions.php index 51e734a7..b3a4e161 100644 --- a/vendor/composer/InstalledVersions.php +++ b/vendor/composer/InstalledVersions.php @@ -20,27 +20,12 @@ use Composer\Semver\VersionParser; * * See also https://getcomposer.org/doc/07-runtime.md#installed-versions * - * To require its presence, you can require `composer-runtime-api ^2.0` - * - * @final + * To require it's presence, you can require `composer-runtime-api ^2.0` */ class InstalledVersions { - /** - * @var mixed[]|null - * @psalm-var array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array}|array{}|null - */ private static $installed; - - /** - * @var bool|null - */ private static $canGetVendors; - - /** - * @var array[] - * @psalm-var array}> - */ private static $installedByVendor = array(); /** @@ -98,7 +83,7 @@ class InstalledVersions { foreach (self::getInstalled() as $installed) { if (isset($installed['versions'][$packageName])) { - return $includeDevRequirements || !isset($installed['versions'][$packageName]['dev_requirement']) || $installed['versions'][$packageName]['dev_requirement'] === false; + return $includeDevRequirements || empty($installed['versions'][$packageName]['dev_requirement']); } } @@ -119,7 +104,7 @@ class InstalledVersions */ public static function satisfies(VersionParser $parser, $packageName, $constraint) { - $constraint = $parser->parseConstraints((string) $constraint); + $constraint = $parser->parseConstraints($constraint); $provided = $parser->parseConstraints(self::getVersionRanges($packageName)); return $provided->matches($constraint); @@ -243,7 +228,7 @@ class InstalledVersions /** * @return array - * @psalm-return array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool} + * @psalm-return array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string} */ public static function getRootPackage() { @@ -257,7 +242,7 @@ class InstalledVersions * * @deprecated Use getAllRawData() instead which returns all datasets for all autoloaders present in the process. getRawData only returns the first dataset loaded, which may not be what you expect. * @return array[] - * @psalm-return array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array} + * @psalm-return array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string}, versions: array} */ public static function getRawData() { @@ -280,7 +265,7 @@ class InstalledVersions * Returns the raw data of all installed.php which are currently loaded for custom implementations * * @return array[] - * @psalm-return list}> + * @psalm-return list}> */ public static function getAllRawData() { @@ -303,7 +288,7 @@ class InstalledVersions * @param array[] $data A vendor/composer/installed.php data set * @return void * - * @psalm-param array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array} $data + * @psalm-param array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string}, versions: array} $data */ public static function reload($data) { @@ -313,7 +298,7 @@ class InstalledVersions /** * @return array[] - * @psalm-return list}> + * @psalm-return list}> */ private static function getInstalled() { @@ -328,9 +313,7 @@ class InstalledVersions if (isset(self::$installedByVendor[$vendorDir])) { $installed[] = self::$installedByVendor[$vendorDir]; } elseif (is_file($vendorDir.'/composer/installed.php')) { - /** @var array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array} $required */ - $required = require $vendorDir.'/composer/installed.php'; - $installed[] = self::$installedByVendor[$vendorDir] = $required; + $installed[] = self::$installedByVendor[$vendorDir] = require $vendorDir.'/composer/installed.php'; if (null === self::$installed && strtr($vendorDir.'/composer', '\\', '/') === strtr(__DIR__, '\\', '/')) { self::$installed = $installed[count($installed) - 1]; } @@ -342,17 +325,12 @@ class InstalledVersions // only require the installed.php file if this file is loaded from its dumped location, // and not from its source location in the composer/composer package, see https://github.com/composer/composer/issues/9937 if (substr(__DIR__, -8, 1) !== 'C') { - /** @var array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array} $required */ - $required = require __DIR__ . '/installed.php'; - self::$installed = $required; + self::$installed = require __DIR__ . '/installed.php'; } else { self::$installed = array(); } } - - if (self::$installed !== array()) { - $installed[] = self::$installed; - } + $installed[] = self::$installed; return $installed; } diff --git a/vendor/composer/autoload_classmap.php b/vendor/composer/autoload_classmap.php index 9238e09c..25c1bbc3 100644 --- a/vendor/composer/autoload_classmap.php +++ b/vendor/composer/autoload_classmap.php @@ -2,7 +2,7 @@ // autoload_classmap.php @generated by Composer -$vendorDir = dirname(__DIR__); +$vendorDir = dirname(dirname(__FILE__)); $baseDir = dirname($vendorDir); return array( diff --git a/vendor/composer/autoload_files.php b/vendor/composer/autoload_files.php index c6139ef5..70cedcf6 100644 --- a/vendor/composer/autoload_files.php +++ b/vendor/composer/autoload_files.php @@ -2,25 +2,26 @@ // autoload_files.php @generated by Composer -$vendorDir = dirname(__DIR__); +$vendorDir = dirname(dirname(__FILE__)); $baseDir = dirname($vendorDir); return array( + 'a4a119a56e50fbb293281d9a48007e0e' => $vendorDir . '/symfony/polyfill-php80/bootstrap.php', + '25072dd6e2470089de65ae7bf11d3109' => $vendorDir . '/symfony/polyfill-php72/bootstrap.php', + '0e6d7bf4a5811bfa5cf40c5ccd6fae6a' => $vendorDir . '/symfony/polyfill-mbstring/bootstrap.php', '7b11c4dc42b3b3023073cb14e519683c' => $vendorDir . '/ralouphie/getallheaders/src/getallheaders.php', 'a0edc8309cc5e1d60e3047b5df6b7052' => $vendorDir . '/guzzlehttp/psr7/src/functions_include.php', 'e69f7f6ee287b969198c3c9d6777bd38' => $vendorDir . '/symfony/polyfill-intl-normalizer/bootstrap.php', 'c964ee0ededf28c96ebd9db5099ef910' => $vendorDir . '/guzzlehttp/promises/src/functions_include.php', - '25072dd6e2470089de65ae7bf11d3109' => $vendorDir . '/symfony/polyfill-php72/bootstrap.php', 'f598d06aa772fa33d905e87be6398fb1' => $vendorDir . '/symfony/polyfill-intl-idn/bootstrap.php', '37a3dc5111fe8f707ab4c132ef1dbc62' => $vendorDir . '/guzzlehttp/guzzle/src/functions_include.php', + '667aeda72477189d0494fecd327c3641' => $vendorDir . '/symfony/var-dumper/Resources/functions/dump.php', 'd767e4fc2dc52fe66584ab8c6684783e' => $vendorDir . '/adbario/php-dot-notation/src/helpers.php', - 'a4a119a56e50fbb293281d9a48007e0e' => $vendorDir . '/symfony/polyfill-php80/bootstrap.php', - '0e6d7bf4a5811bfa5cf40c5ccd6fae6a' => $vendorDir . '/symfony/polyfill-mbstring/bootstrap.php', '6e3fae29631ef280660b3cdad06f25a8' => $vendorDir . '/symfony/deprecation-contracts/function.php', '9b552a3cc426e3287cc811caefa3cf53' => $vendorDir . '/topthink/think-helper/src/helper.php', '320cde22f66dd4f5d3fd621d3e88b98f' => $vendorDir . '/symfony/polyfill-ctype/bootstrap.php', - '8825ede83f2f289127722d4e842cf7e8' => $vendorDir . '/symfony/polyfill-intl-grapheme/bootstrap.php', '35fab96057f1bf5e7aba31a8a6d5fdde' => $vendorDir . '/topthink/think-orm/stubs/load_stubs.php', + '8825ede83f2f289127722d4e842cf7e8' => $vendorDir . '/symfony/polyfill-intl-grapheme/bootstrap.php', 'b6b991a57620e2fb6b2f66f03fe9ddc2' => $vendorDir . '/symfony/string/Resources/functions.php', '0d59ee240a4cd96ddbb4ff164fccea4d' => $vendorDir . '/symfony/polyfill-php73/bootstrap.php', 'a1105708a18b76903365ca1c4aa61b02' => $vendorDir . '/symfony/translation/Resources/functions.php', @@ -31,7 +32,6 @@ return array( 'f67964341ef83e59f1cc6a3916599312' => $vendorDir . '/qcloud/cos-sdk-v5/src/Qcloud/Cos/Common.php', '841780ea2e1d6545ea3a253239d59c05' => $vendorDir . '/qiniu/php-sdk/src/Qiniu/functions.php', '5dd19d8a547b7318af0c3a93c8bd6565' => $vendorDir . '/qiniu/php-sdk/src/Qiniu/Http/Middleware/Middleware.php', - '667aeda72477189d0494fecd327c3641' => $vendorDir . '/symfony/var-dumper/Resources/functions/dump.php', 'cc56288302d9df745d97c934d6a6e5f0' => $vendorDir . '/topthink/think-queue/src/common.php', 'af46dcea2921209ac30627b964175f13' => $vendorDir . '/topthink/think-swoole/src/helpers.php', 'ec838a45422f15144062a735bf321ce1' => $vendorDir . '/ucloud/ufile-php-sdk/src/functions.php', diff --git a/vendor/composer/autoload_namespaces.php b/vendor/composer/autoload_namespaces.php index 1ba279b8..bf16148e 100644 --- a/vendor/composer/autoload_namespaces.php +++ b/vendor/composer/autoload_namespaces.php @@ -2,7 +2,7 @@ // autoload_namespaces.php @generated by Composer -$vendorDir = dirname(__DIR__); +$vendorDir = dirname(dirname(__FILE__)); $baseDir = dirname($vendorDir); return array( diff --git a/vendor/composer/autoload_psr4.php b/vendor/composer/autoload_psr4.php index fabd4b46..780ebe78 100644 --- a/vendor/composer/autoload_psr4.php +++ b/vendor/composer/autoload_psr4.php @@ -2,7 +2,7 @@ // autoload_psr4.php @generated by Composer -$vendorDir = dirname(__DIR__); +$vendorDir = dirname(dirname(__FILE__)); $baseDir = dirname($vendorDir); return array( @@ -85,7 +85,12 @@ return array( 'BaconQrCode\\' => array($vendorDir . '/bacon/bacon-qr-code/src'), 'AlibabaCloud\\Tea\\XML\\' => array($vendorDir . '/alibabacloud/tea-xml/src'), 'AlibabaCloud\\Tea\\Utils\\' => array($vendorDir . '/alibabacloud/tea-utils/src'), + 'AlibabaCloud\\Tea\\OSSUtils\\' => array($vendorDir . '/alibabacloud/tea-oss-utils/src'), + 'AlibabaCloud\\Tea\\FileForm\\' => array($vendorDir . '/alibabacloud/tea-fileform/src'), 'AlibabaCloud\\Tea\\' => array($vendorDir . '/alibabacloud/tea/src'), + 'AlibabaCloud\\SDK\\OpenPlatform\\V20191219\\' => array($vendorDir . '/alibabacloud/openplatform-20191219/src'), + 'AlibabaCloud\\SDK\\Ocr\\V20191230\\' => array($vendorDir . '/alibabacloud/ocr-20191230/src'), + 'AlibabaCloud\\SDK\\OSS\\' => array($vendorDir . '/alibabacloud/tea-oss-sdk/src'), 'AlibabaCloud\\SDK\\Dysmsapi\\V20170525\\' => array($vendorDir . '/alibabacloud/dysmsapi-20170525/src'), 'AlibabaCloud\\OpenApiUtil\\' => array($vendorDir . '/alibabacloud/openapi-util/src'), 'AlibabaCloud\\Endpoint\\' => array($vendorDir . '/alibabacloud/endpoint-util/src'), diff --git a/vendor/composer/autoload_real.php b/vendor/composer/autoload_real.php index 5afd5549..0a8776e1 100644 --- a/vendor/composer/autoload_real.php +++ b/vendor/composer/autoload_real.php @@ -25,26 +25,51 @@ class ComposerAutoloaderInitb1229d2685c190533aa1234015613f09 require __DIR__ . '/platform_check.php'; spl_autoload_register(array('ComposerAutoloaderInitb1229d2685c190533aa1234015613f09', 'loadClassLoader'), true, true); - self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__)); + self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(\dirname(__FILE__))); spl_autoload_unregister(array('ComposerAutoloaderInitb1229d2685c190533aa1234015613f09', 'loadClassLoader')); - require __DIR__ . '/autoload_static.php'; - call_user_func(\Composer\Autoload\ComposerStaticInitb1229d2685c190533aa1234015613f09::getInitializer($loader)); + $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded()); + if ($useStaticLoader) { + require __DIR__ . '/autoload_static.php'; + + call_user_func(\Composer\Autoload\ComposerStaticInitb1229d2685c190533aa1234015613f09::getInitializer($loader)); + } else { + $map = require __DIR__ . '/autoload_namespaces.php'; + foreach ($map as $namespace => $path) { + $loader->set($namespace, $path); + } + + $map = require __DIR__ . '/autoload_psr4.php'; + foreach ($map as $namespace => $path) { + $loader->setPsr4($namespace, $path); + } + + $classMap = require __DIR__ . '/autoload_classmap.php'; + if ($classMap) { + $loader->addClassMap($classMap); + } + } $loader->register(true); - $filesToLoad = \Composer\Autoload\ComposerStaticInitb1229d2685c190533aa1234015613f09::$files; - $requireFile = \Closure::bind(static function ($fileIdentifier, $file) { - if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) { - $GLOBALS['__composer_autoload_files'][$fileIdentifier] = true; - - require $file; - } - }, null, null); - foreach ($filesToLoad as $fileIdentifier => $file) { - $requireFile($fileIdentifier, $file); + if ($useStaticLoader) { + $includeFiles = Composer\Autoload\ComposerStaticInitb1229d2685c190533aa1234015613f09::$files; + } else { + $includeFiles = require __DIR__ . '/autoload_files.php'; + } + foreach ($includeFiles as $fileIdentifier => $file) { + composerRequireb1229d2685c190533aa1234015613f09($fileIdentifier, $file); } return $loader; } } + +function composerRequireb1229d2685c190533aa1234015613f09($fileIdentifier, $file) +{ + if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) { + require $file; + + $GLOBALS['__composer_autoload_files'][$fileIdentifier] = true; + } +} diff --git a/vendor/composer/autoload_static.php b/vendor/composer/autoload_static.php index 4a813b28..1ca6df07 100644 --- a/vendor/composer/autoload_static.php +++ b/vendor/composer/autoload_static.php @@ -7,21 +7,22 @@ namespace Composer\Autoload; class ComposerStaticInitb1229d2685c190533aa1234015613f09 { public static $files = array ( + 'a4a119a56e50fbb293281d9a48007e0e' => __DIR__ . '/..' . '/symfony/polyfill-php80/bootstrap.php', + '25072dd6e2470089de65ae7bf11d3109' => __DIR__ . '/..' . '/symfony/polyfill-php72/bootstrap.php', + '0e6d7bf4a5811bfa5cf40c5ccd6fae6a' => __DIR__ . '/..' . '/symfony/polyfill-mbstring/bootstrap.php', '7b11c4dc42b3b3023073cb14e519683c' => __DIR__ . '/..' . '/ralouphie/getallheaders/src/getallheaders.php', 'a0edc8309cc5e1d60e3047b5df6b7052' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/functions_include.php', 'e69f7f6ee287b969198c3c9d6777bd38' => __DIR__ . '/..' . '/symfony/polyfill-intl-normalizer/bootstrap.php', 'c964ee0ededf28c96ebd9db5099ef910' => __DIR__ . '/..' . '/guzzlehttp/promises/src/functions_include.php', - '25072dd6e2470089de65ae7bf11d3109' => __DIR__ . '/..' . '/symfony/polyfill-php72/bootstrap.php', 'f598d06aa772fa33d905e87be6398fb1' => __DIR__ . '/..' . '/symfony/polyfill-intl-idn/bootstrap.php', '37a3dc5111fe8f707ab4c132ef1dbc62' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/functions_include.php', + '667aeda72477189d0494fecd327c3641' => __DIR__ . '/..' . '/symfony/var-dumper/Resources/functions/dump.php', 'd767e4fc2dc52fe66584ab8c6684783e' => __DIR__ . '/..' . '/adbario/php-dot-notation/src/helpers.php', - 'a4a119a56e50fbb293281d9a48007e0e' => __DIR__ . '/..' . '/symfony/polyfill-php80/bootstrap.php', - '0e6d7bf4a5811bfa5cf40c5ccd6fae6a' => __DIR__ . '/..' . '/symfony/polyfill-mbstring/bootstrap.php', '6e3fae29631ef280660b3cdad06f25a8' => __DIR__ . '/..' . '/symfony/deprecation-contracts/function.php', '9b552a3cc426e3287cc811caefa3cf53' => __DIR__ . '/..' . '/topthink/think-helper/src/helper.php', '320cde22f66dd4f5d3fd621d3e88b98f' => __DIR__ . '/..' . '/symfony/polyfill-ctype/bootstrap.php', - '8825ede83f2f289127722d4e842cf7e8' => __DIR__ . '/..' . '/symfony/polyfill-intl-grapheme/bootstrap.php', '35fab96057f1bf5e7aba31a8a6d5fdde' => __DIR__ . '/..' . '/topthink/think-orm/stubs/load_stubs.php', + '8825ede83f2f289127722d4e842cf7e8' => __DIR__ . '/..' . '/symfony/polyfill-intl-grapheme/bootstrap.php', 'b6b991a57620e2fb6b2f66f03fe9ddc2' => __DIR__ . '/..' . '/symfony/string/Resources/functions.php', '0d59ee240a4cd96ddbb4ff164fccea4d' => __DIR__ . '/..' . '/symfony/polyfill-php73/bootstrap.php', 'a1105708a18b76903365ca1c4aa61b02' => __DIR__ . '/..' . '/symfony/translation/Resources/functions.php', @@ -32,7 +33,6 @@ class ComposerStaticInitb1229d2685c190533aa1234015613f09 'f67964341ef83e59f1cc6a3916599312' => __DIR__ . '/..' . '/qcloud/cos-sdk-v5/src/Qcloud/Cos/Common.php', '841780ea2e1d6545ea3a253239d59c05' => __DIR__ . '/..' . '/qiniu/php-sdk/src/Qiniu/functions.php', '5dd19d8a547b7318af0c3a93c8bd6565' => __DIR__ . '/..' . '/qiniu/php-sdk/src/Qiniu/Http/Middleware/Middleware.php', - '667aeda72477189d0494fecd327c3641' => __DIR__ . '/..' . '/symfony/var-dumper/Resources/functions/dump.php', 'cc56288302d9df745d97c934d6a6e5f0' => __DIR__ . '/..' . '/topthink/think-queue/src/common.php', 'af46dcea2921209ac30627b964175f13' => __DIR__ . '/..' . '/topthink/think-swoole/src/helpers.php', 'ec838a45422f15144062a735bf321ce1' => __DIR__ . '/..' . '/ucloud/ufile-php-sdk/src/functions.php', @@ -177,7 +177,12 @@ class ComposerStaticInitb1229d2685c190533aa1234015613f09 array ( 'AlibabaCloud\\Tea\\XML\\' => 21, 'AlibabaCloud\\Tea\\Utils\\' => 23, + 'AlibabaCloud\\Tea\\OSSUtils\\' => 26, + 'AlibabaCloud\\Tea\\FileForm\\' => 26, 'AlibabaCloud\\Tea\\' => 17, + 'AlibabaCloud\\SDK\\OpenPlatform\\V20191219\\' => 40, + 'AlibabaCloud\\SDK\\Ocr\\V20191230\\' => 31, + 'AlibabaCloud\\SDK\\OSS\\' => 21, 'AlibabaCloud\\SDK\\Dysmsapi\\V20170525\\' => 36, 'AlibabaCloud\\OpenApiUtil\\' => 25, 'AlibabaCloud\\Endpoint\\' => 22, @@ -508,10 +513,30 @@ class ComposerStaticInitb1229d2685c190533aa1234015613f09 array ( 0 => __DIR__ . '/..' . '/alibabacloud/tea-utils/src', ), + 'AlibabaCloud\\Tea\\OSSUtils\\' => + array ( + 0 => __DIR__ . '/..' . '/alibabacloud/tea-oss-utils/src', + ), + 'AlibabaCloud\\Tea\\FileForm\\' => + array ( + 0 => __DIR__ . '/..' . '/alibabacloud/tea-fileform/src', + ), 'AlibabaCloud\\Tea\\' => array ( 0 => __DIR__ . '/..' . '/alibabacloud/tea/src', ), + 'AlibabaCloud\\SDK\\OpenPlatform\\V20191219\\' => + array ( + 0 => __DIR__ . '/..' . '/alibabacloud/openplatform-20191219/src', + ), + 'AlibabaCloud\\SDK\\Ocr\\V20191230\\' => + array ( + 0 => __DIR__ . '/..' . '/alibabacloud/ocr-20191230/src', + ), + 'AlibabaCloud\\SDK\\OSS\\' => + array ( + 0 => __DIR__ . '/..' . '/alibabacloud/tea-oss-sdk/src', + ), 'AlibabaCloud\\SDK\\Dysmsapi\\V20170525\\' => array ( 0 => __DIR__ . '/..' . '/alibabacloud/dysmsapi-20170525/src', diff --git a/vendor/composer/installed.json b/vendor/composer/installed.json index 0b9ced50..9c75dcc3 100644 --- a/vendor/composer/installed.json +++ b/vendor/composer/installed.json @@ -264,6 +264,62 @@ "description": "Alibaba Cloud Gateway SPI Client", "install-path": "../alibabacloud/gateway-spi" }, + { + "name": "alibabacloud/ocr-20191230", + "version": "3.0.0", + "version_normalized": "3.0.0.0", + "source": { + "type": "git", + "url": "https://github.com/alibabacloud-sdk-php/Ocr-20191230.git", + "reference": "8d7ad521074b2fd6c392cf0f2b114ce43f0612b8" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/alibabacloud-sdk-php/Ocr-20191230/zipball/8d7ad521074b2fd6c392cf0f2b114ce43f0612b8", + "reference": "8d7ad521074b2fd6c392cf0f2b114ce43f0612b8", + "shasum": "", + "mirrors": [ + { + "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%", + "preferred": true + } + ] + }, + "require": { + "alibabacloud/darabonba-openapi": "^0.2.8", + "alibabacloud/endpoint-util": "^0.1.0", + "alibabacloud/openapi-util": "^0.1.10|^0.2.1", + "alibabacloud/openplatform-20191219": "^2.0.1", + "alibabacloud/tea-fileform": "^0.3.0", + "alibabacloud/tea-oss-sdk": "^0.3.0", + "alibabacloud/tea-oss-utils": "^0.3.1", + "alibabacloud/tea-utils": "^0.2.19", + "php": ">5.5" + }, + "time": "2023-07-04T02:18:29+00:00", + "type": "library", + "installation-source": "dist", + "autoload": { + "psr-4": { + "AlibabaCloud\\SDK\\Ocr\\V20191230\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "Apache-2.0" + ], + "authors": [ + { + "name": "Alibaba Cloud SDK", + "email": "sdk-team@alibabacloud.com" + } + ], + "description": "Alibaba Cloud OCR (20191230) SDK Library for PHP", + "support": { + "source": "https://github.com/alibabacloud-sdk-php/Ocr-20191230/tree/3.0.0" + }, + "install-path": "../alibabacloud/ocr-20191230" + }, { "name": "alibabacloud/openapi-util", "version": "0.1.13", @@ -303,6 +359,58 @@ "description": "Alibaba Cloud OpenApi Util", "install-path": "../alibabacloud/openapi-util" }, + { + "name": "alibabacloud/openplatform-20191219", + "version": "2.0.1", + "version_normalized": "2.0.1.0", + "source": { + "type": "git", + "url": "https://github.com/alibabacloud-sdk-php/OpenPlatform-20191219.git", + "reference": "02ffa72369f8649214f1cfa336b52a544735f517" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/alibabacloud-sdk-php/OpenPlatform-20191219/zipball/02ffa72369f8649214f1cfa336b52a544735f517", + "reference": "02ffa72369f8649214f1cfa336b52a544735f517", + "shasum": "", + "mirrors": [ + { + "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%", + "preferred": true + } + ] + }, + "require": { + "alibabacloud/darabonba-openapi": "^0.2.8", + "alibabacloud/endpoint-util": "^0.1.0", + "alibabacloud/openapi-util": "^0.1.10|^0.2.1", + "alibabacloud/tea-utils": "^0.2.17", + "php": ">5.5" + }, + "time": "2023-02-07T06:39:39+00:00", + "type": "library", + "installation-source": "dist", + "autoload": { + "psr-4": { + "AlibabaCloud\\SDK\\OpenPlatform\\V20191219\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "Apache-2.0" + ], + "authors": [ + { + "name": "Alibaba Cloud SDK", + "email": "sdk-team@alibabacloud.com" + } + ], + "description": "Alibaba Cloud OpenPlatform (20191219) SDK Library for PHP", + "support": { + "source": "https://github.com/alibabacloud-sdk-php/OpenPlatform-20191219/tree/2.0.1" + }, + "install-path": "../alibabacloud/openplatform-20191219" + }, { "name": "alibabacloud/tea", "version": "3.2.1", @@ -361,6 +469,165 @@ ], "install-path": "../alibabacloud/tea" }, + { + "name": "alibabacloud/tea-fileform", + "version": "0.3.4", + "version_normalized": "0.3.4.0", + "source": { + "type": "git", + "url": "https://github.com/alibabacloud-sdk-php/tea-fileform.git", + "reference": "4bf0c75a045c8115aa8cb1a394bd08d8bb833181" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/alibabacloud-sdk-php/tea-fileform/zipball/4bf0c75a045c8115aa8cb1a394bd08d8bb833181", + "reference": "4bf0c75a045c8115aa8cb1a394bd08d8bb833181", + "shasum": "", + "mirrors": [ + { + "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%", + "preferred": true + } + ] + }, + "require": { + "alibabacloud/tea": "^3.0", + "php": ">5.5" + }, + "require-dev": { + "phpunit/phpunit": "^4.8.35|^5.4.3" + }, + "time": "2020-12-01T07:24:35+00:00", + "type": "library", + "installation-source": "dist", + "autoload": { + "psr-4": { + "AlibabaCloud\\Tea\\FileForm\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "Apache-2.0" + ], + "authors": [ + { + "name": "Alibaba Cloud SDK", + "email": "sdk-team@alibabacloud.com" + } + ], + "description": "Alibaba Cloud Tea File Library for PHP", + "support": { + "issues": "https://github.com/alibabacloud-sdk-php/tea-fileform/issues", + "source": "https://github.com/alibabacloud-sdk-php/tea-fileform/tree/0.3.4" + }, + "install-path": "../alibabacloud/tea-fileform" + }, + { + "name": "alibabacloud/tea-oss-sdk", + "version": "0.3.6", + "version_normalized": "0.3.6.0", + "source": { + "type": "git", + "url": "https://github.com/alibabacloud-sdk-php/tea-oss-sdk.git", + "reference": "e28e70e2842b2e4da031a774209231bf08d7965c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/alibabacloud-sdk-php/tea-oss-sdk/zipball/e28e70e2842b2e4da031a774209231bf08d7965c", + "reference": "e28e70e2842b2e4da031a774209231bf08d7965c", + "shasum": "", + "mirrors": [ + { + "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%", + "preferred": true + } + ] + }, + "require": { + "alibabacloud/credentials": "^1.1", + "alibabacloud/tea-fileform": "^0.3.0", + "alibabacloud/tea-oss-utils": "^0.3.0", + "alibabacloud/tea-utils": "^0.2.0", + "alibabacloud/tea-xml": "^0.2", + "php": ">5.5" + }, + "time": "2022-10-13T07:23:51+00:00", + "type": "library", + "installation-source": "dist", + "autoload": { + "psr-4": { + "AlibabaCloud\\SDK\\OSS\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "Apache-2.0" + ], + "authors": [ + { + "name": "Alibaba Cloud SDK", + "email": "sdk-team@alibabacloud.com" + } + ], + "description": "Aliyun Tea OSS SDK Library for PHP", + "support": { + "source": "https://github.com/alibabacloud-sdk-php/tea-oss-sdk/tree/0.3.6" + }, + "install-path": "../alibabacloud/tea-oss-sdk" + }, + { + "name": "alibabacloud/tea-oss-utils", + "version": "0.3.1", + "version_normalized": "0.3.1.0", + "source": { + "type": "git", + "url": "https://github.com/alibabacloud-sdk-php/tea-oss-utils.git", + "reference": "19f58fc509347f075664e377742d4f9e18465372" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/alibabacloud-sdk-php/tea-oss-utils/zipball/19f58fc509347f075664e377742d4f9e18465372", + "reference": "19f58fc509347f075664e377742d4f9e18465372", + "shasum": "", + "mirrors": [ + { + "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%", + "preferred": true + } + ] + }, + "require": { + "alibabacloud/tea": "^3.0", + "guzzlehttp/psr7": "^1.0", + "php": ">5.5" + }, + "require-dev": { + "phpunit/phpunit": "^4.8.35|^5.4.3|^9.4" + }, + "time": "2023-01-08T13:26:58+00:00", + "type": "library", + "installation-source": "dist", + "autoload": { + "psr-4": { + "AlibabaCloud\\Tea\\OSSUtils\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "Apache-2.0" + ], + "authors": [ + { + "name": "Alibaba Cloud SDK", + "email": "sdk-team@alibabacloud.com" + } + ], + "description": "Alibaba Cloud Tea OSS Utils Library for PHP", + "support": { + "source": "https://github.com/alibabacloud-sdk-php/tea-oss-utils/tree/0.3.1" + }, + "install-path": "../alibabacloud/tea-oss-utils" + }, { "name": "alibabacloud/tea-utils", "version": "0.2.19", diff --git a/vendor/composer/installed.php b/vendor/composer/installed.php index dcb194b7..c93cd83b 100644 --- a/vendor/composer/installed.php +++ b/vendor/composer/installed.php @@ -1,211 +1,256 @@ array( - 'name' => 'topthink/think', 'pretty_version' => 'dev-master', 'version' => 'dev-master', - 'reference' => '0224f6113a669845fb3455cadb381a6931e9c508', 'type' => 'project', 'install_path' => __DIR__ . '/../../', 'aliases' => array(), + 'reference' => '641a1cf576a0931341e979fcb021728a5f208868', + 'name' => 'topthink/think', 'dev' => true, ), 'versions' => array( 'adbario/php-dot-notation' => array( 'pretty_version' => '2.5.0', 'version' => '2.5.0.0', - 'reference' => '081e2cca50c84bfeeea2e3ef9b2c8d206d80ccae', 'type' => 'library', 'install_path' => __DIR__ . '/../adbario/php-dot-notation', 'aliases' => array(), + 'reference' => '081e2cca50c84bfeeea2e3ef9b2c8d206d80ccae', 'dev_requirement' => false, ), 'alibabacloud/credentials' => array( 'pretty_version' => '1.1.5', 'version' => '1.1.5.0', - 'reference' => '1d8383ceef695974a88a3859c42e235fd2e3981a', 'type' => 'library', 'install_path' => __DIR__ . '/../alibabacloud/credentials', 'aliases' => array(), + 'reference' => '1d8383ceef695974a88a3859c42e235fd2e3981a', 'dev_requirement' => false, ), 'alibabacloud/darabonba-openapi' => array( 'pretty_version' => '0.2.9', 'version' => '0.2.9.0', - 'reference' => '4cdfc36615f345786d668dfbaf68d9a301b6dbe2', 'type' => 'library', 'install_path' => __DIR__ . '/../alibabacloud/darabonba-openapi', 'aliases' => array(), + 'reference' => '4cdfc36615f345786d668dfbaf68d9a301b6dbe2', 'dev_requirement' => false, ), 'alibabacloud/dysmsapi-20170525' => array( 'pretty_version' => '2.0.9', 'version' => '2.0.9.0', - 'reference' => 'f3098cdd4196aa42413e60fececcea08a3374ff1', 'type' => 'library', 'install_path' => __DIR__ . '/../alibabacloud/dysmsapi-20170525', 'aliases' => array(), + 'reference' => 'f3098cdd4196aa42413e60fececcea08a3374ff1', 'dev_requirement' => false, ), 'alibabacloud/endpoint-util' => array( 'pretty_version' => '0.1.1', 'version' => '0.1.1.0', - 'reference' => 'f3fe88a25d8df4faa3b0ae14ff202a9cc094e6c5', 'type' => 'library', 'install_path' => __DIR__ . '/../alibabacloud/endpoint-util', 'aliases' => array(), + 'reference' => 'f3fe88a25d8df4faa3b0ae14ff202a9cc094e6c5', 'dev_requirement' => false, ), 'alibabacloud/gateway-spi' => array( 'pretty_version' => '1.0.0', 'version' => '1.0.0.0', - 'reference' => '7440f77750c329d8ab252db1d1d967314ccd1fcb', 'type' => 'library', 'install_path' => __DIR__ . '/../alibabacloud/gateway-spi', 'aliases' => array(), + 'reference' => '7440f77750c329d8ab252db1d1d967314ccd1fcb', + 'dev_requirement' => false, + ), + 'alibabacloud/ocr-20191230' => array( + 'pretty_version' => '3.0.0', + 'version' => '3.0.0.0', + 'type' => 'library', + 'install_path' => __DIR__ . '/../alibabacloud/ocr-20191230', + 'aliases' => array(), + 'reference' => '8d7ad521074b2fd6c392cf0f2b114ce43f0612b8', 'dev_requirement' => false, ), 'alibabacloud/openapi-util' => array( 'pretty_version' => '0.1.13', 'version' => '0.1.13.0', - 'reference' => '870e59984f05e104aa303c85b8214e339ba0a0ac', 'type' => 'library', 'install_path' => __DIR__ . '/../alibabacloud/openapi-util', 'aliases' => array(), + 'reference' => '870e59984f05e104aa303c85b8214e339ba0a0ac', + 'dev_requirement' => false, + ), + 'alibabacloud/openplatform-20191219' => array( + 'pretty_version' => '2.0.1', + 'version' => '2.0.1.0', + 'type' => 'library', + 'install_path' => __DIR__ . '/../alibabacloud/openplatform-20191219', + 'aliases' => array(), + 'reference' => '02ffa72369f8649214f1cfa336b52a544735f517', 'dev_requirement' => false, ), 'alibabacloud/tea' => array( 'pretty_version' => '3.2.1', 'version' => '3.2.1.0', - 'reference' => '1619cb96c158384f72b873e1f85de8b299c9c367', 'type' => 'library', 'install_path' => __DIR__ . '/../alibabacloud/tea', 'aliases' => array(), + 'reference' => '1619cb96c158384f72b873e1f85de8b299c9c367', + 'dev_requirement' => false, + ), + 'alibabacloud/tea-fileform' => array( + 'pretty_version' => '0.3.4', + 'version' => '0.3.4.0', + 'type' => 'library', + 'install_path' => __DIR__ . '/../alibabacloud/tea-fileform', + 'aliases' => array(), + 'reference' => '4bf0c75a045c8115aa8cb1a394bd08d8bb833181', + 'dev_requirement' => false, + ), + 'alibabacloud/tea-oss-sdk' => array( + 'pretty_version' => '0.3.6', + 'version' => '0.3.6.0', + 'type' => 'library', + 'install_path' => __DIR__ . '/../alibabacloud/tea-oss-sdk', + 'aliases' => array(), + 'reference' => 'e28e70e2842b2e4da031a774209231bf08d7965c', + 'dev_requirement' => false, + ), + 'alibabacloud/tea-oss-utils' => array( + 'pretty_version' => '0.3.1', + 'version' => '0.3.1.0', + 'type' => 'library', + 'install_path' => __DIR__ . '/../alibabacloud/tea-oss-utils', + 'aliases' => array(), + 'reference' => '19f58fc509347f075664e377742d4f9e18465372', 'dev_requirement' => false, ), 'alibabacloud/tea-utils' => array( 'pretty_version' => '0.2.19', 'version' => '0.2.19.0', - 'reference' => '8dfc1a93e9415818e93a621b644abbb84981aea4', 'type' => 'library', 'install_path' => __DIR__ . '/../alibabacloud/tea-utils', 'aliases' => array(), + 'reference' => '8dfc1a93e9415818e93a621b644abbb84981aea4', 'dev_requirement' => false, ), 'alibabacloud/tea-xml' => array( 'pretty_version' => '0.2.4', 'version' => '0.2.4.0', - 'reference' => '3e0c000bf536224eebbac913c371bef174c0a16a', 'type' => 'library', 'install_path' => __DIR__ . '/../alibabacloud/tea-xml', 'aliases' => array(), + 'reference' => '3e0c000bf536224eebbac913c371bef174c0a16a', 'dev_requirement' => false, ), 'aliyuncs/oss-sdk-php' => array( 'pretty_version' => 'v2.6.0', 'version' => '2.6.0.0', - 'reference' => '572d0f8e099e8630ae7139ed3fdedb926c7a760f', 'type' => 'library', 'install_path' => __DIR__ . '/../aliyuncs/oss-sdk-php', 'aliases' => array(), + 'reference' => '572d0f8e099e8630ae7139ed3fdedb926c7a760f', 'dev_requirement' => false, ), 'bacon/bacon-qr-code' => array( 'pretty_version' => '2.0.8', 'version' => '2.0.8.0', - 'reference' => '8674e51bb65af933a5ffaf1c308a660387c35c22', 'type' => 'library', 'install_path' => __DIR__ . '/../bacon/bacon-qr-code', 'aliases' => array(), + 'reference' => '8674e51bb65af933a5ffaf1c308a660387c35c22', 'dev_requirement' => false, ), 'dasprid/enum' => array( 'pretty_version' => '1.0.5', 'version' => '1.0.5.0', - 'reference' => '6faf451159fb8ba4126b925ed2d78acfce0dc016', 'type' => 'library', 'install_path' => __DIR__ . '/../dasprid/enum', 'aliases' => array(), + 'reference' => '6faf451159fb8ba4126b925ed2d78acfce0dc016', 'dev_requirement' => false, ), 'doctrine/annotations' => array( 'pretty_version' => 'v1.2.7', 'version' => '1.2.7.0', - 'reference' => 'f25c8aab83e0c3e976fd7d19875f198ccf2f7535', 'type' => 'library', 'install_path' => __DIR__ . '/../doctrine/annotations', 'aliases' => array(), + 'reference' => 'f25c8aab83e0c3e976fd7d19875f198ccf2f7535', 'dev_requirement' => false, ), 'doctrine/cache' => array( 'pretty_version' => 'v1.4.4', 'version' => '1.4.4.0', - 'reference' => '6433826dd02c9e5be8a127320dc13e7e6625d020', 'type' => 'library', 'install_path' => __DIR__ . '/../doctrine/cache', 'aliases' => array(), + 'reference' => '6433826dd02c9e5be8a127320dc13e7e6625d020', 'dev_requirement' => false, ), 'doctrine/lexer' => array( 'pretty_version' => '1.2.3', 'version' => '1.2.3.0', - 'reference' => 'c268e882d4dbdd85e36e4ad69e02dc284f89d229', 'type' => 'library', 'install_path' => __DIR__ . '/../doctrine/lexer', 'aliases' => array(), + 'reference' => 'c268e882d4dbdd85e36e4ad69e02dc284f89d229', 'dev_requirement' => false, ), 'endroid/qr-code' => array( 'pretty_version' => '3.9.7', 'version' => '3.9.7.0', - 'reference' => '94563d7b3105288e6ac53a67ae720e3669fac1f6', 'type' => 'library', 'install_path' => __DIR__ . '/../endroid/qr-code', 'aliases' => array(), + 'reference' => '94563d7b3105288e6ac53a67ae720e3669fac1f6', 'dev_requirement' => false, ), 'ezyang/htmlpurifier' => array( 'pretty_version' => 'v4.16.0', 'version' => '4.16.0.0', - 'reference' => '523407fb06eb9e5f3d59889b3978d5bfe94299c8', 'type' => 'library', 'install_path' => __DIR__ . '/../ezyang/htmlpurifier', 'aliases' => array(), + 'reference' => '523407fb06eb9e5f3d59889b3978d5bfe94299c8', 'dev_requirement' => false, ), 'fastknife/ajcaptcha' => array( 'pretty_version' => 'v1.2.2', 'version' => '1.2.2.0', - 'reference' => '87c122b6cd950fd98702e929685e5e7c0c517ddc', 'type' => 'library', 'install_path' => __DIR__ . '/../fastknife/ajcaptcha', 'aliases' => array(), + 'reference' => '87c122b6cd950fd98702e929685e5e7c0c517ddc', 'dev_requirement' => false, ), 'firebase/php-jwt' => array( 'pretty_version' => 'v5.5.1', 'version' => '5.5.1.0', - 'reference' => '83b609028194aa042ea33b5af2d41a7427de80e6', 'type' => 'library', 'install_path' => __DIR__ . '/../firebase/php-jwt', 'aliases' => array(), + 'reference' => '83b609028194aa042ea33b5af2d41a7427de80e6', 'dev_requirement' => false, ), 'graham-campbell/result-type' => array( 'pretty_version' => 'v1.1.1', 'version' => '1.1.1.0', - 'reference' => '672eff8cf1d6fe1ef09ca0f89c4b287d6a3eb831', 'type' => 'library', 'install_path' => __DIR__ . '/../graham-campbell/result-type', 'aliases' => array(), + 'reference' => '672eff8cf1d6fe1ef09ca0f89c4b287d6a3eb831', 'dev_requirement' => false, ), 'gregwar/captcha' => array( 'pretty_version' => 'v1.2.1', 'version' => '1.2.1.0', - 'reference' => '229d3cdfe33d6f1349e0aec94a26e9205a6db08e', 'type' => 'library', 'install_path' => __DIR__ . '/../gregwar/captcha', 'aliases' => array(), + 'reference' => '229d3cdfe33d6f1349e0aec94a26e9205a6db08e', 'dev_requirement' => false, ), 'guzzle/batch' => array( @@ -229,10 +274,10 @@ 'guzzle/guzzle' => array( 'pretty_version' => 'v3.9.3', 'version' => '3.9.3.0', - 'reference' => '0645b70d953bc1c067bbc8d5bc53194706b628d9', 'type' => 'library', 'install_path' => __DIR__ . '/../guzzle/guzzle', 'aliases' => array(), + 'reference' => '0645b70d953bc1c067bbc8d5bc53194706b628d9', 'dev_requirement' => false, ), 'guzzle/http' => array( @@ -352,298 +397,298 @@ 'guzzlehttp/command' => array( 'pretty_version' => '1.0.0', 'version' => '1.0.0.0', - 'reference' => '2aaa2521a8f8269d6f5dfc13fe2af12c76921034', 'type' => 'library', 'install_path' => __DIR__ . '/../guzzlehttp/command', 'aliases' => array(), + 'reference' => '2aaa2521a8f8269d6f5dfc13fe2af12c76921034', 'dev_requirement' => false, ), 'guzzlehttp/guzzle' => array( 'pretty_version' => '6.5.8', 'version' => '6.5.8.0', - 'reference' => 'a52f0440530b54fa079ce76e8c5d196a42cad981', 'type' => 'library', 'install_path' => __DIR__ . '/../guzzlehttp/guzzle', 'aliases' => array(), + 'reference' => 'a52f0440530b54fa079ce76e8c5d196a42cad981', 'dev_requirement' => false, ), 'guzzlehttp/guzzle-services' => array( 'pretty_version' => '1.1.3', 'version' => '1.1.3.0', - 'reference' => '9e3abf20161cbf662d616cbb995f2811771759f7', 'type' => 'library', 'install_path' => __DIR__ . '/../guzzlehttp/guzzle-services', 'aliases' => array(), + 'reference' => '9e3abf20161cbf662d616cbb995f2811771759f7', 'dev_requirement' => false, ), 'guzzlehttp/promises' => array( 'pretty_version' => '1.5.3', 'version' => '1.5.3.0', - 'reference' => '67ab6e18aaa14d753cc148911d273f6e6cb6721e', 'type' => 'library', 'install_path' => __DIR__ . '/../guzzlehttp/promises', 'aliases' => array(), + 'reference' => '67ab6e18aaa14d753cc148911d273f6e6cb6721e', 'dev_requirement' => false, ), 'guzzlehttp/psr7' => array( 'pretty_version' => '1.9.1', 'version' => '1.9.1.0', - 'reference' => 'e4490cabc77465aaee90b20cfc9a770f8c04be6b', 'type' => 'library', 'install_path' => __DIR__ . '/../guzzlehttp/psr7', 'aliases' => array(), + 'reference' => 'e4490cabc77465aaee90b20cfc9a770f8c04be6b', 'dev_requirement' => false, ), 'intervention/image' => array( 'pretty_version' => '2.7.2', 'version' => '2.7.2.0', - 'reference' => '04be355f8d6734c826045d02a1079ad658322dad', 'type' => 'library', 'install_path' => __DIR__ . '/../intervention/image', 'aliases' => array(), + 'reference' => '04be355f8d6734c826045d02a1079ad658322dad', 'dev_requirement' => false, ), 'jpush/jpush' => array( 'pretty_version' => 'v3.6.8', 'version' => '3.6.8.0', - 'reference' => 'ebb191e8854a35c3fb7a6626028b3a23132cbe2c', 'type' => 'library', 'install_path' => __DIR__ . '/../jpush/jpush', 'aliases' => array(), + 'reference' => 'ebb191e8854a35c3fb7a6626028b3a23132cbe2c', 'dev_requirement' => false, ), 'khanamiryan/qrcode-detector-decoder' => array( 'pretty_version' => '1.0.6', 'version' => '1.0.6.0', - 'reference' => '45326fb83a2a375065dbb3a134b5b8a5872da569', 'type' => 'library', 'install_path' => __DIR__ . '/../khanamiryan/qrcode-detector-decoder', 'aliases' => array(), + 'reference' => '45326fb83a2a375065dbb3a134b5b8a5872da569', 'dev_requirement' => false, ), 'league/flysystem' => array( 'pretty_version' => '1.1.10', 'version' => '1.1.10.0', - 'reference' => '3239285c825c152bcc315fe0e87d6b55f5972ed1', 'type' => 'library', 'install_path' => __DIR__ . '/../league/flysystem', 'aliases' => array(), + 'reference' => '3239285c825c152bcc315fe0e87d6b55f5972ed1', 'dev_requirement' => false, ), 'league/flysystem-cached-adapter' => array( 'pretty_version' => '1.1.0', 'version' => '1.1.0.0', - 'reference' => 'd1925efb2207ac4be3ad0c40b8277175f99ffaff', 'type' => 'library', 'install_path' => __DIR__ . '/../league/flysystem-cached-adapter', 'aliases' => array(), + 'reference' => 'd1925efb2207ac4be3ad0c40b8277175f99ffaff', 'dev_requirement' => false, ), 'league/mime-type-detection' => array( 'pretty_version' => '1.14.0', 'version' => '1.14.0.0', - 'reference' => 'b6a5854368533df0295c5761a0253656a2e52d9e', 'type' => 'library', 'install_path' => __DIR__ . '/../league/mime-type-detection', 'aliases' => array(), + 'reference' => 'b6a5854368533df0295c5761a0253656a2e52d9e', 'dev_requirement' => false, ), 'lizhichao/one-sm' => array( 'pretty_version' => '1.10', 'version' => '1.10.0.0', - 'reference' => '687a012a44a5bfd4d9143a0234e1060543be455a', 'type' => 'library', 'install_path' => __DIR__ . '/../lizhichao/one-sm', 'aliases' => array(), + 'reference' => '687a012a44a5bfd4d9143a0234e1060543be455a', 'dev_requirement' => false, ), 'lizhichao/word' => array( 'pretty_version' => 'v2.1', 'version' => '2.1.0.0', - 'reference' => 'f17172d45f505e7140da0bde2103defc13255326', 'type' => 'library', 'install_path' => __DIR__ . '/../lizhichao/word', 'aliases' => array(), + 'reference' => 'f17172d45f505e7140da0bde2103defc13255326', 'dev_requirement' => false, ), 'maennchen/zipstream-php' => array( 'pretty_version' => '2.2.6', 'version' => '2.2.6.0', - 'reference' => '30ad6f93cf3efe4192bc7a4c9cad11ff8f4f237f', 'type' => 'library', 'install_path' => __DIR__ . '/../maennchen/zipstream-php', 'aliases' => array(), + 'reference' => '30ad6f93cf3efe4192bc7a4c9cad11ff8f4f237f', 'dev_requirement' => false, ), 'markbaker/complex' => array( 'pretty_version' => '3.0.2', 'version' => '3.0.2.0', - 'reference' => '95c56caa1cf5c766ad6d65b6344b807c1e8405b9', 'type' => 'library', 'install_path' => __DIR__ . '/../markbaker/complex', 'aliases' => array(), + 'reference' => '95c56caa1cf5c766ad6d65b6344b807c1e8405b9', 'dev_requirement' => false, ), 'markbaker/matrix' => array( 'pretty_version' => '3.0.1', 'version' => '3.0.1.0', - 'reference' => '728434227fe21be27ff6d86621a1b13107a2562c', 'type' => 'library', 'install_path' => __DIR__ . '/../markbaker/matrix', 'aliases' => array(), + 'reference' => '728434227fe21be27ff6d86621a1b13107a2562c', 'dev_requirement' => false, ), 'monolog/monolog' => array( 'pretty_version' => '1.27.1', 'version' => '1.27.1.0', - 'reference' => '904713c5929655dc9b97288b69cfeedad610c9a1', 'type' => 'library', 'install_path' => __DIR__ . '/../monolog/monolog', 'aliases' => array(), + 'reference' => '904713c5929655dc9b97288b69cfeedad610c9a1', 'dev_requirement' => false, ), 'myclabs/php-enum' => array( 'pretty_version' => '1.8.4', 'version' => '1.8.4.0', - 'reference' => 'a867478eae49c9f59ece437ae7f9506bfaa27483', 'type' => 'library', 'install_path' => __DIR__ . '/../myclabs/php-enum', 'aliases' => array(), + 'reference' => 'a867478eae49c9f59ece437ae7f9506bfaa27483', 'dev_requirement' => false, ), 'nelexa/zip' => array( 'pretty_version' => '4.0.2', 'version' => '4.0.2.0', - 'reference' => '88a1b6549be813278ff2dd3b6b2ac188827634a7', 'type' => 'library', 'install_path' => __DIR__ . '/../nelexa/zip', 'aliases' => array(), + 'reference' => '88a1b6549be813278ff2dd3b6b2ac188827634a7', 'dev_requirement' => false, ), 'nesbot/carbon' => array( 'pretty_version' => '2.71.0', 'version' => '2.71.0.0', - 'reference' => '98276233188583f2ff845a0f992a235472d9466a', 'type' => 'library', 'install_path' => __DIR__ . '/../nesbot/carbon', 'aliases' => array(), + 'reference' => '98276233188583f2ff845a0f992a235472d9466a', 'dev_requirement' => false, ), 'nette/php-generator' => array( 'pretty_version' => 'v3.6.9', 'version' => '3.6.9.0', - 'reference' => 'd31782f7bd2ae84ad06f863391ec3fb77ca4d0a6', 'type' => 'library', 'install_path' => __DIR__ . '/../nette/php-generator', 'aliases' => array(), + 'reference' => 'd31782f7bd2ae84ad06f863391ec3fb77ca4d0a6', 'dev_requirement' => false, ), 'nette/utils' => array( 'pretty_version' => 'v3.2.10', 'version' => '3.2.10.0', - 'reference' => 'a4175c62652f2300c8017fb7e640f9ccb11648d2', 'type' => 'library', 'install_path' => __DIR__ . '/../nette/utils', 'aliases' => array(), + 'reference' => 'a4175c62652f2300c8017fb7e640f9ccb11648d2', 'dev_requirement' => false, ), 'obs/esdk-obs-php' => array( 'pretty_version' => '3.23.5', 'version' => '3.23.5.0', - 'reference' => 'caf8506144f11377b048c88f6c8aa1338e87bab9', 'type' => 'library', 'install_path' => __DIR__ . '/../obs/esdk-obs-php', 'aliases' => array(), + 'reference' => 'caf8506144f11377b048c88f6c8aa1338e87bab9', 'dev_requirement' => false, ), 'open-smf/connection-pool' => array( 'pretty_version' => 'v1.0.16', 'version' => '1.0.16.0', - 'reference' => 'f70e47dbf56f1869d3207e15825cf38810b865e0', 'type' => 'library', 'install_path' => __DIR__ . '/../open-smf/connection-pool', 'aliases' => array(), + 'reference' => 'f70e47dbf56f1869d3207e15825cf38810b865e0', 'dev_requirement' => false, ), 'overtrue/pinyin' => array( 'pretty_version' => '4.1.0', 'version' => '4.1.0.0', - 'reference' => '4d0fb4f27f0c79e81c9489e0c0ae4a4f8837eae7', 'type' => 'library', 'install_path' => __DIR__ . '/../overtrue/pinyin', 'aliases' => array(), + 'reference' => '4d0fb4f27f0c79e81c9489e0c0ae4a4f8837eae7', 'dev_requirement' => false, ), 'overtrue/socialite' => array( 'pretty_version' => '1.3.0', 'version' => '1.3.0.0', - 'reference' => 'fda55f0acef43a144799b1957a8f93d9f5deffce', 'type' => 'library', 'install_path' => __DIR__ . '/../overtrue/socialite', 'aliases' => array(), + 'reference' => 'fda55f0acef43a144799b1957a8f93d9f5deffce', 'dev_requirement' => false, ), 'overtrue/wechat' => array( 'pretty_version' => '3.3.33', 'version' => '3.3.33.0', - 'reference' => '78e5476df330754040d1c400d0bca640d5b77cb7', 'type' => 'library', 'install_path' => __DIR__ . '/../overtrue/wechat', 'aliases' => array(), + 'reference' => '78e5476df330754040d1c400d0bca640d5b77cb7', 'dev_requirement' => false, ), 'phpoffice/phpexcel' => array( 'pretty_version' => '1.8.2', 'version' => '1.8.2.0', - 'reference' => '1441011fb7ecdd8cc689878f54f8b58a6805f870', 'type' => 'library', 'install_path' => __DIR__ . '/../phpoffice/phpexcel', 'aliases' => array(), + 'reference' => '1441011fb7ecdd8cc689878f54f8b58a6805f870', 'dev_requirement' => false, ), 'phpoffice/phpspreadsheet' => array( 'pretty_version' => '1.29.0', 'version' => '1.29.0.0', - 'reference' => 'fde2ccf55eaef7e86021ff1acce26479160a0fa0', 'type' => 'library', 'install_path' => __DIR__ . '/../phpoffice/phpspreadsheet', 'aliases' => array(), + 'reference' => 'fde2ccf55eaef7e86021ff1acce26479160a0fa0', 'dev_requirement' => false, ), 'phpoption/phpoption' => array( 'pretty_version' => '1.9.1', 'version' => '1.9.1.0', - 'reference' => 'dd3a383e599f49777d8b628dadbb90cae435b87e', 'type' => 'library', 'install_path' => __DIR__ . '/../phpoption/phpoption', 'aliases' => array(), + 'reference' => 'dd3a383e599f49777d8b628dadbb90cae435b87e', 'dev_requirement' => false, ), 'pimple/pimple' => array( 'pretty_version' => 'v3.5.0', 'version' => '3.5.0.0', - 'reference' => 'a94b3a4db7fb774b3d78dad2315ddc07629e1bed', 'type' => 'library', 'install_path' => __DIR__ . '/../pimple/pimple', 'aliases' => array(), + 'reference' => 'a94b3a4db7fb774b3d78dad2315ddc07629e1bed', 'dev_requirement' => false, ), 'psr/cache' => array( 'pretty_version' => '1.0.1', 'version' => '1.0.1.0', - 'reference' => 'd11b50ad223250cf17b86e38383413f5a6764bf8', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/cache', 'aliases' => array(), + 'reference' => 'd11b50ad223250cf17b86e38383413f5a6764bf8', 'dev_requirement' => false, ), 'psr/clock' => array( 'pretty_version' => '1.0.0', 'version' => '1.0.0.0', - 'reference' => 'e41a24703d4560fd0acb709162f73b8adfc3aa0d', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/clock', 'aliases' => array(), + 'reference' => 'e41a24703d4560fd0acb709162f73b8adfc3aa0d', 'dev_requirement' => false, ), 'psr/clock-implementation' => array( @@ -655,37 +700,37 @@ 'psr/container' => array( 'pretty_version' => '1.1.2', 'version' => '1.1.2.0', - 'reference' => '513e0666f7216c7459170d56df27dfcefe1689ea', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/container', 'aliases' => array(), + 'reference' => '513e0666f7216c7459170d56df27dfcefe1689ea', 'dev_requirement' => false, ), 'psr/http-client' => array( 'pretty_version' => '1.0.3', 'version' => '1.0.3.0', - 'reference' => 'bb5906edc1c324c9a05aa0873d40117941e5fa90', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/http-client', 'aliases' => array(), + 'reference' => 'bb5906edc1c324c9a05aa0873d40117941e5fa90', 'dev_requirement' => false, ), 'psr/http-factory' => array( 'pretty_version' => '1.0.2', 'version' => '1.0.2.0', - 'reference' => 'e616d01114759c4c489f93b099585439f795fe35', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/http-factory', 'aliases' => array(), + 'reference' => 'e616d01114759c4c489f93b099585439f795fe35', 'dev_requirement' => false, ), 'psr/http-message' => array( 'pretty_version' => '1.1', 'version' => '1.1.0.0', - 'reference' => 'cb6ce4845ce34a8ad9e68117c10ee90a29919eba', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/http-message', 'aliases' => array(), + 'reference' => 'cb6ce4845ce34a8ad9e68117c10ee90a29919eba', 'dev_requirement' => false, ), 'psr/http-message-implementation' => array( @@ -697,10 +742,10 @@ 'psr/log' => array( 'pretty_version' => '1.1.4', 'version' => '1.1.4.0', - 'reference' => 'd49695b909c3b7628b6289db5479a1c204601f11', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/log', 'aliases' => array(), + 'reference' => 'd49695b909c3b7628b6289db5479a1c204601f11', 'dev_requirement' => false, ), 'psr/log-implementation' => array( @@ -712,244 +757,244 @@ 'psr/simple-cache' => array( 'pretty_version' => '1.0.1', 'version' => '1.0.1.0', - 'reference' => '408d5eafb83c57f6365a3ca330ff23aa4a5fa39b', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/simple-cache', 'aliases' => array(), + 'reference' => '408d5eafb83c57f6365a3ca330ff23aa4a5fa39b', 'dev_requirement' => false, ), 'qcloud/cos-sdk-v5' => array( 'pretty_version' => 'v1.3.5', 'version' => '1.3.5.0', - 'reference' => 'e67ad8143695192ee206bcbcafc78c08da92c621', 'type' => 'library', 'install_path' => __DIR__ . '/../qcloud/cos-sdk-v5', 'aliases' => array(), + 'reference' => 'e67ad8143695192ee206bcbcafc78c08da92c621', 'dev_requirement' => false, ), 'qiniu/php-sdk' => array( 'pretty_version' => 'v7.11.0', 'version' => '7.11.0.0', - 'reference' => '9ee81f0acd57fa7bb435ffe9e515d7a9fdd0489b', 'type' => 'library', 'install_path' => __DIR__ . '/../qiniu/php-sdk', 'aliases' => array(), + 'reference' => '9ee81f0acd57fa7bb435ffe9e515d7a9fdd0489b', 'dev_requirement' => false, ), 'ralouphie/getallheaders' => array( 'pretty_version' => '3.0.3', 'version' => '3.0.3.0', - 'reference' => '120b605dfeb996808c31b6477290a714d356e822', 'type' => 'library', 'install_path' => __DIR__ . '/../ralouphie/getallheaders', 'aliases' => array(), + 'reference' => '120b605dfeb996808c31b6477290a714d356e822', 'dev_requirement' => false, ), 'riverslei/payment' => array( 'pretty_version' => 'v5.1.0', 'version' => '5.1.0.0', - 'reference' => '77f671b68b0285a6af77dc7c5afa36eabcae35aa', 'type' => 'library', 'install_path' => __DIR__ . '/../riverslei/payment', 'aliases' => array(), + 'reference' => '77f671b68b0285a6af77dc7c5afa36eabcae35aa', 'dev_requirement' => false, ), 'swoole/ide-helper' => array( 'pretty_version' => '4.8.13', 'version' => '4.8.13.0', - 'reference' => 'd100c446b2e3d56430cbcab5dc3fa20a9f35c4ef', 'type' => 'library', 'install_path' => __DIR__ . '/../swoole/ide-helper', 'aliases' => array(), + 'reference' => 'd100c446b2e3d56430cbcab5dc3fa20a9f35c4ef', 'dev_requirement' => false, ), 'symfony/deprecation-contracts' => array( 'pretty_version' => 'v2.5.2', 'version' => '2.5.2.0', - 'reference' => 'e8b495ea28c1d97b5e0c121748d6f9b53d075c66', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/deprecation-contracts', 'aliases' => array(), + 'reference' => 'e8b495ea28c1d97b5e0c121748d6f9b53d075c66', 'dev_requirement' => false, ), 'symfony/event-dispatcher' => array( 'pretty_version' => 'v2.8.52', 'version' => '2.8.52.0', - 'reference' => 'a77e974a5fecb4398833b0709210e3d5e334ffb0', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/event-dispatcher', 'aliases' => array(), + 'reference' => 'a77e974a5fecb4398833b0709210e3d5e334ffb0', 'dev_requirement' => false, ), 'symfony/finder' => array( 'pretty_version' => 'v5.4.27', 'version' => '5.4.27.0', - 'reference' => 'ff4bce3c33451e7ec778070e45bd23f74214cd5d', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/finder', 'aliases' => array(), + 'reference' => 'ff4bce3c33451e7ec778070e45bd23f74214cd5d', 'dev_requirement' => false, ), 'symfony/http-foundation' => array( 'pretty_version' => 'v3.4.47', 'version' => '3.4.47.0', - 'reference' => 'b9885fcce6fe494201da4f70a9309770e9d13dc8', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/http-foundation', 'aliases' => array(), + 'reference' => 'b9885fcce6fe494201da4f70a9309770e9d13dc8', 'dev_requirement' => false, ), 'symfony/options-resolver' => array( 'pretty_version' => 'v5.4.21', 'version' => '5.4.21.0', - 'reference' => '4fe5cf6ede71096839f0e4b4444d65dd3a7c1eb9', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/options-resolver', 'aliases' => array(), + 'reference' => '4fe5cf6ede71096839f0e4b4444d65dd3a7c1eb9', 'dev_requirement' => false, ), 'symfony/polyfill-ctype' => array( 'pretty_version' => 'v1.28.0', 'version' => '1.28.0.0', - 'reference' => 'ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/polyfill-ctype', 'aliases' => array(), + 'reference' => 'ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb', 'dev_requirement' => false, ), 'symfony/polyfill-intl-grapheme' => array( 'pretty_version' => 'v1.28.0', 'version' => '1.28.0.0', - 'reference' => '875e90aeea2777b6f135677f618529449334a612', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/polyfill-intl-grapheme', 'aliases' => array(), + 'reference' => '875e90aeea2777b6f135677f618529449334a612', 'dev_requirement' => false, ), 'symfony/polyfill-intl-idn' => array( 'pretty_version' => 'v1.28.0', 'version' => '1.28.0.0', - 'reference' => 'ecaafce9f77234a6a449d29e49267ba10499116d', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/polyfill-intl-idn', 'aliases' => array(), + 'reference' => 'ecaafce9f77234a6a449d29e49267ba10499116d', 'dev_requirement' => false, ), 'symfony/polyfill-intl-normalizer' => array( 'pretty_version' => 'v1.28.0', 'version' => '1.28.0.0', - 'reference' => '8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/polyfill-intl-normalizer', 'aliases' => array(), + 'reference' => '8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92', 'dev_requirement' => false, ), 'symfony/polyfill-mbstring' => array( 'pretty_version' => 'v1.28.0', 'version' => '1.28.0.0', - 'reference' => '42292d99c55abe617799667f454222c54c60e229', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/polyfill-mbstring', 'aliases' => array(), + 'reference' => '42292d99c55abe617799667f454222c54c60e229', 'dev_requirement' => false, ), 'symfony/polyfill-php70' => array( 'pretty_version' => 'v1.20.0', 'version' => '1.20.0.0', - 'reference' => '5f03a781d984aae42cebd18e7912fa80f02ee644', 'type' => 'metapackage', 'install_path' => NULL, 'aliases' => array(), + 'reference' => '5f03a781d984aae42cebd18e7912fa80f02ee644', 'dev_requirement' => false, ), 'symfony/polyfill-php72' => array( 'pretty_version' => 'v1.28.0', 'version' => '1.28.0.0', - 'reference' => '70f4aebd92afca2f865444d30a4d2151c13c3179', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/polyfill-php72', 'aliases' => array(), + 'reference' => '70f4aebd92afca2f865444d30a4d2151c13c3179', 'dev_requirement' => false, ), 'symfony/polyfill-php73' => array( 'pretty_version' => 'v1.28.0', 'version' => '1.28.0.0', - 'reference' => 'fe2f306d1d9d346a7fee353d0d5012e401e984b5', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/polyfill-php73', 'aliases' => array(), + 'reference' => 'fe2f306d1d9d346a7fee353d0d5012e401e984b5', 'dev_requirement' => false, ), 'symfony/polyfill-php80' => array( 'pretty_version' => 'v1.28.0', 'version' => '1.28.0.0', - 'reference' => '6caa57379c4aec19c0a12a38b59b26487dcfe4b5', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/polyfill-php80', 'aliases' => array(), + 'reference' => '6caa57379c4aec19c0a12a38b59b26487dcfe4b5', 'dev_requirement' => false, ), 'symfony/process' => array( 'pretty_version' => 'v5.4.28', 'version' => '5.4.28.0', - 'reference' => '45261e1fccad1b5447a8d7a8e67aa7b4a9798b7b', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/process', 'aliases' => array(), + 'reference' => '45261e1fccad1b5447a8d7a8e67aa7b4a9798b7b', 'dev_requirement' => false, ), 'symfony/property-access' => array( 'pretty_version' => 'v5.4.26', 'version' => '5.4.26.0', - 'reference' => '0249e46f69e92049a488f39fcf531cb42c50caaa', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/property-access', 'aliases' => array(), + 'reference' => '0249e46f69e92049a488f39fcf531cb42c50caaa', 'dev_requirement' => false, ), 'symfony/property-info' => array( 'pretty_version' => 'v5.4.24', 'version' => '5.4.24.0', - 'reference' => 'd43b85b00699b4484964c297575b5c6f9dc5f6e1', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/property-info', 'aliases' => array(), + 'reference' => 'd43b85b00699b4484964c297575b5c6f9dc5f6e1', 'dev_requirement' => false, ), 'symfony/psr-http-message-bridge' => array( 'pretty_version' => 'v1.2.0', 'version' => '1.2.0.0', - 'reference' => '9ab9d71f97d5c7d35a121a7fb69f74fee95cd0ad', 'type' => 'symfony-bridge', 'install_path' => __DIR__ . '/../symfony/psr-http-message-bridge', 'aliases' => array(), + 'reference' => '9ab9d71f97d5c7d35a121a7fb69f74fee95cd0ad', 'dev_requirement' => false, ), 'symfony/string' => array( 'pretty_version' => 'v5.4.29', 'version' => '5.4.29.0', - 'reference' => 'e41bdc93def20eaf3bfc1537c4e0a2b0680a152d', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/string', 'aliases' => array(), + 'reference' => 'e41bdc93def20eaf3bfc1537c4e0a2b0680a152d', 'dev_requirement' => false, ), 'symfony/translation' => array( 'pretty_version' => 'v5.4.30', 'version' => '5.4.30.0', - 'reference' => '8560dc532e4e48d331937532a7cbfd2a9f9f53ce', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/translation', 'aliases' => array(), + 'reference' => '8560dc532e4e48d331937532a7cbfd2a9f9f53ce', 'dev_requirement' => false, ), 'symfony/translation-contracts' => array( 'pretty_version' => 'v2.5.2', 'version' => '2.5.2.0', - 'reference' => '136b19dd05cdf0709db6537d058bcab6dd6e2dbe', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/translation-contracts', 'aliases' => array(), + 'reference' => '136b19dd05cdf0709db6537d058bcab6dd6e2dbe', 'dev_requirement' => false, ), 'symfony/translation-implementation' => array( @@ -961,118 +1006,118 @@ 'symfony/var-dumper' => array( 'pretty_version' => 'v4.4.47', 'version' => '4.4.47.0', - 'reference' => '1069c7a3fca74578022fab6f81643248d02f8e63', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/var-dumper', 'aliases' => array(), + 'reference' => '1069c7a3fca74578022fab6f81643248d02f8e63', 'dev_requirement' => true, ), 'topthink/framework' => array( 'pretty_version' => 'v6.0.7', 'version' => '6.0.7.0', - 'reference' => 'db8fe22520a9660dd5e4c87e304034ac49e39270', 'type' => 'library', 'install_path' => __DIR__ . '/../topthink/framework', 'aliases' => array(), + 'reference' => 'db8fe22520a9660dd5e4c87e304034ac49e39270', 'dev_requirement' => false, ), 'topthink/think' => array( 'pretty_version' => 'dev-master', 'version' => 'dev-master', - 'reference' => '0224f6113a669845fb3455cadb381a6931e9c508', 'type' => 'project', 'install_path' => __DIR__ . '/../../', 'aliases' => array(), + 'reference' => '641a1cf576a0931341e979fcb021728a5f208868', 'dev_requirement' => false, ), 'topthink/think-api' => array( 'pretty_version' => 'v1.0.27', 'version' => '1.0.27.0', - 'reference' => '36d7caac89ab5153493d1e0ad64f96d442e59b69', 'type' => 'library', 'install_path' => __DIR__ . '/../topthink/think-api', 'aliases' => array(), + 'reference' => '36d7caac89ab5153493d1e0ad64f96d442e59b69', 'dev_requirement' => false, ), 'topthink/think-helper' => array( 'pretty_version' => 'v3.1.6', 'version' => '3.1.6.0', - 'reference' => '769acbe50a4274327162f9c68ec2e89a38eb2aff', 'type' => 'library', 'install_path' => __DIR__ . '/../topthink/think-helper', 'aliases' => array(), + 'reference' => '769acbe50a4274327162f9c68ec2e89a38eb2aff', 'dev_requirement' => false, ), 'topthink/think-image' => array( 'pretty_version' => 'v1.0.7', 'version' => '1.0.7.0', - 'reference' => '8586cf47f117481c6d415b20f7dedf62e79d5512', 'type' => 'library', 'install_path' => __DIR__ . '/../topthink/think-image', 'aliases' => array(), + 'reference' => '8586cf47f117481c6d415b20f7dedf62e79d5512', 'dev_requirement' => false, ), 'topthink/think-orm' => array( 'pretty_version' => 'v2.0.61', 'version' => '2.0.61.0', - 'reference' => '10528ebf4a5106b19c3bac9c6deae7a67ff49de6', 'type' => 'library', 'install_path' => __DIR__ . '/../topthink/think-orm', 'aliases' => array(), + 'reference' => '10528ebf4a5106b19c3bac9c6deae7a67ff49de6', 'dev_requirement' => false, ), 'topthink/think-queue' => array( 'pretty_version' => 'v3.0.9', 'version' => '3.0.9.0', - 'reference' => '654812b47dd7c708c4443deed27f212f8382e8da', 'type' => 'library', 'install_path' => __DIR__ . '/../topthink/think-queue', 'aliases' => array(), + 'reference' => '654812b47dd7c708c4443deed27f212f8382e8da', 'dev_requirement' => false, ), 'topthink/think-swoole' => array( 'pretty_version' => 'v3.1.2', 'version' => '3.1.2.0', - 'reference' => 'eb7f78b7eb53dde79257f4254fe61f9514f3c7d8', 'type' => 'library', 'install_path' => __DIR__ . '/../topthink/think-swoole', 'aliases' => array(), + 'reference' => 'eb7f78b7eb53dde79257f4254fe61f9514f3c7d8', 'dev_requirement' => false, ), 'topthink/think-trace' => array( 'pretty_version' => 'v1.6', 'version' => '1.6.0.0', - 'reference' => '136cd5d97e8bdb780e4b5c1637c588ed7ca3e142', 'type' => 'library', 'install_path' => __DIR__ . '/../topthink/think-trace', 'aliases' => array(), + 'reference' => '136cd5d97e8bdb780e4b5c1637c588ed7ca3e142', 'dev_requirement' => true, ), 'ucloud/ufile-php-sdk' => array( 'pretty_version' => '1.0.1', 'version' => '1.0.1.0', - 'reference' => '42f739ecd55dec488e9b2185795cdc5ea7be12d0', 'type' => 'library', 'install_path' => __DIR__ . '/../ucloud/ufile-php-sdk', 'aliases' => array(), + 'reference' => '42f739ecd55dec488e9b2185795cdc5ea7be12d0', 'dev_requirement' => false, ), 'vlucas/phpdotenv' => array( 'pretty_version' => 'v5.5.0', 'version' => '5.5.0.0', - 'reference' => '1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7', 'type' => 'library', 'install_path' => __DIR__ . '/../vlucas/phpdotenv', 'aliases' => array(), + 'reference' => '1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7', 'dev_requirement' => false, ), 'xaboy/form-builder' => array( 'pretty_version' => '2.0.15', 'version' => '2.0.15.0', - 'reference' => '20cf96927c7aed273dd0db5b2c7c83f56e535bf1', 'type' => 'library', 'install_path' => __DIR__ . '/../xaboy/form-builder', 'aliases' => array(), + 'reference' => '20cf96927c7aed273dd0db5b2c7c83f56e535bf1', 'dev_requirement' => false, ), ), diff --git a/vendor/services.php b/vendor/services.php index ddd14bdb..bb20d8b7 100644 --- a/vendor/services.php +++ b/vendor/services.php @@ -1,5 +1,5 @@ 'think\\queue\\Service',